/* ============================================================
   tatsuya.css — TATSUYA目黒整体院 案件専用スタイル
   v2: コーラルパレット + Zen Maru Gothic + 2カラムヒーロー
   ============================================================ */

/* ----------------------------------------------------------
   1. カラー・フォント変数上書き
   ---------------------------------------------------------- */
:root {
  --color-bg:        #FDFAF6;
  --color-bg-alt:    #FFF5EE;
  --color-primary:   #FF6B5B;
  --color-primary-dk:#E8564A;
  --color-accent:    #FF6B5B;
  --color-accent-dk: #E8564A;
  --color-border:    #EDE9E3;
  --color-text:      #1E1C1A;
  --color-text-sub:  #3D3A36;
  --radius-card:     16px;
  --radius-btn:      999px;

  --coral:       #FF6B5B;
  --coral-mid:   #FF8575;
  --coral-light: #FFD4CE;
  --coral-pale:  #FFF0ED;
  --mint:        #3DBB8A;
  --mint-pale:   #EDFBF4;
  --mint-bg:     #F0FAF5;
  --sky:         #4BA3D4;
  --sky-pale:    #E8F4FC;
  --sun:         #FFB830;
  --sun-pale:    #FFF6DC;
  --ink:         #1E1C1A;
  --ink-mid:     #3D3A36;
  --ink-light:   #7A7570;
  --border:      #EDE9E3;
  --border-mid:  #D9D3CC;

  /* heading font */
  --font-serif: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

/* ribbon(36px) + header(64/72px) 合計分のスクロールオフセット */
html { scroll-padding-top: 104px; }
@media (min-width: 768px) { html { scroll-padding-top: 112px; } }

/* ----------------------------------------------------------
   2. ユーティリティ
   ---------------------------------------------------------- */
.section__desc {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
  margin-top: 8px;
  line-height: 1.7;
}

.section__title { font-family: var(--font-serif); }

/* セクション見出しを左揃えに */
.section__head { text-align: left; }

/* eyebrow ラベル（"PAIN POINT" / "WHY TATSUYA" 等） */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--coral);
  text-transform: uppercase;
}
.section__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section__eyebrow--mint { color: var(--mint); }

.access__hours--multiline { white-space: pre-line; }

/* ----------------------------------------------------------
   3. Header — ribbon の下に配置
   ---------------------------------------------------------- */
#header {
  top: 36px;
  z-index: 150;
}
.header__logo { font-family: var(--font-serif); }
.header__logo-name { font-size: clamp(0.8rem, 3.5vw, 1.05rem); white-space: nowrap; }
@media (max-width: 767px) { .header__logo-catch { display: none !important; } }

/* ----------------------------------------------------------
   4. Ribbon bar — 固定コーラル帯（3件 × 2トラック）
   ---------------------------------------------------------- */

/*
  【アニメーション設計メモ】
  - 各トラックに min-width:100% を与え、常にビューポート全幅を占有させる
  - delay なし（同位相）で両トラックを動かすと、常に [0,W] + [W,2W] で
    隣接かつ重なりゼロが保証される（W = ビューポート幅）
  - delay:−T/2 を使うと translateX(−50%) から始まるため両トラックが
    重なる時間帯が生じ、文字が衝突して見える →今回の不具合の原因
*/
.ribbon-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  height: 34px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ribbon-bar__track {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;     /* 常にビューポート全幅以上を確保 */
  flex-shrink: 0;
  height: 34px;
  animation: ribbon-scroll 20s linear infinite;
  /* delay なし → 2トラックが同位相で動き、常に隣接 */
}
/* clone は delay を持たない：同位相で追随 */
.ribbon-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.ribbon-bar__item::before {
  content: "◆";
  margin-right: 0.65em;
  opacity: 0.28;
  font-size: 0.35rem;
}
@keyframes ribbon-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ----------------------------------------------------------
   5. Hero — ライト背景 + 2カラム
   ---------------------------------------------------------- */
#hero {
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
  /* ribbon(36) + header(64) */
  margin-top: calc(var(--header-height) + 36px);
  min-height: auto;
  align-items: flex-start;
}
@media (min-width: 768px) {
  #hero {
    margin-top: calc(var(--header-height-pc) + 36px);
    min-height: 580px;
    align-items: center;
  }
}

/* 実写真が入るまで背景オーバーレイを非表示 */
.hero__bg { opacity: 0; }

/* 装飾ブロブ */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--coral {
  top: -100px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,107,91,0.16) 0%, transparent 70%);
}
.hero__blob--mint {
  bottom: 0; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(61,187,138,0.12) 0%, transparent 70%);
}

