@charset "utf-8";
/* =========================================================================
   TRINITY FUND 第10号ファンド｜タイアップ専用LP
   デザイン基準：制作仕様書 §5（ロゴ実測色 cream / navy / cyan / aqua）
   - cyan は CTA 専用に予約（押す場所＝シアン）
   - 影は使わない。面の分離は背景色＋border 罫線で行う
   - 角丸 4px、ライン基調、装飾グラデーションなし
   ========================================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* 基幹色（ロゴ実測値） */
  --cream: #FDF7F5;
  --navy: #044278;
  --cyan: #58C1D7;
  --aqua: #BFE3E5;

  /* 拡張色 */
  --navy-deep: #0A2E52;
  --ink: #2C3E50;
  --ink-muted: #5A6B7A;
  --white: #FFFFFF;
  --aqua-tint: #EFF7F8;
  --border: #D9E4E8;
  --alert: #B3261E; /* 警告・エラーのみ */

  /* タイポ */
  --font-jp: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-num: "Poppins", "Montserrat", var(--font-jp);

  /* レイアウト */
  --radius: 4px;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
h1, h2, h3, h4, p, ul, ol, figure, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ---------- 汎用レイアウト ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 8vw, 88px); }
.section--white { background: var(--white); }
.section--tint { background: var(--aqua-tint); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-deep { background: var(--navy-deep); color: var(--white); }
.section__lead { max-width: 44em; margin-top: 12px; color: var(--ink-muted); }
.section--navy .section__lead,
.section--navy-deep .section__lead { color: var(--aqua); }
.section--navy a, .section--navy-deep a { color: var(--aqua); text-underline-offset: 3px; }

/* ---------- 見出し ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.section--navy .eyebrow, .section--navy-deep .eyebrow { color: var(--aqua); }
.h2 {
  font-size: clamp(24px, 4.4vw, 34px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: .01em;
}
.section--navy .h2, .section--navy-deep .h2 { color: var(--white); }
.h3 {
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--navy-deep);
}
.section--navy .h3, .section--navy-deep .h3 { color: var(--white); }

/* ---------- 注記 ---------- */
.note {
  font-size: 14px;      /* 下限。これを下回らない */
  line-height: 1.7;
  color: var(--ink-muted);
}
.section--navy .note, .section--navy-deep .note { color: var(--aqua); }

/* 強調：太字＋水色マーカー（重要語の下線ハイライト） */
.mark { font-weight: 700; color: var(--navy-deep); background: linear-gradient(transparent 58%, var(--aqua) 58%); padding: 0 .08em; }

/* =========================================================================
   S0. 固定要素
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 60px;
  max-width: none; padding-inline: clamp(20px, 4vw, 56px); /* ヘッダーは全幅で左右端に配置 */
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__img { height: 44px; width: auto; display: block; }
@media (max-width: 420px) { .brand__img { height: 36px; } }
/* ヘッダーCTA：本文のCTAと同デザイン（.btn.btn--primary）に統一。ヘッダー用に少しコンパクト */
.header-cta.btn { padding: 11px 22px; font-size: 14.5px; white-space: nowrap; }
@media (max-width: 420px) { .header-cta.btn { padding: 9px 15px; font-size: 13px; } }

/* キャンペーン告知バー */
.campaign-bar {
  position: sticky; top: 60px; z-index: 55;
  background: var(--aqua-tint);
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.campaign-bar__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 6px 14px; padding-block: 9px; text-align: center;
}
.campaign-bar__label {
  font-weight: 700; color: var(--navy-deep);
  border: 1px solid var(--navy); border-radius: 999px; padding: 1px 10px; font-size: 12px;
}
.campaign-bar__text { color: var(--ink); }
.campaign-bar__link { color: var(--navy); font-weight: 600; white-space: nowrap; }

/* 追従CTA */
.follow-cta { position: fixed; z-index: 70; }
.follow-cta--mobile {
  left: 0; right: 0; bottom: 0;
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateY(120%); transition: transform .28s ease;
}
.follow-cta--mobile.is-visible { transform: translateY(0); }
.follow-cta--mobile .btn { width: 100%; }
.follow-cta--desktop {
  right: 24px; bottom: 24px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.follow-cta--desktop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 767px) { .follow-cta--desktop { display: none; } }
@media (min-width: 768px) { .follow-cta--mobile { display: none; } }

/* =========================================================================
   ボタン（主CTA＝cyan / 副CTA＝テキストリンク）
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1.2;
  padding: 15px 28px; border-radius: var(--radius);
  border: 1px solid transparent; text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--cyan); color: var(--navy-deep); border-color: var(--cyan); }
.btn--primary:hover { background: color-mix(in srgb, var(--cyan) 84%, var(--navy) 16%); }
.btn--lg { font-size: 17px; padding: 17px 34px; }
.btn__arrow { font-family: var(--font-num); font-weight: 600; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 4px;
  background: none; border: 0; font-size: 15px;
}
.section--navy .btn-secondary, .section--navy-deep .btn-secondary { color: var(--aqua); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 26px; }
/* セクション末尾の中央CTA */
.section-cta { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 480px) { .section-cta .btn { width: 100%; } }

/* ===== トリ男（キャラクター）配置 ===== */
.section { position: relative; }
.feature { position: relative; }
.feature__tori { position: absolute; top: 14px; right: 14px; width: clamp(68px, 8.5vw, 90px); height: auto; pointer-events: none; }
/* 見出しの隣にトリ男を横並び（文字に近づける） */
.sec-head { display: flex; align-items: center; gap: clamp(8px, 2.5vw, 26px); }
.sec-head__text { flex: 0 1 auto; min-width: 0; }
.sec-tori { flex: 0 0 auto; height: clamp(78px, 8.5vw, 104px); width: auto; pointer-events: none; }
.closing__tori { display: block; width: clamp(92px, 12vw, 130px); height: auto; margin: 0 auto 4px; }
/* ヒーロー右の大きめトリ男（キービジュアル）：flex内の右カラム */
.hero__tori { flex: 0 0 auto; width: clamp(300px, 38vw, 520px); height: auto; align-self: center; pointer-events: none; }
@media (max-width: 860px) {
  .hero__inner { flex-direction: column; align-items: stretch; }
  .hero__body { max-width: none; }
  .hero__tori { order: 2; width: min(300px, 74%); margin: 8px auto 0; }
}
@media (max-width: 560px) { .sec-tori { height: 62px; width: auto; } .feature__tori { width: 58px; top: 12px; right: 10px; } }

/* =========================================================================
   S1. ファーストビュー
   ========================================================================= */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::after { /* 幾何的なアクセント：淡い水色ウォッシュ（キービジュアルの三角と競合させない） */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, transparent 66%, var(--aqua-tint) 66%);
  opacity: .6;
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(40px, 7vw, 72px); display: flex; align-items: center; gap: clamp(16px, 4vw, 48px); }
.hero__body { flex: 1 1 auto; min-width: 0; max-width: 680px; }
.hero__eyebrow { color: var(--navy); font-weight: 700; }
.hero__catch {
  margin-top: 8px;
  font-size: clamp(26px, 5.2vw, 40px); line-height: 1.35; font-weight: 700; color: var(--navy-deep);
}
.hero__catch .accent { color: var(--navy); }
.hero__yield {
  display: inline-flex; align-items: baseline; gap: .12em;
  font-family: var(--font-num); font-weight: 600; color: var(--navy-deep);
  font-size: clamp(56px, 12vw, 88px); line-height: 1; letter-spacing: -.01em;
}
.hero__yield .unit { font-size: .5em; font-weight: 600; }
.hero__sub { margin-top: 14px; font-size: clamp(15px, 2vw, 17px); color: var(--ink); }
.hero__sub b { color: var(--navy-deep); font-weight: 700; }

