/* ============================================================
   オヌ医院 美容皮膚科 LP / Design by soraha design
   コンセプト: 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: 88px;
}

/* ============================================================
   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: center;
  gap: 10px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: #FAF4EA;
  box-shadow: 0 2px 8px -2px rgba(60, 40, 25, 0.18);
}
@media (min-width: 768px) {
  .logo-mark { width: 42px; height: 42px; }
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}
.logo-name {
  font-family: var(--f-en);
  font-size: 18px;
  color: var(--c-text);
  letter-spacing: .14em;
  font-weight: 500;
  font-style: italic;
}
@media (min-width: 768px) {
  .logo-name { font-size: 20px; }
}
.logo-jp {
  font-family: var(--f-jp-h);
  font-size: 10px;
  color: var(--c-text-sub);
  letter-spacing: .08em;
  display: none;
}
@media (min-width: 768px) { .logo-jp { display: inline; font-size: 11px; } }

.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.94) 0%,
    rgba(253, 252, 250, 0.82) 30%,
    rgba(253, 252, 250, 0.55) 55%,
    rgba(253, 252, 250, 0.18) 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 top;
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-bg img {
    object-position: right center;
  }
}

.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;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  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;
}
/* FAQ内リンク（渡航ブログ・公式料金ページ）＝修正2-③ */
.faq-link { color: var(--c-accent-gold-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.faq-link strong { color: inherit; font-weight: 700; }

/* ============================================================
   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;
}
.sns-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sns-card-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.sns-card-text {
  font-family: var(--f-en);
  letter-spacing: .14em;
}

/* ============================================================
   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-logo-img {
  display: block;
  width: clamp(140px, 18vw, 180px);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 50%;
  /* 元画像が薄ベージュ背景なので、ダーク背景にうまく馴染ませる */
  background: #FAF4EA;
  padding: 16px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
}
.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 (Floating Card / luxury edition)
   ============================================================ */
.fixed-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  height: 64px;
  background: #FEFDFB;
  border: 0.5px solid rgba(139, 115, 85, 0.18);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 24px -8px rgba(43, 30, 18, 0.18),
    0 2px 8px -2px rgba(43, 30, 18, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  z-index: 40;
  overflow: hidden;
  backdrop-filter: saturate(120%);
  -webkit-backdrop-filter: saturate(120%);
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-family: var(--f-jp-h);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative;
}

/* ---- 左：LINE 相談（ゴーストボタン風）---- */
.fixed-cta-line {
  background: transparent;
  color: var(--c-text);
  flex-direction: row;
  padding: 0 8px;
  border-right: 0.5px solid rgba(139, 115, 85, 0.16);
}
.fixed-cta-line:hover {
  background: rgba(2, 133, 46, 0.04);
  opacity: 1;
}
.fixed-cta-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #02852E;
  color: #fff;
  flex-shrink: 0;
}
.fixed-cta-line-icon svg {
  width: 18px;
  height: 18px;
}
.fixed-cta-line-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.fixed-cta-line-en {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #02852E;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.fixed-cta-line-jp {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-text);
}

/* ---- 右：ご予約・お問合せ（プライマリ・ゴールド）---- */
.fixed-cta-form {
  background: linear-gradient(135deg, #8B7355 0%, #6B5235 100%);
  color: #FEFDFB;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 38px 0 16px;
  overflow: hidden;
}
.fixed-cta-form::before {
  /* 上端ゴールドハイライト線 */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
}
.fixed-cta-form::after {
  /* 微細な光沢 */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.fixed-cta-form:hover {
  background: linear-gradient(135deg, #9A8265 0%, #7A5E3F 100%);
  opacity: 1;
}
.fixed-cta-form-en {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
.fixed-cta-form-jp {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FEFDFB;
  white-space: nowrap;
  line-height: 1.2;
}
.fixed-cta-form-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #FEFDFB;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.fixed-cta-form-arrow svg {
  width: 12px;
  height: 12px;
}
.fixed-cta-form:hover .fixed-cta-form-arrow {
  transform: translateY(-50%) translateX(2px);
}

@media (min-width: 768px) {
  .fixed-cta { display: none; }
}

/* ============================================================
   v3 追加 ─ オヌ案件 初稿反映用（2026-05-20）
   ============================================================ */

/* ---- Hero 追加要素（日本語リード・バッジ）---- */
.hero-jp-lead {
  font-family: var(--f-jp-h);
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--c-text);
  margin: 0 0 14px;
  line-height: 1.55;
}
.hero-jp-lead-em {
  position: relative;
  color: var(--c-accent-pink-dark);
  display: inline-block;
  font-weight: 700;
}
.hero-jp-lead-em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--c-accent-pink-dark);
  opacity: .55;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badges li {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-base);
  padding: 6px 14px;
  border: 0.5px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-badges li { font-size: 12px; padding: 7px 16px; }
}