/* inner: 2カラム */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 48px 0 64px;
}
@media (min-width: 768px) { .hero__inner { gap: 48px; } }
@media (max-width: 767px) {
  .hero__inner {
    flex-direction: column;
    padding: 32px 0 48px;
  }
}

/* 本文カラム — base の white を上書き */
.hero__body {
  color: var(--ink) !important;
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: none;
}

/* 信頼バッジ行（カラーピル） */
.hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  white-space: nowrap;
}
.hero__badge--coral { background: var(--coral); }
.hero__badge--mint  { background: var(--mint); }
.hero__badge--sky   { background: var(--sky); }

/* キャッチコピー */
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

/* サブコピー */
.hero__subcopy {
  font-size: clamp(0.875rem, 1.7vw, 1rem);
  line-height: 2;
  color: var(--ink-mid);
  opacity: 1 !important;
  margin: 0;
}

/* クーポンカード */
.hero__coupon {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--sun-pale);
  border: 2px solid var(--sun);
  border-radius: 20px;
  padding: 16px 22px;
  max-width: 360px;
  box-shadow: rgba(255,184,48,0.2) 0 4px 20px;
}
.hero__coupon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero__coupon-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #996600;
  margin-bottom: 3px;
}
.hero__coupon-price {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
.hero__coupon-amount { color: #CC7700; }
.hero__coupon-strike {
  font-size: 12px;
  color: var(--ink-light);
  text-decoration: line-through;
  margin-top: 2px;
}

/* CTA ボタン行 */
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
}
/* 320px 以下でボタンを縦並びに */
@media (max-width: 359px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
.hero__btn-reserve {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: #fff !important;
  border-radius: 999px !important;
  box-shadow: rgba(255,107,91,0.3) 0 4px 16px;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 18px 40px !important;
}
/* 「施術を見る」アウトラインボタン */
.hero__btn-view {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: 0.2s;
  text-decoration: none;
}
.hero__btn-view:hover { background: var(--coral-pale); }
/* ヒーロー内の電話ボタンは非表示 */
.hero__btn-tel,
.hero__btn-tel--ghost { display: none !important; }

.hero__cta-note {
  font-size: 12px;
  color: var(--ink-light);
  margin: -8px 0 0;
}

/* 右カラム: 写真
   HTMLでは hero__body より前に記述（SP: flex-column で画像が上に来る）
   PC: order:2 で右カラムに戻す */
.hero__photo-col { display: block; }
@media (min-width: 768px) {
  .hero__photo-col {
    flex: 0 0 clamp(240px, 34%, 400px);
    order: 2; /* PC では右カラムに戻す */
  }
  .hero__body { order: 1; }
}

/* ラッパー: 装飾円 + 写真エリアを重ねる */
.hero__photo-wrap {
  position: relative;
  width: 100%;
}

/* 装飾円群（背後レイヤー） */
.hero__photo-deco {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 0;
}
.hero__photo-circle {
  position: absolute;
  border-radius: 50%;
}
/* 大 — 右上：コーラル淡 */
.hero__photo-circle--a {
  width: 220px; height: 220px;
  top: -30px; right: -40px;
  background: radial-gradient(circle, rgba(255,107,91,0.18) 0%, transparent 70%);
}
/* 中 — 左下：ミント淡 */
.hero__photo-circle--b {
  width: 140px; height: 140px;
  bottom: -10px; left: -20px;
  background: radial-gradient(circle, rgba(61,187,138,0.20) 0%, transparent 70%);
}
/* 小ソリッド — 右下アクセント */
.hero__photo-circle--c {
  width: 48px; height: 48px;
  bottom: 40px; right: -12px;
  background: rgba(255,184,48,0.30);
  mix-blend-mode: multiply;
}

/* 写真エリア本体 */
.hero__photo-ph {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px 12px 28px 12px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #FFE8E4 0%, #FFF0EB 50%, #F0FAF5 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  border: 1.5px solid rgba(255,107,91,0.15);
  box-shadow:
    0 8px 32px rgba(255,107,91,0.10),
    0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
/* 内部の淡い円モチーフ */
.hero__photo-ph::before {
  content: "";
  position: absolute;
  top: 12%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 0;
  padding-bottom: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,91,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__photo-ph-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* 旧 trust アイテム行は非表示 */
.hero__trust { display: none; }

/* 実写真（hero.jpg に差し替え後） */
.hero__photo-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px 12px 28px 12px;
  box-shadow:
    0 8px 32px rgba(255,107,91,0.10),
    0 2px 8px rgba(0,0,0,0.06);
}
/* SP: 装飾円を非表示（overflow防止）/ 横長比率に切り替え */
@media (max-width: 767px) {
  .hero__photo-deco { display: none; }
  .hero__photo-img {
    aspect-ratio: 3 / 2;
    border-radius: 16px;
  }
}

/* ----------------------------------------------------------
   6. Pain セクション — 番号バッジカード
   ---------------------------------------------------------- */
#pain { background: var(--color-bg-alt); }

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: var(--space-block-sm);
}
@media (min-width: 640px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
  .pain__grid { grid-template-columns: repeat(3, 1fr); }
}

.pain-card {
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.pain-card__num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.pain__bridge {
  margin-top: 36px;
  background: linear-gradient(135deg, #1A6B52 0%, var(--mint) 100%);
  border-radius: 20px;
  padding: 28px 36px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(61,187,138,0.20);
}

/* ----------------------------------------------------------
   7. Features / About
   ---------------------------------------------------------- */
#features { background: var(--color-bg); }

/* 数字バッジは削除。「選ばれる理由」は順序ではなく並列なので
   番号より上端のカラーアクセントで差別化する */
.feature-card__icon { display: none !important; }

.feature-card {
  background: rgba(255,255,255,0.65);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--coral);
  border-radius: 20px;
  padding: 28px 24px 26px;
  text-align: left;
}

.feature-card__title {
  font-family: var(--font-serif);
  text-align: left;
  margin-bottom: 10px;
}
.feature-card__body {
  text-align: left;
  line-height: 1.9;
  font-size: 0.875rem;
}

#features .features__grid { gap: 16px; }
@media (min-width: 768px) { #features .features__grid { gap: 20px; } }

/* ----------------------------------------------------------
   8. Services — ミント背景
   ---------------------------------------------------------- */
#services { background: var(--mint-bg); }

/* ----------------------------------------------------------
   9. Price — コーラル強調・pulse アニメーション
   ---------------------------------------------------------- */
#price {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(255,107,91,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.price__inner {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--coral-light);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: rgba(255,107,91,0.15) 0 20px 60px, rgba(0,0,0,0.06) 0 4px 16px;
  position: relative;
  overflow: hidden;
}
.price__inner::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: linear-gradient(225deg, rgba(255,107,91,0.10) 0%, transparent 60%);
  border-radius: 0 28px 0 100%;
  pointer-events: none;
}
@media (min-width: 768px) { .price__inner { padding: 52px; } }

.price__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--coral);
  color: #fff;
  margin-bottom: 20px;
}
.price__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}
.price__copy {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}
.price__display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.price__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.price__unit { font-size: 1rem; color: var(--ink-light); }
.price__strike {
  font-size: 0.875rem;
  color: var(--ink-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}
.price__detail { font-size: 0.8125rem; color: var(--ink-light); margin-bottom: 32px; }
.price__note { font-size: 0.75rem; color: var(--ink-light); margin-top: 14px; }

/* pulse ラッパー（index.html で .price__cta-btn を囲む） */
.price__btn-wrap {
  position: relative;
  display: inline-block;
}
.price__btn-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,107,91,0.35);
  animation: pulse-ring 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* coral ボタン */
