/* ============================================================
   オヌ医院 美容皮膚科 LP（応募サンプル by Soraha Design）v2
   コンセプト: Onuism = 自分らしさ主義
   配色: ダスティピンク × ベージュゴールド × オフホワイト × 黒の引き締め
   設計: 並木テンプレ脱却、フルブリード・大型タイポ・非対称レイアウト
   ============================================================ */

:root {
  /* ===== 色 ─ オヌ医院公式（https://www.onu-clinic.com/）に寄せた茶系 =====
     公式: メイン #8B7355、背景 #FEFDFB のミニマル茶系
     ※ AA 適合のため文字用は暗化版を使用 */
  --c-base:        #FEFDFB;  /* 公式に合わせた純白寄りベース */
  --c-surface:     #FFFFFF;
  --c-dark:        #1F1611;  /* ダークブラウン（引き締め）*/
  --c-text:        #2C1F14;  /* テキスト・濃いブラウン */
  --c-text-sub:    #6B4F36;  /* サブテキスト・焦げ茶 */
  --c-text-mute:   #7A6147;  /* マットブラウン暗化（base 上 4.83:1 AA 適合）*/
  --c-accent-pink: #C9B49A;     /* ライトトープ（装飾用）*/
  --c-accent-pink-dark: #8B7355; /* 公式メインカラー */
  --c-accent-gold: #B89060;     /* 中アクセント */
  --c-accent-gold-dark: #6B5235; /* ディープブラウン（5.7:1 AAA 適合）*/
  --c-sage:        #B5C4A0;  /* セージ（自然要素・補助）*/
  --c-line:        #E8E0D2;  /* 区切り線 */
  --c-line-soft:   #F2EBDD;  /* 薄い区切り線 */
  --c-line-green:  #06C755;  /* LINE 公式緑 */
  --c-bg-warm:     #F5F1ED;  /* 公式に合わせたペールベージュ */
  --c-bg-pink:     #F2EBDD;  /* 薄ベージュ背景 */
  --c-shadow-soft: 0 8px 24px rgba(60, 40, 25, 0.06);
  --c-shadow-card: 0 12px 36px rgba(60, 40, 25, 0.10);

  /* ===== フォント ─ 見やすさと上品さの両立 =====
     見出し: Noto Serif JP（安定した明朝、長文も疲れない）
     本文:   Noto Sans JP（業界標準の可読性）
     英字:   Cormorant Garamond（細めで洗練、イタリック上品）*/
  --f-jp-h: "Noto Serif JP", "Shippori Mincho", serif;
  --f-jp:   "Noto Sans JP", sans-serif;
  --f-en:   "Cormorant Garamond", "Fraunces", serif;

  /* ===== サイズ ===== */
  --container: 1180px;
  --container-narrow: 800px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 60px;
  --header-h-pc: 72px;
  --space-section: clamp(100px, 14vw, 200px);  /* 公式の余白感に寄せて 1.4 倍 */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-pill: 999px;
  --fixed-cta-h: 64px;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-base);
  color: var(--c-text);
  font-family: var(--f-jp);
  font-size: 16px;              /* 15 → 16（50 代配慮・B+C 共通推奨）*/
  line-height: 1.95;            /* 16px 用に最適化 */
  letter-spacing: 0.05em;       /* 日本語本文の標準 */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 17px;            /* 16 → 17（50 代配慮・B 推奨）*/
    line-height: 1.9;
    padding-bottom: 0;
  }
}

/* 段落 max-width 制御 ─ 1 行 28-35 文字の理想に */
.assurance-text,
.assurance-head-lead,
.menu-head-lead,
.ba-story,
.flow-text,
.support-text-body,
.faq-answer-text,
.doctor-message {
  max-width: 32em;
}
.menu-head-lead,
.assurance-head-lead,
.faq-answer-text {
  margin-inline: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: 0.75; }
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
}
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-jp-h);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .04em;
}
p { margin: 0; }
:focus-visible {
  outline: 3px solid #2C1F14;   /* AA 適合・キーボード操作で確実に見える */
  outline-offset: 2px;
  border-radius: 2px;
}

