@charset "UTF-8";

/* ============================================================
   想いコーポレーション｜お急ぎの方向け 身元保証LP
   ============================================================ */

/* ─── 元LPと同じローカルフォントを読み込み ──────────── */
@import url("../fonts/NotoSansJP/NotoSansJP.css");
@import url("../fonts/YakuHanGOTHICs/YakuHanGOTHICs.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.min.css");

/* ─── CSS変数 ──────────────────────────────────────────── */
:root {
  /* メインアクセント（CTA・強調） */
  --c-primary: #ed6929;          /* 想いコーポレーションのオレンジ */
  --c-primary-dark: #c4520f;
  --c-primary-light: #fce2d2;
  --c-urgent: #d23929;           /* 緊急感のある赤（CTAボタン専用） */
  --c-urgent-dark: #a02620;

  /* 信頼の金 */
  --c-gold: #c89a3a;
  --c-gold-light: #e0bb6e;

  /* ポジティブ（プラン・チェックマーク） */
  --c-green: #7cba2c;
  --c-green-dark: #5a8d1d;
  --c-yellow-line: #fde87a;

  /* テキスト：元LPに合わせて #4f3e32 系・#333 系を使用 */
  --c-text: #333333;
  --c-text-sub: #6a5f55;
  --c-text-brown: #4f3e32;       /* 元LPの基本テキスト色 */

  /* 背景 */
  --c-bg: #fbf6ec;
  --c-bg-deep: #f5ecdb;
  --c-bg-cream: #fffbf2;
  --c-white: #ffffff;
  --c-line: #e6dccb;

  /* フォント：元LPと完全に同じスタック（ゴシック系のみ） */
  --ff-base: "YakuHanGOTHICs", "NotoSansJP", "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Roboto, "Droid Sans", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  --ff-sans: var(--ff-base);
  --ff-serif: var(--ff-base);    /* 明朝は使わずすべてゴシックで統一 */

  --shadow-sm: 0 2px 8px rgba(60, 40, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(60, 40, 20, 0.10);
  --shadow-lg: 0 16px 48px rgba(60, 40, 20, 0.14);
}

/* ─── リセット & ベース ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-base);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: 84px; /* floating CTA分 */
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

em { font-style: normal; font-weight: 700; color: var(--c-primary); }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ─── 共通 セクションタイトル ────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2.4vw, 18px);
  letter-spacing: 0.25em;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding: 0 36px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--c-gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.section-title em {
  color: var(--c-primary);
  background: linear-gradient(transparent 65%, rgba(237, 105, 41, 0.18) 65%);
  padding: 0 4px;
}

/* ─── 緊急対応バー ───────────────────────────────────── */
.urgency-bar {
  background: var(--c-primary);
  color: var(--c-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.urgency-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.urgency-bar__icon {
  color: #7cba2c;
  animation: pulse 1.6s ease-in-out infinite;
  font-size: 10px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── ヘッダー（削除済み・ヘッダー要素なし） ───────── */

/* ─── CTA共通ボタン ───────────────────────────────────── */
.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ee7234 0%, var(--c-urgent) 100%);
  color: var(--c-white);
  padding: 18px 56px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 0 var(--c-urgent-dark), 0 12px 24px rgba(160, 38, 32, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  min-width: 280px;
}
.cta-button::after {
  content: "→";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.cta-button:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--c-urgent-dark), 0 8px 16px rgba(160, 38, 32, 0.3);
}
.cta-button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 var(--c-urgent-dark), 0 4px 8px rgba(160, 38, 32, 0.3);
}
.cta-button__main {
  font-size: clamp(17px, 3vw, 21px);
  letter-spacing: 0.05em;
}
.cta-button__sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.cta-button--inverse {
  background: var(--c-white);
  color: var(--c-urgent);
  box-shadow: 0 6px 0 var(--c-bg-deep), 0 12px 24px rgba(0, 0, 0, 0.18);
}
.cta-button--inverse:hover {
  box-shadow: 0 4px 0 var(--c-bg-deep), 0 8px 16px rgba(0, 0, 0, 0.18);
}
.cta-button--xl {
  padding: 24px 72px;
}
.cta-button--xl .cta-button__main { font-size: clamp(19px, 3.5vw, 26px); }

