/* ============================================
   渋谷美容外科クリニック お試し医療脱毛LP
   SP主体・PCでもSP幅で中央寄せ
   ============================================ */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { font-size: 62.5%; } /* 1rem = 10px (品川流) */
body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--page-bg);
  font-size: 14px;
  line-height: 2.0;             /* 余裕ある行間（上品さの源） */
  letter-spacing: 0.06em;       /* 字間ゆったり */
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; }

/* === Tokens（美容クリニック・上品ピンク × 高級ゴールド） === */
:root {
  /* Brand pink (アクセント色 — 全体の10〜15%に抑える) */
  --primary: #E85798;          /* メインは少し落ち着いたローズに */
  --primary-light-tone: #FF6AA7; /* ハイライトのみで原色を使用 */
  --primary-dark: #C13A77;
  --primary-light: #FFF0F5;
  --primary-soft: #FFE7EE;

  /* Gold (品格を支える第二アクセント) */
  --gold: #B8956D;
  --gold-light: #D4B68A;
  --gold-soft: #F5EBDA;

  /* CTA系 (potenza準拠) */
  --cta-start: #FFAC4B;
  --cta-end: #FD501A;

  /* Text (温かいダーク・無彩色寄り) */
  --text: #463238;
  --text-light: #8E7882;
  --text-mute: #B5A6AC;
  --text-deep: #2D1F25;

  /* Surface (基本は白、ほのかなピンク) */
  --bg: #FDFAFB;            /* ほぼ白 — 旧 #FFF6FA から退色 */
  --bg-2: #FAF1F4;          /* 旧 #FFEEF5 から退色 */
  --card: #ffffff;
  --gray: #E8DDE2;
  --gray-light: #F5EFF1;

  /* Border (ヘアライン) */
  --border: #F0DCE3;
  --border-soft: #F5E5EB;
  --border-gold: #E5D5BD;

  /* Rough placeholder */
  --rough-bg: #F4ECEF;
  --rough-border: #DDC8D0;
  --rough-text: #9F828E;

  /* Shadow (上品・ぼかし強め) */
  --shadow-sm: 0 2px 12px rgba(70, 50, 56, 0.05);
  --shadow: 0 12px 32px rgba(70, 50, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(70, 50, 56, 0.10);

  /* Page bg */
  --page-bg: #F5E8EB;

  /* Geometry */
  --radius: 14px;
  --radius-lg: 22px;
  --lp-width: 430px;

  /* Fonts */
  --f-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  --f-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --f-en: "Marcellus", "Cormorant Garamond", serif;
}

/* 互換 alias（既存ルールが参照する古い名前を新色にマップ） */
:root {
  --accent: var(--primary-soft);
}

/* === LP Container === */
.lp {
  max-width: var(--lp-width);
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  /* overflow: hidden を外す（sticky nav を有効にするため） */
  padding-top: 64px;    /* 固定ヘッダー分 */
  padding-bottom: 120px;/* sticky CTA（高さ + 余白）分 */
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
}
.lp > section { overflow: hidden; }   /* 各セクション内のはみ出しは個別に閉じる（sticky を阻害しないため） */

/* === 固定ヘッダー === */
.lp-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--lp-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.10);
  z-index: 100;
  height: 64px;
  box-sizing: border-box;
}
.lp-header__logo img {
  width: 180px;
  height: auto;
  display: block;
}
.lp-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #FFAC4B, #FD501A);
  border-radius: 100px;
  width: 160px;
  height: 45px;
  text-align: center;
  border: 1px solid #fff;
  box-shadow: 0 4px rgba(0, 0, 0, 0.18);
  line-height: 1.2;
  flex-shrink: 0;
}
.lp-header__btn span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ============================================
   Image Rough（画像ラフプレースホルダー）
   - 画像未納品時はグレーボックス＋キャプション
   - images/{data-img}.{data-ext} が存在すると JS が
     img を流し込んで .img-rough--filled を付与 → 画像表示
   ============================================ */
