@charset "UTF-8";
/* ============================================================
   全日埼玉 Meta広告用LP
   - オレンジ基調（既存サイト・提案書トーン準拠）
   - 単一HTML＋メディアクエリ（ブレークポイント768px）
   - CF7（Contact Form 7）標準クラス対応スタイル含む
============================================================ */

:root {
  --c-primary: #f0721c;        /* メインオレンジ */
  --c-primary-dark: #d95f0e;
  --c-primary-pale: #fef3e8;
  --c-accent: #1f3354;         /* 濃紺（信頼・引き締め） */
  --c-accent-dark: #16263f;
  --c-text: #2b2b2b;
  --c-text-light: #6b6b6b;
  --c-cream: #faf6f0;
  --c-white: #fff;
  --c-line: #e8e0d6;
  --c-green: #1a9e6e;          /* 無料・OK系バッジ */
  --c-req: #d23c3c;
  --shadow: 0 8px 24px rgba(31, 51, 84, .08);
  --radius: 14px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font);
  color: var(--c-text);
  line-height: 1.8;
  font-size: 16px;
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--c-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ---------- 汎用 ---------- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--cream {
  background-color: var(--c-cream);
  background-image: radial-gradient(rgba(240, 114, 28, .07) 1.5px, transparent 1.6px);
  background-size: 24px 24px;
}

/* マーカー強調 */
.mk {
  font-style: normal;
  background: linear-gradient(transparent 62%, #ffcf8f 62%);
  padding: 0 2px;
}

/* セクション間の波形ディバイダー */
.wave {
  line-height: 0;
  background: var(--wave-bg, #fff);
  margin-top: -1px;
}
.wave svg { width: 100%; height: 52px; display: block; }
.wave--gnavy-bg { background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%); }

.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Montserrat", var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 12px;
}
.sec-label::before, .sec-label::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
}
.sec-label::before { transform: rotate(25deg); }
.sec-label::after { transform: rotate(-25deg); }
.sec-label--light { color: #ffb27a; }
.sec-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 28px;
}
.sec-title--light { color: var(--c-white); }
.sec-lead {
  text-align: center;
  margin: -8px auto 40px;
  max-width: 640px;
  color: var(--c-text-light);
}

/* プレースホルダー共通 */
.ph-box, .fv__bg {
  background:
    repeating-linear-gradient(45deg, #ece6dd 0 14px, #e4ddd2 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph-label {
  display: inline-block;
  background: rgba(43, 43, 43, .55);
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ボタン */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 280px;
  padding: 18px 48px 18px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
/* 右端の矢印（シェブロン） */
.btn::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg);
}
/* シャイン（光の帯）アニメーション */
.btn--primary::before, .btn--white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .5) 50%, transparent 80%);
  transform: skewX(-22deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn--primary::before, .btn--white::before { animation: shine 3.6s ease-in-out infinite; }
}
@keyframes shine {
  0% { left: -80%; }
  38% { left: 130%; }
  100% { left: 130%; }
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, #f5933c 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(240, 114, 28, .35);
}
.btn--secondary {
  background: var(--c-white);
  color: var(--c-primary-dark);
  border: 2px solid var(--c-primary);
  box-shadow: var(--shadow);
}
.btn--large { min-width: 340px; font-size: 19px; }
.btn__small { font-size: 12px; font-weight: 500; opacity: .85; }

/* バッジ */
.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
}
.badge--campaign {
  background: var(--c-accent);
  color: #ffd9b8;
  letter-spacing: .04em;
}

/* ラビーちゃん（マスコット） */
.rabbit-ph {
  position: relative;
  width: 90px;
  flex-shrink: 0;
  pointer-events: none;
}
.rabbit-img { width: 100%; height: auto; display: block; }
.rabbit-ph--xs { width: 44px; }
.rabbit-ph--s { width: 60px; }
.rabbit-ph--m { width: 88px; }