/* ─── ファーストビュー ────────────────────────────────── */
.fv {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf6ec 0%, #f5ecdb 100%);
}
.fv__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(237, 105, 41, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 137, 58, 0.10), transparent 45%);
  pointer-events: none;
}
.fv__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fv__lead {
  display: inline-block;
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: 8px;
  padding: 9px 24px;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
}
.fv__lead::before,
.fv__lead::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: var(--c-primary);
}
.fv__lead::before { left: 50%; transform: translateX(-9px); }
.fv__lead::after {
  left: 50%; transform: translateX(-7px);
  border-top-color: var(--c-white);
  bottom: -5px;
}
.fv__lead-line {
  display: inline-block;
  font-size: clamp(13px, 2.2vw, 16px);
}
.fv__lead-line--em {
  color: var(--c-primary);
  font-size: clamp(15px, 2.7vw, 20px);
  margin-left: 8px;
}

.fv__headline {
  margin-bottom: 36px;
  line-height: 1.4;
}
.fv__headline-sub {
  display: block;
  font-size: clamp(14px, 2.3vw, 18px);
  font-weight: 500;
  color: var(--c-text-sub);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.fv__headline-logo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}
.fv__headline-logo {
  max-width: 580px;
  width: min(86%, 580px);
  height: auto;
  display: block;
}
.fv__headline-particle {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.fv__headline-em {
  display: inline-block;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(26px, 4.8vw, 40px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .fv__headline-logo-line {
    gap: 8px;
  }
  .fv__headline-logo {
    width: min(82%, 360px);
  }
}

/* ─── FV ソフト版見出し（動画FVバージョン） ──────── */
.fv__headline--soft {
  margin: 8px auto 36px;
  text-align: center;
}
.fv__headline--soft .fv__headline-sub {
  display: block;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  line-height: 1.4;
}
.fv__headline-main-soft {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fv__headline-main-soft .fv__headline-logo {
  max-width: 480px;
  width: min(78%, 480px);
  height: auto;
}
.fv__headline-em-soft {
  display: inline-block;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-style: normal;
}
@media (max-width: 600px) {
  .fv__headline-main-soft .fv__headline-logo {
    width: min(82%, 320px);
  }
}

/* FV 動画 */
.fv--video .fv__inner {
  padding-top: 32px;
  padding-bottom: 56px;
}
.fv__video {
  margin: 0 auto 44px;
  max-width: 920px;
  width: 100%;
}
.fv__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(60, 40, 20, 0.10),
    0 24px 64px rgba(60, 40, 20, 0.16);
  background: var(--c-bg-deep);
  border: 4px solid var(--c-white);
}
.fv__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* YouTube Facade: クリックまでiframeを読み込まず、自前の高解像度サムネを表示 */
.fv__video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: #1a1a1a;
  cursor: pointer;
  display: block;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.fv__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.4s ease, filter 0.2s ease;
}
.fv__video-thumb.is-loaded {
  opacity: 1;
}
.fv__video-facade:hover .fv__video-thumb.is-loaded {
  transform: scale(1.03);
  filter: brightness(0.92);
}
.fv__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 62px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}
.fv__video-facade:hover .fv__video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.fv__video-play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fv__video-play-bg {
  fill: #212121;
  fill-opacity: 0.85;
  transition: fill 0.2s ease, fill-opacity 0.2s ease;
}
.fv__video-facade:hover .fv__video-play-bg {
  fill: #f00;
  fill-opacity: 1;
}
.fv__video-facade:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
}
.fv__video-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--c-text-sub);
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .fv__video { margin-bottom: 32px; }
  .fv__video-wrap { border-radius: 14px; border-width: 3px; }
  .fv__video-play { width: 64px; height: 45px; }
}