/* キャンペーン訴求のヒーロー */
.hero__campaign-lead { margin-top: 16px; font-size: clamp(15px, 2.2vw, 18px); font-weight: 500; color: var(--ink); }
.hero__campaign-lead b { color: var(--navy-deep); font-weight: 700; }
.hero__gift { margin-top: 4px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.hero__gift-tail { font-size: clamp(18px, 3vw, 24px); font-weight: 700; color: var(--navy-deep); }
.hero__period { margin-top: 16px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-num); font-weight: 600; font-size: clamp(16px, 2.4vw, 20px); color: var(--navy-deep); }
.hero__period-badge { font-family: var(--font-jp); font-weight: 700; font-size: 12px; color: var(--navy-deep); border: 1px solid var(--navy); border-radius: 999px; padding: 2px 12px; }

/* 数字ブロック3点 */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 28px; max-width: 640px;
}
.stat {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 14px; text-align: center;
}
.stat__num {
  font-family: var(--font-num); font-weight: 600; color: var(--navy-deep);
  font-size: clamp(26px, 5vw, 38px); line-height: 1.05;
}
.stat__num .unit { font-size: .5em; }
.stat__label { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; max-width: 420px; }
  .stat { display: flex; align-items: baseline; justify-content: space-between; text-align: left; }
  .stat__label { margin-top: 0; }
}

