@charset "UTF-8";

/* ============================================================
   iekatsu — Editorial サブページ基盤
   ヘッダー / フッター / スクロールバー / reveal は global.css
   ここにはコンテンツ用コンポーネントのみ
   ============================================================ */

/* ベーススタイル（SWELLデフォルト上書き） */
#site-main {
  font-family: var(--f-ja);
  color: var(--ink);
  line-height: 1.8;
  background: var(--paper);
}

::selection { background: var(--ink); color: var(--paper); }

/* ============================================================
   FV
   ============================================================ */
.fv { padding-block: clamp(34px, 5vw, 64px) clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line-strong); }
.fv-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 36px); }
.fv-q { font-family: var(--f-script); font-size: clamp(20px, 3vw, 32px); color: var(--accent); line-height: 1.2; }
.fv-update { text-align: right; }
.fv-update .mono { color: var(--muted); display: block; }
.fv-display {
  font-family: var(--f-grotesk); font-weight: 900;
  font-size: clamp(50px, 13vw, 188px); line-height: 0.92;
  letter-spacing: -0.04em; text-transform: uppercase;
}
.fv-display .thin { font-weight: 500; }
.fv-display .out { -webkit-text-stroke: 1.4px var(--ink); color: transparent; }
.fv-display .ac { color: var(--accent); }
.fv-sub { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: clamp(22px, 3vw, 40px); align-items: flex-start; }
.fv-lead { font-family: var(--f-ja); font-size: clamp(15px, 1.4vw, 18px); max-width: 52ch; color: var(--ink-2); }
.fv-cta { display: inline-flex; align-items: center; gap: 12px; }

/* 円形ボタン */
.circ {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  width: 118px; height: 118px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; text-align: center; cursor: pointer; flex: none;
  transition: background 0.3s var(--ease), color 0.3s; line-height: 1.4; background: var(--paper);
}
.circ:hover { background: var(--ink); color: var(--paper); }
.circ.solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.circ.solid:hover { background: var(--ink); border-color: var(--ink); }

/* ============================================================
   セクション見出し
   ============================================================ */
.sec { padding-block: clamp(56px, 7vw, 104px); border-bottom: 1px solid var(--line-strong); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(30px, 4vw, 52px); flex-wrap: wrap; }
.sec-title {
  font-family: var(--f-grotesk); font-weight: 900;
  font-size: clamp(30px, 5vw, 72px); letter-spacing: -0.03em;
  text-transform: uppercase; line-height: 0.95;
  display: flex; align-items: flex-start; gap: 12px;
}
.sec-title sup { font-family: var(--f-mono); font-size: 0.22em; font-weight: 400; letter-spacing: 0; transform: translateY(0.4em); }
.sec-title .ja { font-family: var(--f-ja); font-weight: 700; font-size: 0.34em; align-self: center; letter-spacing: 0; color: var(--ink-2); }
.sec-lead { font-family: var(--f-ja); font-size: 15px; color: var(--ink-2); max-width: 46ch; }

/* ============================================================
   マガジングリッド
   ============================================================ */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 2.4vw, 40px) clamp(16px, 2vw, 32px); }