/* スクロールフェードイン */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ヘッダー
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* PC：正式組織名（ロゴ）を左右中央に。電話は右端固定 */
@media (min-width: 769px) {
  .header__inner { justify-content: center; position: relative; }
  .header__tel {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header__logo img { width: 300px; height: auto; }
.header__tel {
  text-decoration: none;
  color: var(--c-text);
  text-align: right;
  line-height: 1.3;
}
.header__tel-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-primary-dark);
}
.header__tel-number {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
}

/* ============================================================
   FV
============================================================ */
.fv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ef 0%, #ffe9d4 100%);
}
.fv__bg {
  position: absolute;
  inset: 0;
  opacity: .35;
}
.fv__bg .ph-label { position: absolute; right: 16px; bottom: 16px; }
.fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 58px 24px 96px; /* FV短縮：スクロールなしでCTAが見える高さに */
  text-align: center;
}
/* FV装飾（ぼかし円・ドットパターン・波） */
.fv__deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.fv__deco--1 { width: 440px; height: 440px; background: rgba(240, 114, 28, .18); top: -130px; left: -120px; }
.fv__deco--2 { width: 400px; height: 400px; background: rgba(31, 51, 84, .12); bottom: -110px; right: -100px; }
.fv__dots {
  position: absolute;
  width: 190px;
  height: 190px;
  background-image: radial-gradient(var(--c-primary) 2px, transparent 2.5px);
  background-size: 19px 19px;
  opacity: .25;
  pointer-events: none;
}
.fv__dots--1 { top: 70px; right: 5%; }
.fv__dots--2 { bottom: 110px; left: 4%; }
.fv__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 2; /* 人物写真より前面。人物の下端を波で隠し、波の切れ目から抜ける見せ方 */
}
.fv__wave svg { width: 100%; height: 54px; display: block; }
.fv__aori {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--c-primary-dark);
  margin-bottom: 14px;
}
/* 切り抜き人物写真（左右）：中央の文字要素を挟んで男女が立つ構図
   - 配置は画面端基準ではなくコピー基準（中央から430px）。狭い画面では端基準にフォールバック
   - 頭の大きさのバランスを取るため男性をやや大きく
   - 下端はFVの波形（.fv__wave）の裏に潜らせて、波の切れ目から抜ける見せ方にする */