.img-rough {
  background: var(--rough-bg);
  border: 1px dashed var(--rough-border);
  color: var(--rough-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  padding: 24px 16px;
  border-radius: 8px;
  min-height: 140px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
/* グローバル：画像は元画像の自然な縦横比で表示（切り抜きしない） */
.img-rough img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}
/* .img-rough--filled の詳細ルールはファイル末尾に集約（!important版） */
.img-rough--fv { min-height: 240px; margin: 24px 0; border-radius: var(--radius); }
.img-rough--price { min-height: 110px; margin-top: 24px; }
.img-rough--step {
  min-height: 130px;
  /* steps__item の左右 padding 26 を相殺して card 内 full-bleed */
  margin: 10px -26px 12px;
}
.img-rough--device {
  min-height: 0;
  margin: 16px auto 24px;
  max-width: 140px !important;     /* 224×392 縦長機器写真を控えめサイズに */
}
.img-rough--device.img-rough--filled {
  max-width: 140px !important;
}
.img-rough--device img {
  max-width: 140px;
}
.img-rough--icon { min-height: 80px; padding: 14px; font-size: 11px; }
.img-rough--clinic { min-height: 180px; margin-bottom: 16px; border-radius: var(--radius); }
.img-rough--doctor { min-height: 100px; width: 100px; flex-shrink: 0; padding: 12px; font-size: 11px; border-radius: 50%; }
.img-rough--logo { min-height: 80px; max-width: 220px; margin: 0 auto 24px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
  position: relative;
  font-feature-settings: "palt";
}
.btn--primary {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  box-shadow: 0 8px 20px rgba(253, 80, 26, 0.28);
  border: 1px solid #fff;
}
.btn--primary::after {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 18px;
  font-weight: 400;
}
.btn--primary:active { transform: translateY(2px); box-shadow: 0 3px 8px rgba(253, 80, 26, 0.30); }
.btn--small { padding: 15px 18px; font-size: 13.5px; }
.btn--tel {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  letter-spacing: 0.04em;
}
.btn__tel-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--primary-dark); }
.btn__tel-num { font-size: 24px; font-weight: 700; font-family: var(--f-en); letter-spacing: 0.06em; color: var(--primary-dark); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 18px;
  letter-spacing: 0.04em;
}

/* ============================================
   FV
   ============================================ */
.fv {
  padding: 32px 22px 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 107, 139, 0.18), transparent 60%),
    radial-gradient(circle at 0% 90%, rgba(244, 212, 220, 0.6), transparent 55%),
    linear-gradient(180deg, #fff 0%, #faf3f0 100%);
  position: relative;
}
.fv__badge {
  display: inline-block;
  background: var(--text);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
}
.fv__title {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 900;
  line-height: 1.1;
}
.fv__title-sub {
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 0.06em;
}
.fv__title-main {
  font-size: 50px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #2a2a2a 0%, #6a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fv__lead {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
}
.fv__lead strong { color: var(--primary-dark); font-weight: 700; }
.fv__notice {
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-mute);
}

.fv__price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.fv__price-from {
  font-size: 11px;
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.fv__price-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--primary-dark);
  font-family: "Marcellus", serif;
}
.fv__price-num b { font-size: 38px; font-weight: 400; line-height: 1; }
.fv__price-num small { font-size: 14px; font-weight: 700; }
.fv__price-tax { font-size: 12px; color: var(--text-light); }

.fv__cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   Nav
   ============================================ */
.nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px; /* 固定ヘッダー高さ分下げる（追従） */
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 8px rgba(80, 60, 68, 0.06);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* スクロール中は固定ヘッダーが格納される（メインコンテンツの視認性UP）
   止まると 200ms 以内に再表示。nav はその間 top:0 に上がって追従する。 */