.btn--terracotta {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.btn--terracotta:hover,
.btn--terracotta:focus {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
}

/* ----------------------------------------------------------
   10. Voice — ウォーム背景・カード余白調整
   ---------------------------------------------------------- */
#voice { background: var(--color-bg-alt); }

/* スワイプアフォーダンス: 右端グラデーションで「続きあり」を示す（SP のみ）
   - ::after は position:absolute で scroll 幅に影響しない
   - pointer-events:none でスワイプ操作を阻害しない
   - PC (768px+) は overflow-x:visible + grid のため非表示               */
#voice .voice__scroll { position: relative; }
#voice .voice__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  background: linear-gradient(to left, var(--color-bg-alt) 15%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  #voice .voice__scroll::after { display: none; }
}

/* padding を 24→28px でゆったりさせる */
.voice-card { padding: 28px; }

/* 引用符: opacity 0.3→0.48 で存在感を出す / サイズ 40→46px */
.voice-card__text::before {
  opacity: 0.48;
  font-size: 46px;
  top: -6px;
}

/* 本文: 行間を少し広げ、引用符エリアと属性行との間隔も増やす */
.voice-card__text {
  line-height: 1.95;
  padding-top: 22px;
  margin-bottom: 20px;
}

/* 属性行: 12→13px、少し読みやすく */
.voice-card__name {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   11. Mom — ミント背景・チェックリスト
   ---------------------------------------------------------- */
#mom { background: var(--mint-bg); }

.mom__inner { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) {
  .mom__inner { flex-direction: row; align-items: center; gap: 56px; }
}

.mom__img {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4; /* 縦長写真（mom.jpg 1086×1448）に合わせた縦長比率 */
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .mom__img { width: 44%; aspect-ratio: 3 / 4; } }

.mom__placeholder-label {
  font-size: 0.8125rem;
  color: var(--mint);
  text-align: center;
  font-weight: 700;
  line-height: 1.9;
}
.mom__placeholder-label small {
  display: block;
  font-size: 0.6875rem;
  color: var(--ink-light);
  font-weight: 400;
  margin-top: 2px;
}
.mom__body { flex: 1; }

.mom__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mom__label::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
}
.mom__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.mom__text {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: 24px;
}
.mom__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mom__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.6;
}
.mom__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------
   12. Access — 地図埋め込みレイアウト
   ---------------------------------------------------------- */