.fv__person {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
/* 画像は不透明領域でトリミング済み（透過余白なし）。
   内側の端＝体の端なので、CTAボタン端（中央から約300px）の手前に直接アンカーする */
.fv__person--l {
  /* 男性はノークロップ画像（指先保護のため）。右側に約7%の透過余白がある分、アンカーを内側に */
  width: clamp(330px, 30vw, 410px);
  left: max(-40px, calc(50% - 268px - clamp(330px, 30vw, 410px)));
}
.fv__person--r {
  /* 頭の水平位置が男性と対称になる距離に配置 */
  width: clamp(200px, 18vw, 248px);
  right: max(-16px, calc(50% - 355px - clamp(200px, 18vw, 248px)));
}
.fv__person img { width: 100%; height: auto; display: block; }
@media (max-width: 1080px) {
  .fv__person { display: none; }
}
.fv__catch {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 16px;
  /* 人物写真と端が重なっても文字が沈まないよう白グローで保護 */
  text-shadow:
    0 0 6px rgba(255, 247, 239, .95),
    0 0 16px rgba(255, 247, 239, .9),
    0 0 28px rgba(255, 247, 239, .8);
}
.fv__sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 24px;
  text-shadow: 0 0 8px rgba(255, 247, 239, .95), 0 0 16px rgba(255, 247, 239, .85);
}
/* 円形シール風バッジ */
.seal {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #ffa54d 0%, var(--c-primary) 70%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 10px 22px rgba(240, 114, 28, .35);
  position: relative;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px dashed rgba(255, 255, 255, .6);
  border-radius: 50%;
}
.seal strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
  margin: 2px 0;
}
/* ネイビー版シール（FVバッジ・COSTバッジで使用。傾きなし） */
.seal--navy {
  background: radial-gradient(circle at 32% 26%, #33517f 0%, var(--c-accent) 75%);
  box-shadow: 0 10px 22px rgba(31, 51, 84, .35);
}
.fv__seals {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 30px;
}
.fv__seals .seal:nth-child(2) { animation-delay: .6s; }
.fv__seals .seal:nth-child(3) { animation-delay: 1.2s; }
@media (prefers-reduced-motion: no-preference) {
  .fv__seals .seal { animation: fuwa 3.2s ease-in-out infinite alternate; }
}
@keyframes fuwa {
  from { translate: 0 0; }
  to { translate: 0 -8px; }
}
.fv__rabbit {
  display: flex;
  align-items: flex-end;
  width: 74px;
}
@media (prefers-reduced-motion: no-preference) {
  .fv__rabbit { animation: fuwa 3.2s ease-in-out infinite alternate; animation-delay: 1.8s; }
}
.fv__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   悩み3点
============================================================ */
.problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0;
}
/* 吹き出し＋イラストの縦組み */
.problem__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.problem__bubble {
  position: relative;
  width: 100%;
  background: var(--c-white);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(31, 51, 84, .12);
  padding: 30px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
}
.problem__bubble::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-top-color: var(--c-white);
  border-bottom: 0;
}
/* 悩みイラスト（フラットイラスト直置き。吹き出しのしっぽが人物を指す） */
.problem__illust {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.problem__illust img {
  height: 200px;
  width: auto;
  display: block;
}
/* 「全日埼玉が解決」付近のラビーちゃん */
.problem__bridge-wrap { position: relative; }
.problem__rabbit {
  position: absolute;
  right: calc(50% - 358px); /* 指さしが左向きのためテキスト右側、コピー末尾のすぐ隣に */
  bottom: -8px;
}
@media (max-width: 900px) {
  .problem__rabbit { position: static; margin: 18px auto 0; }
}
.problem__bridge {
  margin-top: 56px;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  position: relative;
}
.problem__bridge::before {
  content: "";
  display: block;
  width: 0; height: 0;
  margin: 0 auto 24px;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 26px solid var(--c-primary-pale);
}
.problem__bridge strong {
  color: var(--c-primary-dark);
  font-size: 32px;
}

/* ============================================================
   差別化4点
============================================================ */
.strength__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.strength__card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 36px;
  position: relative;
}
.strength__num {
  position: absolute;
  top: -18px;
  left: -10px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #ffa54d 0%, var(--c-primary) 75%);
  color: #fff;
  font-family: "Montserrat", var(--font);
  font-style: italic;
  font-size: 23px;
  font-weight: 800;
  line-height: 58px;
  text-align: center;
  text-indent: -.12em;
  box-shadow: 0 6px 14px rgba(240, 114, 28, .35);
}
.strength__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}
.strength__text { font-size: 15px; color: var(--c-text-light); }

/* プロジェクト2000 キャンペーンバナー画像 */
.campaign-img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 20px auto 0;
  border-radius: 10px;
  border: 1px solid var(--c-line);
}
.campaign-img--cost {
  max-width: 520px;
  margin: 0 auto 24px;
}

/* 年齢構成比グラフ（公式サイトの円グラフを流用） */
.agechart-official { margin-top: 20px; text-align: center; }
.agechart-official img {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}
.agechart-official figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--c-text-light);
}

/* カード見出し行：左にタイトル、右の余白に装飾（ラビー／月桂樹）を統一配置 */
.strength__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.strength__head .strength__title { margin-bottom: 0; }
.strength__rabbit { width: 64px; }

/* カード04の月桂樹意匠 */
.laurel {
  position: relative;
  width: 104px;
  flex-shrink: 0;
}
.laurel img { width: 100%; height: auto; display: block; }
.laurel__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.5;
  color: #a8842e;
}