.lp-header {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body.is-scrolling .lp-header {
  transform: translateY(-100%);
}
body.is-scrolling .nav {
  top: 0;
}
.nav__item {
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  padding: 13px 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
.nav__item:active,
.nav__item:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ============================================
   Section common（余白は品川流／見出しは明朝で品格＋装飾）
   ============================================ */
.section {
  padding: clamp(64px, 14vw, 88px) clamp(20px, 5.5vw, 26px) clamp(72px, 16vw, 100px);
  position: relative;
}
.section__head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
/* EN ラベル（ゴールドのヘアラインで挟む・品格） */
.section__en {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 22px;
  text-indent: 0.5em;
  font-weight: 400;
}
.section__en::before, .section__en::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  display: inline-block;
  text-indent: 0;
}
/* 接頭キャプション（小さい説明文） */
.section__caption {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 18px;
  text-indent: 0.2em;
  line-height: 1.7;
}
/* 大見出し（明朝・流体font-size + 日本語折り返し最適化） */
.section__title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 6.4vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--text-deep);
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.section__title em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}
.section__title br + em {
  display: inline-block;
  margin-top: 2px;
}
/* タイトル下の装飾は廃止（EN ラベルの線で十分・引き算） */

/* ============================================
   料金一覧
   ============================================ */
.section--price {
  background: #fff;
}
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;     /* バッジ overflow 分を確保 */
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px 24px;  /* バッジ用に top を増量 */
  position: relative;
  box-shadow: var(--shadow-sm);
}
.price-card--featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
  box-shadow: var(--shadow);
}
/* 旧 .price-card--featured::before（右上ピンクバッジ）は削除済み。
   バッジは .price-card__badge 要素で左上に配置する形に統一。 */