/* ---- Hero 直下 軽量 FAQ ---- */
.quick-faq-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--c-bg-warm);
  position: relative;
}
.quick-faq-head { text-align: center; margin-bottom: 48px; }
.quick-faq-title {
  font-family: var(--f-jp-h);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 12px 0 0;
  color: var(--c-text);
}
.quick-faq-title-em {
  color: var(--c-accent-pink-dark);
  border-bottom: 1px solid var(--c-accent-pink);
  padding-bottom: 2px;
}
.quick-faq-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .quick-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .quick-faq-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .quick-faq-grid li:nth-child(4),
  .quick-faq-grid li:nth-child(5) {
    grid-column: span 1;
  }
}
.quick-faq-card {
  background: var(--c-surface);
  border: 0.5px solid var(--c-line);
  padding: 24px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-soft);
}
.quick-faq-q {
  font-family: var(--f-jp-h);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-accent-pink-dark);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.quick-faq-a {
  font-size: 14px;
  color: var(--c-text-sub);
  margin: 0;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.quick-faq-cta { text-align: center; margin-top: 36px; }
.quick-faq-cta-link {
  font-family: var(--f-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--c-accent-pink-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--c-accent-pink);
  padding-bottom: 2px;
  transition: opacity .25s;
}
.quick-faq-cta-link:hover { opacity: .7; }

/* ---- 5 つの安心（既存 .assurance- 拡張）---- */
.assurance-list-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .assurance-list-5 {
    grid-template-columns: 1fr;
  }
}

/* ---- 空間セクション 画像版（grid 上書き）---- */
.ba-visual-block.ba-visual-block-img {
  display: block;
  grid-template-columns: none;
  gap: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 3 / 2;
  background: var(--c-bg-pink);
  box-shadow: var(--c-shadow-card);
}
.ba-visual-block.ba-visual-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}
.ba-visual-block.ba-visual-block-img:hover img {
  transform: scale(1.03);
}

/* ---- アクセス STEP 4 図解 ---- */
.access-lead {
  text-align: center;
  margin: -20px auto 40px;
  max-width: 640px;
}
.access-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .access-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
  }
}
.access-step {
  background: var(--c-surface);
  border: 0.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  box-shadow: var(--c-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access-step-num {
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-accent-pink-dark);
  font-weight: 600;
  text-transform: uppercase;
}
.access-step-title {
  font-family: var(--f-jp-h);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.04em;
  color: var(--c-text);
  line-height: 1.5;
}
.access-step-text {
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.access-step-arrow {
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  font-family: var(--f-en);
  font-size: 22px;
  color: var(--c-accent-pink-dark);
  font-weight: 600;
}
@media (min-width: 768px) {
  .access-step-arrow { display: flex; }
}

/* ---- 漫画スロット v3 ---- */
.comic-placeholder-vertical {
  background: var(--c-surface);
  border: 0.5px dashed var(--c-accent-pink);
  position: relative;
  padding: 56px 28px 36px;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--r-md);
  color: var(--c-text-sub);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.comic-placeholder-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-accent-pink-dark);
  padding: 4px 14px;
  border: 0.5px solid var(--c-accent-pink-dark);
  background: var(--c-bg-warm);
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
}
.comic-lead {
  text-align: center;
  margin: 8px auto 32px;
  max-width: 520px;
  color: var(--c-text-sub);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.comic-note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: 0.02em;
}

/* ---- 漫画コマ表示（6/15 以降 panel-01〜11.jpg 配置時に有効化） ---- */
.comic-panels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  margin: 32px auto 0;
}
.comic-panel {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: 0 2px 12px rgba(26, 23, 21, 0.04);
}
.comic-panel img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--c-surface);
}
@media (min-width: 768px) {
  .comic-panels {
    max-width: 560px;
    gap: 10px;
  }
}

/* ---- メニューカード参考価格表示 ---- */
.menu-card-genre {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--c-text-mute);
  margin: 4px 0 12px;
  text-transform: none;
  font-weight: 500;
}
.menu-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 0.5px solid var(--c-line);
}
.menu-card-price-note {
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: 0.02em;
}

/* ---- フッター 注釈 ---- */
.footer-disclaimer {
  margin: 28px auto 24px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  max-width: 720px;
  text-align: left;
}
.footer-disclaimer-title {
  font-family: var(--f-jp-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 10px;
}
.footer-disclaimer-body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---- スクショ専用：?fullshot=1 で Hero の 100vh 解除 ---- */
body.fullshot .hero {
  min-height: 0 !important;
  height: 800px;
}
body.fullshot .fixed-cta { display: none !important; }

/* ---- 院長写真 自動クロスフェード（2枚切替）---- */
.doctor-image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-card);
  background: var(--c-bg-warm);
}
.doctor-image-stack img.doctor-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor-image-stack img.doctor-image:nth-child(2) {
  animation-delay: -6s;
}
@keyframes doctorFade {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .doctor-image-stack img.doctor-image {
    animation: none;
  }
  .doctor-image-stack img.doctor-image:nth-child(2) {
    display: none;
  }
}