/* スクロール演出（fade-in） */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* スクリーンショット用：アニメ全 OFF */
body.skip-reveal .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  min-height: 48px;             /* タップ領域 WCAG 適合 */
  border-radius: var(--r-pill);
  font-family: var(--f-jp);
  font-size: 15px;              /* 14 → 15（可読性 UP）*/
  font-weight: 600;             /* 500 → 600（CTA 強度）*/
  letter-spacing: .12em;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn-line {
  background: #02852E;          /* 06C755 → 05A648（白文字 4.6:1 AA 適合）*/
  color: #fff;
  font-weight: 700;             /* CTA は太字でさらに視認性 UP */
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
  box-shadow: 0 6px 18px rgba(5, 166, 72, 0.32);
}
.btn-line:hover {
  background: #017A28;
  box-shadow: 0 10px 24px rgba(5, 166, 72, 0.4);
}
.btn-primary {
  background: var(--c-accent-gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 168, 124, 0.28);
}
.btn-primary:hover {
  background: var(--c-accent-gold-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn-ghost:hover {
  background: var(--c-text);
  color: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--c-dark);
}
.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   Sample notice
   ============================================================ */
.sample-notice {
  background: var(--c-dark);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 100;
}
.sample-notice strong {
  color: var(--c-accent-pink);
  font-weight: 500;
}
.sample-notice-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253, 252, 250, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(253, 252, 250, .95);
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 16px rgba(80, 60, 40, .04);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner { height: var(--header-h-pc); }
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.logo-name {
  font-family: var(--f-en);
  font-size: 20px;
  color: var(--c-text);
  letter-spacing: .14em;
  font-weight: 500;
  font-style: italic;
}
.logo-jp {
  font-family: var(--f-jp-h);
  font-size: 11px;
  color: var(--c-text-sub);
  letter-spacing: .08em;
  display: none;
}
@media (min-width: 768px) { .logo-jp { display: inline; } }

.g-nav { display: none; }
@media (min-width: 1024px) {
  .g-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .g-nav a { color: var(--c-text-sub); }
  .g-nav a:hover { color: var(--c-text); opacity: 1; }
}
.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #02852E;       /* AA 適合 */
    color: #fff;
    padding: 12px 24px;
    min-height: 44px;          /* タップ領域 */
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
  }
}
.hamburger {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  width: 22px;
  height: 1.2px;
  background: var(--c-text);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 40px var(--gutter);
  z-index: 49;
  transform: translateY(-110%);
  transition: transform .35s ease;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.drawer.is-open { transform: translateY(0); }
@media (min-width: 768px) { .drawer { top: var(--header-h-pc); } }
@media (min-width: 1024px) { .drawer { display: none; } }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--f-jp-h);
  font-size: 16px;
  letter-spacing: .1em;
}
.drawer-nav a {
  color: var(--c-text);
  padding: 4px 0;
}
.drawer-cta {
  margin-top: 16px;
  background: #02852E;          /* AA 適合 */
  color: #fff !important;
  padding: 18px 24px !important;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  text-align: center;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

/* ============================================================
   HERO ─ フルブリード化（並木との最大差別化ポイント）
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(96px, 16vw, 140px);   /* 48 → 96px（親指リーチへ）*/
}
@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h-pc) + 60px);
    padding-bottom: clamp(48px, 8vw, 100px);  /* PC は元の値で OK */
    min-height: 90vh;
    min-height: 90svh;
    align-items: center;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 252, 250, 0.95) 0%,
    rgba(253, 252, 250, 0.55) 40%,
    rgba(253, 252, 250, 0.15) 100%
  );
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-bg::before {
    background: linear-gradient(
      90deg,
      rgba(253, 252, 250, 0.92) 0%,
      rgba(253, 252, 250, 0.75) 40%,
      rgba(253, 252, 250, 0.10) 100%
    );
  }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-text {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-style: italic;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--c-accent-gold-dark);
}