/* .price-card__tag（BODY/FACE/VIO等のピル）は削除済み。HTMLからも撤去済み。 */
.price-card__name {
  font-family: var(--f-serif);
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  margin-top: 0;          /* タグ削除に伴い上余白をリセット */
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--text-deep);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.price-card__detail {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.7;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
  color: var(--primary);
  font-family: var(--f-en);
}
.price-card__price b { font-size: 52px; font-weight: 400; line-height: 0.95; letter-spacing: 0.01em; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-card--featured .price-card__price b { font-size: 64px; }
.price-card__price small { font-size: 13px; font-weight: 700; color: var(--text); font-family: var(--f-sans); margin-left: 2px; }

.price-notes {
  margin-top: 28px;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 18px 20px 18px 36px;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.7;
}
.price-notes li {
  list-style: decimal;
  margin-bottom: 6px;
}
.price-notes li::marker { color: var(--text-mute); }

/* .student スタイルは削除済み（ブロック自体を撤去） */

/* ============================================
   選ばれる理由
   ============================================ */
.section--reasons {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.reason {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;       /* full-bleed子要素のはみ出しを丸角で抑える */
}
.reason__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.reason__num {
  font-family: var(--f-en);
  font-size: clamp(28px, 7.5vw, 36px);
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: 0;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reason__title {
  font-family: var(--f-serif);
  font-size: clamp(18px, 5.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--text-deep);
  flex: 1;
  min-width: 0;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.reason__lead {
  font-size: 14px;
  line-height: 2.0;
  color: var(--text);
  letter-spacing: 0.04em;
}
.reason__lead strong { color: var(--primary-dark); font-size: 16px; }
.reason__sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 24px;
  line-height: 1.5;
}
.reason__subtext {
  font-size: 13px;
  margin-top: 8px;
  color: var(--text-light);
  line-height: 1.7;
}
.reason__note {
  margin-top: 14px;
  text-align: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
}
.reason__supplement {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}
.reason__longtext {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted var(--border);
}
.reason__longtext p {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Promo card inside reason */
.promo-card {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.promo-card__label {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
}
.promo-card__price {
  margin-top: 6px;
  font-family: "Marcellus", serif;
  color: var(--primary-dark);
  font-size: 14px;
}
.promo-card__price b { font-size: 24px; font-weight: 400; }
.promo-card__price small { font-size: 11px; font-weight: 700; font-family: "Noto Sans JP", sans-serif; }
.promo-card__price-unit { white-space: nowrap; display: inline-block; }
.promo-card__free {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  margin-bottom: 14px;
}

/* Steps（モダン版・データドリブン） */
.steps {
  margin: 24px -26px 0;       /* reason padding を相殺して全幅化 */
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.steps__item {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 22px 26px;       /* 内部テキストの左右余白 */
  position: relative;
  overflow: hidden;
}
.steps__item:not(:last-child) { margin-bottom: 0; border-bottom: 0; }
.steps__item .img-rough--step,
.steps__item .img-rough--step img { border-radius: 0; }
.steps__item--final {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff, var(--primary-light));
}
.steps__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.steps__no {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
}
.steps__time {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--primary-dark);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff;
}
.steps__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.steps__data {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  margin: 14px 0 16px;
  padding: 14px 16px 12px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.steps__data-label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-light);
  font-weight: 500;
}
.steps__data-value {
  font-family: var(--f-sans);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-align: right;
}
.steps__data-value b {
  font-family: var(--f-en);
  font-size: 30px;
  color: var(--primary);
  font-weight: 400;
  margin: 0 3px 0 4px;
  vertical-align: -3px;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.steps__data-value i {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-left: 1px;
}
.steps__bar {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(80, 60, 68, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.steps__bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  transition: width 0.6s ease;
  border-radius: 999px;
}
.steps__text {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.7;
}
.steps__text small { display: block; font-size: 10px; margin-top: 2px; color: var(--text-mute); }

/* Compare */
.compare {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare__head {
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.compare__head--bad { background: var(--text-mute); }
.compare__head--good { background: var(--primary); }
.compare__row {
  display: contents;
}
.compare__cell {
  background: #fff;
  padding: 12px 10px;
  font-size: 11.5px;
  line-height: 1.6;
}
.compare__cell--bad { color: var(--text-light); }
.compare__cell--good { color: var(--primary-dark); font-weight: 500; }

/* Features（縦並び：図解画像→タイトル→補足。reason ボックス左右いっぱい） */
.features {
  margin: 18px -26px 0;     /* reason padding を相殺して左右に張り出す */
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features__item {
  background: var(--gray-light);
  border-radius: 0;          /* フルブリード時は丸角オフ */
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: center;
}
.features__item > .features__title,
.features__item > .features__text {
  margin-left: 22px;
  margin-right: 22px;
}
.features__item .img-rough--icon {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  margin: 0 auto;
}
.features__title {
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-deep);
  letter-spacing: 0.04em;
}
.features__text {
  display: inline-block;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0 auto;
}
.features__note {
  margin-top: 10px;
  font-size: 11px;
  text-align: right;
  color: var(--text-mute);
}

/* OMS */
.oms {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oms__item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
}
.oms__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.oms__item p { font-size: 12px; line-height: 1.7; color: var(--text-light); }

/* ============================================
   4つの無料
   ============================================ */
.section--free { background: #fff; }
.free-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.free-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 14px;
  position: relative;
}
.free-item__no {
  font-family: "Marcellus", serif;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}
.free-item .img-rough--icon {
  max-width: 140px;
  margin: 10px auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.free-item__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.free-item__title small { font-size: 10px; color: var(--text-mute); margin-left: 2px; }
.free-item__text {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-light);
}
.free-item__sub {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 8px;
  line-height: 1.6;
}
.free-foot {
  margin-top: 20px;
  font-size: 10px;
  color: var(--text-mute);
  line-height: 1.6;
}
.free-foot li { margin-bottom: 4px; }

/* ============================================
   リスク
   ============================================ */
.section--risk {
  padding: 30px 22px;
  background: var(--bg);
}
.risk {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.risk__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.risk__symptom {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.risk__text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   施術の流れ
   ============================================ */
.section--flow { background: #fff; }
.flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.flow::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary-soft) 80%, transparent);
  z-index: 0;
}
.flow__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 24px 22px 64px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.flow__no {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
  box-shadow: 0 4px 10px rgba(255, 106, 167, 0.35);
}
.flow__no::before { content: ""; }
.flow__title {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text-deep);
}
.flow__text {
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ============================================
   院紹介
   ============================================ */
.section--clinics { background: var(--bg); }
.clinic {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.clinic__name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  text-align: center;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
}
.clinic__doctor {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--gray-light);
  padding: 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.clinic__doctor-info { flex: 1; }
.clinic__doctor-role {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.clinic__doctor-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}
.clinic__details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.clinic__details summary {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 4px 0;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.clinic__details summary::-webkit-details-marker { display: none; }
.clinic__details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
}
.clinic__details[open] summary::after { content: "−"; }
.clinic__sub {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 12px;
  margin-bottom: 6px;
}
.clinic__list li {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-light);
  padding-left: 10px;
  position: relative;
}
.clinic__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.clinic__info {
  font-size: 12px;
  margin-bottom: 14px;
}
.clinic__info dt {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.clinic__info dt:first-child { margin-top: 0; }
.clinic__info dd {
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 2px;
}
.clinic__info a { color: var(--primary-dark); font-weight: 700; }

/* ============================================
   医師監修
   ============================================ */
.section--supervisors { background: #fff; }
.supervisors__lead {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}
.supervisors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.supervisors__item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}
.supervisors__item .img-rough--doctor {
  width: 90px;
  min-height: 90px;
  margin: 0 auto 12px;
}
.supervisors__role {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.supervisors__sub {
  font-size: 9.5px;
  color: var(--text-mute);
  margin-top: 2px;
  min-height: 14px;
}
.supervisors__name {
  font-size: 14px;
  font-weight: 700;
  margin: 6px 0 8px;
}
.supervisors__link {
  display: inline-block;
  font-size: 11px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.supervisors__foot {
  margin-top: 24px;
  font-size: 10.5px;
  line-height: 1.7;
  color: var(--text-mute);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--text);
  color: #fff;
  padding: 40px 22px;
  text-align: center;
}
.footer .img-rough--logo {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
}
.footer__contact {
  margin-bottom: 24px;
}
.footer__tel-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__tel {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 400;
}
.footer__tel-note {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 4px;
}
.footer__hours {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 24px;
  font-size: 12px;
}
.footer__hours dt { font-weight: 700; color: var(--primary-light); margin-bottom: 4px; font-size: 11px; letter-spacing: 0.05em; }
.footer__hours dd { line-height: 1.7; }

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.footer__cta .btn--tel { background: rgba(255,255,255,0.04); color: #fff; border-color: var(--primary); }

.footer__news {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  margin-bottom: 22px;
}
.footer__news-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--primary-light);
}
.footer__news .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }

.footer__notice {
  font-size: 10px;
  opacity: 0.5;
  margin-bottom: 8px;
}
.footer__copy {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.4;
}

/* ============================================
   Sticky CTA（SP / 単一ボタン・視認性UP版）
   ============================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--lp-width);
  background: var(--text-deep);                          /* LPの白＆ピンクから外したダーク色で分離感 */
  border-top: 2px solid var(--primary);                  /* ブランドピンクの上端ラインで存在感 */
  z-index: 100;
  padding: 14px 16px max(env(safe-area-inset-bottom), 18px);
  box-shadow: 0 -10px 28px rgba(70, 50, 56, 0.18);
}
.sticky-cta__web {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  border-radius: 100px;
  background: linear-gradient(to right, var(--cta-start), var(--cta-end));
  color: #fff;
  border: 2px solid #fff;
  box-shadow:
    0 6px 0 rgba(0, 0, 0, 0.16),
    0 14px 28px rgba(253, 80, 26, 0.30);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.sticky-cta__web::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
}
.sticky-cta__web:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.16),
    0 8px 16px rgba(253, 80, 26, 0.24);
}
.sticky-cta__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============================================
   PCで中央寄せ装飾（potenza_campaign の pcbg.jpg を背景に）
   ============================================ */
@media (min-width: 768px) {
  body {
    background-image: url('images/pcbg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #fff;
    min-height: 100vh;
    padding: 0;
  }
  .lp {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* ============================================
   FV 1枚絵スタイル
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.fv {
  padding: 0 0 24px;
  background: transparent;
}
.fv .img-rough--fv-full {
  border-radius: 0;
  min-height: 540px;
  border: 1px dashed var(--rough-border);
}
/* FV画像が読み込まれたら自然な縦サイズで全体表示 */
.fv .img-rough--fv-full.img-rough--filled {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}
.fv .img-rough--fv-full img {
  position: relative;
  width: 100%;
  height: auto;
  inset: auto;
  display: block;
  object-fit: contain;
}
.fv__cta {
  padding: 20px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   院紹介バナー
   ============================================ */
.section--clinics { background: #fff; padding-bottom: 60px; }
.clinic-banners {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.clinic-banners__item a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.clinic-banners__item a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.clinic-banners__item a:active { opacity: 0.85; transform: translateY(0); }
.img-rough--banner {
  aspect-ratio: 660 / 454;   /* 取得した実画像のアスペクト比 */
  min-height: 0;
  border-radius: var(--radius);
}
/* 直接 img 出しの院バナー（JSローダー非経由・確実に表示） */
.clinic-banners__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ============================================
   流れ（写真付き5ステップ）
   ============================================ */
.flow__item .img-rough--flow {
  margin: 10px 0 14px;
  min-height: 200px;
  border-radius: 10px;
  background: #fff;
}
/* step1-5 は縦長構成のフルセクション画像。切り抜かず全体表示 */
.flow__item .img-rough--flow img {
  position: relative;
  width: 100%;
  height: auto;
  inset: auto;
  display: block;
  object-fit: contain;
}
.flow__item .img-rough--flow.img-rough--filled {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.flow__note {
  margin-top: 12px;
  background: var(--gray-light);
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-light);
  padding: 10px 12px;
  border-radius: 8px;
}
.flow__box {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.flow__box-title {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow__box-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
}

/* ============================================
   FAQ
   ============================================ */
.section--faq { background: var(--bg); }
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 18px 50px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  position: relative;
  margin-bottom: 10px;
}
.faq__q::before {
  content: "Q";
  position: absolute;
  left: -32px;
  top: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.faq__a {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-light);
  position: relative;
  padding-top: 10px;
  border-top: 1px dotted var(--border);
}
.faq__a::before {
  content: "A";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray);
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

/* ============================================
   スクロール脳死読者向けの「強弱」コンポーネント
   ============================================ */

/* マーカー（一種類に統一・控えめ。改行時もバラけないよう box-decoration-break: clone） */
.mark, .mark--strong {
  background: linear-gradient(transparent 64%, var(--primary-soft) 64%, var(--primary-soft) 96%, transparent 96%);
  padding: 0 2px;
  font-weight: 700;
  color: var(--text-deep);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 数字で見るバナー（FV直後・装飾を整理） ------- */
.stats {
  background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
  padding: 64px 26px 56px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__lead {
  font-family: var(--f-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-deep);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-indent: 0.18em;
}
.stats__lead::before, .stats__lead::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--primary);
  display: inline-block;
  text-indent: 0;
}
.stats__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.stats__item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 24px 8px 20px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 4px 14px rgba(80, 60, 68, 0.06);
}
.stats__item--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  border: 2px solid var(--primary);
  box-shadow: 0 8px 22px rgba(255, 106, 167, 0.16);
  padding: 28px 16px 22px;
}
.stats__num {
  display: block;
  font-family: var(--f-en);
  color: var(--primary-dark);
  line-height: 1;
}
.stats__num b {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats__num small {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--f-sans);
  color: var(--text);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.stats__yen {
  font-size: 32px;
  margin-right: 2px;
}
.stats__item--accent .stats__num b { font-size: 88px; line-height: 0.95; }
.stats__label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stats__label sup { color: var(--primary); margin-left: 2px; }
.stats__notice {
  font-size: 9.5px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ターゲット訴求 ---------------------------- */
.target {
  background: #fff;
  padding: 56px 26px 48px;
  text-align: center;
}
.target__title {
  font-family: var(--f-serif);
  font-size: clamp(18px, 5.4vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: var(--text-deep);
  margin-bottom: 28px;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.target__title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.target__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
  margin: 14px auto 0;
}
.target__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.target__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-2);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.target__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* POINT サマリ（各理由の冒頭・2行で読みやすく） -------------- */
.reason__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-2);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.reason__point-tag {
  flex-shrink: 0;
  align-self: flex-start;
  color: var(--primary-dark);
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-indent: 0.18em;
  line-height: 1.4;
  margin-top: 5px;
}
.reason__point-body {
  flex: 1;
  min-width: 0;
}
.reason__point strong {
  color: var(--primary-dark);
  font-weight: 700;
}
.reason__lead strong {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.02em;
}

/* 比較表に VS バッジと ✓/✗ ----------------- */
.compare {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.compare__head {
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.compare__head--bad { background: #B5A4AC; }
.compare__head--good { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.compare__vs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: var(--text-deep);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 10;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.compare__row { display: contents; }
.compare__cell {
  background: #fff;
  padding: 14px 12px 14px 38px;
  font-size: 11.5px;
  line-height: 1.65;
  position: relative;
}
.compare__cell--bad { color: var(--text-light); }
.compare__cell--good { color: var(--text); font-weight: 500; }
.compare__cell--good strong { color: var(--primary-dark); }
.compare__cell--bad strong { color: var(--text); }
.compare__icon {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.compare__icon--bad {
  background: var(--gray);
  color: var(--text-light);
}
.compare__icon--good {
  background: var(--primary);
  color: #fff;
}

/* 0円メガ表示（無料セクション冒頭） --------- */
.free-mega {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(180deg, var(--primary-light), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.free-mega__yen {
  font-family: var(--f-sans);
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  font-feature-settings: "tnum";
}
.free-mega__num {
  font-family: var(--f-sans);
  font-size: 96px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.free-mega__label {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  margin-left: 12px;
  align-self: center;
}
.free-mega__label strong { color: var(--primary-dark); font-weight: 700; font-size: 13px; }

/* 症例情報ブロック（医療広告ガイドライン準拠・アコーディオン式） --------- */
/* 注意書き（常時表示・アコーディオン外） */
.price-card__shorei-notice {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-mute);
  margin: 20px 0 16px;       /* 画像との間隔を確保 */
  letter-spacing: 0.02em;
}

/* アコーディオン本体 */
.price-card__shorei-toggle {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
}
.price-card__shorei-toggle > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: var(--text-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  list-style: none;
  position: relative;
  text-indent: 0.1em;
}
.price-card__shorei-toggle > summary::-webkit-details-marker { display: none; }
.price-card__shorei-toggle > summary::after {
  content: "▼";
  position: absolute;
  right: 18px;
  font-size: 11px;
  transition: transform 0.2s ease;
  text-indent: 0;
}
.price-card__shorei-toggle[open] > summary::after {
  transform: rotate(180deg);
}

/* テーブル本体 */
.price-card__shorei-table {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
}
.price-card__shorei-table > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
}
.price-card__shorei-table > div:first-child {
  border-top: 0;
}
.price-card__shorei-table dt {
  background: var(--gray-light);
  padding: 14px 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.04em;
  word-break: keep-all;
}
.price-card__shorei-table dd {
  padding: 14px 14px;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 価格カードのバッジ（左上に配置・強調表示） ----- */
.price-card__badge {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: -10px;
  left: 16px;            /* カード内左寄せ。overflow しすぎない */
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(253, 80, 26, 0.32);
  text-indent: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
  z-index: 2;
}

/* ============================================
   統一CTA（potenza_campaign 準拠）
   ============================================ */
.cta {
  text-align: center;
  margin: 0 auto;
  padding: 16px 18px 4px;
}
.cta__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow:
    1px 1px 0 var(--primary-light-tone), -1px -1px 0 var(--primary-light-tone),
    -1px 1px 0 var(--primary-light-tone), 1px -1px 0 var(--primary-light-tone),
    0 1px 0 var(--primary-light-tone), 0 -1px 0 var(--primary-light-tone),
    -1px 0 0 var(--primary-light-tone), 1px 0 0 var(--primary-light-tone);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.cta__lead img {
  width: 14px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}
.cta__lead span {
  display: inline-block;
  white-space: nowrap;
}
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--cta-start), var(--cta-end));
  border-radius: 100px;
  width: 100%;
  max-width: 360px;
  height: 64px;
  margin: 0 auto;
  border: 2px solid #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16), 0 8px 20px rgba(253, 80, 26, 0.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta__btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.16), 0 4px 12px rgba(253, 80, 26, 0.20);
}
.cta__btn span {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* インラインCTA（reason 内 promo-card用 small） */
.cta--small .cta__btn {
  height: 56px;
  max-width: 320px;
}
.cta--small .cta__btn span { font-size: 15px; }
.cta--small .cta__lead { font-size: 13px; }

/* ============================================
   3-tone 案B（白 + 淡ピンク + 濃ピンク）
   - section--free / section--clinics は「締め色」濃ピンク
   ============================================ */
.section--free,
.section--clinics {
  background: var(--primary);
  color: #fff;
}
.section--free .section__title,
.section--free .section__title em,
.section--free .section__caption,
.section--free .section__en,
.section--clinics .section__title,
.section--clinics .section__title em,
.section--clinics .section__caption,
.section--clinics .section__en {
  color: #fff;
}
.section--free .section__en::before,
.section--free .section__en::after,
.section--clinics .section__en::before,
.section--clinics .section__en::after {
  background: rgba(255, 255, 255, 0.55);
}
/* free: 内部のカード/メガは白カードで残し、オン濃ピンクの抜け感 */
.section--free .free-mega {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(40, 12, 24, 0.12);
}
.section--free .free-item {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}
.section--free .free-item__no { color: var(--primary-dark); }
.section--free .free-item__title { color: var(--text-deep); }
.section--free .free-item__text { color: var(--text-light); }
.section--free .free-item__sub { color: var(--text-mute); }

/* clinics: バナーはそのまま見せ、見出しと枠だけ抜け感に */
.section--clinics .clinic-banners__item a {
  background: #fff;
  box-shadow: 0 12px 32px rgba(40, 12, 24, 0.16);
}

/* ============================================
   ファイル名バッジ（画像ラフ未入稿時のみ表示）
   ============================================ */
.img-rough[data-img] {
  flex-direction: column;
  gap: 8px;
}
.img-rough[data-img]::after {
  content: attr(data-img) "." attr(data-ext);
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid var(--rough-border);
  font-weight: 500;
}
/* data-size 属性があれば、ファイル名 + 推奨サイズ を併記 */
.img-rough[data-img][data-size]::after {
  content: attr(data-img) "." attr(data-ext) " · " attr(data-size);
}
/* 画像が入ったらラフ枠の痕跡を完全消去（テキストノード/バッジ/縦余白すべて） */
.img-rough--filled {
  font-size: 0 !important;
  gap: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: transparent !important;
  overflow: visible !important;
}
.img-rough--filled > br,
.img-rough--filled > * {
  display: none !important;
}
.img-rough--filled > img {
  display: block !important;
  font-size: initial;
}
.img-rough--filled::after,
.img-rough--filled::before {
  display: none !important;
  content: "" !important;
}