/* ============================================================
   v7: 空間セクション ─ 横カルーセル（左右ボタン・ドット・スワイプ対応）
   ============================================================ */
.space-section {
  padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
  background: var(--c-bg-warm);
  position: relative;
  overflow: hidden;
}

.space-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.space-head-lead {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 2;
  letter-spacing: 0.04em;
  margin: 24px auto 0;
  max-width: 560px;
}
@media (min-width: 768px) {
  .space-head-lead { font-size: 15px; }
}

/* ---- カルーセル本体 ---- */
.space-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
}
.space-carousel-viewport {
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px -40px rgba(60, 40, 25, 0.18);
  background: var(--c-surface);
}
.space-carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ---- スライド ---- */
.space-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .space-slide {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}
.space-slide-img {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--c-bg-pink);
}
@media (min-width: 768px) {
  .space-slide-img { aspect-ratio: auto; height: 100%; min-height: 460px; }
}
.space-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.space-slide-text {
  padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.space-slide-tag {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--c-accent-pink-dark);
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.space-slide-num {
  font-family: var(--f-num, var(--f-en));
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--c-accent-pink-dark);
  opacity: 0.55;
}
.space-slide-title {
  font-family: var(--f-jp-h);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0;
}
.space-slide-body {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 2;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (min-width: 768px) {
  .space-slide-body { font-size: 14.5px; }
}
.space-slide-meta {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-text-mute);
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 0.5px solid var(--c-line);
  align-self: flex-start;
}

/* ---- 左右ナビボタン ---- */
.space-carousel-arrow {
  position: absolute;
  /* スマホ時は画像の縦中央に来るよう調整（画像 aspect 3:2 → 高さ ≒ 66.67vw、その中央 ≒ 33vw）*/
  top: 33vw;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0.5px solid var(--c-line);
  color: var(--c-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -6px rgba(60, 40, 25, 0.25);
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
  backdrop-filter: blur(6px);
}
.space-carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.space-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.space-carousel-arrow-prev { left: 12px; }
.space-carousel-arrow-next { right: 12px; }
@media (min-width: 768px) {
  .space-carousel-arrow {
    top: 50%;
    width: 52px;
    height: 52px;
  }
  .space-carousel-arrow-prev { left: -22px; }
  .space-carousel-arrow-next { right: -22px; }
}

/* ---- ドット ---- */
.space-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: clamp(24px, 4vw, 36px) 0 0;
}
.space-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-line);
  padding: 0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.space-carousel-dot:hover { background: var(--c-wood); }
.space-carousel-dot.is-active {
  background: var(--c-accent-pink-dark);
  width: 22px;
  border-radius: 4px;
}

/* ---- カウンタ ---- */
.space-carousel-counter {
  text-align: center;
  margin: 12px 0 0;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-text-mute);
  text-transform: uppercase;
  font-style: italic;
}
.space-carousel-counter [data-current] { color: var(--c-accent-pink-dark); font-weight: 600; }

/* ---- 注意書き ---- */
.space-disclaimer {
  margin: clamp(40px, 6vw, 64px) auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--c-text-mute);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

/* ============================================================
   v6: 漫画コーナー ─ 前バージョンの構造を維持しつつ
       漫画家の少女漫画調（淡いピンク・サーモン・親しみ）に寄せた配色＆フォント
   ============================================================ */

/* セクション本体 ─ 淡いピンクオフホワイトで漫画の世界感に */
.comic-slot {
  background: linear-gradient(180deg, #FFF6F0 0%, #FBEFE6 100%);
  padding: clamp(100px, 14vw, 160px) 0 clamp(90px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
/* 上下の柔らかいフェード（前後LPとなじませる）*/
.comic-slot::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, transparent 100%);
  z-index: 1;
}
.comic-slot::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(0deg, var(--c-base) 0%, transparent 100%);
  z-index: 1;
}

.comic-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* eyebrow ─ サーモン系・既存の罫線維持 */
.comic-slot .comic-eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .35em;
  color: #C6826F;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.comic-slot .comic-eyebrow::before,
.comic-slot .comic-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #C6826F;
  display: block;
}

/* 大見出し ─ Klee One で「教科書体」的な親しみ手書き感 */
.comic-slot .comic-title {
  font-family: "Klee One", "Noto Serif JP", serif;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0 0 28px;
  line-height: 1.6;
  color: #5C2E1F;
}

/* リード ─ Zen Maru Gothic で丸み・優しさ */
.comic-slot .comic-lead {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #6B4538;
  line-height: 2.05;
  letter-spacing: 0.05em;
  margin: 0 auto 48px;
  max-width: 560px;
}
@media (min-width: 768px) {
  .comic-slot .comic-lead { font-size: 15.5px; }
}

/* プレースホルダー枠 ─ 漫画コマ的なやわらかい額装 */
.comic-placeholder {
  border: 2px dashed #E8A89D;
  background: rgba(255, 255, 255, 0.7);
  padding: 80px 32px;
  border-radius: 18px;
  color: #7A5547;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.comic-placeholder strong {
  display: block;
  font-family: "Klee One", "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 600;
  color: #5C2E1F;
  margin-bottom: 16px;
  letter-spacing: .04em;
}