.card { display: flex; flex-direction: column; }
.card-img { position: relative; aspect-ratio: 16 / 9; margin-bottom: 14px; overflow: hidden; }
.card-img .ph { width: 100%; height: 100%; }
.card-img > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img .ph img, .card-img .ph, .card-img > img { transition: transform 0.7s var(--ease); }
.card:hover .card-img .ph, .card:hover .card-img > img { transform: scale(1.03); }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.card-cat { font-family: var(--f-grotesk); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.card-cat::before { content: ""; display: inline-block; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.card-title { font-family: var(--f-ja); font-weight: 700; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; text-wrap: pretty; }
.card-en { font-family: var(--f-mono); font-size: 11px; color: var(--muted); margin-top: 6px; }
.card:hover .card-title { color: var(--accent); }

/* ピルボタン（記事一覧リンク・CTAリンクで再利用） */
.good-btn {
  background: none; border: 1px solid var(--line-strong); border-radius: 100px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; flex: none;
  transition: background 0.2s, color 0.2s, transform 0.15s; color: var(--ink);
}
.good-btn:hover { transform: scale(1.04); }

/* グリッド占有 */
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-6  { grid-column: span 6; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.card.feature .card-img { aspect-ratio: 16 / 9; }
.card.feature .card-title { font-size: clamp(20px, 2.4vw, 34px); font-weight: 900; line-height: 1.3; }
.card.feature .feat-lead { font-family: var(--f-ja); font-size: 14.5px; color: var(--ink-2); margin-top: 10px; max-width: 50ch; }

/* ============================================================
   坪単価ガイド（横スクロール・ショーケース）
   ============================================================ */
.shelf { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.shelf::-webkit-scrollbar { height: 6px; }
.shelf::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.maker {
  flex: 0 0 clamp(220px, 24vw, 300px); scroll-snap-align: start;
  border: 1px solid var(--line-strong); background: var(--paper);
  display: flex; flex-direction: column; transition: background 0.25s, color 0.25s;
}
.maker:hover { background: var(--ink); color: var(--paper); }
.maker .ph { aspect-ratio: 4 / 3; }
.maker-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.maker .m-rank { font-family: var(--f-mono); font-size: 11px; color: var(--muted); }
.maker:hover .m-rank { color: var(--paper); }
.maker .m-name { font-family: var(--f-ja); font-weight: 700; font-size: 18px; }
.maker .m-note { font-family: var(--f-ja); font-size: 12.5px; color: var(--ink-2); }
.maker:hover .m-note { color: var(--paper); }
.maker .m-price { font-family: var(--f-grotesk); font-weight: 900; font-size: 26px; letter-spacing: -0.02em; margin-top: auto; }
.maker .m-price small { font-family: var(--f-ja); font-size: 12px; font-weight: 500; letter-spacing: 0; }
.maker.feat { background: var(--accent); color: #fff; border-color: var(--accent); }
.maker.feat:hover { background: var(--ink); }
.maker.feat .m-rank, .maker.feat .m-note { color: rgba(255,255,255,0.8); }

/* ============================================================
   価格帯チャート（bands）
   ============================================================ */
.bands { margin-top: clamp(36px, 5vw, 60px); }
.band-axis { position: relative; height: 18px; margin-left: var(--lbl, 200px); border-bottom: 1px solid var(--line-strong); }
.band-axis .tk { position: absolute; transform: translateX(-50%); font-family: var(--f-mono); font-size: 10px; color: var(--muted); top: 0; }
.band-row { display: grid; grid-template-columns: var(--lbl, 200px) 1fr; align-items: center; border-bottom: 1px solid var(--line); padding: 12px 0; }
.band-row .bn { font-family: var(--f-ja); font-weight: 700; font-size: 15px; }
.band-row .bn .en { font-family: var(--f-mono); font-size: 10px; color: var(--muted); display: block; font-weight: 400; }
.band-track { position: relative; height: 24px; }
.band-bar { position: absolute; top: 50%; transform: translateY(-50%); height: 8px; background: var(--ink); transition: width 0.7s var(--ease); }
.band-bar .bv { position: absolute; right: 0; transform: translate(calc(100% + 8px), -50%); top: 50%; font-family: var(--f-mono); font-size: 11px; white-space: nowrap; }
.band-row.feat .bn { color: var(--accent); }
.band-row.feat .band-bar { background: var(--accent); height: 12px; }
.band-note { font-family: var(--f-ja); font-size: 11.5px; color: var(--muted); margin-top: 18px; line-height: 1.8; }

/* ============================================================
   診断バンド
   ============================================================ */
.diagband { background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--ink); }
.diagband .sec-title, .diagband .fv-q { color: var(--paper); }
.diag-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.diag-left .mono { color: rgba(255,255,255,0.6); }
.diag-left h2 { font-family: var(--f-grotesk); font-weight: 900; font-size: clamp(34px, 6vw, 84px); letter-spacing: -0.03em; text-transform: uppercase; line-height: 0.95; margin: 14px 0 18px; }
.diag-left .ja { font-family: var(--f-ja); font-weight: 700; font-size: clamp(18px, 2vw, 24px); }
.diag-left p { font-family: var(--f-ja); font-size: 15px; color: rgba(255,255,255,0.75); margin: 16px 0 26px; max-width: 44ch; }
.diag-box { border: 1px solid rgba(255,255,255,0.25); padding: clamp(22px, 3vw, 34px); }
.diag-box .dq-prog { height: 3px; background: rgba(255,255,255,0.18); margin-bottom: 20px; }
.diag-box .dq-prog i { display: block; height: 100%; width: 8%; background: var(--paper); transition: width 0.5s var(--ease); }
.diag-box .dq-no { font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,0.6); }
.diag-box .dq-q { font-family: var(--f-ja); font-weight: 700; font-size: 18px; margin: 8px 0 18px; }
.diag-opts { display: grid; gap: 9px; }
.diag-opt {
  font-family: var(--f-ja); font-size: 15px; text-align: left; cursor: pointer; color: var(--paper);
  background: none; border: 1px solid rgba(255,255,255,0.25); padding: 13px 16px;
  display: flex; gap: 12px; align-items: center; transition: background 0.2s, color 0.2s;
}
.diag-opt .k { font-family: var(--f-mono); font-size: 12px; opacity: 0.7; }
.diag-opt:hover { background: var(--paper); color: var(--ink); }
.diag-opt.sel { background: var(--accent); border-color: var(--accent); color: #fff; }
.diag-foot { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-paper {
  font-family: var(--f-grotesk); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--paper); color: var(--ink); border: none; padding: 15px 26px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s;
}
.btn-paper:hover { transform: translateX(3px); }
.diag-foot .note { font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,0.55); }

/* ============================================================
   ABOUT（回転画像＋大見出し）
   ============================================================ */
.about { text-align: center; }
.about-display { font-family: var(--f-grotesk); font-weight: 900; font-size: clamp(44px, 12vw, 168px); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; }
.about-display .ac { color: var(--accent); }
.about-script { font-family: var(--f-script); font-size: clamp(30px, 5vw, 60px); color: var(--accent); margin-top: -0.1em; }
.about-body { max-width: 56ch; margin: clamp(26px, 4vw, 44px) auto 0; font-family: var(--f-ja); font-size: 15.5px; color: var(--ink-2); text-align: left; }
.about-body p { margin-bottom: 1.1em; }
.credits { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px); }
.credit { text-align: center; }
.credit .mono { color: var(--muted); display: block; margin-bottom: 8px; }
.credit b { font-family: var(--f-grotesk); font-weight: 800; font-size: 16px; }

/* ============================================================
   オーダーフォーム
   ============================================================ */
.order { background: var(--paper-2); }
.order-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 6vw, 80px); align-items: start; }
.order h2 { font-family: var(--f-grotesk); font-weight: 900; font-size: clamp(34px, 6vw, 84px); letter-spacing: -0.03em; text-transform: uppercase; line-height: 0.95; }
.order .ja { font-family: var(--f-ja); font-weight: 700; font-size: clamp(18px, 2vw, 24px); margin-top: 12px; }
.order p.lead { font-family: var(--f-ja); font-size: 15px; color: var(--ink-2); margin-top: 18px; max-width: 42ch; }
.order-points { margin-top: 26px; display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.opt-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.opt-row .no { font-family: var(--f-mono); font-size: 12px; color: var(--accent); flex: none; width: 28px; }
.opt-row b { font-family: var(--f-ja); font-weight: 700; font-size: 15px; }
.opt-row span { font-family: var(--f-ja); font-size: 13px; color: var(--ink-2); display: block; }
.oform { background: var(--paper); border: 1px solid var(--line-strong); padding: clamp(22px, 3vw, 40px); }
.oform .ttl { font-family: var(--f-grotesk); font-weight: 800; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.oform .sub { font-family: var(--f-mono); font-size: 11px; color: var(--muted); margin: 6px 0 22px; }
.fld { margin-bottom: 16px; }
.fld label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  display: block; margin-bottom: 7px; color: var(--ink-2);
}
.fld label .rq { color: var(--accent); }
.fld input, .fld select, .fld textarea {
  width: 100%; font-family: var(--f-ja); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); padding: 12px 14px; border-radius: 0;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.fld textarea { resize: vertical; min-height: 84px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ochips { display: flex; flex-wrap: wrap; gap: 8px; }
.ochip {
  font-family: var(--f-ja); font-size: 13px; cursor: pointer;
  padding: 9px 14px; border: 1px solid var(--line-strong); background: var(--paper); transition: all 0.18s;
}
.ochip.on { background: var(--ink); color: var(--paper); }
.osubmit { width: 100%; justify-content: center; margin-top: 6px; background: var(--accent); color: #fff; }
.osubmit:hover { background: var(--ink); }
.ofoot { font-family: var(--f-mono); font-size: 10.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.osuccess { text-align: center; padding: 36px 10px; }
.osuccess .mk { font-family: var(--f-grotesk); font-weight: 900; font-size: 40px; color: var(--accent); }
.osuccess h3 { font-family: var(--f-ja); font-weight: 700; font-size: 20px; margin-top: 10px; }
.osuccess p { font-family: var(--f-ja); font-size: 14px; color: var(--ink-2); margin-top: 8px; }

/* ============================================================
   下層ページ共通
   ============================================================ */
.crumb {
  font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em;
  padding-block: 18px; border-bottom: 1px solid var(--line);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.crumb a:hover { color: var(--ink); }
.crumb .sep { opacity: 0.5; }

.phead { padding-block: clamp(40px, 6vw, 88px); border-bottom: 1px solid var(--line-strong); }
.phead .mono { color: var(--accent); }
.phead .eb { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.phead .tag-cat { font-family: var(--f-grotesk); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--line-strong); padding: 4px 10px; }
.phead h1 { font-family: var(--f-grotesk); font-weight: 900; font-size: clamp(40px, 8vw, 116px); line-height: 0.92; letter-spacing: -0.04em; text-transform: uppercase; }
.phead h1 .out { -webkit-text-stroke: 1.4px var(--ink); color: transparent; }
.phead h1 .ac { color: var(--accent); }
.phead .ja-ttl { font-family: var(--f-ja); font-weight: 900; font-size: clamp(22px, 3vw, 40px); line-height: 1.3; margin-top: 16px; text-wrap: balance; }
.phead .lead { font-family: var(--f-ja); font-size: clamp(15px, 1.4vw, 17px); color: var(--ink-2); max-width: 60ch; margin-top: 20px; }
.phead .meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; font-family: var(--f-mono); font-size: 11px; color: var(--muted); }

/* ============================================================
   比較表 / 絞り込み
   ============================================================ */
.filterbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.filterbar .fl-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-right: 4px; }
.fchip {
  font-family: var(--f-ja); font-size: 13px; cursor: pointer;
  padding: 8px 15px; border: 1px solid var(--line-strong); background: var(--paper); transition: all 0.18s;
}
.fchip.on { background: var(--ink); color: var(--paper); }

.ctable-wrap { overflow-x: auto; border: 1px solid var(--line-strong); scrollbar-width: thin; }
table.ctable { border-collapse: collapse; width: 100%; min-width: 920px; font-family: var(--f-ja); }
table.ctable th, table.ctable td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.ctable thead th {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); position: sticky; top: 0; background: var(--paper-2); white-space: nowrap;
  border-bottom: 1px solid var(--line-strong);
}
table.ctable .c-name { font-weight: 700; font-size: 16px; white-space: nowrap; }
table.ctable .c-name__label { display: inline-block; }
table.ctable .c-en { font-family: var(--f-mono); font-size: 10px; color: var(--muted); display: block; font-weight: 400; }
table.ctable .c-price { font-family: var(--f-grotesk); font-weight: 900; font-size: 19px; white-space: nowrap; }
table.ctable .c-price small { font-family: var(--f-ja); font-size: 11px; font-weight: 500; }
table.ctable tr.feat { background: color-mix(in srgb, var(--accent) 8%, transparent); }
table.ctable tr.feat .c-name { color: var(--accent); }
table.ctable .pill { display: inline-block; font-family: var(--f-mono); font-size: 10px; padding: 3px 8px; border-radius: 100px; border: 1px solid var(--line-strong); margin: 2px 3px 2px 0; }
.tag-low { color: #2f7d6f; border-color: #2f7d6f; }
.tag-mid { color: #9a6b1a; border-color: #9a6b1a; }
.tag-high { color: var(--accent); border-color: var(--accent); }

/* ランキングリスト */
.rank { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.rank-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; padding: 22px 6px; border-bottom: 1px solid var(--line); }
.rank-row .rk { font-family: var(--f-grotesk); font-weight: 900; font-size: 40px; letter-spacing: -0.04em; line-height: 1; }
.rank-row.feat .rk, .rank-row.feat .rk-name { color: var(--accent); }
.rank-row .rk-name { font-family: var(--f-ja); font-weight: 700; font-size: 18px; }
.rank-row .rk-note { font-family: var(--f-ja); font-size: 13px; color: var(--ink-2); }
.rank-row .rk-price { font-family: var(--f-grotesk); font-weight: 900; font-size: 24px; text-align: right; white-space: nowrap; }
.rank-row .rk-price small { font-family: var(--f-ja); font-size: 11px; font-weight: 500; }

/* ============================================================
   記事本文 / 執筆者ボックス
   ============================================================ */
.article-grid { display: grid; grid-template-columns: 1fr clamp(240px, 24vw, 300px); gap: clamp(30px, 5vw, 64px); align-items: start; }
.prose { font-family: var(--f-ja); font-size: 16.5px; line-height: 2; color: var(--ink); max-width: 72ch; }
.prose h2 { font-family: var(--f-ja); font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); margin: 2.2em 0 0.8em; padding-top: 0.6em; border-top: 2px solid var(--ink); line-height: 1.4; scroll-margin-top: 84px; }
.prose h2 .en { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; font-weight: 400; margin-bottom: 6px; }
.prose h3 { font-family: var(--f-ja); font-weight: 700; font-size: clamp(18px, 2vw, 22px); margin: 1.8em 0 0.6em; }
.prose p { margin-bottom: 1.4em; }
.prose ul, .prose ol { margin: 0 0 1.4em 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 700; background: linear-gradient(transparent 62%, color-mix(in srgb, var(--accent) 22%, transparent) 0); }
.prose blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 20px; margin: 1.6em 0; color: var(--ink-2); font-size: 15.5px; }
.prose figure .ph { aspect-ratio: 16/9; margin: 1.6em 0 0.5em; }
.prose figcaption { font-family: var(--f-mono); font-size: 11px; color: var(--muted); }

/* 編集部の声 / 根拠ボックス */
.callout { border: 1px solid var(--line-strong); padding: 22px 24px; margin: 1.8em 0; background: var(--paper-2); }
.callout .cl-h { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.callout p { margin-bottom: 0.6em; font-size: 15px; }
.callout p:last-child { margin-bottom: 0; }

/* 執筆者ボックス */
.author-box { border: 1px solid var(--line-strong); padding: 26px 24px; margin: 2.4em 0 0; display: flex; gap: 20px; align-items: flex-start; }
.author-box .av { width: 76px; height: 76px; flex: none; border-radius: 50%; overflow: hidden; }
.author-box .av .ph { width: 100%; height: 100%; }
.author-box .ab-role { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.author-box .ab-name { font-family: var(--f-ja); font-weight: 900; font-size: 19px; margin: 4px 0 2px; }
.author-box .ab-name .en { font-family: var(--f-mono); font-size: 11px; font-weight: 400; color: var(--muted); margin-left: 8px; }
.author-box .ab-bio { font-family: var(--f-ja); font-size: 13.5px; color: var(--ink-2); line-height: 1.8; margin-top: 8px; }
.author-box .ab-sns { margin-top: 10px; display: flex; gap: 14px; font-family: var(--f-mono); font-size: 11px; }
.author-box .ab-sns a { color: var(--accent); }
.author-box .ab-super { font-family: var(--f-ja); font-size: 12px; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }

/* サイドバー */
.aside-box { border: 1px solid var(--line-strong); padding: 20px; margin-bottom: 20px; position: sticky; top: 76px; }
.aside-box h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc a { display: block; font-family: var(--f-ja); font-size: 13.5px; padding: 6px 0; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.toc a:hover { color: var(--accent); }

/* 関連リンク */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related a { border: 1px solid var(--line-strong); padding: 18px; transition: background 0.2s, color 0.2s; }
.related a:hover { background: var(--ink); color: var(--paper); }
.related a .rl-cat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-right: 8px; }
.related a:hover .rl-cat { color: var(--paper); }
.related a .rl-t { font-family: var(--f-ja); font-weight: 700; font-size: 14.5px; line-height: 1.5; margin-top: 8px; }

/* インラインCTA */
.inline-cta { background: var(--ink); color: var(--paper); padding: clamp(26px, 4vw, 44px); margin: 2.4em 0; }
.inline-cta .mono { color: rgba(255,255,255,0.6); }
.inline-cta h3 { font-family: var(--f-ja); font-weight: 900; font-size: clamp(20px, 2.4vw, 28px); margin: 10px 0 14px; }
.inline-cta p { font-family: var(--f-ja); font-size: 14.5px; color: rgba(255,255,255,0.8); margin-bottom: 18px; max-width: 52ch; }
.inline-cta .btn-paper { background: var(--paper); }

/* ============================================================
   SEO/AIO 記事構成
   ============================================================ */
.kanshu-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-ja); font-size: 12.5px; font-weight: 700; color: var(--accent); border: 1px solid var(--accent); border-radius: 100px; padding: 6px 14px; }
.kanshu-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.answer-box { border: 1px solid var(--line-strong); background: var(--paper-2); padding: 24px 26px; margin-bottom: 26px; }
.answer-box .ab-row { margin-bottom: 14px; }
.answer-box .ab-row:last-child { margin-bottom: 0; }
.answer-box .ab-k { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); font-weight: 700; display: block; margin-bottom: 4px; }
.answer-box p { font-family: var(--f-ja); font-size: 15px; line-height: 1.9; margin: 0; }
.this-article { border-left: 3px solid var(--accent); padding: 6px 0 6px 18px; margin-bottom: 32px; }
.this-article h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.this-article ul { margin: 0 0 0 18px; }
.this-article li { font-family: var(--f-ja); font-size: 14.5px; margin-bottom: 4px; }
.faq { margin: 2.4em 0; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--f-ja); font-weight: 700; font-size: 16px; display: flex; gap: 10px; }
.faq-q::before { content: "Q."; color: var(--accent); font-family: var(--f-grotesk); font-weight: 900; }
.faq-a { font-family: var(--f-ja); font-size: 14.5px; color: var(--ink-2); line-height: 1.9; margin-top: 8px; padding-left: 24px; }
.src-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0.4em 0 1.2em; }
.src-tags span { font-family: var(--f-mono); font-size: 10.5px; padding: 3px 9px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); }

