/* ============================================================
   reason.html 専用スタイル
   style.css の後に読み込む。色は必ず var(--yg-*/--sb-*/--text-*) を使用。
============================================================ */

/* ---------- シンプルなページ見出し(hero-simple) ---------- */
.hero-simple {
  padding-top: calc(var(--header-h) + 48px);
  background: var(--bg-tint-green);
}
.hero-simple h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.55;
  max-width: 22em;
}
.hero-simple .sec-lead { margin-top: 22px; max-width: 42em; }

/* ---------- ビフォー/アフター図版(第9章 追加2準拠) ---------- */
.before-after {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin: 40px auto 0; max-width: 720px;
}
.before-after figure { margin: 0; flex: none; text-align: center; }
.before-after figure img { width: min(100%, 300px); margin-inline: auto; }
.before-after__arrow {
  flex: none; font-size: 34px; font-weight: 800; color: var(--yg-700);
}
@media (max-width: 640px) {
  .before-after { flex-direction: column; gap: 14px; }
  .before-after__arrow { transform: rotate(90deg); }
}

/* ---------- 効く介入データ表 ---------- */
.reason-stats { margin-top: 30px; max-width: 620px; }

/* ---------- 当社に向いていない場合 ---------- */
.not-fit { background: var(--bg-tint-blue); }
.not-fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.not-fit-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 26px;
}
.not-fit-card__name { font-size: 15.5px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.not-fit-card__name::before { content: "×"; color: var(--sb-700); font-weight: 800; }
.not-fit-card p { font-size: 14px; color: var(--text-mid); margin-top: 8px; line-height: 1.75; }
.not-fit__close { margin-top: 26px; font-weight: 700; max-width: 46em; }
@media (max-width: 780px) { .not-fit-grid { grid-template-columns: 1fr; } }

/* ---------- 診断フレーム(中間CTA) ---------- */
.mid-cta { background: var(--bg-tint-green); }
.mid-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