.fv__points {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin: 0 auto 44px;
  max-width: 920px;
}
.fv__points li {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.fv__points li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 900;
  font-family: Georgia, var(--ff-base);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fv__points {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding: 0 24px;
  }
  .fv__points li {
    justify-content: flex-start;
    width: auto;
  }
}

.fv__cta {
  margin-bottom: 48px;
}
.fv__cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-text-sub);
}

.fv__trust {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed var(--c-line);
}
.fv__trust img {
  margin: 0 auto;
  max-width: 760px;
}
@media (max-width: 767px) {
  .fv__trust img { max-width: 320px; }
}

/* ─── 身元保証を会社にまかせるってこういうこと ─── */
.explainer {
  padding: 100px 0;
  background: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.explainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 92%, rgba(237, 105, 41, 0.05), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(200, 154, 58, 0.06), transparent 32%);
  pointer-events: none;
}
.explainer .container { position: relative; z-index: 1; }
.explainer__lead {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: clamp(14px, 2.3vw, 16px);
  line-height: 2;
  color: var(--c-text-sub);
}
.explainer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .explainer__grid { grid-template-columns: 1fr; gap: 22px; max-width: 480px; }
  .explainer { padding: 72px 0; }
}
.explainer-card {
  background: var(--c-white);
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(230, 220, 203, 0.6);
  box-shadow:
    0 4px 16px rgba(60, 40, 20, 0.04),
    0 12px 32px rgba(60, 40, 20, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.explainer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--c-primary) 30%, var(--c-primary) 70%, transparent);
  border-radius: 0 0 4px 4px;
}
.explainer-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(60, 40, 20, 0.08),
    0 20px 48px rgba(60, 40, 20, 0.12);
}
.explainer-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: var(--c-white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(237, 105, 41, 0.30);
  font-family: Georgia, var(--ff-base);
}
.explainer-card__title {
  font-size: clamp(17px, 2.6vw, 20px);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 16px;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.explainer-card__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text-sub);
  text-align: left;
}

