@charset "UTF-8";

/* 共通 */
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: #000;
  font-size: 18px;
  line-height: 1.6;

  margin: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(210, 245, 250, 0.25), transparent 65%),
    radial-gradient(circle at 75% 20%, rgba(200, 240, 245, 0.22), transparent 70%),
    radial-gradient(circle at 50% 75%, rgba(220, 250, 255, 0.22), transparent 70%),

    radial-gradient(circle at 30% 50%, rgba(195, 235, 245, 0.18), transparent 55%),
    radial-gradient(circle at 65% 55%, rgba(190, 230, 240, 0.15), transparent 60%),
    radial-gradient(circle at 40% 35%, rgba(210, 245, 250, 0.18), transparent 55%),

    radial-gradient(circle at 25% 40%, rgba(200, 235, 245, 0.12), transparent 45%),
    radial-gradient(circle at 60% 30%, rgba(210, 245, 250, 0.10), transparent 45%),
    radial-gradient(circle at 45% 60%, rgba(195, 225, 240, 0.08), transparent 40%),

    radial-gradient(ellipse at 30% 20%, rgba(200, 240, 245, 0.15) 0%, transparent 35%),
    radial-gradient(ellipse at 60% 45%, rgba(210, 245, 250, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 40% 70%, rgba(195, 225, 240, 0.10) 0%, transparent 30%);

  background-blend-mode: lighten;
  background-size: cover;
  background-attachment: fixed;
}

.sp-concept {
  display: none;
}

.sub-title {
  color: #393939;
  font-size: 20px;
}

.english {
  color: #393939;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease-in-out;
}

#header li,
.mobile-nav li,
.sns-link li,
.footer li,
.sp-footer li {
  list-style: none;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.link-text a {
  font-size: 18px;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.4s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* マウスストーカー */
.butterfly {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.1s linear;
}

/* 装飾の横線 */
.text-line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-line::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #393939;
}

/* ヘッダー*/
#header {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px;
  position: fixed;
  width: 100%;
}

.header-logo {
  max-width: 100px;
}

.nav {
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 30px;
}

.nav-list {
  gap: 50px;
}

.nav-list a {
  color: #000;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-list ruby,
.mobile-nav ruby {
  ruby-position: under;
}

.nav-list rt {
  letter-spacing: 0.08em;
  font-size: 0.8em;
  padding-top: 3px;
}

.nav-list a:hover {
  transform: scale(1.1);
}

.nav-list li:hover>a {
  color: #000;
}

.nav-list:hover li:not(:hover)>a {
  color: #999;
}

.nav-list li a ruby,
.nav-list li a ruby rt {
  color: inherit;
}

.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: -25px;
  background: #fff;
  padding: 3px 15px 7px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  white-space: nowrap;
}

.submenu a {
  font-size: 13px;
}

.has-submenu:hover .submenu {
  display: block;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #626262;
}

/* モバイルナビ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 25;
  padding-top: 40px;
  padding-left: 50px;
  overflow-y: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav li a {
  color: #000;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav .has-submenu ul {
  margin-top: 5px;
  margin-left: 20px;
  gap: 15px;
}

.mobile-nav-show {
  transform: translateX(0);
}

.mobile-nav-close {
  color: #626262;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.block {
  display: block;
}

.mobile-nav-online {
  background-color: #B7D4DD;
  display: inline-block;
  padding: 15px 100px;
  margin-top: 40px;
}

.mobile-nav-online a {
  color: #000;
  border-bottom: 1px solid #000;
}

.mobile-nav-sns {
  display: flex;
  align-items: baseline;
  gap: 60px;
  margin-top: 25px;
  font-size: 14px;
  color: #333;
}

.underline {
  display: inline-block;
  border-bottom: 1px solid #626262;
}

.mobile-nav-sns ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 15px;
}

.mobile-nav-sns p {
  font-size: 12px;
}

.mobile-x {
  max-width: 30px;
}

.mobile-instagram {
  max-width: 35px;
}

.mobile-line {
  max-width: 34px;
}

/* パンくずリスト */
.breadcrumb {
  font-size: 14px;
  margin: 95px 0 0 10px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: #555;
}