/* FV注記（必須） */
.hero__notice {
  margin-top: 26px; max-width: 40em;
  font-size: 14px; line-height: 1.75; color: var(--ink-muted); /* 本文の≈85%以上・コントラスト4.5:1以上 */
  background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--navy);
  border-radius: var(--radius); padding: 14px 16px;
}

/* =========================================================================
   S2. 3行サマリー
   ========================================================================= */
.summary-list { display: grid; gap: 14px; margin-top: 26px; }
.summary-item {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px;
}
.summary-item__no {
  font-family: var(--font-num); font-weight: 600; font-size: 22px; color: var(--cyan);
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.summary-item__text { font-size: clamp(16px, 2.3vw, 18px); font-weight: 500; color: var(--navy-deep); }

/* =========================================================================
   S3. 4つの特徴
   ========================================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
@media (max-width: 720px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
}
.feature__no {
  display: inline-block;
  font-family: var(--font-num); font-weight: 600; color: var(--navy-deep);
  font-size: clamp(30px, 4.6vw, 40px); line-height: 1; letter-spacing: -.02em;
  padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 3px solid var(--cyan);
}
.feature__title { font-size: clamp(17px, 2.4vw, 20px); font-weight: 700; color: var(--navy-deep); line-height: 1.4; }
.feature__body { color: var(--ink); }
/* ラインアイコン（2px・直角基調・塗りなし） */
.icon {
  width: 34px; height: 34px; flex: none; stroke: var(--navy);
  stroke-width: 2; fill: none; stroke-linecap: square; stroke-linejoin: miter;
}
.section--navy .icon, .section--navy-deep .icon { stroke: var(--aqua); }

/* =========================================================================
   S4. 想定利回りの内訳と前提
   ========================================================================= */
.yield-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; margin-top: 30px; }
@media (max-width: 820px) { .yield-split { grid-template-columns: 1fr; } }
.yield-bar { display: grid; gap: 10px; }
.yield-bar__track {
  display: flex; height: 46px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
}
/* グラフは単色ベタ3階調（navy→cyan→aqua） */
.yield-bar__seg { display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 13px; }
.yield-bar__seg--income { background: var(--aqua); color: var(--navy-deep); flex: 0 0 4%; }
.yield-bar__seg--capital { background: var(--navy); flex: 1 1 auto; }
.yield-legend { display: grid; gap: 8px; }
.yield-legend li { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 10px; font-size: 15px; }
.yield-legend .swatch { width: 14px; height: 14px; border-radius: 2px; border: 1px solid var(--border); }
.yield-legend .swatch--income { background: var(--aqua); }
.yield-legend .swatch--capital { background: var(--navy); }
.yield-legend .swatch--total { background: var(--navy-deep); }
.yield-legend .val { font-family: var(--font-num); font-weight: 600; color: var(--navy-deep); }
.yield-legend .total { border-top: 1px solid var(--border); padding-top: 8px; font-weight: 700; }
.premise { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.premise h4 { font-size: 15px; color: var(--navy-deep); margin-bottom: 6px; }
.premise + .premise { margin-top: 14px; }
.premise--risk { border-left: 3px solid var(--navy); }

/* =========================================================================
   S5 / 汎用テーブル（物件・会社情報）
   ========================================================================= */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 15.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table th { width: 34%; font-weight: 700; color: var(--navy-deep); white-space: nowrap; }
.section--navy .spec-table th, .section--navy-deep .spec-table th { color: var(--white); }
.section--navy .spec-table th, .section--navy .spec-table td,
.section--navy-deep .spec-table th, .section--navy-deep .spec-table td { border-color: color-mix(in srgb, var(--white) 22%, transparent); }
@media (max-width: 560px) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table th { border-bottom: 0; padding-bottom: 2px; }
  .spec-table td { padding-top: 2px; padding-bottom: 14px; }
}
.property-media {
  margin-top: 26px; display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) { .property-media { grid-template-columns: 1fr; } }