/* 10メリット */
.merit {
  margin-top: 64px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
}
.merit__title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 28px;
}
.merit__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.merit__title::before { content: "＼"; }
.merit__title::after { content: "／"; }
.merit__title::before, .merit__title::after {
  color: var(--c-primary);
  font-size: 22px;
  font-weight: 700;
}
.merit__title span {
  font-family: "Montserrat", var(--font);
  color: var(--c-primary);
  font-size: 40px;
  padding: 0 4px;
}
.merit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.merit__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--c-line);
}
.merit__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--c-white);
  background: var(--c-primary);
  border-radius: 50%;
  padding: 4px;
}

/* ============================================================
   セミナー（濃紺・目玉セクション）
============================================================ */
.seminar {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: var(--c-white);
}
.seminar__badge {
  display: block;
  width: fit-content;
  margin: -8px auto 36px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .1em;
  border-radius: 999px;
  padding: 8px 28px;
}
.seminar__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 40px;
}
.seal--seminar {
  position: absolute;
  top: -30px;
  right: -16px;
  width: 104px;
  height: 104px;
  transform: rotate(10deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}
.seal--seminar strong { font-size: 27px; }
.seminar__detail div {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.seminar__detail dt {
  flex-shrink: 0;
  width: 72px;
  font-weight: 700;
  color: #ffb27a;
}
.seminar__detail dd { font-size: 15px; }
.seminar__contents h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffb27a;
  margin-bottom: 12px;
}
.seminar__contents li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15px;
}
.seminar__contents li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--c-primary);
  border-bottom: 2.5px solid var(--c-primary);
  transform: rotate(-45deg);
}
/* セミナーの様子（写真3枚） */
.seminar__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.seminar__photos li { text-align: center; }
.seminar__photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .22);
}
.seminar__photo-cap {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  opacity: .9;
}
/* ビル外観は上部の全日マークが見えるよう上寄せでトリミング */
.seminar__photo--building { object-position: top; }

/* 全日ローンコンシェルジュ */
.seminar__loan {
  margin-top: 44px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.seminar__loan-badge {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 12px;
}
.seminar__loan-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
}
.seminar__loan-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.seminar__loan-text > p:first-child { font-size: 15px; margin-bottom: 14px; }
.seminar__loan-text ul li {
  position: relative;
  padding: 5px 0 5px 26px;
  font-size: 15px;
}
.seminar__loan-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--c-primary);
  border-bottom: 2.5px solid var(--c-primary);
  transform: rotate(-45deg);
}
.seminar__loan-note { margin-top: 12px; font-size: 12px; opacity: .8; }
.seminar__loan-visual img {
  width: 100%;
  border-radius: 10px;
  display: block;
  background: #fff;
}

.seminar__cta { text-align: center; margin-top: 44px; }
.seminar__cta-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seminar__cta-row .btn { position: relative; z-index: 1; }
/* ボタンの左端の裏から上半身を出してのぞくラビー */
.seminar__rabbit {
  position: absolute;
  width: 78px;
  left: calc(50% - 228px);
  bottom: 22px;
  transform: rotate(-10deg);
  z-index: 0;
}
.seminar__sub-link { margin-top: 16px; font-size: 14px; opacity: .9; }
.seminar__sub-link a { color: #ffb27a; }

/* ============================================================
   会員の声
============================================================ */
.voice__videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-card { text-align: left; display: block; width: 100%; }
.video-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #3a4a66 0 14px, #324059 14px 28px);
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.video-card:hover .video-card__thumb { transform: translateY(-4px); }
.video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__play {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}
.video-card__play svg { width: 28px; height: 28px; margin-left: 3px; }
.video-card__caption {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
/* テキストの声：動画と別物と分かるよう独立ブロック化 */
.voice__quotes-block {
  margin-top: 56px;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
}
.voice__quotes-title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}
.voice__quotes-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--c-text-light);
  margin-top: 4px;
}
.voice__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.voice__quote {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 22px;
  font-size: 14.5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice__quote p { font-weight: 500; }
.voice__name { font-size: 12.5px; color: var(--c-text-light); text-align: right; }

/* ============================================================
   中間CVバンド（CTA反復）
============================================================ */
.cv-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--c-primary-dark) 0%, var(--c-primary) 45%, #f5933c 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cv-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 2px, transparent 2.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cv-band__inner { position: relative; }
.cv-band__aori {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.cv-band__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
.cv-band__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn--white {
  background: #fff;
  color: var(--c-primary-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}
.btn--navy {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}

/* ============================================================
   サポート
============================================================ */
.support__main {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  margin-top: 48px;
}
.support__tool-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary-dark);
  background: var(--c-primary-pale);
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 14px;
}
.support__copy {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}
.support__main-text p:last-child { font-size: 15px; color: var(--c-text-light); }
.support__main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ラビーネット画面キャプチャ（垂直配置） */
.support__screen {
  width: 100%;
  max-width: 440px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-line);
}
.support__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.support__sub-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 28px;
}
.support__sub-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 4px solid var(--c-primary);
}
.support__sub-card p { font-size: 14px; color: var(--c-text-light); }