.breadcrumb li a {
  color: #777;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li+li:before {
  content: "＞";
  margin: 0 5px;
  color: #aaa;
}

/* SNSリンク */
.sns-link {
  position: fixed;
  top: 35%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.sns-link ul {
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.sns-link {
  background-color: #fff;
}

.minne {
  max-width: 50px;
}

.instagram,
.x {
  max-width: 35px;
}

.line {
  max-width: 40px;
}

.minne,
.instagram,
.x,
.line {
  transition: transform 0.3s ease;
}

.minne:hover,
.instagram:hover,
.x:hover,
.line:hover {
  transform: scale(1.15);
}


/* ヒーローイメージ
  ------------------------------------------------- */
#hero-slider {
  width: 100%;
  height: 100vh;
}

.main-title {
  padding: 300px 0 300px 50px;
}

.title1,
.title2 {
  color: rgb(105, 65, 48);
}

.title1 {
  font-size: 30px;
}

.title2 {
  font-size: 20px;
}

/* メイン
---------------------------------------------------- */

.about-link {
  text-align: right;
  margin-top: 10px;
}

.about-link a {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.concept-background {
  background-image: url(image/butterfly_back.png);
  background-position: center -11px;
}

.concept {
  width: 90%;
  margin: 70px auto 50px;
  padding-top: 30px;
  text-align: left;
}

.concept-title {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: #333;
}

.concept-title strong {
  font-size: 23px;
  color: #5b40ac;
}

.concept-section {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #333;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

.concept-link a {
  color: #333;
  font-size: 15px;
  font-weight: bold;
}

.concept-link .butterfly-link {
  position: relative;
  text-decoration: none;
  color: #5b40ac;
  padding-bottom: 4px;
}

.concept-link .butterfly-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #626262;
  transition: width 0.3s ease, left 0.3s ease;
}

.concept-link .butterfly-link:hover::after {
  width: 100%;
  left: 0;
}

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.item-title {
  margin-top: 50px;
  margin-left: 120px;
}

.home-item {
  justify-content: center;
  margin-top: 30px;
  gap: 100px;
}

.home-item img {
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
}

.btn-underline-circle {
  position: relative;
  display: inline-block;
  padding: 8px 40px 8px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.btn-underline-circle::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #dfd9f6;
  border-radius: 50%;
  z-index: -1;
}

.btn-underline-circle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background-color: #8B8B8B;
  transition: width 0.5s ease;
  z-index: 1;
}

.btn-underline-circle:hover::after {
  width: 80%;
}

/* Fortune telling */
.home-fortune {
  background-color: #fff;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  margin-top: 70px;
  padding-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-fortune {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  margin-top: 70px;
  padding-bottom: 35px;
  overflow: hidden;
}

.home-fortune::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: lightMove 4s ease-in-out infinite;
}

@keyframes lightMove {
  0% {
    left: -100%;
  }

  60% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.home-fortune h3 {
  width: 80%;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 10px;
}

.home-fortune-item {
  width: 80%;
  margin: auto;
  gap: 30px;
  align-items: flex-start;
}

.home-fortune-item img {
  max-width: 400px;
}


.home-fortune-text {
  font-size: 20px;
  font-weight: bold;
}

.home-fortune-text2 {
  margin-top: 30px;
}

.english.underline-vertical {
  position: relative;
  display: block;
  padding-bottom: 37px;
  text-align: center;
  margin-top: 80px;
}

.english.underline-vertical::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background-color: #333;
}

.store-background {
  width: 90%;
  background-color: #d8f0f3;
  border-radius: 30px;
  padding: 80px 0 20px 0;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.store-flex {
  justify-content: center;
  gap: 20px;
}

.store-item {
  max-width: 245px;
  transition: transform 0.3s ease;
}

.store-link {
  padding-bottom: 20px;
  margin-top: 15px;
  margin-right: 40px;
  text-align: right;
}

.store-link a {
  font-size: 15px;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  color: #333;
  padding-bottom: 4px;
}

.store-flex img:hover {
  transform: scale(1.05);
  opacity: 0.6;
}

.store-link a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #626262;
  transition: width 0.3s ease, left 0.3s ease;
}

.store-link a:hover::after {
  width: 100%;
  left: 0;
}


/* loveappleについて
---------------------------------------------- */
.about-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: 20px;
}