.placeholder-img {
  aspect-ratio: 16 / 10; display: grid; place-items: center; text-align: center;
  background: var(--aqua-tint); border: 1px dashed var(--border); border-radius: var(--radius);
  color: var(--ink-muted); font-size: 13px; padding: 12px;
}

/* =========================================================================
   S6. 投資家保護（反転） + 優先劣後図
   ========================================================================= */
.protect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 860px) { .protect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .protect-grid { grid-template-columns: 1fr; } }
.protect-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.protect-card__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-num); font-weight: 600; font-size: 15px; letter-spacing: .02em;
}
.protect-card__title { font-size: 17px; font-weight: 700; margin: 12px 0 8px; color: var(--navy-deep); }
.protect-card__body { font-size: 14.5px; line-height: 1.75; color: var(--ink); }

/* 優先劣後構造の図解 */
.subord {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 30px);
}
.subord__title { color: var(--navy-deep); }
.subord__title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.subord__figure { margin: 18px 0 0; }
.subord__figure img { width: 100%; height: auto; display: block; border-radius: var(--radius); background: var(--white); }
.subord__stack { display: grid; gap: 8px; margin-top: 18px; }
.subord__row { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-radius: var(--radius); font-weight: 700; }
.subord__row--senior { background: var(--cyan); color: var(--navy-deep); flex: 1; }
.subord__row--junior { background: var(--aqua); color: var(--navy-deep); }
.subord__row .amt { font-family: var(--font-num); }
.subord__flow { text-align: center; font-size: 13px; color: var(--aqua); margin-top: 14px; }

/* =========================================================================
   S7. 実績
   ========================================================================= */
.record-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 560px) { .record-grid { grid-template-columns: 1fr; } }
.record {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.record__num { font-family: var(--font-num); font-weight: 600; font-size: clamp(30px, 6vw, 44px); color: var(--navy-deep); line-height: 1; }
.record__num .unit { font-size: .5em; }
.record__label { margin-top: 8px; color: var(--ink-muted); font-size: 14px; }

/* =========================================================================
   S8. キャンペーン詳細（開いた状態で表示）
   ========================================================================= */
.campaign-detail { margin-top: 28px; display: grid; gap: 18px; }
.campaign-block {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px);
}
.campaign-block--highlight { border-color: var(--navy); border-left-width: 3px; }
.campaign-block h3 { margin-bottom: 12px; }
.gift {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-num); font-weight: 600; color: var(--navy-deep); font-size: clamp(24px, 4vw, 34px);
}
.gift small { font-family: var(--font-jp); font-size: 15px; color: var(--ink); font-weight: 500; }
.gift__amt { color: var(--cyan); }
/* チェックリスト形式＋強調 */
.checklist { display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 15.5px; }
.checklist .check {
  width: 24px; height: 24px; flex: none; margin-top: 3px;
  border: 2px solid var(--navy); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--navy); font-weight: 700;
  font-size: 14px; line-height: 1;
}
.checklist li b { color: var(--navy-deep); }
.disclaimer-list { display: grid; gap: 8px; margin-top: 4px; }
.disclaimer-list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.disclaimer-list li::before { content: "※"; position: absolute; left: 0; }

/* =========================================================================
   details（S9 リスク / S11 FAQ）
   ========================================================================= */
.disclosure { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.disclosure + .disclosure { margin-top: 12px; }
.disclosure > summary {
  list-style: none; cursor: pointer; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-weight: 700; color: var(--navy-deep);
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary .marker { font-family: var(--font-num); font-weight: 600; color: var(--navy); transition: transform .2s ease; flex: none; }
.disclosure[open] > summary .marker { transform: rotate(45deg); }
.disclosure__body { padding: 0 20px 18px; color: var(--ink); }
.disclosure__body ul { display: grid; gap: 2px; }
.disclosure__body li { position: relative; padding-left: 18px; }
.disclosure__body li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; background: var(--cyan); border-radius: 1px; }
.disclosure > summary.faq__q { justify-content: flex-start; gap: 12px; text-align: left; }
.faq__q .q { font-family: var(--font-num); font-weight: 600; color: var(--navy); flex: none; }
.faq__q .marker { margin-left: auto; padding-left: 12px; }
.faq__a { display: flex; gap: 12px; }
.faq__a .a { font-family: var(--font-num); font-weight: 600; color: var(--cyan); flex: none; }

/* =========================================================================
   S12. 資料請求クロージング（外部フォームへ誘導）
   ========================================================================= */
.closing { text-align: center; }
.closing__lead { margin-inline: auto; }
.closing__cta { margin-top: 28px; }
.closing__note { max-width: 46em; margin: 18px auto 0; }

/* =========================================================================
   （旧）フォーム用スタイル ※現在は未使用。将来LP内フォームを復活させる場合に利用
   ========================================================================= */
.form-section { scroll-margin-top: 120px; }
.form-card {
  margin-top: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px); max-width: 760px; margin-inline: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .field { grid-column: 1 / -1 !important; } }
