/* ============================================
   Welina ロミロミ&ビューティ ランディングページ
   ============================================ */

:root {
  --teal-50:  #EAF6F6;
  --teal-100: #C9E6E7;
  --teal-200: #95CFD2;
  --teal-300: #5FB8BC;
  --teal-400: #4FB3BA;   /* primary brand */
  --teal-500: #3A9CA3;
  --teal-600: #2E8B92;
  --teal-700: #246F75;
  --teal-900: #143438;

  --gold:     #D4A574;
  --gold-soft:#E8C896;

  --cream:    #FAF6EF;
  --cream-2:  #F4ECE0;
  --sand:     #ECE0CC;

  --ink:      #2A3236;
  --ink-soft: #5A6669;
  --ink-mute: #8A9598;

  --shadow-sm: 0 4px 18px rgba(36, 111, 117, 0.08);
  --shadow-md: 0 14px 40px rgba(36, 111, 117, 0.12);
  --shadow-lg: 0 28px 70px rgba(36, 111, 117, 0.16);

  --radius: 22px;
  --radius-lg: 36px;

  --font-jp-serif: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-jp-sans:  "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en-script:"Allura", "Pinyon Script", cursive;
  --font-en-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-en-sans:  "Jost", "Inter", sans-serif;

  --max-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-jp-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; }

/* =================== NAV =================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 36px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 36px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__logo { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.12); flex-shrink: 0; }
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-en { font-family: var(--font-en-script); font-size: 26px; color: var(--teal-600); }
.nav__brand-jp { font-family: var(--font-jp-serif); font-size: 11px; letter-spacing: 0.3em; color: var(--ink-soft); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--teal-500);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta {
  font-family: var(--font-jp-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 10px 22px;
  background: var(--teal-400);
  color: white;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(79, 179, 186, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(79, 179, 186, 0.5); }

/* ハンバーガー（SP） */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  padding: 2px;
  z-index: 100;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ドロワーオープン時: ロゴ・CTAをフェードアウト（ドロワーを透過しないように） */
body.drawer-open .nav__brand,
body.drawer-open .nav__cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* SPドロワー */
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(12px);
  z-index: 49;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--teal-700);
}
.nav__drawer-cta {
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--teal-400);
  color: white !important;
  border-radius: 999px;
  font-size: 16px !important;
  box-shadow: 0 8px 24px rgba(79, 179, 186, 0.4);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 120px 6vw 80px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(149, 207, 210, 0.25), transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(212, 165, 116, 0.15), transparent 70%),
    linear-gradient(180deg, #F6FBFB 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero__deco { position: absolute; pointer-events: none; opacity: 0.7; }
.hero__deco--monstera-tl { top: -40px; left: -50px; width: 260px; transform: rotate(-30deg); opacity: 0.5; }
.hero__deco--plumeria-tr { top: 60px; right: -30px; width: 200px; }
.hero__deco--plumeria-bl { bottom: -30px; left: -40px; width: 180px; opacity: 0.95; }

.hero__content {
  position: relative; z-index: 2;
  padding-right: 20px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--teal-600);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; display: block; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-300), transparent);
}
.hero__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--teal-900);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.hero__title-em {
  color: var(--teal-500);
  font-family: var(--font-en-script);
  font-size: 1.15em;
  font-weight: 400;
  margin: 0 4px;
  font-style: normal;
}
.hero__title-sub {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero__lede {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-jp-serif);
  font-size: 14px;
  letter-spacing: 0.25em;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: white;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(46, 139, 146, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(46, 139, 146, 0.45); }
.btn-primary::after { content: "→"; font-size: 16px; transition: transform 0.25s ease; }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-jp-serif);
  font-size: 14px;
  letter-spacing: 0.25em;
  padding: 18px 32px;
  background: transparent;
  color: var(--teal-700);
  border: 1px solid var(--teal-300);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { background: var(--teal-400); color: white; border-color: var(--teal-400); }

.hero__visual {
  position: relative;
  height: 78vh;
  min-height: 560px;
}
.hero__visual-frame {
  position: absolute;
  inset: 0;
  border-radius: 280px 280px 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual-frame img,
.hero__visual-frame video,
.hero__visual-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__visual-badge {
  position: absolute;
  bottom: 24px; left: -50px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 10px;
  z-index: 3;
}
.hero__visual-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.hero__visual-deco { position: absolute; pointer-events: none; }
.hero__visual-deco--plumeria { top: -30px; right: -40px; width: 180px; z-index: 4; }
.hero__visual-deco--leaves   { bottom: -20px; right: -50px; width: 220px; z-index: 4; opacity: 0.85; }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--teal-700);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--teal-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* =================== SECTION CORE =================== */
.section {
  position: relative;
  padding: 120px 6vw;
}
.section__inner { max-width: var(--max-w); margin: 0 auto; }