/* ─── ソフト中間CTA ─── */
.cta-soft {
  padding: 64px 0;
  background: linear-gradient(135deg, #fff5e9 0%, #fbf6ec 100%);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(230, 220, 203, 0.5);
  border-bottom: 1px solid rgba(230, 220, 203, 0.5);
}
.cta-soft__lead {
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.cta-soft__lead em {
  color: var(--c-primary);
  font-style: normal;
  background: linear-gradient(transparent 65%, var(--c-yellow-line) 65%);
  padding: 0 6px;
  font-weight: 900;
}

/* ─── お客様の声（実画像版・洗練デザイン） ───────── */
.voices {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #fffbf2 0%, #fbf6ec 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.voices__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(237, 105, 41, 0.04), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(200, 154, 58, 0.05), transparent 38%);
}
.voices .container { position: relative; z-index: 1; }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1080px;
  margin: 56px auto 0;
}
@media (max-width: 900px) {
  .voices__grid { grid-template-columns: 1fr; gap: 28px; max-width: 560px; }
  .voices { padding: 72px 0 80px; }
}

.voice-card {
  background: var(--c-white);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 4px 16px rgba(60, 40, 20, 0.06),
    0 16px 40px rgba(60, 40, 20, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(230, 220, 203, 0.5);
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 20px rgba(60, 40, 20, 0.08),
    0 24px 56px rgba(60, 40, 20, 0.12);
}

/* メディア部分（写真 + プロフィールバッジ） */
.voice-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.voice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.voice-card:hover .voice-card__media img {
  transform: scale(1.04);
}
.voice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.voice-card__badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--c-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.voice-card__location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
.voice-card__age {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* 本文 */
.voice-card__body {
  padding: 32px 32px 36px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.voice-card__quote-mark {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}
.voice-card__title {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
  line-height: 1.55;
  color: var(--c-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 16px;
}
.voice-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-gold) 100%);
  border-radius: 2px;
}
.voice-card__text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.voice-card__text mark {
  background: linear-gradient(transparent 60%, var(--c-yellow-line) 60%);
  color: var(--c-text);
  font-weight: 700;
  padding: 0 2px;
}

@media (max-width: 600px) {
  .voice-card__body { padding: 26px 22px 30px; }
  .voice-card__quote-mark { font-size: 60px; top: 10px; right: 18px; }
  .voice-card__media { aspect-ratio: 16 / 10; }
  .voice-card__age { font-size: 16px; }
}

/* ─── 共感セクション ──────────────────────────────────── */
.problem {
  padding: 80px 0;
  background: var(--c-white);
  text-align: center;
}
.problem-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.problem-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  display: block;
}
@media (max-width: 600px) {
  .problem-images {
    gap: 12px;
    margin-bottom: 36px;
  }
  .problem-images img {
    border-radius: 12px;
  }
}
.problem-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 48px;
}
@media (max-width: 600px) {
  .problem-list { grid-template-columns: 1fr; }
}
.problem-card {
  background: var(--c-bg);
  border-left: 4px solid var(--c-primary);
  padding: 24px 24px 24px 28px;
  text-align: left;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.problem-card__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card__text {
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 600;
  line-height: 1.6;
}
.problem-bridge {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin-top: 32px;
}
.problem-bridge em { font-size: 1.05em; }

/* ─── データセクション ────────────────────────────────── */
.data-section {
  padding: 80px 0;
  background: var(--c-bg);
  text-align: center;
}
.data-emphasis {
  display: inline-block;
  font-family: var(--ff-serif);
  font-size: clamp(60px, 12vw, 110px);
  color: var(--c-primary);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 8px;
}
.data-emphasis::after {
  content: "割";
  font-size: 0.5em;
  margin-left: 4px;
  vertical-align: 0.3em;
}
.data-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: left;
}
@media (max-width: 700px) {
  .data-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }
}

/* ドーナツチャート */
.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.donut-chart__bg {
  fill: none;
  stroke: var(--c-bg-deep);
  stroke-width: 22;
}
.donut-chart__fg {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 22;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 50;
  animation: donut 1.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}
@keyframes donut {
  from { stroke-dashoffset: 502; }
  to { stroke-dashoffset: 50; } /* 90% = 502 - (502 * 0.9) = 50 */
}
.donut-chart__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-chart__num {
  font-family: var(--ff-serif);
  font-size: 52px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.donut-chart__num small {
  font-size: 24px;
  margin-left: 2px;
}
.donut-chart__txt {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-sub);
  margin-top: 4px;
}

.data-card__lead {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
}
.data-card__lead strong { color: var(--c-primary); }
.data-card__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text-sub);
}

/* ─── 信頼の証セクション ──────────────────────────────── */
.award {
  position: relative;
  padding: 70px 0 60px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5e9c8 0%, #e8d4a0 100%);
}
.award__bg {
  position: absolute;
  inset: 0;
  background: url("../img/award_bg.jpg") center/cover;
  opacity: 0.35;
  pointer-events: none;
}
.award .container { position: relative; z-index: 1; }
.award__ribbon {
  margin-bottom: 24px;
}
.award__ribbon img {
  margin: 0 auto;
  max-width: 360px;
}
.award__lead {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 600;
  color: #6b4d20;
  margin-bottom: 32px;
}
.award__icon img {
  margin: 0 auto;
  max-width: 800px;
}
@media (max-width: 767px) {
  .award__icon img { max-width: 320px; }
  .award__ribbon img { max-width: 280px; }
}

