/* ============================================================
   the-most-yutenji.css — THE MOST整体院 祐天寺 案件専用スタイル
   セージグリーン × ミュートゴールド / 落ち着き・清潔感・信頼感
   ============================================================ */

/* ----------------------------------------------------------
   1. カラー・フォント変数上書き
   ---------------------------------------------------------- */
:root {
  /* ── 背景 ── */
  --color-bg:        #F7F5F1;  /* ウォームアイボリー */
  --color-bg-alt:    #EDE9E2;  /* グレージュ */

  /* ── メイン：深めのセージグリーン（信頼・清潔・自然） ── */
  --color-primary:   #2D5B45;
  --color-primary-dk:#1E4030;

  /* ── アクセント：ミュートゴールド（上品さ・温かみ） ── */
  --color-accent:    #B8914A;
  --color-accent-dk: #9A7539;

  /* ── ボーダー・テキスト ── */
  --color-border:    #DDD8CE;
  --color-text:      #1A1A18;
  --color-text-sub:  #4A4640;

  /* ── シェイプ ── */
  --radius-card: 14px;
  --radius-btn:  999px;

  /* ── 案件専用パレット ── */
  /* sage（セージグリーン系） */
  --sage:       #2D5B45;
  --sage-dk:    #1E4030;
  --sage-mid:   #4A7D64;
  --sage-light: #B8D0C6;
  --sage-pale:  #EBF3EE;
  --sage-bg:    #F0F5F2;

  /* gold（ミュートゴールド系） */
  --gold:       #B8914A;
  --gold-dk:    #9A7539;
  --gold-mid:   #C9A55E;
  --gold-light: #E6CDA0;
  --gold-pale:  #F7EED8;

  /* ink（テキスト系） */
  --ink:        #1A1A18;
  --ink-mid:    #4A4640;
  --ink-light:  #7A7570;

  /* border */
  --border:     #DDD8CE;
  --border-mid: #C4BEB4;

  /* heading font（TATSUYAと同系統を踏襲） */
  --font-serif: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

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

/* ----------------------------------------------------------
   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 THE MOST" 等） */
.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(--sage);
  text-transform: uppercase;
}
.section__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}
/* MENU eyebrow：ゴールドアクセント */
.section__eyebrow--mint { color: var(--gold); }

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

/* ----------------------------------------------------------
   3. Header — ribbon の下に配置
   ---------------------------------------------------------- */
#header {
  top: 34px;
  z-index: 150;
}
.header__logo {
  font-family: var(--font-serif);
  color: var(--sage);
}
.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; } }

/* ヘッダー予約ボタン：セージグリーン */
.header__reserve-btn {
  background: var(--sage) !important;
  border-color: var(--sage) !important;
  color: #fff !important;
}
.header__reserve-btn:hover {
  background: var(--sage-dk) !important;
  border-color: var(--sage-dk) !important;
}

/* ----------------------------------------------------------
   4. Ribbon bar — セージグリーン帯
   ---------------------------------------------------------- */
.ribbon-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--sage);
  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 22s linear infinite;
}
.ribbon-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.ribbon-bar__item::before {
  content: "◆";
  margin-right: 0.65em;
  opacity: 0.3;
  font-size: 0.35rem;
}
@keyframes ribbon-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ----------------------------------------------------------
   5. Hero — B案(情報密度) × C案(上品プレミアム) 混合レイアウト
   ---------------------------------------------------------- */
#hero {
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
  margin-top: calc(var(--header-height) + 34px);
}
@media (min-width: 768px) {
  #hero { margin-top: calc(var(--header-height-pc) + 34px); }
}

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

/* -- 背景グラデーションブロブ（CSS only / SVG 不使用）---------- */
.hero__bg-dec {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-dec--sage {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,69,0.09) 0%, transparent 70%);
}
.hero__bg-dec--gold {
  position: absolute;
  bottom: -60px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,74,0.07) 0%, transparent 70%);
}
@media (max-width: 767px) {
  .hero__bg-dec--sage  { width: 300px; height: 300px; top: -60px; right: -80px; }
  .hero__bg-dec--gold  { width: 200px; height: 200px; }
}

/* -- Hero inner: 2カラム flex -------------------------------- */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 44px 0 20px;
}
@media (max-width: 767px) {
  .hero__inner {
    flex-direction: column;
    gap: 0;
    padding: 20px 0 20px;
  }
}

/* -- 本文カラム（左 PC / 下 SP）------------------------------ */
.hero__body {
  color: var(--ink) !important;
  flex: 1 1 0;
  min-width: 0;
  /* order は PC media query でのみ設定（SP はHTML順 = 写真の下） */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__body { gap: 16px; padding-top: 16px; }
}