/* 超大型 Onuism ロゴタイトル（業界トップクラスのジャンプ率）*/
.hero-onuism {
  display: block;
  font-family: var(--f-en);
  font-size: clamp(64px, 16vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--c-accent-gold-dark);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero-onuism {
    font-size: clamp(80px, 12vw, 200px);
  }
}

.hero-tagline {
  font-family: var(--f-jp-h);
  font-size: clamp(20px, 3.6vw, 32px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .06em;
  color: var(--c-text);
  margin-bottom: 28px;
}
.hero-tagline-em {
  color: var(--c-accent-pink-dark);
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);  /* 13-15 → 15-17（50 代配慮）*/
  line-height: 1.95;
  color: var(--c-text-sub);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions .btn-line {
  flex: 1 1 100%;               /* SP では LINE を 1 行全幅で目立たせる */
}
.hero-actions .btn-ghost {
  flex: 1;
  min-width: 160px;
}
@media (min-width: 480px) {
  .hero-actions .btn-line {
    flex: 1;
    min-width: 200px;
  }
}
@media (min-width: 768px) {
  .hero-actions .btn { flex: 0 0 auto; }
}

/* 右下に小さなメタ情報 */
.hero-meta {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 3;
  text-align: right;
  display: none;
}
@media (min-width: 1024px) {
  .hero-meta { display: block; }
}
.hero-meta-en {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 6px;
}
.hero-meta-jp {
  font-family: var(--f-jp-h);
  font-size: 13px;
  color: var(--c-text);
  letter-spacing: .08em;
}

/* ============================================================
   Section common（ただし統一しすぎない）
   ============================================================ */
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section-dark {
  background: var(--c-dark);
  color: #fff;
}
.section-bg-warm { background: var(--c-bg-warm); }
.section-bg-pink { background: var(--c-bg-pink); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--f-jp-h);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.6;
}
.section-lead {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.95;
}

/* ============================================================
   ASSURANCE ─ 左タイトル + 右に大型数字並び（非対称）
   ============================================================ */
.assurance-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .assurance-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
  }
}

.assurance-head .section-eyebrow { color: var(--c-accent-pink-dark); }
.assurance-head-title {
  font-family: var(--f-jp-h);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.assurance-head-title-em {
  color: var(--c-accent-pink-dark);
}
.assurance-head-lead {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 2;
}

.assurance-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.assurance-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.assurance-item:first-child { padding-top: 0; }
.assurance-item:last-child { border-bottom: none; }
.assurance-num {
  font-family: var(--f-en);
  font-size: clamp(48px, 7vw, 72px);
  color: var(--c-accent-gold);
  letter-spacing: 0;
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}
.assurance-body {
  padding-top: 8px;
}
.assurance-title {
  font-family: var(--f-jp-h);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 12px;
  line-height: 1.55;
}
.assurance-text {
  font-size: 15px;              /* 14 → 15 */
  color: var(--c-text-sub);
  line-height: 2;
}

/* ============================================================
   ONUISM ─ 黒背景・英字超大型（核セクション）
   ============================================================ */
.section-onuism {
  background: var(--c-dark);
  color: #fff;
  padding: clamp(100px, 16vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.onuism-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.onuism-eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-accent-gold);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.onuism-eyebrow::before,
.onuism-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-accent-gold);
}
.onuism-hero {
  font-family: var(--f-en);
  font-size: clamp(56px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent-gold);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .onuism-hero { font-size: clamp(80px, 11vw, 180px); }
}
.onuism-quote {
  font-family: var(--f-en);
  font-size: clamp(28px, 4vw, 44px);    /* 中間階層を強化（公式風）*/
  color: rgba(255, 255, 255, 0.55);     /* 囁くトーン */
  font-style: italic;
  letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 56px;
  max-width: 18em;
  margin-inline: auto;
}
.onuism-quote::before {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: var(--c-sage);             /* セージを差し色として活用 */
  margin: 0 auto 32px;
}
.onuism-text {
  font-family: var(--f-jp-h);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 400;
  line-height: 2.0;             /* 2.2 → 2.0 */
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: .05em;        /* .08 → .05（散らない）*/
  max-width: 640px;
  margin: 0 auto;
}
.onuism-text strong {
  color: #fff;
  font-weight: 500;
}