/* ─── 選ばれる理由 ────────────────────────────────────── */
.reasons {
  padding: 80px 0;
  background: var(--c-white);
  text-align: center;
}
.reason-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 800px) {
  .reason-list { grid-template-columns: 1fr; gap: 32px; }
}
.reason-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 48px 28px 32px;
  position: relative;
  text-align: center;
  border: 1px solid var(--c-line);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reason-card__no {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(237, 105, 41, 0.25);
  white-space: nowrap;
}
.reason-card__no strong {
  font-weight: 900;
  font-size: 1.25em;
  margin: 0 2px;
  letter-spacing: 0.02em;
}
.reason-card__line {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  margin-bottom: 16px;
  position: relative;
}
.reason-card__line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--c-primary);
}
.reason-card__catch {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 23px);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.02em;
}
.reason-card__catch em {
  display: inline-block;
  color: var(--c-primary);
  background: linear-gradient(transparent 60%, var(--c-yellow-line) 60%);
  padding: 0 6px;
  font-size: 1.18em;
  line-height: 1.4;
}
.reason-card__catch-line {
  display: block;
}
.reason-card__text {
  font-size: 14px;
  text-align: left;
  color: var(--c-text-sub);
  line-height: 1.85;
  margin-top: auto;
}
@media (max-width: 800px) {
  .reason-card__catch { min-height: auto; }
}

/* ─── 中間CTA ───────────────────────────────────────── */
.cta-mid {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.cta-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}
.cta-mid .container { position: relative; z-index: 1; }
.cta-mid__lead {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: 28px;
}
.cta-mid__lead em {
  color: #ffd54f;
  background: none;
  font-size: 1.1em;
}

/* ─── 対応範囲 ─────────────────────────────────────────── */
.scope {
  padding: 80px 0;
  background: var(--c-bg);
  text-align: center;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .scope-grid { grid-template-columns: 1fr; }
}
.scope-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--c-primary);
}
.scope-card--ng {
  border-top-color: var(--c-text-sub);
  opacity: 0.92;
}
.scope-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--c-line);
}
.scope-card__badge {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.scope-card__badge--ng { background: var(--c-text-sub); }
.scope-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
}
.scope-card__list {
  list-style: none;
}
.scope-card__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dotted var(--c-line);
  font-size: 15px;
  font-weight: 500;
}
.scope-card__list li:last-child { border-bottom: none; }
.scope-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.scope-card__list--ng li {
  color: var(--c-text-sub);
  text-decoration: line-through;
  text-decoration-color: var(--c-primary);
  text-decoration-thickness: 2px;
}
.scope-card__list--ng li::before {
  content: "×";
  background: var(--c-text-sub);
  text-decoration: none;
}
.scope-card__note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--c-bg);
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--c-text-sub);
}
.scope-card__note strong { color: var(--c-text); }

/* ─── ご利用の流れ ─────────────────────────────────────── */
.flow {
  padding: 80px 0;
  background: var(--c-white);
  text-align: center;
}
.flow-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: var(--c-line);
  z-index: 0;
}
@media (max-width: 600px) {
  .flow-list::before { left: 28px; top: 32px; bottom: 32px; }
}
.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.flow-step__body {
  padding: 4px 0;
}
@media (max-width: 600px) {
  .flow-step {
    gap: 16px;
    align-items: flex-start;
  }
  .flow-step__body { padding-top: 6px; }
}
.flow-step__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 64px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 32px;
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 54, 46, 0.3);
}
@media (max-width: 600px) {
  .flow-step__no {
    width: 56px; height: 56px;
    border-radius: 50%;
    font-size: 10px;
    flex-direction: column;
    line-height: 1.2;
    padding: 0 4px;
    text-align: center;
  }
}
.flow-step__title {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2.6vw, 19px);
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-step__text {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.8;
}
.flow-step__text strong { color: var(--c-primary); font-weight: 700; }

/* テキストリンク */
.text-link {
  color: var(--c-primary) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color 0.15s;
}
.text-link:hover {
  color: var(--c-urgent) !important;
}