.about-logo {
  max-width: 180px;
  width: 80%;
  height: auto;
  display: block;
  margin-top: 80px;
}

.about-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 15px;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 0.5px;
  height: 95px;
  background-color: #626262;
}

.about-block {
  margin-top: 20px;
}

.about-txt-title {
  font-weight: bold;
  font-size: 18px;
}

.about-txt {
  font-size: 16px;
  line-height: 2.5;
  width: 100%;
  margin-top: 10px;
}

.heading {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-top: 20px;
}

.heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 0.5px;
  height: 95px;
  background-color: #626262;
}

/* プロフィール */
.profile {
  background-color: #ECE7FF;
  padding: 30px 0 40px 0;
  margin-top: 70px;
}

.profile-title {
  margin-bottom: 30px;
}

.profile-item {
  gap: 50px;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}

.profile img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-txt-start,
.profile-txt-end {
  font-size: 18px;
}

.profile-txt {
  font-size: 16px;
  line-height: 1.8;
}

.profile-txt-start {
  margin-bottom: 10px;
}

.profile-txt-end {
  margin-top: 25px;
  font-weight: bold;
}

/* ルーンカード商品ページ 
----------------------------------*/
.goods-container {
  margin-top: 115px;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* 商品スライダー */
.slider {
  width: 300px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: 300px;
  flex-shrink: 0;
}

/* 矢印 */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ドット */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

.goods-name,
.goods-price,
.goods-btn {
  margin-bottom: 20px;
}

.goods-price {
  font-weight: bold;
  font-size: 20px;
}

.goods-price span {
  font-size: 35px;
}

.goods-txt-ex {
  font-size: 14px;
  line-height: 1.8;
  border: 1px solid #626262;
  background-color: #fff;
  padding: 10px;
}

.goods-subtitle {
  font-size: 18px;
  margin-top: 50px;
  margin-left: 130px;
}

.goods-subtitle span {
  font-weight: bold;
}

/* アコーディオンパネル */
.accordion {
  width: 80%;
  margin: 40px auto;
}

.accordion-header {
  color: #333;
  width: 100%;
  padding: 15px;
  text-align: left;
  background-color: #ECE7FF;
  border-bottom: 1px solid #beb6db;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.accordion-header:hover {
  background-color: rgb(222, 216, 240);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  padding: 0 20px;
}

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
  margin: 20px 0;
  line-height: 1.8;
  font-size: 16px;
}

.accordion-icon {
  font-weight: bold;
  transition: transform 0.3s;
}

/* 開いているときにアイコンを回転させる */
.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item ul {
  padding-left: 20px;
}

.accordion-item ul li::marker {
  font-size: 10px;
  color: #000;
}

.accordion-item ol {
  padding-left: 25px;
}

.kotodama rt {
  font-size: 0.7em;
  position: relative;
  top: -2px;
}

.healing-stone {
  padding: 50px 120px 25px 70px;
  margin: 80px 0;
}

.healing-stone-content-strong {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}