/* ============================================================
   WORRIES ─ 雑誌風グリッド（大きさ違いの 4 つ）
   ============================================================ */
.worries-section {
  padding: var(--space-section) 0;
  background: var(--c-bg-pink);
}
.worries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 48px auto 0;
}
@media (min-width: 768px) {
  .worries-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }
}

.worry-block {
  padding: 48px 32px;
  border: 1px solid var(--c-line);
  background: #fff;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.worry-block:hover {
  z-index: 2;
  transform: scale(1.02);
  box-shadow: var(--c-shadow-card);
}
@media (min-width: 768px) {
  .worry-block { padding: 64px 48px; }
  .worry-block + .worry-block { margin-left: -1px; }
  .worry-block:nth-child(n+3) { margin-top: -1px; }
}

.worry-num {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--c-accent-pink-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
}
.worry-title {
  font-family: var(--f-jp-h);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--c-text);
}
.worry-text {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.95;
}

.worries-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.worries-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
}

/* ============================================================
   MENU ─ 横スクロールリスト（韓国美容っぽい）+ テーブル風
   ============================================================ */
.menu-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.menu-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
}
.menu-head .section-title-em {
  color: var(--c-accent-pink-dark);
}
.menu-head-lead {
  margin-top: 24px;
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.95;
}

/* 横スクロールカルーセル */
.menu-scroll {
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent-gold) var(--c-line-soft);
}
.menu-scroll::-webkit-scrollbar { height: 6px; }
.menu-scroll::-webkit-scrollbar-track { background: var(--c-line-soft); }
.menu-scroll::-webkit-scrollbar-thumb {
  background: var(--c-accent-gold);
  border-radius: 999px;
}

.menu-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
}
@media (min-width: 768px) {
  .menu-row {
    grid-auto-columns: 42%;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .menu-row {
    grid-auto-columns: 30%;
    gap: 28px;
  }
}

.menu-card {
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--c-line);
  scroll-snap-align: start;
  position: relative;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.menu-card:hover {
  border-color: var(--c-accent-gold);
  transform: translateY(-4px);
}
.menu-card-num {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--c-accent-pink-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
}
.menu-card-name {
  font-family: var(--f-jp-h);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line-soft);
  line-height: 1.5;
}
.menu-card-desc {
  font-size: 14px;              /* 13 → 14 */
  color: var(--c-text-sub);
  line-height: 1.95;
  margin-bottom: 24px;
  flex: 1;
}
.menu-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.menu-card-price-label {
  font-size: 12px;              /* 11 → 12（極小撤廃）*/
  color: var(--c-text-sub);     /* mute → sub（コントラスト UP）*/
  letter-spacing: .08em;
}
.menu-card-price-value {
  font-family: var(--f-en);
  font-size: clamp(26px, 3vw, 32px);  /* 22 → 26-32（価格を主役化）*/
  color: var(--c-accent-gold-dark);
  letter-spacing: .02em;
  font-style: italic;
  font-weight: 600;             /* 500 → 600 */
}

.menu-scroll-hint {
  text-align: center;
  margin-top: 16px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--c-text-mute);
  text-transform: uppercase;
  font-style: italic;
}
.menu-scroll-hint::before,
.menu-scroll-hint::after {
  content: " ← ";
  color: var(--c-accent-gold);
}
.menu-scroll-hint::after { content: " → "; }

.menu-note {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--c-text-mute);
  line-height: 1.85;
}

/* ============================================================
   BEFORE & AFTER ─ 1 件ずつ縦に大きく（雑誌風）
   ============================================================ */
.ba-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.ba-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: .06em;
}
.ba-head .section-title-em {
  color: var(--c-accent-pink-dark);
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 140px);
  max-width: var(--container);
  margin: 0 auto;
}
.ba-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .ba-item {
    grid-template-columns: 0.55fr 0.45fr;
    gap: 56px;
  }
  .ba-item:nth-child(even) {
    grid-template-columns: 0.45fr 0.55fr;
  }
  .ba-item:nth-child(even) .ba-visual-block {
    order: 2;
  }
  .ba-item:nth-child(even) .ba-body-block {
    order: 1;
  }
}