/* SP: 情報ブロック → 地図の順に縦積み（base の flex-direction:column が効く）
   PC: base の flex-direction:row を活かし、情報左・地図右の2カラム */
@media (min-width: 768px) {
  #access .access__grid {
    align-items: stretch;
    gap: 48px;
  }
  #access .access__info {
    flex: 0 0 260px; /* 情報カラム固定幅 */
  }
}

/* 地図カラム */
.access__map-embed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .access__map-embed { flex: 1; min-width: 0; }
}

/* アスペクト比ラッパー（固定値の width/height に依存しない） */
.access__map-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .access__map-ratio { aspect-ratio: 16 / 10; }
}
.access__map-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 補助リンク（ボタンではなく小さなテキストリンク） */
.access__map-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  /* base の btn スタイルを打ち消す */
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto !important;
  margin-top: 0;
}
.access__map-btn:hover { color: var(--coral); }

/* ----------------------------------------------------------
   13. CTA — 役割別再設計（初回 / 再来院 / LINE / 電話）
   ---------------------------------------------------------- */
#cta {
  background: #F0E2DD; /* ウォームダスティローズ — 単色・コーラル系・落ち着いた上品さ */
}

/* ── 見出しブロック ── */
.cta2__head {
  text-align: center;
  margin-bottom: 36px;
}
.cta2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta2__eyebrow::before,
.cta2__eyebrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.cta2__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 10px;
}
.cta2__desc {
  font-size: 0.9375rem;
  color: var(--ink-mid);
}

/* ── 主CTA ── */
.cta2__primary-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

/* ── 第2グループ（再来院 + LINE） ── */
.cta2__secondary-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .cta2__secondary-wrap { flex-direction: column; align-items: center; }
}

/* ── 共通ボタンベース ── */
.cta2__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1.3;
}

/* 主CTA: 初めての方 — coral solid / 大きめ / 影あり */
.cta2__btn--first {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  padding: 20px 52px;
  box-shadow: rgba(255,107,91,0.28) 0 6px 20px;
}
.cta2__btn--first:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
}
.cta2__btn-label { font-size: 1rem; }
.cta2__btn-sub {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}

/* LINE: 緑filled / LINEらしい色で役割の違いを示す */
.cta2__btn--line {
  background: #06C755;
  color: #fff;
  border: 2px solid #06C755;
  min-width: 200px;
}
.cta2__btn--line:hover {
  background: #05B34C;
  border-color: #05B34C;
}

/* ── 電話補助リンク — ボタンではなくテキストリンク ── */
.cta2__tel {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-mid);
  margin-top: 4px;
}
.cta2__tel-link {
  color: var(--ink-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta2__tel-link:hover { color: var(--coral); }

/* ----------------------------------------------------------
   13. Fixed CTA Bar
   ---------------------------------------------------------- */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.fixed-cta__btn {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.3;
}
.fixed-cta__btn--reserve {
  background: var(--coral);
  color: #fff;
  flex: 2;
  box-shadow: rgba(255,107,91,0.3) 0 4px 12px;
}
.fixed-cta__btn--tel {
  background: transparent;
  color: var(--ink-mid);
  border: 2px solid var(--border-mid);
}
.fixed-cta__sub { font-size: 0.625rem; font-weight: 400; opacity: 0.85; }

@media (min-width: 768px) { .fixed-cta { display: none; } }
@media (max-width: 767px) {
  #footer { padding-bottom: calc(var(--space-section-sm) + 76px); }
  .hero__coupon { max-width: 100%; }
}