/* ============================================================
   診断フロー
   ============================================================ */
.quiz { max-width: 760px; margin: 0 auto; }
.quiz-prog { height: 4px; background: var(--line); margin-bottom: 10px; }
.quiz-prog i { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.4s var(--ease); }
.quiz-count { font-family: var(--f-mono); font-size: 11px; color: var(--muted); text-align: right; margin-bottom: 26px; }
.quiz-q { font-family: var(--f-ja); font-weight: 900; font-size: clamp(22px, 3vw, 34px); line-height: 1.45; margin-bottom: 28px; text-wrap: balance; }
.quiz-q .qn { font-family: var(--f-grotesk); color: var(--accent); margin-right: 12px; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
  font-family: var(--f-ja); font-size: 16px; text-align: left; cursor: pointer;
  background: var(--paper); border: 1px solid var(--line-strong); padding: 18px 20px;
  display: flex; gap: 14px; align-items: center; transition: background 0.18s, color 0.18s, transform 0.15s;
}
.quiz-opt .k { font-family: var(--f-mono); font-size: 13px; color: var(--muted); flex: none; }
.quiz-opt:hover { background: var(--ink); color: var(--paper); transform: translateX(3px); }
.quiz-opt:hover .k { color: var(--paper); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 26px; }
.quiz-back { font-family: var(--f-mono); font-size: 12px; background: none; border: none; cursor: pointer; color: var(--muted); }
.quiz-back:hover { color: var(--ink); }