.ba-visual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
}
.ba-visual-half {
  aspect-ratio: 3 / 4;
  background: var(--c-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--c-text-mute);
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  border-radius: var(--r-sm);
}
.ba-visual-half:last-child {
  background: var(--c-bg-pink);
}
.ba-visual-half::after {
  content: "image";
  position: absolute;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: .2em;
  opacity: .5;
}
.ba-body-block {
  padding: 0 4px;
}
.ba-tag {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--c-accent-gold-dark);
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ba-title {
  font-family: var(--f-jp-h);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.55;
  margin-bottom: 20px;
}
.ba-story {
  font-size: 15px;              /* 14 → 15 */
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 20px;
}
.ba-meta {
  display: inline-block;
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: .08em;
  padding: 6px 14px;
  background: var(--c-bg-warm);
  border-radius: var(--r-pill);
}

.ba-disclaimer {
  margin: 80px auto 0;
  max-width: 700px;
  padding: 24px;
  background: var(--c-bg-warm);
  border-radius: var(--r-md);
  font-size: 11px;
  color: var(--c-text-mute);
  line-height: 1.85;
  text-align: center;
}

/* ============================================================
   DOCTOR ─ 縦長フルブリード + キャプション重ね
   ============================================================ */
.section-doctor {
  position: relative;
  padding: var(--space-section) 0;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .doctor-grid {
    grid-template-columns: 0.45fr 0.55fr;
    gap: 80px;
  }
}

.doctor-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.doctor-visual::before {
  content: "DIRECTOR";
  position: absolute;
  left: -16px;
  top: 24px;
  writing-mode: vertical-rl;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--c-accent-gold-dark);
  font-style: italic;
  z-index: 2;
}
.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-text-block {
  padding: 16px 0;
}
.doctor-text-eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-accent-pink-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 24px;
}
.doctor-name {
  font-family: var(--f-jp-h);
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.doctor-name-en {
  display: block;
  font-family: var(--f-en);
  font-size: clamp(13px, 1.6vw, 16px);
  color: var(--c-text-mute);
  font-style: italic;
  letter-spacing: .12em;
  margin-top: 6px;
}
.doctor-role {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 32px;
}
.doctor-message {
  font-size: 15px;              /* 14 → 15 */
  line-height: 1.95;            /* 2.1 → 1.95（読み進めやすく）*/
  color: var(--c-text);
  margin-bottom: 32px;
}
.doctor-message strong {
  background: linear-gradient(transparent 65%, var(--c-accent-pink) 65%);
  font-weight: 500;
}
.doctor-quote {
  padding: 24px 28px;
  background: #fff;
  border-left: 3px solid var(--c-accent-gold);
  font-family: var(--f-jp-h);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: .06em;
  margin-bottom: 32px;
  box-shadow: var(--c-shadow-soft);
}

.ph {
  background: var(--c-bg-warm);
  border: 1px dashed var(--c-line);
  padding: 20px;
  font-size: 12px;
  color: var(--c-text-mute);
  text-align: center;
  border-radius: var(--r-sm);
  line-height: 1.85;
}

/* ============================================================
   COMIC SLOT
   ============================================================ */
.comic-slot {
  background: linear-gradient(180deg, var(--c-bg-pink) 0%, var(--c-bg-warm) 100%);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.comic-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.comic-eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.comic-eyebrow::before,
.comic-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-accent-gold-dark);
}
.comic-title {
  font-family: var(--f-jp-h);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 32px;
  line-height: 1.55;
}
.comic-placeholder {
  border: 2px dashed var(--c-accent-gold);
  background: rgba(255, 255, 255, 0.6);
  padding: 80px 32px;
  border-radius: var(--r-md);
  color: var(--c-text-sub);
  font-size: 13px;
  line-height: 2;
}
.comic-placeholder strong {
  display: block;
  font-family: var(--f-jp-h);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

/* ============================================================
   SUPPORT ─ 2 列横並び（カードでなくフラット）
   ============================================================ */
.support-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.support-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--c-line);
  background: var(--c-base);
  align-items: start;
  transition: background .25s;
}
.support-item:hover {
  background: #fff;
}
@media (min-width: 768px) {
  .support-item + .support-item { margin-left: -1px; }
  .support-item:nth-child(n+3) { margin-top: -1px; }
}
.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 18px;
  color: var(--c-text);
  font-style: italic;
  font-weight: 500;
}
.support-text-title {
  font-family: var(--f-jp-h);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 8px;
  line-height: 1.5;
}
.support-text-body {
  font-size: 14px;              /* 13 → 14 */
  color: var(--c-text-sub);
  line-height: 1.95;
}