/* フロー内の注釈（全国対応など） */
.flow-step__note {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--c-bg);
  border-left: 3px solid var(--c-primary);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text);
}
.flow-step__note strong {
  font-weight: 700;
}
.flow-step__note em {
  color: var(--c-primary);
  font-weight: 800;
  font-size: 1.1em;
  font-style: normal;
  background: linear-gradient(transparent 65%, var(--c-yellow-line) 65%);
  padding: 0 4px;
}
.flow-step--final .flow-step__no {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
}

/* ─── 最終CTA ──────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #fbf6ec 0%, #f0e2c8 100%);
  text-align: center;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(237, 105, 41, 0.10), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(184, 137, 58, 0.12), transparent 45%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final__eyebrow {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 6px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.cta-final__title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cta-final__title em {
  color: var(--c-primary);
  font-size: 1.1em;
}
.cta-final__text {
  font-size: clamp(14px, 2.2vw, 16px);
  margin-bottom: 40px;
  color: var(--c-text-sub);
  line-height: 1.9;
}
.cta-final__button {
  margin-bottom: 48px;
}

/* ─── 注意事項 ─────────────────────────────────────────── */
.notice {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.notice__title {
  font-family: var(--ff-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--c-text);
}
.notice__list {
  list-style: none;
}
.notice__list li {
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-text-sub);
}
.notice__list li strong {
  color: var(--c-text);
  font-weight: 700;
}

/* ─── フッター（元LP仕様：白背景） ───────────────────── */
.site-footer {
  padding: 56px 24px 40px;
  background: #ffffff;
  color: #4f3e32;
  text-align: center;
  border-top: 1px solid #e6dccb;
}

.site-footer .container {
  max-width: 720px;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-brand__logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 480px) {
  .footer-brand__logo { max-width: 280px; }
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  color: #4f3e32;
  margin-bottom: 24px;
}
.footer-address__line {
  display: block;
}

.footer-link {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #4f3e32;
  color: #4f3e32 !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.footer-link:hover {
  background: #4f3e32;
  color: #ffffff !important;
}

/* フッター内の資料リンク群（会社案内 + 会社概要） */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* ─── パンフレットリンクボタン ─────────────────────── */
.brochure-link {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.brochure-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, #8bc63f 0%, var(--c-green) 100%);
  border: none;
  border-radius: 999px;
  padding: 18px 32px;
  color: var(--c-white) !important;
  text-decoration: none !important;
  min-width: 320px;
  max-width: 480px;
  width: 100%;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 6px 16px rgba(124, 186, 44, 0.30), 0 12px 32px rgba(124, 186, 44, 0.15);
  font-weight: 700;
}
.brochure-link__button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 186, 44, 0.40), 0 16px 40px rgba(124, 186, 44, 0.20);
}
.brochure-link__title {
  font-size: clamp(15px, 2.4vw, 17px);
  font-weight: 700;
  color: var(--c-white);
  flex: 1;
  text-align: center;
  letter-spacing: 0.04em;
}
.brochure-link__arrow {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--c-white);
  font-weight: 700;
}

@media (max-width: 600px) {
  .brochure-link__button {
    min-width: auto;
    width: 100%;
    padding: 16px 24px;
  }
}

.site-footer__copy {
  font-size: 12px;
  color: #4f3e32;
  letter-spacing: 0.02em;
  padding-top: 24px;
  border-top: 1px solid #e6dccb;
}

/* ─── 追従CTA（モバイル + PC） ─────────────────────────── */
.floating-cta {
  position: fixed;
  z-index: 99;
}

/* モバイル：下部固定バー */
@media (max-width: 767px) {
  .floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  }
  .floating-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(180deg, #ee7234 0%, var(--c-urgent) 100%);
    color: var(--c-white);
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .floating-cta__line { display: inline; }
  .floating-cta__line:not(:last-child)::after { content: ""; }
}

