/* ==========================================================
   COLOR KICKERS 企画書サイト 共通CSS
   スマホ縦持ちファースト / 画像なし(CSS・絵文字・SVGのみ)
   ========================================================== */
:root {
  --navy: #0e1430;
  --navy-2: #161e42;
  --ink: #1c2333;
  --ink-soft: #4a5468;
  --paper: #f4f6fb;
  --card: #ffffff;
  --line: #e3e8f2;
  --red: #ff4757;
  --blue: #2e86de;
  --green: #10ac84;
  --gold: #ffc048;
  --accent: var(--red);
  --accent-soft: rgba(255, 71, 87, .12);
  --radius: 16px;
  --shadow: 0 6px 24px rgba(14, 20, 48, .10);
}
.plan-a { --accent: #ff4757; --accent-soft: rgba(255,71,87,.12); --accent-deep:#c0263a; }
.plan-b { --accent: #2e86de; --accent-soft: rgba(46,134,222,.12); --accent-deep:#1b5fa8; }
.plan-c { --accent: #10ac84; --accent-soft: rgba(16,172,132,.12); --accent-deep:#0b7e61; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
a { color: inherit; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 18px; }
@media (min-width: 960px) { .wrap { max-width: 880px; } }

/* ---------- 共通: バッジ・チップ ---------- */
.chip {
  display: inline-block; padding: 3px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: var(--accent-soft); color: var(--accent);
}
.chip.ghost { background: rgba(255,255,255,.14); color: #fff; }
.badge-live {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; background: #e8f9f1; color: #0b8a5c;
  white-space: nowrap;
}
.badge-live::before { content: "●"; font-size: 8px; vertical-align: 2px; margin-right: 4px; }

/* ---------- 共通: セクション ---------- */
section { padding: 44px 0; }
.sec-head { margin-bottom: 22px; }
.sec-num {
  font-size: 12px; font-weight: 800; color: var(--accent);
  letter-spacing: .18em; text-transform: uppercase;
}
.sec-title { font-size: 22px; font-weight: 800; line-height: 1.4; margin-top: 2px; }
.sec-lead { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }

.card-box {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px;
}

/* ==========================================================
   index: ヒーロー
   ========================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(46,134,222,.35), transparent 50%),
    radial-gradient(circle at 10% 110%, rgba(16,172,132,.30), transparent 50%),
    linear-gradient(160deg, #0e1430 0%, #1b2350 60%, #101737 100%);
  color: #fff; padding: 56px 0 120px;
}
/* ピッチライン装飾 */
.hero::before {
  content: ""; position: absolute; left: 50%; bottom: -130px;
  width: 280px; height: 280px; border: 2px solid rgba(255,255,255,.10);
  border-radius: 50%; transform: translateX(-50%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 10px;
  height: 1px; background: rgba(255,255,255,.12);
}
.hero-kicker { font-size: 12px; font-weight: 700; letter-spacing: .22em; color: var(--gold); }
.hero-title { font-size: 34px; font-weight: 900; line-height: 1.25; margin: 12px 0 6px; }
.hero-title .stroke { color: transparent; -webkit-text-stroke: 1.5px #fff; }
.hero-sub { font-size: 15px; color: #cfd8f5; max-width: 560px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-points .chip.ghost { backdrop-filter: blur(4px); }
.hero-note {
  margin-top: 22px; padding: 14px 16px; border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.06); border-radius: 0 12px 12px 0;
  font-size: 13px; color: #dbe2fa;
}

/* ---------- index: 3案カード ---------- */
.plans { margin-top: -78px; padding-top: 0; position: relative; z-index: 2; }
.plan-grid { display: grid; gap: 18px; }
@media (min-width: 860px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
  display: block; text-decoration: none;
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 6px solid var(--accent); padding: 20px 20px 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,20,48,.16); }
.plan-card .plan-tag { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--accent); }
.plan-card h3 { font-size: 17px; font-weight: 800; line-height: 1.45; margin: 6px 0 2px; }
.plan-card .catch {
  font-size: 20px; font-weight: 900; color: var(--accent); line-height: 1.4; margin: 8px 0 10px;
}
.plan-card .one { font-size: 13px; color: var(--ink-soft); }
.plan-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 4px; }
.plan-meta .chip { font-size: 11px; padding: 2px 10px; }
.radar-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.radar-row svg { flex: 0 0 auto; }
.radar-legend { font-size: 12px; color: var(--ink-soft); line-height: 1.9; }
.radar-legend b { color: var(--ink); }
.star-why {
  margin-top: 10px; font-size: 11px; color: var(--ink-soft); line-height: 1.7;
  background: var(--paper); border-radius: 8px; padding: 8px 10px;
}
.plan-card .cta {
  display: block; margin-top: 16px; text-align: center;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 14px;
  border-radius: 12px; padding: 11px 0;
}

/* ---------- index: 比較表 ---------- */
.table-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); box-shadow: var(--shadow);
  /* スクロール影: まだ横に続いていることを視覚的に示す */
  background-color: #fff;
  background-image:
    linear-gradient(to right, #fff 40%, rgba(255,255,255,0)),
    linear-gradient(to left, #fff 40%, rgba(255,255,255,0)),
    radial-gradient(farthest-side at 0 50%, rgba(14,20,48,.30), transparent),
    radial-gradient(farthest-side at 100% 50%, rgba(14,20,48,.30), transparent);
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-size: 44px 100%, 44px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
.table-scroll table { background: transparent !important; }
.scroll-hint { display: none; font-size: 11px; font-weight: 700; color: #8a93a8; margin: 0 0 6px; }
@media (max-width: 760px) { .scroll-hint { display: block; } }
table.compare { border-collapse: collapse; width: 100%; min-width: 640px; background: #fff; font-size: 13px; }
table.compare th, table.compare td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
table.compare thead th { background: var(--navy); color: #fff; font-size: 13px; white-space: nowrap; }
table.compare thead th.col-a { box-shadow: inset 0 -4px 0 var(--red); }
table.compare thead th.col-b { box-shadow: inset 0 -4px 0 var(--blue); }
table.compare thead th.col-c { box-shadow: inset 0 -4px 0 var(--green); }
table.compare tbody th { background: #f0f3fa; font-size: 12px; white-space: nowrap; color: var(--ink-soft); }
table.compare td b { font-weight: 800; }

/* ---------- index: 次のアクション ---------- */
.next {
  background: linear-gradient(150deg, var(--navy) 0%, #1c2a5e 100%);
  border-radius: var(--radius); color: #fff; padding: 28px 22px; box-shadow: var(--shadow);
}
.next h2 { font-size: 20px; font-weight: 900; }
.next p { font-size: 13px; color: #cfd8f5; margin-top: 8px; }
.next-btns { display: grid; gap: 10px; margin-top: 18px; }
@media (min-width: 700px) { .next-btns { grid-template-columns: repeat(3, 1fr); } }
.next-btns a {
  text-decoration: none; text-align: center; font-weight: 800; font-size: 14px;
  padding: 13px 10px; border-radius: 12px; color: #fff;
}
.btn-a { background: var(--red); } .btn-b { background: var(--blue); } .btn-c { background: var(--green); }

/* ==========================================================
   各案ページ: 表紙
   ========================================================== */
.cover {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,255,255,.16), transparent 45%),
    linear-gradient(160deg, var(--accent-deep) 0%, var(--accent) 55%, var(--accent-deep) 120%);
  padding: 30px 0 54px;
}
.cover::before { /* センターサークル */
  content: ""; position: absolute; right: -90px; top: -90px;
  width: 260px; height: 260px; border: 2px solid rgba(255,255,255,.22); border-radius: 50%;
}
.topbar { display: flex; justify-content: space-between; align-items: center; font-size: 12px; margin-bottom: 26px; }
.topbar a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 700; }
.cover-plan { font-size: 12px; font-weight: 800; letter-spacing: .2em; color: rgba(255,255,255,.85); }
.cover h1 { font-size: 27px; font-weight: 900; line-height: 1.35; margin: 8px 0 4px; }
.cover .yomi { font-size: 12px; color: rgba(255,255,255,.75); }
.cover .catch {
  font-size: 30px; font-weight: 900; line-height: 1.4; margin: 18px 0 12px;
  text-shadow: 0 3px 0 rgba(0,0,0,.18);
}
.cover .one { font-size: 14px; color: rgba(255,255,255,.94); max-width: 600px; }
.cover-visual { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }

/* 20秒クロックリング(CSS) */
.clock-ring {
  --size: 120px;
  position: relative; width: var(--size); height: var(--size); border-radius: 50%;
  background: conic-gradient(#fff 0 75%, rgba(255,255,255,.25) 75% 100%);
  display: grid; place-items: center; flex: 0 0 auto;
  box-shadow: 0 6px 22px rgba(0,0,0,.25);
}
.clock-ring::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50%; background: var(--accent-deep);
}
.clock-ring .t { position: relative; text-align: center; font-weight: 900; line-height: 1.1; }
.clock-ring .t .n { font-size: 38px; }
.clock-ring .t .s { display: block; font-size: 10px; letter-spacing: .12em; }
.clock-ring.dark::before { background: var(--navy); }

/* カードファン(CSS) */
.card-fan { display: flex; flex: 0 0 auto; }
.mini-card {
  width: 62px; height: 86px; border-radius: 9px; background: #fff; color: var(--ink);
  box-shadow: 0 5px 14px rgba(0,0,0,.28); border: 2px solid #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 10px; gap: 2px;
}
.mini-card .face { font-size: 26px; }
.mini-card.c-red { border-color: var(--red); color: #c0263a; }
.mini-card.c-blue { border-color: var(--blue); color: #1b5fa8; }
.mini-card.c-green { border-color: var(--green); color: #0b7e61; }
.card-fan .mini-card { margin-left: -18px; }
.card-fan .mini-card:first-child { margin-left: 0; }
.card-fan .mini-card:nth-child(1) { transform: rotate(-8deg) translateY(6px); }
.card-fan .mini-card:nth-child(3) { transform: rotate(8deg) translateY(6px); }

/* ---------- コアループ図 ---------- */
.loop { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 760px) { .loop { flex-direction: row; align-items: stretch; } }
.loop-step {
  flex: 1; background: var(--card); border-radius: 14px; box-shadow: var(--shadow);
  padding: 14px 16px; display: flex; gap: 12px; align-items: center;
}
.loop-step .ico { font-size: 28px; flex: 0 0 auto; }
.loop-step b { display: block; font-size: 14px; }
.loop-step span { font-size: 12px; color: var(--ink-soft); display: block; line-height: 1.55; }
.loop-arrow { text-align: center; color: var(--accent); font-size: 18px; font-weight: 900; padding: 2px 0; flex: 0 0 auto; }
@media (min-width: 760px) { .loop-arrow { align-self: center; padding: 0 4px; } .loop-arrow .v { display: none; } }
@media (max-width: 759px) { .loop-arrow .h { display: none; } }
.loop-back { margin-top: 10px; text-align: center; font-size: 12px; font-weight: 700; color: var(--accent); }

/* ---------- 筐体フロー タイムライン ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 3px; border-radius: 2px; background: var(--accent-soft); }
.tl-item { position: relative; padding: 0 0 22px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -26px; top: 6px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--accent-soft);
}
.tl-time {
  display: inline-block; font-size: 11px; font-weight: 800; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px; padding: 2px 10px; margin-bottom: 4px;
}
.tl-item h4 { font-size: 15px; font-weight: 800; }
.tl-item p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.tl-item .pop { color: var(--accent-deep, var(--accent)); font-weight: 700; }

/* ---------- 20秒クロック強調ブロック ---------- */
.clock-sec {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: 20px; padding: 28px 20px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.clock-sec::before {
  content: "20"; position: absolute; right: -16px; bottom: -52px; font-size: 170px;
  font-weight: 900; color: rgba(255,255,255,.05); line-height: 1;
}
.clock-sec .head { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.clock-sec h3 { font-size: 19px; font-weight: 900; line-height: 1.45; }
.clock-sec h3 small { display: block; font-size: 12px; color: var(--gold); font-weight: 800; letter-spacing: .12em; margin-bottom: 4px; }
.clock-use { display: grid; gap: 12px; position: relative; }
.clock-use .u {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 16px;
}
.clock-use .u b { display: block; font-size: 14px; color: var(--gold); margin-bottom: 4px; }
.clock-use .u p { font-size: 13px; color: #dbe2fa; }

/* ---------- 画面イメージ(スマホモック) ---------- */
.mock-flex { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.phone {
  flex: 0 0 auto; width: 268px; margin: 0 auto;
  border-radius: 34px; background: #0b0f1e; padding: 12px 10px;
  box-shadow: 0 16px 40px rgba(14,20,48,.35);
}
.phone .notch { width: 84px; height: 16px; background: #0b0f1e; border-radius: 0 0 12px 12px; margin: -2px auto 6px; position: relative; z-index: 3; }
.screen {
  border-radius: 24px; overflow: hidden; background: #15203c; color: #fff;
  display: flex; flex-direction: column; height: 470px; position: relative; font-size: 10px;
}
/* ピッチ層 */
.scr-pitch {
  flex: 1; position: relative; padding: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 33.3%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 33.3%),
    linear-gradient(180deg, #2f9e5f 0%, #237c49 100%);
}
.scr-pitch .goal {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 14px; border: 2px solid rgba(255,255,255,.7); border-top: none; border-radius: 0 0 6px 6px;
}
.zone-label { position: absolute; right: 6px; font-size: 8px; font-weight: 800; color: rgba(255,255,255,.65); }
.token {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 15px; background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 3px var(--tk, #fff), 0 3px 8px rgba(0,0,0,.3);
}
.token.r { --tk: var(--red); } .token.b { --tk: var(--blue); } .token.g { --tk: var(--green); }
.token .pw {
  position: absolute; bottom: -7px; right: -7px; background: var(--navy); color: #fff;
  font-size: 8px; font-weight: 800; padding: 0 5px; border-radius: 999px;
}
.scr-ticker {
  background: rgba(0,0,0,.55); font-size: 9px; font-weight: 700; padding: 4px 8px;
  position: absolute; left: 0; right: 0; bottom: 0; color: #ffe28a;
}
/* クロック帯 */
.scr-clockband {
  background: #0e1430; display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; gap: 8px; position: relative; z-index: 2;
}
.scr-clockband .score { font-size: 13px; font-weight: 900; }
.scr-clockband .score small { display: block; font-size: 7px; font-weight: 700; color: #8d99c4; }
.mini-ring {
  width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(var(--gold) 0 65%, rgba(255,255,255,.16) 65% 100%);
  display: grid; place-items: center; margin-top: -22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.mini-ring i {
  font-style: normal; width: 40px; height: 40px; background: #0e1430; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px; font-weight: 900; color: var(--gold);
}
.gauge { flex: 1; max-width: 70px; }
.gauge small { font-size: 7px; color: #8d99c4; font-weight: 700; display: block; }
.gauge .bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,.15); overflow: hidden; }
.gauge .bar i { display: block; height: 100%; border-radius: 4px; background: var(--gold); }
/* 手札層 */
.scr-hand {
  background: linear-gradient(180deg, #101a36 0%, #0b1226 100%);
  padding: 10px 8px 12px; text-align: center;
}
.scr-hand .label { font-size: 8px; font-weight: 800; color: #8d99c4; letter-spacing: .14em; margin-bottom: 6px; }
.hand-cards { display: flex; justify-content: center; gap: 6px; }
.hand-card {
  width: 52px; border-radius: 8px; background: #fff; color: var(--ink); padding: 5px 3px 6px;
  font-size: 8px; font-weight: 800; line-height: 1.3; border-top: 4px solid var(--hc, #999);
  box-shadow: 0 3px 8px rgba(0,0,0,.35);
}
.hand-card .face { font-size: 19px; line-height: 1.2; }
.hand-card.r { --hc: var(--red); } .hand-card.b { --hc: var(--blue); } .hand-card.g { --hc: var(--green); }
.hand-card.sel { transform: translateY(-8px); box-shadow: 0 0 0 2px var(--gold), 0 8px 14px rgba(0,0,0,.4); }
.swipe-hint { margin-top: 7px; font-size: 9px; font-weight: 800; color: var(--gold); }
.choice-pills { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; width: max-content; }
.choice-pills span {
  background: #fff; color: var(--ink); font-weight: 900; font-size: 10px;
  border-radius: 999px; padding: 4px 10px; box-shadow: 0 3px 8px rgba(0,0,0,.35);
  white-space: nowrap;
}
.choice-pills span.hot { background: var(--gold); }
.mock-notes { flex: 1; min-width: 240px; }
.mock-notes ul { list-style: none; display: grid; gap: 10px; }
.mock-notes li {
  background: var(--card); border-radius: 12px; box-shadow: var(--shadow);
  padding: 12px 14px; font-size: 13px; color: var(--ink-soft);
}
.mock-notes li b { color: var(--ink); display: block; font-size: 13px; }
.mock-notes li .pin { color: var(--accent); font-weight: 800; margin-right: 4px; }

/* ---------- 頭を使うポイント ---------- */
.depth-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .depth-grid { grid-template-columns: repeat(3, 1fr); } }
.depth-card { background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 18px 16px; }
.depth-card .no {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 15px; margin-bottom: 10px;
}
.depth-card h4 { font-size: 15px; font-weight: 800; line-height: 1.5; }
.depth-card p { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.depth-card .vs { display: block; margin-top: 10px; font-size: 12px; }
.depth-card .vs b { color: var(--accent); }
.depth-base {
  margin-bottom: 16px; padding: 12px 16px; border-radius: 12px;
  background: var(--accent-soft); font-size: 13px; font-weight: 700; color: var(--accent-deep, var(--accent));
}

/* ---------- 各案ページ: 固有に借りた要素リスト ---------- */
.borrow-list { list-style: none; display: grid; gap: 10px; }
.borrow-list li {
  background: var(--card); border-radius: 12px; box-shadow: var(--shadow);
  padding: 12px 14px; font-size: 13px; color: var(--ink-soft);
}
.borrow-list li b { color: var(--ink); }
.borrow-list li .badge-live { margin-left: 6px; }

/* ---------- 参考筐体テーブル ---------- */
table.refs { border-collapse: collapse; width: 100%; min-width: 560px; background: #fff; font-size: 13px; }
table.refs th, table.refs td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.refs thead th { background: var(--navy); color: #fff; white-space: nowrap; }
table.refs td.game { min-width: 180px; }
table.refs td.game b { display: block; font-size: 13px; }
table.refs td.game small { color: var(--ink-soft); font-size: 11px; display: block; margin: 2px 0 4px; }

/* ---------- 事業接続 ---------- */
.biz-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .biz-grid { grid-template-columns: 1fr 1fr; } }
.biz-card { background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 18px; border-left: 5px solid var(--accent); }
.biz-card h4 { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.biz-card h4 .ico { font-size: 20px; }
.biz-card p { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.biz-card p b { color: var(--ink); }

/* ---------- モックスコープ ---------- */
.hypo-list { display: grid; gap: 10px; margin-bottom: 18px; }
.hypo {
  display: flex; gap: 12px; background: var(--card); border-radius: 12px;
  box-shadow: var(--shadow); padding: 13px 15px; font-size: 13px; align-items: flex-start;
}
.hypo .tag {
  flex: 0 0 auto; background: var(--accent); color: #fff; font-weight: 900; font-size: 11px;
  border-radius: 8px; padding: 2px 8px; margin-top: 2px;
}
.scope-cols { display: grid; gap: 14px; }
@media (min-width: 760px) { .scope-cols { grid-template-columns: 1fr 1fr; } }
.scope-box { background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 18px; }
.scope-box h4 { font-size: 14px; font-weight: 800; margin-bottom: 8px; color: var(--accent-deep, var(--accent)); }
.scope-box ul { list-style: none; display: grid; gap: 6px; font-size: 13px; color: var(--ink-soft); }
.scope-box li::before { content: "▸"; color: var(--accent); font-weight: 900; margin-right: 6px; }
.cost-band {
  margin-top: 16px; background: var(--navy); color: #fff; border-radius: 14px;
  padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
}
.cost-band .kv small { display: block; font-size: 11px; color: #9aa7d4; font-weight: 700; }
.cost-band .kv b { font-size: 17px; font-weight: 900; }

/* ---------- リスク ---------- */
.risk-list { display: grid; gap: 12px; }
.risk {
  background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 16px 18px;
}
.risk h4 { font-size: 14px; font-weight: 800; color: #c0263a; }
.risk h4::before { content: "⚠ "; }
.risk .counter { margin-top: 8px; font-size: 13px; color: var(--ink-soft); padding-left: 14px; border-left: 3px solid var(--green); }
.risk .counter b { color: #0b7e61; }

/* ---------- ページ末尾ナビ・フッター ---------- */
.page-nav { display: grid; gap: 10px; }
@media (min-width: 700px) { .page-nav { grid-template-columns: repeat(3, 1fr); } }
.page-nav a {
  text-decoration: none; background: var(--card); box-shadow: var(--shadow);
  border-radius: 12px; padding: 13px 14px; font-size: 13px; font-weight: 800; text-align: center;
}
.page-nav a.is-accent { background: var(--accent); color: #fff; }
footer {
  margin-top: 30px; background: var(--navy); color: #8d99c4; font-size: 11px;
  padding: 26px 0 32px; text-align: center; line-height: 2;
}
footer .conf { color: #ffc048; font-weight: 800; letter-spacing: .22em; font-size: 12px; }