.marker a {
  padding: 5px 10px;
  background-image: linear-gradient(#BCE2E8, #BCE2E8);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 100%;
  transition: color 0.3s, background-size 0.5s;
}

.marker a:hover {
  color: #FFF;
  background-position: bottom left;
  background-size: 100% 100%;
}

/* 天然石紹介ページ
---------------------------------------- */
.stone-section-block {
  width: 70%;
  margin: 50px auto;
}

.stone-title {
  font-size: 30px;
  margin-bottom: 15px;
}

.stone-sub {
  line-height: 1.8;
}

/* タブ */
.stone-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.stone-tab {
  padding: 10px 20px;
  background: #eee;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #555;
  font-size: 16px;
  transition: 0.3s;
}

.stone-tab:hover {
  background: #e5e5e5;
}

.stone-tab.active {
  color: #fff;
  background-color: #ffb7c5;
}

/* 内容 */
.stone-accordion-content {
  display: none;
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.stone-content {
  display: none;
  animation: fade 0.5s ease;
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

.stone-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 天然石アコーディオンパネル */
.my-accordion {
  width: 70%;
  margin: 50px auto;
}

.my-accordion-header {
  width: 100%;
  padding: 18px 15px 18px 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: filter 0.4s ease;
}

.my-accordion-header:hover {
  filter: brightness(1.1);
}

.my-accordion-header-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stone-name {
  font-size: 20px;
}

.stone-subname {
  font-size: 18px;
}

.stone-name,
.stone-subname {
  color: #333;
}

.header-gem {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.15));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.75),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    0 3px 6px rgba(0, 0, 0, 0.07);
}

.love-header {
  background-color: rgba(255, 177, 193, 0.80);
}

.mind-header {
  background-color: rgba(168, 216, 255, 0.80);
}

.protect-header {
  background-color: rgba(200, 194, 255, 0.80);
}

.work-header {
  background-color: rgba(255, 226, 138, 0.80);
}

.health-header {
  background-color: rgba(182, 232, 176, 0.80);
}

.spiritual-header {
  background-color: rgba(227, 211, 255, 0.80);
}


.my-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  padding: 0 20px;
}

.my-accordion-icon {
  color: #333;
  font-weight: bold;
  transition: transform 0.3s;
}

.my-accordion-header.active .my-accordion-icon {
  transform: rotate(45deg);
}

.stone-content h3 {
  font-size: 20px;
  text-align: center;
  margin: 0 20px;
}

.stone-content-txt {
  padding: 20px 0;
  font-size: 16px;
}

.stone-content-title {
  font-weight: bold;
  padding: 10px 0;
}

.stone-content-p {
  line-height: 1.8;
}

/* おすすめスライダー */
.recommend-title {
  width: 90%;
  margin: 80px auto 0;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #878787;
}

.recommend-title .english {
  background: linear-gradient(to bottom, #b3b3b3, #6e6e6e);
  background-clip: text;
  color: transparent;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
}

.recommend-slider img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  transition: 0.3s ease;
  margin: 50px 0;
  border-radius: 20px;
}

.recommend-slider img:hover {
  transform: scale(1.05);
  opacity: 0.5;
}

.slick-slider {
  width: 90%;
  margin: 0 auto;
}

.recommend-slider .slick-slide {
  margin: 0 15px;
}

/* お問い合わせ 
------------------------------------*/
.contact-txt {
  font-size: 16px;
  background-color: #fff;
  padding: 45px;
  margin-top: 20px;
  border: 1px solid #d1d1d1;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.contact-wrapper {
  max-width: 80%;
  margin: 50px auto;
  padding: 25px 40px 30px;
  background: #fffafc;
  border: 2px solid #f7cfe3;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.25);
}

.contact-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #d85a8a;
  font-weight: bold;
  letter-spacing: 2px;
}

.contact-form-label {
  display: block;
  margin: 20px 0 10px;
  font-weight: bold;
  color: #c8477a;
}

.required {
  color: #fff;
  background: linear-gradient(90deg, #e58bb5, #d678a1);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 13px;
  margin-right: 10px;
}

.contact-form-input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #f2b6d1;
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ea8caf;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
}

/* プライバシー部分 */
.privacy-policy {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #f2b6d1;
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  padding: 20px 15px;
  margin: 30px 0;
}

.privacy-policy-title {
  padding-bottom: 8px;
}

.check-disabled {
  margin: 40px 0;
}

.check-disabled label {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;
  font-size: 16px
}

#privacycheck input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #c8477a;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

#privacycheck input[type="checkbox"]:hover {
  transform: scale(1.1);
}