/* 縦長プレースホルダー（9:16）─ スマホ漫画のあらすじ予告枠 */
.comic-placeholder-vertical {
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed #E8A89D;
  position: relative;
  padding: 60px 28px 40px;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 18px;
  color: #7A5547;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.03em;
  box-shadow: 0 18px 50px -20px rgba(184, 80, 60, 0.18);
}
.comic-placeholder-vertical strong {
  font-family: "Klee One", "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #5C2E1F;
  letter-spacing: .04em;
  margin: 0;
  text-align: center;
}

/* Coming Soon バッジ ─ サーモンピンク */
.comic-placeholder-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  background: #E8856E;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic;
  box-shadow: 0 4px 12px -2px rgba(232, 133, 110, 0.4);
}

/* 注釈 */
.comic-slot .comic-note {
  margin: 32px 0 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  color: #A88374;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ============================================================
   v8: 新セクション追加 ─ 選ばれる理由 / 気になる部位 / 料金の目安
   ============================================================ */

/* ---- 選ばれる理由（5項目）---- */
.reasons-section {
  background: var(--c-bg-warm);
}
.reasons-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.reasons-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
  }
}
.reasons-card {
  background: var(--c-surface);
  border: 0.5px solid var(--c-line);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reasons-card-num {
  font-family: var(--f-en);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--c-accent-pink-dark);
  letter-spacing: 0.08em;
}
.reasons-card-title {
  font-family: var(--f-jp-h);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--c-text);
}
.reasons-card-text {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--c-text-sub);
  margin: 0;
  letter-spacing: 0.03em;
}

/* 韓国政府認定バナー（修正2-①） */
.reasons-cert {
  max-width: 880px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  background: var(--c-surface);
  border: 1px solid var(--c-accent-gold);
  border-radius: var(--r-md);
  box-shadow: var(--c-shadow-soft);
  padding: clamp(24px, 3.2vw, 34px) clamp(22px, 3vw, 40px);
  text-align: center;
}
.reasons-cert-badge {
  display: inline-block;
  font-family: var(--f-jp-h);
  font-size: clamp(13.5px, 2.4vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-accent-gold-dark);
  background: var(--c-bg-warm);
  border-radius: 999px;
  padding: 8px 22px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.reasons-cert-text {
  font-size: 13.5px;
  line-height: 2;
  color: var(--c-text-sub);
  max-width: 34em;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.03em;
}
/* 認定証：額装（マット＋金枠＋影） */
.reasons-cert-figure {
  margin: 0 auto;
  max-width: 348px;
  padding: 13px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF4 100%);
  border: 1px solid var(--c-accent-gold);
  border-radius: 10px;
  box-shadow: 0 16px 38px -16px rgba(60, 40, 25, 0.30), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.reasons-cert-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--c-line);
  border-radius: 3px;
}
/* 認定バッジの✓シール */
.reasons-cert-check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--c-accent-gold-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
  transform: translateY(-1px);
}
/* 細い金の区切り飾り */
.reasons-cert-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 220px;
  margin: 22px auto 18px;
}
.reasons-cert-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent-gold));
}
.reasons-cert-divider span:last-child {
  background: linear-gradient(90deg, var(--c-accent-gold), transparent);
}
.reasons-cert-divider i {
  width: 6px;
  height: 6px;
  background: var(--c-accent-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
/* 証明書キャプション＋登録情報（検証可能な具体情報＝信頼性） */
.reasons-cert-caption {
  margin: 12px 0 0;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--c-text-mute);
  letter-spacing: 0.02em;
}
.reasons-cert-meta {
  display: inline-block;
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--c-accent-gold-dark);
}

/* ---- 気になる部位（6カテゴリ）---- */
.concerns-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.concerns-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .concerns-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.concerns-card {
  background: var(--c-surface);
  border: 0.5px solid var(--c-line);
  padding: 0 0 28px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--c-shadow-soft);
}
.concerns-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--c-bg-pink) 0%, var(--c-bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.concerns-card-img[data-placeholder]::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--c-wood);
  border-radius: 4px;
  opacity: 0.4;
}
.ph-label {
  font-family: var(--f-jp-h);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-wood);
  text-align: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.concerns-card-title {
  font-family: var(--f-jp-h);
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 24px 24px 18px;
  color: var(--c-text);
}
.concerns-card-label,
.concerns-card-effect-label {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent-pink-dark);
  margin: 14px 24px 6px;
  font-weight: 500;
}
.concerns-card-list {
  list-style: none;
  padding: 0;
  margin: 0 24px 12px;
}
.concerns-card-list li {
  font-size: 13.5px;
  color: var(--c-text);
  letter-spacing: 0.04em;
  padding: 5px 0;
  border-bottom: 0.5px solid var(--c-line-soft);
  position: relative;
  padding-left: 18px;
}
.concerns-card-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--c-accent-pink-dark);
  font-size: 9px;
  top: 8px;
  opacity: 0.6;
}
.concerns-card-list li:last-child { border-bottom: none; }
.concerns-card-effect {
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-text-sub);
  margin: 0 24px;
  letter-spacing: 0.03em;
}