/* ============================================================
   費用
============================================================ */
.cost__main {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  text-align: center;
}
.seal--cost {
  position: absolute;
  top: -38px;
  right: -26px;
}
.cost__label { font-size: 17px; font-weight: 700; margin-top: 18px; }
.cost__price {
  font-family: "Montserrat", var(--font);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-primary-dark);
  letter-spacing: .01em;
}
.cost__price span { font-family: var(--font); font-weight: 900; font-size: 28px; margin-left: 4px; color: var(--c-text); }
.cost__breakdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--c-text-light);
}
.cost__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.cost__badges li {
  background: var(--c-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 22px;
}
.cost__deposit {
  max-width: 720px;
  margin: 20px auto 0;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
}
.cost__deposit-label { font-weight: 700; font-size: 16px; }
.cost__deposit-note { font-size: 13.5px; color: var(--c-text-light); margin-top: 4px; }
.cost__note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 24px;
}
.cost__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ============================================================
   立地
============================================================ */
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 48px;
}
.access__text p:first-child { font-size: 16px; margin-bottom: 24px; }
.access__info div {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}
.access__info dt {
  flex-shrink: 0;
  width: 84px;
  font-weight: 700;
  color: var(--c-primary-dark);
}
.access__info dd { font-size: 15px; }
/* 右カラム（地図）は左カラムと高さを揃え、マップを伸ばして埋める */
.access__visualcol {
  position: relative;
  display: flex;
  flex-direction: column;
}
.access__visualcol .access__map { flex: 1; }
.access__rabbit {
  position: absolute;
  bottom: -18px;
  left: -24px;
  z-index: 2;
}
.access__illustmap {
  margin-top: 22px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.access__illustmap img { width: 100%; height: auto; display: block; }
.access__map {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--c-line);
}
.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* ============================================================
   信頼性（濃紺）
============================================================ */
.trust {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: var(--c-white);
}
.trust::before {
  content: "SINCE 1952";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", var(--font);
  font-style: italic;
  font-weight: 800;
  font-size: 120px;
  letter-spacing: .04em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.trust__item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 30px 22px 32px;
  text-align: center;
  backdrop-filter: blur(2px);
}
.trust__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 178, 122, .12);
  border: 1px solid rgba(255, 178, 122, .4);
  color: #ffb27a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__icon svg { width: 30px; height: 30px; }
.trust__value {
  font-size: 21px;
  font-weight: 900;
  color: #ffb27a;
  margin-bottom: 10px;
  line-height: 1.4;
}
.trust__desc { font-size: 13.5px; opacity: .9; }