/* -- バッジ行 ------------------------------------------------ */
.hero__badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.hero__badge-icon { flex-shrink: 0; display: block; }
/* 国家資格者：塗り潰しセージ */
.hero__badge--license {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45,91,69,0.22);
}
/* 完全個室：アウトラインセージ */
.hero__badge--private {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
/* アクセス：ゴールドアクセント + 2行テキスト */
.hero__badge--access {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  gap: 7px;
  padding: 5px 12px;
  align-items: center;
}
.hero__badge-lines  { display: flex; flex-direction: column; gap: 1px; }
.hero__badge-main   { font-size: 11px; font-weight: 700; color: var(--sage); line-height: 1; }
.hero__badge-sub    { font-size: 9.5px; font-weight: 700; color: var(--gold-dk); line-height: 1; }

@media (max-width: 767px) {
  .hero__badge       { font-size: 10.5px; padding: 6px 11px; gap: 5px; }
  .hero__badge-icon  { width: 13px; height: 13px; }
  .hero__badge--access { padding: 5px 11px; }
  .hero__badge-main  { font-size: 10.5px; }
  .hero__badge-sub   { font-size: 9.5px; }
}

/* -- キャッチコピー / サブコピー ----------------------------- */
.hero__tagline {
  font-family: var(--font-serif);
  /* max 2rem(32px)に抑え、野暮ったさを解消 */
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  /* 日本語改行制御：句読点（、。）の直後でのみ折り返す
     → "身体のことを、" / "ちゃんと相談できる場所。" の2行に安定 */
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero__subcopy {
  font-size: clamp(0.8125rem, 1.3vw, 0.9rem);
  line-height: 1.9;
  color: var(--ink-mid);
  opacity: 1 !important;
  margin: 0;
  max-width: 32em;
}

/* -- オファーブロック（クーポン + CTA + 注記の整列ラッパー）--- */
/* max-width をここで一元管理 → 3要素の左端・右端が揃う */
.hero__offer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  width: 100%;
}

/* -- 初回クーポンカード -------------------------------------- */
/* max-width は .hero__offer が担うため不要 */
.hero__coupon {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 12px rgba(45,91,69,0.10),
    0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(45,91,69,0.13);
}
/* 左パネル：セージグリーン（幅を抑えて控えめに） */
.hero__coupon-stub {
  flex: 0 0 78px;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 8px;
}
.hero__coupon-stub-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sage);
  background: rgba(247,245,241,0.90);
  border-radius: 3px;
  padding: 2px 6px;
  white-space: nowrap;
}
.hero__coupon-stub-time {
  font-size: 11px;
  font-weight: 700;
  color: rgba(247,245,241,0.88);
  letter-spacing: 0.05em;
  margin: 0;
}
/* セパレーター */
.hero__coupon-sep {
  flex: 0 0 1px;
  background: rgba(45,91,69,0.12);
}
/* 右パネル：アイボリーグラデーション */
.hero__coupon-main {
  flex: 1;
  background: linear-gradient(148deg, #faf8f3 0%, #f5ede0 100%);
  border-radius: 0 12px 12px 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.hero__coupon-strike {
  font-size: 11.5px;
  color: var(--ink-light);
  text-decoration: line-through;
  font-weight: 400;
  white-space: nowrap;
}
.hero__coupon-price-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-top: 1px;
}
.hero__coupon-yen {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dk);
}
.hero__coupon-num {
  font-family: 'Shippori Mincho B1', 'Georgia', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__coupon-wave {
  font-size: 20px;
  color: var(--ink-mid);
  margin-left: 2px;
}
.hero__coupon-note {
  font-size: 10px;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 1px;
  opacity: 0.75;
}

/* -- CTA ボタン行 ------------------------------------------- */
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
@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(--sage) !important;
  border-color: var(--sage) !important;
  color: #fff !important;
  border-radius: 999px !important;
  box-shadow: rgba(45,91,69,0.28) 0 5px 18px;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 32px !important;
  font-size: 0.9375rem !important;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hero__btn-reserve:hover {
  background: var(--sage-dk) !important;
  border-color: var(--sage-dk) !important;
}
/* 施術を見るボタン：予約ボタンと高さを揃える */
.hero__btn-view {
  display: inline-flex;
  align-items: center;
  padding: 16px 22px;
  border: 1.5px solid rgba(45,91,69,0.50);
  border-radius: 999px;
  color: var(--sage);
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.hero__btn-view:hover { background: var(--sage-pale); }
@media (max-width: 767px) {
  .hero__btn-reserve { padding: 15px 28px !important; font-size: 0.875rem !important; }
  .hero__btn-view    { padding: 15px 18px; font-size: 0.8125rem; }
}
/* 電話ボタンは非表示（init.js が href を注入するために存在） */
.hero__btn-tel,
.hero__btn-tel--ghost { display: none !important; }

/* CTA 直下の補足テキスト：gap 内に収まるため margin は不要 */
.hero__cta-note {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  margin: -8px 0 0;   /* gap(16px) の視覚的調整：注記をCTAに近づける */
}

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

/* -- 写真カラム（右 PC / 上 SP）------------------------------ */
/* order はPCのみ設定。SP(flex-column)はHTML順＝写真が上、本文が下 */
.hero__photo-col {
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  /* 44% → 本文カラムに若干余裕を持たせる（880px基準: 387px / 453px） */
  .hero__photo-col { flex: 0 0 44%; order: 2; }
  .hero__body { order: 1; }
}

/* ラッパー：relative で floating chips を受け取る */
.hero__photo-wrap {
  position: relative;
  width: 100%;
}

/* 写真本体 */
.hero__photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  /* 角丸：非対称で写真に動きを添えつつ、強すぎない値に抑える */
  border-radius: 16px 6px 16px 6px;
  box-shadow:
    0 16px 48px rgba(45,91,69,0.13),
    0 2px 8px rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
  .hero__photo-img {
    aspect-ratio: 3 / 2;
    object-position: center 20%;
    border-radius: 12px;
  }
}

/* -- 写真フローティングチップ（右カラムの作り込み感） ---------- */
.hero__photo-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* 上チップ：白背景・セージテキスト（控えめ） */
.hero__photo-chip--top {
  top: 14px;
  left: 14px;
  background: rgba(247,245,241,0.90);
  color: var(--sage);
  border: 1px solid rgba(45,91,69,0.12);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
@media (max-width: 767px) {
  .hero__photo-chip { font-size: 10px; padding: 5px 9px; gap: 4px; }
  .hero__photo-chip--top { top: 10px; left: 10px; }
}

/* -- 施術メニューカード strip --------------------------------- */
.hero__menu-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  /* 上余白は border-top 視認性のため確保、下は次セクションとの呼吸 */
  padding: 28px 0 52px;
  border-top: 1px solid var(--border);
}
.hero__menu-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(45,91,69,0.07), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(184,208,198,0.35);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero__menu-card:hover {
  box-shadow: 0 4px 20px rgba(45,91,69,0.12);
  transform: translateY(-2px);
}
.hero__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-pale);
  flex-shrink: 0;
}
.hero__menu-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sage);
  margin: 0;
  line-height: 1.3;
}
.hero__menu-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px auto 0;
  border-radius: 1px;
}
.hero__menu-desc {
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.55;
  margin: 0;
}
/* SP menu-strip は末尾のSPブロックにまとめた */