/* ---- 料金の目安（5機器）---- */
.price-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.price-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.price-card {
  background: var(--c-surface);
  border: 0.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 0;
  text-align: left;
  box-shadow: var(--c-shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s cubic-bezier(.16,1,.3,1);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(120, 80, 80, 0.18);
}

/* カードトップの細いアクセントライン */
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent-pink) 0%, var(--c-accent-pink-dark) 100%);
  z-index: 2;
}

.price-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-bg-warm) 0%, var(--c-bg-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.price-card-img[data-placeholder]::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--c-wood);
  border-radius: 4px;
  opacity: 0.35;
}
/* 実写画像が入る場合のスタイル */
.price-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.price-card:hover .price-card-img img {
  transform: scale(1.05);
}

/* Coming Soon バッジ */
.price-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-accent-pink-dark);
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

/* カード本体（テキストエリア） */
.price-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-card-num {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--c-accent-pink-dark);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.price-card-name {
  font-family: var(--f-jp-h);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: var(--c-text);
  line-height: 1.35;
}

.price-card-cat {
  font-family: var(--f-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}

.price-card-desc {
  font-family: var(--f-jp);
  font-size: 13.5px;
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0 0 24px;
  flex: 1;
}

.price-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.price-card-label {
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-text-sub);
  text-transform: uppercase;
}
.price-card-value {
  font-family: var(--f-en);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--c-accent-pink-dark);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1;
}
.price-card-value span {
  font-size: 0.55em;
  margin-left: 3px;
  color: var(--c-text-sub);
}
.price-card-value-soon {
  font-size: 16px !important;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--c-text-sub) !important;
}

/* お悩み別カード ─ クライアント要望で画像非表示・テキストのみ */
.concerns-card-img { display: none !important; }
.concerns-card {
  padding-top: 28px;
}

/* フッター SNS リンク */
.footer-sns {
  list-style: none;
  padding: 0;
  margin: 28px 0 16px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-sns a:hover {
  background: rgba(255,255,255,0.18);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.footer-sns svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-sns-text {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: currentColor;
}

/* Coming Soon カード全体を少し控えめに */
.price-card-coming {
  opacity: 0.92;
}
.price-card-coming::after {
  background: linear-gradient(90deg, var(--c-text-sub) 0%, var(--c-accent-pink-dark) 100%);
  opacity: 0.6;
}

/* ---- 院長略歴 リスト ---- */
.doctor-credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .doctor-credentials {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
}
.doctor-credentials li {
  font-size: 13.5px;
  color: var(--c-text-sub);
  line-height: 1.85;
  letter-spacing: 0.04em;
  padding-left: 18px;
  position: relative;
}
.doctor-credentials li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--c-accent-pink-dark);
  font-weight: 700;
}

/* ============================================================
   TOP：Onu:ism™ 黒背景トップ（旧ヒーロー統合・2026-05-31 改修）
   ============================================================ */
.section-onuism-top {
  padding-top: calc(var(--header-h) + 56px);
}
@media (min-width: 768px) {
  .section-onuism-top {
    padding-top: calc(var(--header-h-pc) + 76px);
    padding-bottom: clamp(80px, 12vw, 150px);
  }
}
.onuism-top-lead {
  font-family: var(--f-jp-h);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}