.contact-submit {
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 14px;
  background: linear-gradient(90deg, #f7a8c9, #ea7fad);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 12px rgba(255, 140, 170, 0.3);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 170, 0.5);
}

/* ページトップボタン
-------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  color: #333;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  transition: transform 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

.page-top::before {
  content: "↑";
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
  transition: transform 0.2s;
}

.page-top .top-text {
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-top:hover {
  transform: translateY(-10px);
}

.page-top.show {
  opacity: 1;
  pointer-events: auto;
}


/* フッター
-------------------------------------------------- */
.sp-footer {
  display: none;
}

.footer {
  border-top: 1px solid #626262;
  margin: 0 60px;
  padding-top: 30px;
}

.footer-margin-top {
  margin-top: 100px;
}

.footer-logo {
  width: 125px;
}

.footer-main-flex {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-sub-flex {
  align-items: flex-end;
  gap: 100px;
}

.footer-container li {
  font-size: 14px;
  padding-bottom: 15px;
}

.footer-container li a {
  color: #333;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-container li a:hover {
  transform: scale(1.08);
}

.small-text {
  font-size: 12px;
  padding-left: 20px;
}

.store-link-txt {
  font-size: 16px;
}

.btn-radius a {
  position: relative;
  display: inline-block;
  background-color: #BCE2E8;
  border-radius: 100px;
  padding: 10px 25px;
  margin-right: 10px;
  text-decoration: none;
  color: #000;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-radius a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.btn-radius a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  pointer-events: none;
  opacity: 0;
}

.btn-radius a:hover::before {
  animation: shine 1s forwards;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 1;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}

.copyright {
  color: #626262;
  font-size: 11px;
  text-align: right;
  margin-bottom: 15px;
  margin-right: 10px;
}

.xrea {
  width: 30%;
  margin-left: auto;
}

.sp-xrea {
  width: 80%;
}

/* サンクスページ
----------------------------------------- */
.thanks-wrapper {
  background-image: url(image/thanks.png);
  background-size: cover;
  width: 100%;
  padding-bottom: 120px;
}

.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.thanks-wrapper h2 {
  text-align: center;
  font-size: 100px;
  color: #5b40ac;
  margin: 90px 0 20px;
}

.thanks-box {
  width: 70%;
  margin: 0 auto;
  padding: 20px 25px;
  background-color: #fff;
  border: 1px solid #5b40ac;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.thanks-box p {
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 1.8;
}

.thanks-txt2 {
  margin-top: 20px;
}

.thanks-btn {
  text-align: center;
  margin-top: 50px;
}

.thanks-btn a {
  display: inline-block;
  font-size: 16px;
  color: #5b40ac;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #5b40ac;
  border-radius: 100px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.5s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.thanks-btn a:hover {
  transform: scale(1.1);
  color: #fff;
  background-color: #5b40ac;
}


/* 1050px以下 */
@media screen and (max-width: 1050px) {
  .nav {
    padding-right: 10px;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sns-link {
    display: none;
  }

  ruby {
    ruby-align: start;
  }

  .mobile-nav ul li>a {
    font-size: 15px;
    color: #000;
    text-align: left;
    padding-top: 10px;
    padding-left: 10px;
  }

  .mobile-nav ul li a ruby rt {
    font-size: 0.8em;
    padding-top: 2px;
    padding-left: 5px;
  }

  .mobile-nav ul li .small-text {
    font-size: 14px;
  }

  .home-fortune-item {
    gap: 30px;
    margin-right: 60px;
  }

  .profile {
    padding: 30px 0 40px 0;
    margin-top: 60px;
  }

  .profile-item {
    width: 85%;
  }

  .store-background {
    padding: 80px 60px 10px 60px;
  }

  .store-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .store-item {
    max-width: none;
    width: 100%;
  }

  .goods-subtitle {
    margin-left: 45px;
  }

  .accordion {
    width: 90%;
  }

  .healing-stone {
    padding: 50px 50px 25px 50px;
  }

  .stone-section-block {
    width: 90%;
  }

  .my-accordion {
    width: 85%;
  }
}

/* 900px以下 */
@media screen and (max-width: 900px) {
  .a-link {
    margin-top: 10px;
  }

  .home-item {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 40px;
  }

  .product-name {
    margin-top: 20px;
  }

  .home-fortune-item {
    margin: 20px 60px 0 60px;
  }

  .goods-container {
    gap: 30px;
  }

  .store-link {
    margin-right: 0px;
  }
}

/* 850px以下 */
@media screen and (max-width: 850px) {
  .home-fortune-item {
    flex-direction: column;
    align-items: center;
  }

  .footer-sub-flex {
    gap: 45px;
  }

  .heading::after {
    bottom: -60px;
    height: 70px;
  }

  .goods-container {
    flex-flow: column;
    width: 80%;
    margin: 70px auto 0;
    align-items: center;
  }

  .goods-name,
  .goods-price,
  .goods-btn {
    margin-bottom: 35px;
  }

  .contact-txt {
    padding: 40px 10px;
  }

  .contact-wrapper {
    max-width: 90%;
  }

  .contact-submit {
    width: 60%;
  }

}

/* 768px以下 */
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb li+li:before {
    margin: 0 3px;
  }

  .english.underline-vertical {
    margin-top: 65px;
  }

  .hide-on-mobile {
    display: none;
  }

  .mobile-nav {
    width: 80vw;
  }

  .about-txt,
  .profile-txt {
    font-size: 15px;
  }

  .about-txt {
    line-height: 2;
  }

  .about-txt-span,
  .profile-txt-start,
  .profile-txt-end {
    font-size: 16px;
  }

  .profile {
    padding: 30px 55px 20px 25px;
    margin-top: 40px;
  }

  .profile-title {
    text-align: center;
    margin-bottom: 25px;
  }

  .profile img {
    width: 160px;
    height: 160px;
  }

  .profile-item {
    gap: 10px;
    flex-direction: column;
  }

  .store-background {
    width: 80%;
    padding: 80px 60px 10px 60px;
  }

  .store-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .store-flex {
    text-align: center;
  }

  .store-item {
    align-items: center;
  }

  .store-link {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .my-accordion-header-flex {
    display: block;
  }

  .stone-name {
    font-size: 18px;
  }

  .stone-subname {
    font-size: 15px;
  }

  .footer {
    margin: 80px 45px 0 20px;
  }

  .footer-sub-flex {
    gap: 20px;
  }

  .thanks-box {
    width: 90%;
  }

  .thanks-wrapper h2 {
    font-size: 80px;
    margin: 90px 0 20px;
  }

  .thanks-wrapper {
    padding-bottom: 60px;
  }
}

/* 650px以下 */
@media screen and (max-width: 650px) {
  .header-logo {
    max-width: 100px;
  }

  .breadcrumb {
    font-size: 12px;
    margin-top: 85px;
  }

  .main-title {
    padding: 300px 0 300px 30px;
  }

  .about-logo {
    max-width: 150px;
  }

  .about-txt {
    text-align: left;
    margin: 20px auto;
    width: 90%;
  }

  .footer {
    display: none;
  }

  .sp-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #626262;
    margin: 0px 20px 0 20px;
    padding-top: 35px;
  }

  .sp-footer-margin-top {
    margin-top: 75px;
  }

  .sp-footer-logo {
    max-width: 100px;
  }

  .sp-footer-sns {
    display: flex;
    gap: 25px;
    margin-top: 30px;
  }

  .sp-footer-online {
    margin-top: 20px;
  }

  .sp-footer-online a {
    color: #333;
    font-size: 18px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #777;
  }

  .sp-footer-container {
    margin-top: 20px;
  }

  .sp-footer-container li {
    margin: 20px;
  }

  .sp-footer-container a {
    color: #333;
    font-size: 14px;
  }

  .sp-copyright {
    font-size: 10px;
    letter-spacing: 1.8px;
    margin: 10px 0;
  }
}

/* 550px以下 */
@media screen and (max-width: 550px) {
  body {
    font-size: 16px;
  }

  .store-background {
    margin: 0;
    padding: 50px 0 20px;
    width: 100%;
    border-radius: 0;
  }

  .store-flex img {
    width: 80%;
  }

  .pc-concept {
    display: none;
  }

  .sp-concept {
    display: block;
  }

  .sp-concept-title {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 10px;
    color: #5b40ac
  }

  .concept {
    width: 90%;
    margin: 70px auto 45px;
    text-align: left;
  }

  .concept-link {
    text-align: right;
    margin-top: 15px;
  }

  .concept-link a {
    border-bottom: 1px solid #5b40ac;
  }

  .brand-concept {
    font-size: 14px;

  }

  .concept-title {
    font-size: 25px;
    font-weight: bold;
  }

  .concept-section {
    font-size: 14px;
  }

  .page-top {
    display: none;
  }

  .btn-underline-circle::after,
  .store-link a::after,
  .concept-link .butterfly-link::after {
    display: none;
  }

  .about-link a {
    background: transparent;
    border: 1px solid #626262;
    border-radius: 100px;
    padding: 5px 20px;
  }

  .profile {
    padding: 50px 20px;
    margin-top: 40px;
  }

  .goods-subtitle {
    margin: 40px 20px 0;
    font-size: 16px;
    margin-top: 40px;
  }

  .accordion {
    width: 80%;
    margin: 40px auto;
  }

  .accordion-header {
    font-size: 16px;
  }

  .healing-stone {
    padding: 30px 15px 25px;
  }

  .about-txt-title {
    font-size: 16px;
  }

  .accordion {
    width: 90%;
  }

  .healing-stone-content-strong {
    font-size: 18px;
    padding-bottom: 20px;
  }

  .healing-stone-content-nomal {
    font-size: 15px;
  }

  .contact-form select {
    font-size: 14px;
  }

  .contact-txt {
    font-size: 15px;
  }

  .contact-wrapper {
    padding: 25px 20px 30px;
    max-width: 95%;
  }

  .contact-submit {
    width: 80%;
  }

  .my-accordion {
    width: 90%;
    margin: 30px auto;
  }

  .stone-title {
    font-size: 25px;
  }

  .stone-sub {
    font-size: 16px;
  }

  .stone-tab {
    font-size: 14px;
  }

  .stone-tabs {
    margin-bottom: 40px;
  }

  .stone-section-block {
    width: 95%;
  }

  .stone-content h3 {
    font-size: 17px;
  }

  .recommend-title {
    width: 100%;
    margin: 60px 0 0;
    padding: 10px;
  }

  .recommend-slider {
    margin-top: 0;
  }

  .recommend-slider .slick-slide {
    margin: 0px 5px;
  }

  .slick-slider {
    width: 100%;
  }

  .recommend-slider img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 30px 0;
  }

  .btn-underline-circle::before {
    display: none;
  }

  .home-fortune-item {
    margin: 0 auto;
  }

  .store-link {
    text-align: center;
    margin: 35px 0 10px;
  }

  .store-link a {
    border: 1px solid #626262;
    border-radius: 100px;
    padding: 10px 30px;
  }

  .about-link {
    margin-top: 25px;
  }
}

/* 480px以下 */
@media screen and (max-width: 480px) {
  .header-logo {
    max-width: 85px;
  }

  .breadcrumb {
    margin-top: 70px;
  }

  .mobile-nav {
    width: 100vw;
  }

  .title1 {
    font-size: 25px;
  }

  .title2 {
    font-size: 20px;
  }

  .main-title {
    padding: 250px 0 300px 30px;
  }

  .item-title {
    margin-left: 25px;
  }

  .home-item {
    margin-top: 40px;
  }

  .home-fortune h3 {
    margin-left: 25px;
    padding-top: 30px;
  }

  .home-fortune-text {
    font-size: 16px;
  }

  .home-fortune-text2 {
    margin-top: 20px;
  }

  #privacycheck input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .check-disabled label {
    font-size: 15px;
  }

  .store-item {
    align-items: center;
    max-width: 100%;
  }

  .store-link {
    padding-bottom: 0px;
  }

  .store-background {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }

  .store-link {
    padding-top: 0px;
    padding-bottom: 20px;
    margin-right: 0px;
  }
}

/* 376px以下 */
@media screen and (max-width: 376px) {
  .store-background {
    padding: 60px 0px 10px;
  }
}