/* ----------------------------------------------------------
   5b. Hero — SVG 装飾レイヤー
   役割ベース命名で責務を分離。差し替え・削除を容易に。
   ---------------------------------------------------------- */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__deco > img {
  position: absolute;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
/* 左側：有機形状ブロブ（背後の大型装飾） */
.hero__deco--left-blob {
  top: -80px;
  left: -100px;
  width: 460px;
  opacity: 0.10;
  transform: rotate(-12deg);
}
/* 右側：ソフトな色面フィル */
.hero__deco--right-fill {
  top: 10px;
  right: -80px;
  width: 380px;
  opacity: 0.17;
}
/* 中央左：ドット散布アクセント */
.hero__deco--dots {
  top: 46%;
  left: 4%;
  width: 180px;
  opacity: 0.26;
}
/* 写真コーナーアクセント（.hero__photo-wrap 内で使用） */
.hero__photo-deco {
  position: absolute;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.hero__photo-deco--corner {
  bottom: -14px;
  right: -14px;
  width: 88px;
  opacity: 0.68;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__deco--left-blob {
    top: auto;
    bottom: 30px;
    left: -40px;
    width: 220px;
    opacity: 0.06;
    transform: rotate(-5deg);
  }
  .hero__deco--right-fill {
    display: none;
  }
  .hero__deco--dots {
    top: auto;
    bottom: 90px;
    left: auto;
    right: -6px;
    width: 120px;
    opacity: 0.20;
  }
  .hero__photo-deco--corner {
    width: 64px;
    bottom: -10px;
    right: -10px;
  }
}

/* ----------------------------------------------------------
   6. btn--terracotta — THE MOST ではセージグリーンで再定義
   ---------------------------------------------------------- */
.btn--terracotta {
  background: var(--sage);
  color: #fff;
  border: 2px solid var(--sage);
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.btn--terracotta:hover,
.btn--terracotta:focus {
  background: var(--sage-dk);
  border-color: var(--sage-dk);
}

/* ----------------------------------------------------------
   7. 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.65);
  border-radius: 14px;
  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(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ブリッジ文：セージグリーンのグラデーション */
.pain__bridge {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--sage-dk) 0%, var(--sage) 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(45,91,69,0.18);
}

/* ----------------------------------------------------------
   8. Features — セージ上端ボーダー
   ---------------------------------------------------------- */
#features { background: var(--color-bg); }

/* 数字バッジは非表示 */
.feature-card__icon { display: none !important; }

.feature-card {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--sage);
  border-radius: 16px;
  padding: 28px 24px 26px;
  text-align: left;
}
.feature-card__title {
  font-family: var(--font-serif);
  text-align: left;
  margin-bottom: 10px;
  color: var(--sage);
}
.feature-card__body {
  text-align: left;
  line-height: 1.9;
  font-size: 0.875rem;
  color: var(--ink-mid);
}

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

/* ----------------------------------------------------------
   9. Services — セージ薄背景
   ---------------------------------------------------------- */
#services { background: var(--sage-bg); }

/* サービス料金の色をセージに */
.service-item__price { color: var(--sage); }

/* ----------------------------------------------------------
   10. 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(45,91,69,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.price__inner {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--sage-light);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: rgba(45,91,69,0.12) 0 20px 60px, rgba(0,0,0,0.05) 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(45,91,69,0.08) 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(--sage);
  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(--sage);
  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 ラッパー */
.price__btn-wrap {
  position: relative;
  display: inline-block;
}
.price__btn-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(45,91,69,0.30);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ----------------------------------------------------------
   11. Flow
   ---------------------------------------------------------- */
/* STEPの丸・数字はbase/style.cssの--color-primaryで自動反映（sage green） */

/* ----------------------------------------------------------
   12. Voice — グレージュ背景
   ---------------------------------------------------------- */
#voice { background: var(--color-bg-alt); }

/* スワイプアフォーダンス（SP のみ）*/
#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; }
}