.onuism-top-lead-em {
  color: var(--c-accent-gold);
  font-weight: 700;
}
.onuism-top-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.onuism-top-actions .btn-line {
  min-width: 280px;
}
.onuism-top-badges {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.onuism-top-badges li {
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 18px;
}

/* ============================================================
   ACCESS：公共交通 多経路ガイド（2026-05-31 改善・公式踏襲＋日本語最適化）
   ============================================================ */
.transit-note {
  text-align: left;
  font-size: 13px;
  color: var(--c-text-sub);
  max-width: 660px;
  margin: 0 auto 38px;
  line-height: 1.9;
}
.transit-note strong { color: var(--c-accent-gold-dark); font-weight: 700; }
.transit-groups {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.transit-group > h3 {
  font-family: var(--f-jp-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--c-line);
  letter-spacing: .04em;
}
.transit-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.transit-card:last-child { margin-bottom: 0; }
.transit-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}
.transit-card-name { font-family: var(--f-jp-h); font-size: 15px; font-weight: 700; color: var(--c-text); line-height: 1.4; }
.transit-time {
  flex-shrink: 0;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--c-accent-gold-dark);
  background: var(--c-bg-warm, #f6f1e7);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.tr-route { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 11px; }
.tr-stop {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--c-text);
  background: var(--c-bg, #faf8f4); border: 1px solid var(--c-line);
  border-radius: 999px; padding: 3px 12px 3px 3px;
}
.tr-stop.is-dest { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.tr-line {
  display: inline-grid; place-items: center;
  width: 21px; height: 21px; border-radius: 50%;
  color: #fff; font-size: 12px; font-weight: 700; font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif; flex-shrink: 0; line-height: 1;
}
.tr-line.l1 { background: #0052A4; }
.tr-line.l2 { background: #009D3E; }
.tr-line.l3 { background: #EF7C1C; }
.tr-line.l4 { background: #00A5DE; }
.tr-line.l9 { background: #A07E3C; }
.tr-line.lD { background: #D4003B; }
.tr-line.lA { background: #4F8FCB; }
.tr-arrow { color: var(--c-text-mute); font-size: 11px; }
.transit-card-desc { font-size: 12.5px; line-height: 1.7; color: var(--c-text-sub); margin: 0; }
.transit-card-tip {
  margin: 11px 0 0; font-size: 12px; line-height: 1.75;
  color: var(--c-accent-gold-dark);
  background: var(--c-bg-warm, #f6f1e7);
  border-radius: 9px; padding: 11px 13px;
}
.transit-walk { margin: 40px 0; background: var(--c-bg-warm, #f6f1e7); border-radius: 16px; padding: 26px 28px; }
.transit-walk > h3 { font-family: var(--f-jp-h); font-size: 18px; font-weight: 700; color: var(--c-text); margin: 0 0 16px; }
.transit-walk-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.transit-walk-route { background: #fff; border: 1px solid var(--c-line); border-radius: 11px; padding: 15px 17px; }
.transit-walk-route .exit { display: inline-block; font-family: var(--f-en); font-size: 12px; font-weight: 700; color: #fff; background: var(--c-accent-gold-dark); border-radius: 7px; padding: 3px 11px; margin-bottom: 9px; }
.transit-walk-route p { font-size: 13px; line-height: 1.75; color: var(--c-text-sub); margin: 0; }
.transit-walk-note { font-size: 12.5px; color: var(--c-text-sub); line-height: 1.75; margin: 0; }
@media (max-width: 900px) {
  .transit-groups { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .transit-walk-routes { grid-template-columns: 1fr; }
  .transit-walk { padding: 22px; }
}

/* サブ見出し（空港の詳しい道順／その他の出発地） */
.transit-subhead {
  font-family: var(--f-jp-h);
  font-size: 17px; font-weight: 700; color: var(--c-text);
  margin: 0 0 20px; padding-left: 14px;
  border-left: 3px solid var(--c-accent-gold-dark);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.transit-subhead span {
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 12px; font-weight: 600; color: var(--c-accent-gold-dark); letter-spacing: .04em;
}
.transit-others { margin-top: 46px; }
.transit-others-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

/* 仁川空港：おすすめ交通手段（リムジンバス／タクシー）＝修正2-② */
.airport-rec { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; align-items: start; margin: 6px 0 34px; }
@media (max-width: 720px) { .airport-rec { grid-template-columns: 1fr; gap: 22px; } }
.airport-rec-card { position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: 22px 20px 20px; }
.airport-rec-card.is-recommend { border-color: var(--c-accent-gold); box-shadow: var(--c-shadow-soft); }
.airport-rec-badge { position: absolute; top: -12px; left: 20px; font-family: var(--f-jp-h); font-size: 11.5px; font-weight: 700; color: #fff; background: var(--c-accent-gold-dark); border-radius: 999px; padding: 4px 14px; letter-spacing: .04em; }
.airport-rec-top { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.airport-rec-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.airport-rec-title { font-family: var(--f-jp-h); font-size: 16px; font-weight: 700; color: var(--c-text); margin: 0 0 3px; line-height: 1.4; }
.airport-rec-lead { font-size: 12.5px; color: var(--c-text-sub); margin: 0; line-height: 1.6; }
.airport-rec-meta { list-style: none; padding: 0; margin: 0 0 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; }
.airport-rec-meta li { display: flex; flex-direction: column; gap: 2px; }
.airport-rec-meta li span { font-size: 11px; color: var(--c-text-mute); letter-spacing: .04em; }
.airport-rec-meta li strong { font-size: 14px; color: var(--c-text); font-weight: 700; line-height: 1.4; }
.airport-rec-desc { font-size: 12.5px; line-height: 1.8; color: var(--c-text-sub); margin: 0; padding-top: 13px; border-top: 1px solid var(--c-line-soft); }

/* 地図（Googleマップ埋め込み＋ボタン） */
.transit-map { margin-top: 20px; border-radius: 12px; overflow: hidden; border: 1px solid var(--c-line); background: #fff; }
.transit-map iframe { width: 100%; height: 340px; border: 0; display: block; }
.transit-map-actions { margin-top: 14px; display: flex; gap: 12px 16px; flex-wrap: wrap; align-items: center; }
.transit-map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  padding: 12px 24px; border-radius: 999px;
  background: var(--c-dark); color: #fff;
}
.transit-map-btn:hover { opacity: .88; }
.transit-map-note { font-size: 11.5px; color: var(--c-text-mute); line-height: 1.6; }
@media (max-width: 720px) {
  .transit-others-grid { grid-template-columns: 1fr; }
  .transit-map iframe { height: 260px; }
}

/* ============ 公式予約限定特典バー（ヒーロー直下・控えめ上質）============ */
.offer-bar { background: var(--c-bg-warm); padding: 48px 20px; }
.offer-bar-inner { max-width: 860px; margin-inline: auto; text-align: center; background: var(--c-dark); border: 1px solid var(--c-accent-gold); border-radius: 16px; padding: 42px 32px; box-shadow: var(--c-shadow-card), inset 0 0 0 6px var(--c-dark), inset 0 0 0 7px rgba(184, 144, 96, .55); position: relative; overflow: hidden; }
.offer-bar-inner > * { position: relative; z-index: 1; }
.offer-bar-inner::after { content: ""; position: absolute; top: 0; left: -65%; width: 48%; height: 100%; z-index: 0; background: linear-gradient(105deg, transparent, rgba(230, 218, 191, .26), transparent); transform: skewX(-18deg); animation: offerShine 6.5s ease-in-out infinite; pointer-events: none; }
@keyframes offerShine { 0%, 58% { left: -65%; } 80%, 100% { left: 135%; } }
@media (prefers-reduced-motion: reduce) { .offer-bar-inner::after { display: none; } }
.offer-bar-title { font-size: 16px; letter-spacing: .12em; color: var(--c-accent-gold); font-weight: 700; margin: 0 0 22px; position: relative; padding-bottom: 16px; }
.offer-bar-title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 46px; height: 1px; background: var(--c-accent-gold); }
.offer-bar-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; align-items: flex-start; max-width: 560px; margin-inline: auto; }
.offer-bar-list li { font-size: 14.5px; color: #E7D9C5; position: relative; padding-left: 1.9em; line-height: 1.7; text-align: left; }
.offer-bar-list li::before { content: "\2713"; position: absolute; left: 0; top: .05em; color: var(--c-accent-gold); font-weight: 700; font-size: 1.1em; }
@media (min-width: 768px) { .offer-bar-title { font-size: 18px; } }

/* ============ Special Coupon（下部・チケット風）============ */
.section-coupon { background: var(--c-bg-warm); }
.coupon-card {
  max-width: 540px; margin-inline: auto; background: var(--c-dark); color: #F3E9DA;
  border-radius: 16px; padding: 46px 32px; text-align: center; position: relative;
  box-shadow: var(--c-shadow-card), inset 0 0 0 6px var(--c-dark), inset 0 0 0 7px rgba(184, 144, 96, .55);
  border: 1px solid var(--c-accent-gold);
}
.coupon-card::before, .coupon-card::after {
  content: ""; position: absolute; top: 50%; width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-bg-warm); transform: translateY(-50%);
}
.coupon-card::before { left: -14px; }
.coupon-card::after { right: -14px; }
.coupon-eyebrow { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--c-accent-gold); margin: 0 0 8px; }
.coupon-title { font-size: 21px; letter-spacing: .06em; color: #F3E9DA; margin: 0 0 6px; font-weight: 600; }
.coupon-desc { font-size: 13px; color: #C9B49A; margin: 0 0 24px; }
.coupon-rate { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 6px 0 18px; line-height: 1; }
.coupon-rate-num { font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif; font-size: 76px; font-weight: 700; color: #EAD199; letter-spacing: .005em; line-height: 1; text-shadow: 0 1px 1px rgba(0,0,0,.5), 0 0 16px rgba(214,170,92,.22); }
.coupon-rate-unit { font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif; font-size: 27px; font-weight: 700; color: #EAD199; letter-spacing: .02em; text-shadow: 0 1px 1px rgba(0,0,0,.5); }
.coupon-code-box { border: 1px dashed var(--c-accent-gold); border-radius: 10px; padding: 16px 12px; margin-bottom: 20px; }
.coupon-code-label { display: block; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: #B89060; margin-bottom: 8px; }
.coupon-code { font-size: 27px; letter-spacing: .22em; font-weight: 700; color: #F3E9DA; }
.coupon-benefit { font-size: 15px; color: #E7D9C5; margin: 0; }
.coupon-benefit strong { color: var(--c-accent-gold); font-size: 20px; margin: 0 .15em; }
.coupon-note { font-size: 11.5px; color: #A8896A; margin: 16px 0 0; line-height: 1.6; }

/* SP専用改行 */
.br-sp{display:none;}
@media(max-width:720px){.br-sp{display:inline;}}


/* ===== Onuism 漫画セクション 公開後 微調整（2026-06-09 / soraha）===== */
.comic-panels { max-width: 100%; margin-top: 16px; }
@media (min-width: 768px) { .comic-panels { max-width: 560px; } }
.comic-panel { box-shadow: 0 14px 40px -18px rgba(184, 80, 60, 0.18); }
.comic-break { display:flex; align-items:center; gap:14px; max-width:480px; margin:6px auto; font-family:var(--f-en); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase; color:#C6826F; }
.comic-break > span { flex:0 0 auto; }
.comic-break::before, .comic-break::after { content:""; flex:1 1 auto; height:1px; background:linear-gradient(90deg, transparent, rgba(198,130,111,.45), transparent); }
.comic-slot .comic-cta { text-align:center; margin-top:clamp(32px,6vw,48px); }
.comic-slot .comic-cta-text { font-family:"Klee One","Noto Serif JP",serif; font-size:clamp(16px,3.4vw,19px); font-weight:600; color:#5C2E1F; letter-spacing:.06em; line-height:1.85; margin:0 0 22px; }

/* 選ばれる理由 見出しサイズ（他セクションと統一・2026-06-09 soraha）*/
.reasons-head .section-title { font-size: clamp(26px, 4vw, 36px); }

/* ============================================================
   お問い合わせフォーム（2026-06-11 ⑮）
   ============================================================ */
.contact-form { text-align: left; max-width: 560px; margin: 0 auto; }
.form-row { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--c-text); margin-bottom: 6px; }
.form-req { display: inline-block; margin-left: 8px; padding: 1px 8px; font-size: 10px; font-weight: 600; color: #fff; background: var(--c-accent-pink-dark, #b9574a); border-radius: 999px; vertical-align: 1px; }
.form-input { width: 100%; padding: 12px 14px; font: inherit; font-size: 14px; color: var(--c-text); background: #fff; border: 1px solid rgba(26, 23, 21, .18); border-radius: 8px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-input:focus { outline: none; border-color: var(--c-wood, #C9A87C); box-shadow: 0 0 0 3px rgba(201, 168, 124, .18); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { display: block; width: 100%; margin-top: 20px; padding: 14px 18px; font: inherit; font-size: 15px; font-weight: 700; letter-spacing: .08em; color: #fff; background: var(--c-text, #1A1715); border: none; border-radius: 999px; cursor: not-allowed; opacity: .55; }
.form-demo-note { margin-top: 10px; font-size: 11px; color: var(--c-text-mute, #8a817b); text-align: center; }

/* ============================================================
   Thanks page (お問い合わせ完了) — LP世界観に統一（2026-06-16）
   ============================================================ */
.thanks-page { background: var(--c-bg-warm); padding: 0; margin: 0; }
.thanks-main {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px; box-sizing: border-box;
}
.thanks-card {
  background: var(--c-surface);
  width: 100%; max-width: 560px;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 52px);
  border-radius: 18px;
  border-top: 3px solid var(--c-accent-gold);
  box-shadow: var(--c-shadow-card);
}
.thanks-card::before {
  content: "✓";
  display: block;
  width: 62px; height: 62px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent-gold), var(--c-accent-gold-dark));
  color: #fff; font-size: 30px; line-height: 62px;
  box-shadow: 0 6px 18px rgba(184,144,96,.32);
}
.thanks-eyebrow {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 20px; letter-spacing: .04em;
  color: var(--c-accent-gold-dark); margin: 0 0 8px;
}
.thanks-title {
  font-family: "Noto Serif JP", serif; font-weight: 600;
  font-size: clamp(20px, 4.4vw, 26px); line-height: 1.6;
  color: var(--c-text); margin: 0 0 22px;
}
.thanks-lead {
  font-size: 15px; line-height: 2; color: var(--c-text-sub); margin: 0 0 24px;
}
.thanks-note {
  font-size: 12.5px; line-height: 1.95; color: var(--c-text-mute);
  background: var(--c-bg-warm); border-radius: 10px;
  padding: 16px 18px; margin: 0 0 32px;
}
.thanks-note a { color: var(--c-accent-gold-dark); text-decoration: underline; }
.thanks-actions { margin: 0; }
.thanks-actions .btn,
.thanks-actions .btn-line {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 220px;
  background: var(--c-dark); color: #F3E9DA; border: none;
  box-shadow: 0 6px 18px rgba(60,40,25,.18);
}
.thanks-actions .btn-line:hover { background: #2a1f17; opacity: 1; }
@media (max-width: 480px) {
  .thanks-actions .btn, .thanks-actions .btn-line { width: 100%; }
}

/* ============================================================
   フッターの法的リンク（特商法 / プライバシーポリシー）
   ※ legal.css にも同ブロックを複製（法的ページ単体表示用）
   ============================================================ */
.footer-legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  margin: 4px 0 26px;
}
.footer-legal-links li { position: relative; }
.footer-legal-links a {
  font-family: var(--f-jp);
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color .2s, opacity .2s;
}
.footer-legal-links a:hover { color: #fff; }
.footer-legal-links a[aria-current="page"] { color: var(--c-accent-pink); }
@media (min-width: 600px) {
  .footer-legal-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.22);
  }
}