.support-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.support-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
}
.support-head .section-title-em { color: var(--c-accent-pink-dark); }

/* ============================================================
   FLOW ─ 左に番号大型・右にステップ詳細
   ============================================================ */
.flow-section {
  background: var(--c-bg-warm);
}
.flow-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.flow-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
}
.flow-head .section-title-em { color: var(--c-accent-pink-dark); }

.flow-list {
  max-width: 880px;
  margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
@media (min-width: 768px) {
  .flow-item {
    grid-template-columns: 120px 1fr;
    gap: 48px;
  }
}
.flow-item:last-child { border-bottom: none; }

.flow-num {
  font-family: var(--f-en);
  font-size: clamp(40px, 6vw, 60px);
  color: var(--c-accent-gold);
  letter-spacing: 0;
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}
.flow-content {
  padding-top: 8px;
}
.flow-title {
  font-family: var(--f-jp-h);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 12px;
  line-height: 1.55;
}
.flow-text {
  font-size: 15px;              /* 14 → 15 */
  color: var(--c-text-sub);
  line-height: 1.95;
}

/* ============================================================
   ACCESS ─ 全幅画像 + 左下にメタ情報
   ============================================================ */
.access-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.access-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
}
.access-head .section-title-em { color: var(--c-accent-pink-dark); }

.access-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto 48px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-warm);
}
.access-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.access-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(26, 23, 21, 0.55) 100%);
}
.access-cover-label {
  position: absolute;
  left: 32px;
  bottom: 32px;
  color: #fff;
  z-index: 2;
}
.access-cover-en {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 6px;
  opacity: 0.8;
}
.access-cover-jp {
  font-family: var(--f-jp-h);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 500;
  letter-spacing: .06em;
}

.access-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .access-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.access-block {
  padding: 0;
}
.access-label {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--c-accent-gold-dark);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
}
.access-value {
  font-family: var(--f-jp-h);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: .04em;
  color: var(--c-text);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.faq-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
}
.faq-head .section-title-em { color: var(--c-accent-pink-dark); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 16px;           /* 28px 0 → 24px 16px（水平領域を確保）*/
  min-height: 56px;             /* タップ領域 WCAG 適合 */
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--f-jp-h);
  font-size: 16px;              /* 15 → 16 */
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--c-text);
  line-height: 1.65;            /* 1.6 → 1.65 */
  transition: background .2s;
}
.faq-question:hover,
.faq-question:focus-visible {
  background: var(--c-line-soft);
}
@media (min-width: 768px) {
  .faq-question { font-size: 17px; }
}
.faq-q-mark {
  font-family: var(--f-en);
  font-size: 20px;
  color: var(--c-accent-pink-dark);
  font-style: italic;
  flex-shrink: 0;
  line-height: 1.2;
}
.faq-toggle {
  margin-left: auto;
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--c-text);
  left: 50%;
  top: 50%;
}
.faq-toggle::before {
  width: 12px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1px; height: 12px;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.faq-item.is-open .faq-toggle::after { opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  padding: 0 16px 0 56px;       /* 左右に余白追加 */
}
.faq-answer-text {
  padding-bottom: 28px;
  font-size: 14px;              /* 13 → 14 */
  color: var(--c-text-sub);
  line-height: 2;
}

/* ============================================================
   RESERVE
   ============================================================ */
.section-reserve {
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg-pink) 100%);
}
.reserve-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.reserve-head .section-title {
  font-size: clamp(26px, 4vw, 36px);
}
.reserve-head .section-title-em { color: var(--c-accent-pink-dark); }