.field > label { font-size: 14px; font-weight: 700; color: var(--navy-deep); }
.req, .opt { font-family: var(--font-num); font-size: 11px; font-weight: 600; padding: 1px 7px; border-radius: 999px; margin-left: 6px; vertical-align: 2px; }
.req { background: var(--navy); color: var(--white); }
.opt { background: var(--aqua-tint); color: var(--ink-muted); border: 1px solid var(--border); }
.field input, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; transition: border-color .15s ease;
}
.field input:focus, .field select:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 30%, transparent); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--alert); }
.field__error { font-size: 13px; color: var(--alert); min-height: 0; display: none; }
.field.has-error .field__error { display: block; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--navy); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; }
.form-reassure { text-align: center; font-size: 14px; color: var(--ink-muted); margin-top: 12px; }
.recaptcha-note { text-align: center; font-size: 12px; color: var(--ink-muted); margin-top: 16px; }
.recaptcha-note a { color: var(--navy); }
.media-display { background: var(--aqua-tint); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; font-size: 14px; }
.media-display b { color: var(--navy-deep); }

/* =========================================================================
   S13. フッター
   ========================================================================= */
.site-footer { background: var(--navy-deep); color: var(--aqua); padding-block: 44px; font-size: 14px; }
.site-footer .container { max-width: none; padding-inline: clamp(20px, 4vw, 56px); } /* フッターも全幅 */
.site-footer a { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-num); font-weight: 600; font-size: 20px; color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-license { display: inline-block; width: fit-content; max-width: 100%; border: 1px solid color-mix(in srgb, var(--white) 24%, transparent); border-radius: var(--radius); padding: 12px 16px; margin-top: 14px; line-height: 1.7; }
.footer-ad-note { margin-top: 18px; font-size: 12.5px; }
.footer-copy { margin-top: 22px; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--white) 18%, transparent); font-size: 12px; font-family: var(--font-num); letter-spacing: .04em; }

/* =========================================================================
   サンクスページ
   ========================================================================= */
.thanks-main { min-height: 70vh; display: grid; place-items: center; padding-block: clamp(48px, 8vw, 96px); }
.thanks-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(26px, 5vw, 52px); max-width: 680px; text-align: center;
}
.thanks-check {
  width: 64px; height: 64px; margin: 0 auto 18px; border: 2px solid var(--cyan); border-radius: 50%;
  display: grid; place-items: center;
}
.thanks-check svg { width: 32px; height: 32px; stroke: var(--navy); stroke-width: 2.4; fill: none; }
.thanks-media {
  margin: 26px auto; background: var(--aqua-tint); border: 1px solid var(--navy); border-radius: var(--radius);
  padding: 20px; max-width: 520px;
}
.thanks-media__label { font-size: 13px; color: var(--ink-muted); }
.thanks-media__name { font-size: clamp(22px, 4vw, 30px); font-weight: 700; color: var(--navy-deep); margin-top: 4px; word-break: break-word; }
.thanks-alert {
  text-align: left; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--navy);
  border-radius: var(--radius); padding: 16px 18px; margin: 22px 0; font-size: 15px; line-height: 1.8;
}
.thanks-steps { text-align: left; display: grid; gap: 10px; margin: 22px 0; }
.thanks-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.thanks-steps .n { font-family: var(--font-num); font-weight: 600; color: var(--cyan); }

/* ---------- スクロール表示アニメーション（JSが .reveal を付与） ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- ホバーの動き ---------- */
.feature, .record { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature:hover, .record:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 12px 30px rgba(4,66,120,.10); }
.protect-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.protect-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 12px 30px rgba(4,66,120,.10); }
.disclosure > summary { transition: background-color .18s ease; }
.disclosure > summary:hover { background: var(--aqua-tint); }
.btn { transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(88,193,215,.38); }
.campaign-bar__link, .header-link { transition: color .15s ease; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- 印刷 ---------- */
@media print {
  .site-header, .campaign-bar, .follow-cta { display: none; }
}