/* 診断結果 */
.result { text-align: center; max-width: 820px; margin: 0 auto; }
.result .mono { color: var(--accent); }
.result h2 { font-family: var(--f-grotesk); font-weight: 900; font-size: clamp(30px, 5vw, 60px); letter-spacing: -0.03em; text-transform: uppercase; margin: 10px 0; }
.result .winner { border: 1px solid var(--line-strong); padding: clamp(24px, 4vw, 40px); margin: 28px 0; }
.result .winner .ph { aspect-ratio: 16/7; margin-bottom: 22px; }
.result .winner .w-name { font-family: var(--f-ja); font-weight: 900; font-size: clamp(26px, 4vw, 40px); }
.result .winner .w-price { font-family: var(--f-grotesk); font-weight: 900; font-size: 28px; margin-top: 6px; color: var(--accent); }
.result .winner .w-why { font-family: var(--f-ja); font-size: 15px; color: var(--ink-2); margin-top: 16px; }
.result .scores { display: grid; gap: 10px; margin: 24px auto; max-width: 520px; text-align: left; }
.result .score-row { display: grid; grid-template-columns: 130px 1fr 44px; gap: 12px; align-items: center; font-family: var(--f-ja); font-size: 13px; }
.result .score-bar { height: 8px; background: var(--line); position: relative; }
.result .score-bar i { display: block; height: 100%; background: var(--accent); transition: width 0.6s var(--ease); }
.result .runners { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; text-align: left; }
.result .runner { border: 1px solid var(--line); padding: 16px; }
.result .runner b { font-family: var(--f-ja); font-size: 15px; }
.result .runner span { font-family: var(--f-mono); font-size: 12px; color: var(--muted); }