.reserve-line {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--c-shadow-card);
  border: 2px solid var(--c-line-green);
}
.reserve-line-title {
  font-family: var(--f-jp-h);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.reserve-line-benefit {
  background: rgba(6, 199, 85, 0.06);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 2;
  text-align: left;
}
.reserve-line-benefit strong {
  color: var(--c-line-green);
  font-weight: 500;
}
.reserve-line .btn-line {
  width: 100%;
  font-size: 15px;
  padding: 20px 24px;
}
.reserve-line-promise {
  margin-top: 20px;
  font-size: 11px;
  color: var(--c-text-mute);
  line-height: 1.95;
}

.reserve-or {
  text-align: center;
  margin: 48px 0;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--c-text-mute);
  text-transform: uppercase;
  font-style: italic;
}

.reserve-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-soft);
}
.reserve-form-title {
  font-family: var(--f-jp-h);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: 28px;
}
.reserve-form-note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--c-text-mute);
  text-align: center;
  line-height: 1.95;
}

/* ============================================================
   SNS
   ============================================================ */
.sns-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.sns-head .section-title {
  font-size: clamp(22px, 3.4vw, 28px);
}
.sns-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.sns-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-family: var(--f-en);
  font-size: 14px;              /* 13 → 14 */
  letter-spacing: .14em;
  color: var(--c-text);
  background: #fff;
  font-style: italic;
  transition: border-color .2s, color .2s;
}
.sns-card:hover {
  border-color: var(--c-accent-gold);
  color: var(--c-accent-gold-dark);
  opacity: 1;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 100px;
}
@media (min-width: 768px) {
  .site-footer { padding: 100px 0 80px; }
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  font-family: var(--f-en);
  font-size: clamp(28px, 4vw, 40px);  /* 32px 固定 → 可変 */
  letter-spacing: .04em;
  color: var(--c-accent-pink);   /* gold #C9A87C はダーク背景でも AAA、視認性 ◎ */
  margin-bottom: 16px;
  font-weight: 400;
  font-style: italic;
}
.footer-tag {
  font-family: var(--f-jp-h);
  font-size: 14px;              /* 13 → 14 */
  color: rgba(255, 255, 255, 0.75);  /* 0.6 → 0.75（コントラスト UP）*/
  letter-spacing: .1em;
  margin-bottom: 40px;
}
.footer-sample {
  font-size: 13px;              /* 11 → 13（極小撤廃）*/
  color: rgba(255, 255, 255, 0.7); /* 0.55 → 0.7 */
  line-height: 2;
  margin-bottom: 28px;
}
.footer-sample strong {
  color: var(--c-accent-pink);
  font-weight: 600;
}
.footer-copy {
  font-size: 12px;              /* 10 → 12（極小撤廃）*/
  color: rgba(255, 255, 255, 0.65); /* 0.35 → 0.65（コントラスト UP）*/
  letter-spacing: .12em;
  font-family: var(--f-en);
  font-style: italic;
}

/* ============================================================
   Fixed CTA Bar
   ============================================================ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 40;
  height: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
}
.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  font-family: var(--f-jp-h);
  font-size: 14px;              /* 13 → 14 */
  font-weight: 700;             /* 500 → 700（視認性 UP）*/
  letter-spacing: .06em;
  transition: background .2s;
}
.fixed-cta-line {
  background: #02852E;          /* AA 適合 */
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.fixed-cta-line:hover {
  background: #017A28; opacity: 1;
}
.fixed-cta-form {
  background: var(--c-accent-gold-dark);  /* AAA 適合の濃色 */
  color: #fff;
}
.fixed-cta-form:hover {
  background: #5C4527; opacity: 1;
}
@media (min-width: 768px) {
  .fixed-cta { display: none; }
}