/* ============================================================
   資料DL
============================================================ */
.download__box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  margin-top: 48px;
}
.download__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 8px;
}
/* 資料表紙：複数枚重なっているイメージ（背面に白い用紙2枚） */
.doc-stack {
  position: relative;
  width: 200px;
}
.doc-stack::before,
.doc-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(31, 51, 84, .12);
}
.doc-stack::before { transform: rotate(-5deg) translate(-9px, 5px); }
.doc-stack::after { transform: rotate(3.5deg) translate(9px, 7px); }
.doc-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(31, 51, 84, .22);
}
.download__text h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
}
.download__text p { font-size: 15px; color: var(--c-text-light); margin-bottom: 24px; }

/* ============================================================
   お問い合わせ（CF7対応）
============================================================ */
.contact__tel {
  text-align: center;
  margin-bottom: 44px;
}
.contact__tel-label { font-size: 14px; font-weight: 700; color: var(--c-text-light); }
.contact__tel-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--c-primary-dark);
  text-decoration: none;
  letter-spacing: .02em;
}
.contact__form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 44px 40px;
}

/* --- CF7標準クラス対応（WP組み込み後もそのまま適用される） --- */
.wpcf7-form .form-row { margin-bottom: 22px; }
.wpcf7-form label {
  display: block;
  font-weight: 700;
  font-size: 15px;
}
.form-req, .form-opt {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: 2px;
  color: #fff;
}
.form-req { background: var(--c-req); }
.form-opt { background: #9a9a9a; }
.wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.wpcf7-form input.wpcf7-text,
.wpcf7-form input.wpcf7-email,
.wpcf7-form input.wpcf7-tel,
.wpcf7-form textarea.wpcf7-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-white);
  transition: border-color .2s ease;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(240, 114, 28, .15);
}
.wpcf7-form ::placeholder { color: #b5b0a8; }
.form-row--accept { text-align: center; }
.form-row--accept .wpcf7-form-control-wrap { margin-top: 0; }
.wpcf7-acceptance label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--c-primary);
}
/* 資料の郵送希望（ラジオ＋条件展開） */
.form-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
}
/* ダミー版(.form-radio)とCF7出力版(.wpcf7-radio)の両対応 */
.form-radio,
.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 8px;
}
.form-radio label,
.wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item { margin: 0; }
.form-radio input[type="radio"],
.wpcf7-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--c-primary);
}
/* 住所ブロック（CF7 Conditional Fields のグループ内にこの .form-address を手書きするため、
   ダミー版・CF7出力版とも同じスタイルが当たる） */
.form-address {
  background: var(--c-white);
  border: 1px dashed var(--c-line);
  border-radius: 10px;
  padding: 20px 20px 4px;
  margin-bottom: 22px;
}
.form-recaptcha-note {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-light);
  margin-top: 14px;
}
.form-row--submit { text-align: center; margin-top: 30px; margin-bottom: 0 !important; position: relative; }
.wpcf7-submit { width: 100%; max-width: 420px; position: relative; z-index: 1; }
/* 送信ボタンの右端の裏から応援ポーズでのぞくラビー */
.contact__rabbit {
  position: absolute;
  width: 64px;
  right: calc(50% - 234px);
  bottom: 28px;
  transform: rotate(8deg);
  z-index: 0;
}
@media (max-width: 768px) {
  .contact__rabbit { right: 2px; bottom: 38px; width: 54px; }
}
/* CF7のバリデーション・送信結果メッセージ */
.wpcf7-not-valid-tip {
  display: block;
  color: var(--c-req);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}
.wpcf7-response-output {
  margin-top: 20px;
  padding: 0;
  border: none;
  font-size: 14px;
  text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  color: var(--c-req);
}
.wpcf7 form.sent .wpcf7-response-output { color: var(--c-green); }
.wpcf7-spinner { margin: 0 auto; }