/* ============================================================
   LINE CTA（大判）
   ============================================================ */
.line-cta-big {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--f-ja); font-weight: 700; font-size: 15.5px;
  color: #fff; background: #06c755; padding: 16px 28px; border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s; border: none; cursor: pointer;
}
.line-cta-big:hover { opacity: 0.92; transform: translateY(-2px); }
.line-cta-big .ico {
  width: 24px; height: 24px; border-radius: 6px; background: #fff; color: #06c755;
  display: grid; place-items: center; font-family: var(--f-grotesk); font-weight: 900; font-size: 14px;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .grid { gap: 28px 18px; }
  .col-3, .col-4 { grid-column: span 6; }
  .col-6, .col-8 { grid-column: span 12; }
  .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .diag-wrap { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .related { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .band-axis, .band-row { --lbl: 120px; }
  .band-row .bn { font-size: 13px; }
}

@media (max-width: 620px) {
  .line-cta-big span:not(.ico) { display: none; }
  .line-cta-big { padding: 12px; }
}

@media (max-width: 600px) {
  .rank-row { grid-template-columns: 48px 1fr; }
  .rank-row .rk { font-size: 28px; }
  .rank-row .rk-price { grid-column: 2; text-align: left; }
}

@media (max-width: 560px) {
  .col-3 { grid-column: span 6; }
  .result .runners { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .author-box { flex-direction: column; }
}