.section__eyebrow {
  font-family: var(--font-en-script);
  font-size: 38px;
  color: var(--teal-400);
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--teal-900);
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.section__rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  position: relative;
}
.section__rule::before, .section__rule::after {
  content: ""; position: absolute; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.section__rule::before { left: -14px; }
.section__rule::after { right: -14px; }

.section__lede {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  text-align: center;
  color: var(--ink-soft);
  line-height: 2.1;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* コンセプトセクションのタイトルは長いため文字サイズを調整 */
#concept .section__title {
  font-size: clamp(14px, 3.8vw, 38px);
  letter-spacing: 0.05em;
}

/* コンセプト画像：正方形に近い比率（スパ写真が自然に収まる） */
#concept .about__image {
  aspect-ratio: 1 / 1;
}

/* =================== ABOUT =================== */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, #F3F9F9 100%);
}
.about__kanji {
  width: 280px;
  margin: 0 auto 8px;
  display: block;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  /* overflow: hidden を削除 → about__image-deco が外側に出られるように */
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
/* メイン写真のみに border-radius を直接適用（deco に影響させない） */
.about__image > img:not(.about__image-deco) {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__image-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  margin: 14px;
  pointer-events: none;
}
.about__image-deco {
  position: absolute; bottom: -30px; right: -40px;
  width: 180px;
  z-index: 2;
}

.about__copy h3 {
  font-family: var(--font-jp-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--teal-700);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.about__copy h3 em,
.about__copy h3 span[class] { font-style: normal; color: var(--gold); font-family: var(--font-en-script); font-size: 1.4em; }
.about__copy p {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2.2;
  margin-bottom: 18px;
}
.about__quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: white;
  border-left: 2px solid var(--gold);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-jp-serif);
  /* font-style: italic は日本語フォントでは合成斜体になるため削除 */
  color: var(--teal-700);
  font-size: 15px;
}
.about__quote-en {
  display: block;
  font-family: var(--font-en-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: 0.06em;
}

/* =================== BENEFITS =================== */
.benefits { background: white; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.benefit-card {
  text-align: center;
  padding: 48px 28px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #FDFBF6 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(149, 207, 210, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 110px; height: 110px;
  margin: 0 auto 20px;
}
.benefit-card__num {
  font-family: var(--font-en-script);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.benefit-card__title {
  font-family: var(--font-jp-serif);
  font-size: 20px;
  color: var(--teal-700);
  margin: 8px 0 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.benefit-card__text {
  font-family: var(--font-jp-serif);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
}

/* =================== BANNER =================== */
.banner-divider {
  position: relative;
  height: 140px;
  background: linear-gradient(180deg, white 0%, #F3F9F9 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.banner-divider img { width: 80%; max-width: 1100px; opacity: 0.85; }

/* =================== FEATURES =================== */
.features {
  background: linear-gradient(180deg, #F3F9F9 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.features__deco {
  position: absolute;
  top: 40px; right: -60px;
  width: 280px;
  opacity: 0.35;
  pointer-events: none;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.feature {
  text-align: center;
  padding: 36px 16px 28px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon { width: 84px; height: 84px; margin: 0 auto 14px; }
.feature__no {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.feature__title {
  font-family: var(--font-jp-serif);
  font-size: 17px;
  color: var(--teal-700);
  margin: 6px 0 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.feature__text {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* =================== MENU =================== */
.menu { background: var(--cream); position: relative; }
.menu__plumeria-l { position: absolute; top: 60px; left: -40px; width: 200px; opacity: 0.9; pointer-events: none; }
.menu__plumeria-r { position: absolute; bottom: 60px; right: -60px; width: 240px; opacity: 0.9; transform: scaleX(-1); pointer-events: none; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.menu-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(149, 207, 210, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-item__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal-50), var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
/* 製品写真用（contain表示） */
.menu-item__img--product { padding: 30px; }
.menu-item__img--product img { object-fit: contain; }

.menu-item__body { display: flex; flex-direction: column; justify-content: center; }
.menu-item__en {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-item__title {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  color: var(--teal-700);
  margin: 4px 0 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.menu-item__desc {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}
.menu-item__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(149, 207, 210, 0.5);
}
.menu-item__duration {
  font-family: var(--font-en-serif);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.menu-item__price {
  font-family: var(--font-en-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--teal-600);
  margin-left: auto;
}
.menu-item__price small {
  font-family: var(--font-jp-sans);
  font-size: 11px;
  color: var(--ink-mute);
  margin-left: 2px;
}
.menu-item__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: white;
  font-family: var(--font-jp-serif);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
}

.menu__note {
  text-align: center;
  margin-top: 36px;
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  line-height: 2;
}

/* =================== FLOW =================== */
.flow {
  background: linear-gradient(180deg, var(--cream) 0%, #F3F9F9 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.flow__steps::before {
  content: ""; position: absolute;
  top: 60px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal-200) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.flow-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.flow-step__circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: white;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(149, 207, 210, 0.4);
  position: relative;
  z-index: 1;
}
.flow-step__circle img { width: 95%; height: 95%; object-fit: contain; }
.flow-step__no {
  position: absolute; top: -8px; right: 8px;
  background: var(--teal-400);
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en-serif);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(79, 179, 186, 0.4);
}
.flow-step__title {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  color: var(--teal-700);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.flow-step__text {
  font-family: var(--font-jp-serif);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* =================== TESTIMONIALS =================== */
.voices { background: white; }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.voice {
  padding: 36px 28px 32px;
  background: linear-gradient(180deg, #F8FCFC, white);
  border-radius: var(--radius);
  border: 1px solid rgba(149, 207, 210, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voice:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice__mark {
  position: absolute;
  top: -16px; left: 22px;
  width: 40px; height: 40px;
  background: var(--teal-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-en-serif);
  font-size: 28px;
  line-height: 1;
  padding-top: 8px;
  box-shadow: 0 6px 16px rgba(79, 179, 186, 0.35);
}
.voice__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.voice__title {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  color: var(--teal-700);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.voice__text {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 20px;
}
.voice__meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(149, 207, 210, 0.3);
}
.voice__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 4px;
  flex-shrink: 0;
}
.voice__avatar img { width: 100%; height: 100%; object-fit: contain; }
.voice__author {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.voice__author small {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* =================== CTA SECTION =================== */
.cta {
  position: relative;
  padding: 140px 6vw;
  background: linear-gradient(180deg, var(--teal-100) 0%, var(--teal-200) 100%);
  overflow: hidden;
  color: var(--teal-900);
  text-align: center;
}
.cta__deco-tl { position: absolute; top: 20px; left: 30px; width: 200px; opacity: 0.85; pointer-events: none; }
.cta__deco-br { position: absolute; bottom: 20px; right: 30px; width: 220px; opacity: 0.85; transform: scaleX(-1); pointer-events: none; }

.cta__eyebrow {
  font-family: var(--font-en-script);
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta__title {
  font-family: var(--font-jp-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: var(--teal-900);
  position: relative; z-index: 2;
}
.cta__text {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  line-height: 2.2;
  max-width: 580px;
  margin: 0 auto 40px;
  color: var(--teal-700);
  position: relative; z-index: 2;
}
.cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-jp-serif);
  font-size: 14px;
  letter-spacing: 0.25em;
  padding: 18px 36px;
  background: white;
  color: var(--teal-700);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}
.btn-light:hover { transform: translateY(-2px); }
.btn-light--outline {
  background: transparent;
  color: var(--teal-700);
  border: 1px solid var(--teal-500);
  box-shadow: none;
}
.btn-light--outline:hover { background: rgba(255,255,255,0.45); }

.cta__contact {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 24px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--font-en-serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative; z-index: 2;
}
.cta__contact strong {
  font-family: var(--font-en-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =================== ACCESS =================== */
.access { background: var(--cream); }
.access__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
}
.access__info { padding: 0 12px; }
.access__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(149, 207, 210, 0.3);
  align-items: baseline;
}
.access__row:last-child { border-bottom: none; }
.access__label {
  font-family: var(--font-jp-serif);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-weight: 500;
}
.access__label-en {
  display: block;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.access__value {
  font-family: var(--font-jp-serif);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.9;
}
.access__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-50), var(--cream-2));
  position: relative;
  box-shadow: var(--shadow-md);
}
.access__map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(149, 207, 210, 0.08) 12px 13px),
    linear-gradient(180deg, #DDEDEE 0%, #F3F9F9 100%);
}
.access__map-pin {
  width: 56px; height: 56px;
  background: var(--teal-400);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(79, 179, 186, 0.4);
  margin-bottom: 16px;
}
.access__map-pin::after {
  content: ""; width: 14px; height: 14px;
  background: white; border-radius: 50%; transform: rotate(45deg);
}
.access__map-label {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--teal-700);
  text-align: center;
  letter-spacing: 0.1em;
}
.access__map-label small {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-mute);
}

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(180deg, var(--teal-100) 0%, var(--teal-200) 100%);
  color: var(--teal-900);
  padding: 64px 6vw 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer__leaves {
  position: absolute;
  top: -20px; right: -40px;
  width: 240px;
  opacity: 0.4;
  pointer-events: none;
}
/* フッターのプルメリア装飾 */
.footer__plumeria-l {
  position: absolute;
  bottom: -20px; left: -30px;
  width: 180px;
  opacity: 0.9;
  pointer-events: none;
}
.footer__plumeria-r {
  position: absolute;
  top: 10px; right: 20px;
  width: 130px;
  opacity: 0.9;
  pointer-events: none;
}
.footer__logo {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.footer__logo img { width: 100%; height: 100%; object-fit: cover; }
.footer__brand-en {
  font-family: var(--font-en-script);
  font-size: 36px;
  color: var(--teal-700);
  line-height: 1;
}
.footer__brand-jp {
  font-family: var(--font-jp-serif);
  font-size: 12px;
  letter-spacing: 0.3em;
  margin: 8px 0 24px;
  color: var(--teal-700);
}
.footer__links {
  display: flex; gap: 28px; justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}
.footer__links a {
  font-family: var(--font-jp-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--teal-700);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--teal-600);
  letter-spacing: 0.1em;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 111, 117, 0.2);
}

/* =================== THERAPIST =================== */
.therapist {
  background: linear-gradient(180deg, #F3F9F9 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.therapist__deco {
  position: absolute;
  top: 40px; right: -50px;
  width: 240px;
  opacity: 0.35;
  pointer-events: none;
}
.therapist__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.therapist__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.therapist__photo img { width: 100%; height: 100%; object-fit: cover; }
.therapist__photo-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.therapist__photo-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.therapist__profile { padding-top: 8px; }
.therapist__name-en {
  font-family: var(--font-en-script);
  font-size: 52px;
  color: var(--teal-400);
  line-height: 1;
  margin-bottom: 4px;
}
.therapist__name-jp {
  font-family: var(--font-jp-serif);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.therapist__name-jp strong {
  font-size: 20px;
  color: var(--teal-700);
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0;
}
.therapist__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.therapist__badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--teal-300);
  border-radius: 999px;
  font-family: var(--font-jp-serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  background: white;
}
.therapist__text {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2.2;
  margin-bottom: 16px;
}
.therapist__quote {
  margin-top: 28px;
  padding: 22px 28px;
  background: white;
  border-left: 2px solid var(--teal-300);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-jp-serif);
  color: var(--teal-700);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* =================== FAQ =================== */
.faq { background: white; }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid rgba(149, 207, 210, 0.4); }
.faq-item:first-child { border-top: 1px solid rgba(149, 207, 210, 0.4); }
.faq-item__question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-jp-serif);
  font-size: 16px;
  color: var(--teal-700);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.faq-item__q-mark {
  font-family: var(--font-en-script);
  font-size: 34px;
  color: var(--teal-400);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--teal-500);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 10px; }
.faq-item.is-open .faq-item__icon {
  background: var(--teal-400);
  border-color: var(--teal-400);
}
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after { background: white; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); opacity: 0; }

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 48px;
}
.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-item__answer p {
  font-family: var(--font-jp-serif);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.1;
}

/* =================== THEME VARIANTS =================== */
[data-theme="gold"] {
  --teal-50:  #FBF5EB;
  --teal-100: #F1DFBF;
  --teal-200: #E6C898;
  --teal-300: #D9B074;
  --teal-400: #C99A4F;
  --teal-500: #B68641;
  --teal-600: #9A6F33;
  --teal-700: #7A5727;
  --teal-900: #3A2A12;
  --gold:     #4FB3BA;
}
[data-theme="forest"] {
  --teal-50:  #EEF4EE;
  --teal-100: #CFE2CF;
  --teal-200: #A1C6A1;
  --teal-300: #6FA970;
  --teal-400: #5A9A5C;
  --teal-500: #468548;
  --teal-600: #356A37;
  --teal-700: #28522A;
  --teal-900: #102812;
}
[data-font="modern"] {
  --font-jp-serif: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-jp-sans:  "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-en-serif: "Jost", sans-serif;
}
[data-font="classic"] {
  --font-jp-serif: "Shippori Mincho", "Noto Serif JP", serif;
  --font-en-serif: "Cormorant Garamond", serif;
}

/* =================== FADE-IN ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* ヒーローはファーストビューなのでJS実行前でも常に表示 (FOUC防止) */
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 960px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { padding: 8px 16px; font-size: 11px; }

  .hero { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 40px; }
  .hero__visual { height: 60vh; min-height: 420px; }
  .hero__visual-badge { left: 12px; width: 100px; height: 100px; }

  .section { padding: 80px 24px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .therapist__grid { grid-template-columns: 1fr; gap: 40px; }
  .therapist__photo { aspect-ratio: 4/3; }
  .benefits__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item__img { aspect-ratio: 2/1; max-height: 220px; }

  .flow__steps { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .flow__steps::before { display: none; }

  .voices__grid { grid-template-columns: 1fr; }
  .access__grid { grid-template-columns: 1fr; gap: 32px; }

  .hero__deco--monstera-tl, .hero__deco--plumeria-tr, .hero__deco--plumeria-bl,
  .menu__plumeria-l, .menu__plumeria-r, .features__deco { display: none; }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .cta { padding: 80px 24px; }
}