/* ============================================================
   フッター
============================================================ */
.footer {
  background: var(--c-accent-dark);
  color: rgba(255, 255, 255, .85);
  text-align: center;
  padding: 44px 24px 120px; /* SP追従CTA分の余白込み */
  font-size: 13px;
}
.footer__org { font-weight: 700; font-size: 15px; color: #fff; }
.footer__address { margin-top: 6px; }
.footer__links { margin-top: 14px; }
.footer__links a { color: rgba(255, 255, 255, .85); }
.footer__copy { margin-top: 18px; font-size: 11px; opacity: .6; }
@media (min-width: 769px) {
  .footer { padding-bottom: 44px; }
}

/* ============================================================
   追従CTA
============================================================ */
.float-cta {
  position: fixed;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.float-cta.is-shown { opacity: 1; pointer-events: auto; }

/* PC：右側固定の縦型 */
.float-cta--pc {
  right: 0;
  top: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(8px);
}
/* 追従CTAの上からひょっこり頭を出すラビー（極小） */
.float-cta__rabbit {
  position: absolute;
  top: -62px;
  right: 6px;
  width: 46px;
  transform: rotate(-8deg);
  z-index: 0;
}
.float-cta--pc .float-cta__btn { position: relative; z-index: 1; }
/* 縦書きボタン内の「DL」を縦中横（横向きに寝かせない） */
.float-cta--pc .tcy { text-combine-upright: all; }
.float-cta--pc.is-shown { transform: translateX(0); }
.float-cta--pc .float-cta__btn {
  writing-mode: vertical-rl;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  padding: 26px 14px;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 4px 14px rgba(0, 0, 0, .18);
}
.float-cta--pc .float-cta__btn--dl { background: var(--c-accent); }
.float-cta--pc .float-cta__btn--contact { background: var(--c-primary); }

/* SP：下部固定バー */
.float-cta--sp {
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: .7fr 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, .12);
  transform: translateY(12px);
}
.float-cta--sp.is-shown { transform: translateY(0); }
.float-cta--sp .float-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  padding: 9px 4px;
  border-radius: 10px;
}
.float-cta--sp .float-cta__btn--tel { background: var(--c-green); }
.float-cta--sp .float-cta__btn--tel svg { width: 18px; height: 18px; }
.float-cta--sp .float-cta__btn--dl { background: var(--c-accent); }
.float-cta--sp .float-cta__btn--contact { background: var(--c-primary); }
.float-cta__small { font-size: 10px; font-weight: 500; opacity: .9; }