/* カード */
.voice-card { padding: 28px; }

/* 引用符：セージカラー */
.voice-card__text::before {
  color: var(--sage);
  opacity: 0.40;
  font-size: 46px;
  top: -6px;
}

.voice-card__text {
  line-height: 1.95;
  padding-top: 22px;
  margin-bottom: 20px;
}
.voice-card__name {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   13. Mom — セージ薄背景・チェックリスト
   ---------------------------------------------------------- */
#mom { background: var(--sage-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;
  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__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(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mom__label::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--sage);
  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(--sage);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------
   14. Access — 地図埋め込みレイアウト
   ---------------------------------------------------------- */
@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; }
}

.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;
  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(--sage); }

/* access ラベル色をセージに */
.access__label { color: var(--sage); }

/* ----------------------------------------------------------
   15. CTA — 落ち着いた淡セージ背景
   ---------------------------------------------------------- */
#cta {
  background: #E6EEEA; /* 淡いセージグリーン — 圧迫感なく自然に誘導 */
}

/* ── 見出しブロック ── */
.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(--sage);
  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;
}

/* ── 副CTA（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：初めての方 — セージ solid / 大きめ */
.cta2__btn--first {
  background: var(--sage);
  color: #fff;
  border: 2px solid var(--sage);
  padding: 20px 52px;
  box-shadow: rgba(45,91,69,0.22) 0 6px 20px;
}
.cta2__btn--first:hover {
  background: var(--sage-dk);
  border-color: var(--sage-dk);
}
.cta2__btn-label { font-size: 1rem; }
.cta2__btn-sub {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}

/* LINE: 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(--sage); }

/* ----------------------------------------------------------
   16. Fixed CTA Bar — SP のみ表示
   ---------------------------------------------------------- */
.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(--sage);
  color: #fff;
  flex: 2;
  box-shadow: rgba(45,91,69,0.25) 0 4px 12px;
}
.fixed-cta__btn--reserve:hover { background: var(--sage-dk); }

/* 電話ボタン：アウトライン */
.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; }

/* PC ではフッターから fixed-cta を隠す */
@media (min-width: 768px) { .fixed-cta { display: none; } }

/* SP: フッターに fixed-cta 分の余白・クーポン/メニューSP 調整 */
@media (max-width: 767px) {
  #footer { padding-bottom: calc(var(--space-section-sm) + 76px); }

  /* オファーブロック：SP では全幅に展開 */
  .hero__offer { max-width: 100%; gap: 14px; }

  /* クーポンカード：SP フォント縮小 */
  .hero__coupon-stub { flex: 0 0 70px; padding: 12px 6px; gap: 4px; }
  .hero__coupon-main { padding: 12px 14px; }
  .hero__coupon-num  { font-size: 32px; }
  .hero__coupon-yen  { font-size: 12px; }
  .hero__coupon-wave { font-size: 16px; }

  /* メニューカード：SP padding */
  .hero__menu-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 0 36px;
  }
  .hero__menu-icon  { width: 42px; height: 42px; }
  .hero__menu-title { font-size: 12px; }
  .hero__menu-desc  { font-size: 10.5px; }
}