/* PC：右下に正円のフローティングボタン */
@media (min-width: 768px) {
  .floating-cta {
    right: 28px;
    bottom: 28px;
  }
  .floating-cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ee7234 0%, var(--c-urgent) 100%);
    color: var(--c-white);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.12),
      0 12px 32px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
  }
  .floating-cta__button::after {
    content: "→";
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    opacity: 0.85;
  }
  .floating-cta__button:hover {
    transform: translateY(-2px);
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.14),
      0 16px 40px rgba(0, 0, 0, 0.12);
  }
  .floating-cta__line {
    display: block;
  }
}

/* 初期状態は非表示で、FV通過後にフェードイン */
.floating-cta {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── 動画セクション ───────────────────────────────────── */
.video-section {
  padding: 80px 0;
  background: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(237, 105, 41, 0.05), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(200, 154, 58, 0.06), transparent 35%);
  pointer-events: none;
}
.video-section .container { position: relative; z-index: 1; }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-bg-deep);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  margin-top: 24px;
  font-size: 14px;
  color: var(--c-text-sub);
  font-weight: 500;
}

/* ─── 料金プランセクション ────────────────────────────── */
.pricing {
  padding: 80px 0 90px;
  background: var(--c-bg);
  text-align: center;
  position: relative;
}
.pricing__chip {
  display: inline-block;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(124, 186, 44, 0.25);
}
.pricing__chip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: var(--c-green);
}
.pricing__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.pricing__title-sub {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--c-text-sub);
  margin-left: 4px;
  vertical-align: 0.05em;
}
.pricing__lead {
  font-size: clamp(14px, 2.4vw, 16px);
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--c-text);
}
.pricing__lead-quote {
  display: block;
  font-weight: 700;
  font-family: var(--ff-serif);
  font-size: 1.1em;
  margin-bottom: 4px;
}
.pricing__lead-note {
  font-size: 13px;
  color: var(--c-text-sub);
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto 32px;
}
@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.pricing-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 28px 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.pricing-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-sub);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--ff-serif);
  font-weight: 900;
  margin-bottom: 8px;
  position: relative;
}
.pricing-card__num {
  font-size: clamp(36px, 5.5vw, 48px);
  color: var(--c-green-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(transparent 70%, var(--c-yellow-line) 70%, var(--c-yellow-line) 95%, transparent 95%);
  padding: 0 6px;
}
.pricing-card__unit {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--c-text);
  font-weight: 700;
}
.pricing-card__sub {
  font-size: 12px;
  color: var(--c-text-sub);
  margin-top: 4px;
}
.pricing-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--c-primary);
  font-family: var(--ff-serif);
}
@media (max-width: 800px) {
  .pricing-plus { padding: 4px 0; font-size: 24px; }
}
.pricing-equal {
  margin: 36px auto 0;
  max-width: 640px;
  padding: 24px 24px;
  background: var(--c-white);
  border: 2px dashed var(--c-primary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pricing-equal__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.1em;
}
.pricing-equal__amount {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--c-text);
}
.pricing-equal__amount strong {
  color: var(--c-green-dark);
  font-weight: 900;
  background: linear-gradient(transparent 70%, var(--c-yellow-line) 70%, var(--c-yellow-line) 95%, transparent 95%);
  padding: 0 6px;
}
.pricing-equal__sub {
  font-size: 13px;
  color: var(--c-text-sub);
}

.pricing-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .pricing-features { grid-template-columns: 1fr; }
}
.pricing-feature {
  background: var(--c-white);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.pricing-feature::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--c-green);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── ユーティリティ ──────────────────────────────────── */
.sp-only { display: none; }
@media (max-width: 600px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .container { padding: 0 16px; }
}

/* ─── アニメーション ──────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fv__lead,
  .fv__headline,
  .fv__points,
  .fv__cta {
    opacity: 0;
    animation: fadeUp 0.7s ease-out forwards;
  }
  .fv__lead { animation-delay: 0.05s; }
  .fv__headline { animation-delay: 0.2s; }
  .fv__points { animation-delay: 0.4s; }
  .fv__cta { animation-delay: 0.55s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