/* ============================================================
   動画モーダル
============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, .82);
}
.video-modal__body {
  position: relative;
  width: min(880px, 100%);
}
.video-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}
.video-modal__close:hover { background: rgba(255, 255, 255, .26); }
.video-modal__close svg { width: 16px; height: 16px; }
.video-modal__player {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.video-modal__player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-modal__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 2;
  padding: 20px;
}

/* ============================================================
   レスポンシブ（768px以下）
============================================================ */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  .sec-title { font-size: 25px; }
  .sec-lead { margin-bottom: 32px; font-size: 14px; }

  .btn { min-width: 0; width: 100%; max-width: 360px; font-size: 16px; padding: 16px 24px; }
  .btn--large { min-width: 0; font-size: 17px; }

  .header__logo img { width: 210px; }
  .header__tel-number { font-size: 17px; }

  .fv__inner { padding: 36px 20px 72px; }
  .fv__aori { font-size: 13px; }
  .fv__catch { font-size: 30px; }
  .fv__sub { font-size: 15px; }
  .fv__seals { gap: 8px; margin-bottom: 24px; }
  .seal { width: 88px; height: 88px; font-size: 10px; }
  .seal strong { font-size: 15px; }
  .fv__rabbit .rabbit-ph { width: 48px; }
  .fv__deco--1 { width: 280px; height: 280px; }
  .fv__deco--2 { width: 240px; height: 240px; }
  .fv__dots { width: 110px; height: 110px; opacity: .18; }
  .fv__dots--2 { bottom: 70px; }
  .fv__wave svg { height: 32px; }
  .wave svg { height: 30px; }
  .fv__cta { flex-direction: column; align-items: center; }

  .problem__list { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .problem__bubble { padding: 24px 18px; font-size: 16px; }
  .problem__bubble br { display: none; }
  .problem__illust { margin-top: 20px; }
  .problem__illust img { height: 168px; }
  .problem__bridge { font-size: 21px; margin-top: 44px; }
  .problem__bridge strong { font-size: 25px; }

  .strength__grid { grid-template-columns: 1fr; gap: 26px; margin-top: 36px; }
  .strength__card { padding: 46px 24px 28px; }
  .strength__num { width: 50px; height: 50px; line-height: 50px; font-size: 20px; top: -16px; }
  .strength__title { font-size: 19px; }
  .strength__title br { display: none; }

  .merit { padding: 32px 22px; margin-top: 44px; }
  .merit__title { font-size: 20px; }
  .merit__title span { font-size: 30px; }
  .merit__list { grid-template-columns: 1fr; gap: 4px; }
  .merit__list li { font-size: 14px; }

  .seminar__box { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; margin-top: 14px; }
  .seminar__badge { font-size: 14px; }
  .seminar__detail dt { width: 60px; }
  .seminar__detail dd, .seminar__contents li { font-size: 14px; }
  .seal--seminar { width: 84px; height: 84px; top: -26px; right: -6px; }
  .seal--seminar strong { font-size: 21px; }
  .seminar__photos { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .seminar__photos img { height: 190px; }
  .seminar__loan { padding: 26px 20px; margin-top: 36px; }
  .seminar__loan-title { font-size: 19px; }
  .seminar__loan-grid { grid-template-columns: 1fr; gap: 20px; }
  .seminar__loan-text ul li { font-size: 14px; }
  .seminar__rabbit { width: 58px; left: calc(50% - 176px); bottom: 26px; }

  .cv-band { padding: 48px 0; }
  .cv-band__aori { font-size: 13px; }
  .cv-band__title { font-size: 21px; }
  .cv-band__btns { flex-direction: column; align-items: center; }

  .voice__videos { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .voice__quotes-block { margin-top: 40px; padding: 26px 18px 22px; }
  .voice__quotes-title { font-size: 17px; }
  .voice__quotes { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }

  .support__main { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; margin-top: 36px; }
  .support__copy { font-size: 21px; }
  .support__copy br { display: none; }
  .support__sub { grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }

  .cost__main { padding: 58px 22px 32px; margin-top: 26px; }
  .cost__price { font-size: 48px; }
  .cost__price span { font-size: 22px; }
  .cost__breakdown { flex-direction: column; gap: 2px; }
  .cost__cta { flex-direction: column; align-items: center; }
  .seal--cost { width: 84px; height: 84px; top: -36px; right: -6px; font-size: 9.5px; }
  .seal--cost strong { font-size: 15px; }
  .badge--campaign { font-size: 12px; }

  .merit__title { font-size: 17px; gap: 6px; white-space: nowrap; }
  .merit__title::before, .merit__title::after { font-size: 14px; }
  .merit__title span { font-size: 26px; padding: 0 2px; }

  .trust::before { font-size: 52px; top: 12px; }

  .access__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
  .access__map { min-height: 220px; }
  .access__rabbit { left: -6px; bottom: -14px; width: 72px; }
  .access__illustmap { min-height: 130px; }
  .strength__rabbit { width: 54px; }
  .laurel { width: 88px; }
  .laurel__text { font-size: 9px; }

  .trust__list { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
  .trust__item { padding: 24px 14px; }
  .trust__value { font-size: 17px; }
  .trust__desc { font-size: 12px; }

  .download__box { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; margin-top: 36px; }
  .download__visual { max-width: 200px; margin: 0 auto; }
  .download__text { text-align: center; }
  .download__text h3 { font-size: 21px; }

  .contact__tel-number { font-size: 32px; }
  .contact__form { padding: 28px 20px; }

  .float-cta--pc { display: none; }
  .float-cta--sp { display: grid; }
}
@media (min-width: 769px) {
  .float-cta--sp { display: none; }
}
