/* ============================================================
   エンジニア転職の台帳 — 見た目
   ------------------------------------------------------------
   **色・角丸・影・幅・書体は、参考サイト(bizreach.biz)を
   実測した値をそのまま使っている。**目分量で決めていない。
   採寸: tools/ref-capture.mjs   結果: scratchpad/ref/bizreach.json

     文字      rgb(35,24,21)      #231815
     主色(赤)  rgb(182,17,28)     #B6111C   ← CTAと強調だけに使う
     ベージュ  rgb(188,168,139)   #BCA88B / 淡 #F2EEE8
     灰        rgb(238,241,244)   #EEF1F4 / 罫線 #DDDFE3
     フッタ    rgb(83,87,93)      #53575D
     角丸      2px(ほぼ直角)      ボタンは4px
     影        rgba(0,0,0,.07) 0 3px 6px  ← **1種類だけ**
     幅        1110px
     書体      Yu Gothic Medium

   **明るい配色に振り切っている。**参考サイトが単色系なので、
   暗色テーマは作らず、背景と文字をすべて明示して固定する。
   ============================================================ */

:root{
  --ink:#231815;        /* 本文。純黒ではなく赤みのある濃茶 */
  --ink-2:#55504e;      /* 補足 */
  --ink-3:#827975;      /* 注記・確認日 */
  --red:#B6111C;        /* 主色。**CTAと数字と強調にだけ** */
  --red-dark:#8f0d16;
  --red-bright:#C7000A;
  --beige:#C4B39C;      /* ヒーロー帯。切り抜き写真の地色に合わせてある */
  --beige-pale:#F2EEE8;
  --beige-mid:#D6C9B4;
  --gray-pale:#EEF1F4;  /* 節の地 */
  --gray-line:#DDDFE3;  /* 罫線 */
  --gray-deep:#53575D;  /* フッタ */
  --white:#fff;
  --r:2px;
  --r-btn:4px;
  --sh:0 3px 6px rgba(0,0,0,.07);
  --w:1110px;
  --font:"Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体","Noto Sans JP","ヒラギノ角ゴ Pro W3",メイリオ,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;font-family:var(--font);font-size:16px;line-height:1.9;
  color:var(--ink);background:var(--white);
  font-feature-settings:"palt" 1;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--red);text-underline-offset:.18em}
a:hover{color:var(--red-bright)}
:focus-visible{outline:2px solid var(--red);outline-offset:2px}
.wrap{max-width:var(--w);margin:0 auto;padding:0 20px}

/* ---------- 見出し ---------- */
h1,h2,h3,h4{line-height:1.5;margin:0;font-weight:700;text-wrap:balance;letter-spacing:.01em}
h2{font-size:28px;margin:56px 0 18px}
h3{font-size:21px;margin:40px 0 12px}
h4{font-size:17px;margin:28px 0 8px}
p{margin:0 0 1.1em}
/* **本文の strong は赤にしない(2026-08-23)。**
   最初は参考サイトを真似て全部赤にしたが、こちらの本文は注意書きが多く、
   段落まるごとが赤になった。**全部が強調なら、何も強調していないのと同じ。**
   参考サイトを見直すと、本文は黒で、赤が出るのは
   数字・CTA・表のセル・注意書きの帯だけだった。そこに合わせる。 */
strong{font-weight:700;color:inherit}
.hero strong,.feat-copy strong,.chapter-note strong,.point-lead b,
.cta-band-title em,.photo-band strong,.sd-say strong,.checked strong,
table strong,.worry-list strong,.worry-note strong,.chosa-lede strong,
.circle-main,.intent-go,.case-kbn{color:var(--red)}
main{display:block}

/* ============================================================
   ヘッダ
   ============================================================ */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:60;background:var(--white);
  border-bottom:1px solid var(--gray-line);
}
.header-inner{
  max-width:1340px;margin:0 auto;padding:0 22px;height:62px;
  display:flex;align-items:center;gap:26px;
}
.brand{display:flex;align-items:center;gap:9px;text-decoration:none;color:var(--ink);flex:none}
.brand svg{color:var(--red)}
.brand-text{display:flex;flex-direction:column;line-height:1.24}
.brand-name{font-size:17px;font-weight:700;letter-spacing:.02em}
.brand-tag{font-size:10.5px;color:var(--ink-3);font-weight:500}
.global-nav{display:flex;gap:22px;margin-left:8px;flex:1 1 auto;flex-wrap:nowrap;overflow:hidden}
.global-nav a{
  color:var(--ink);text-decoration:none;font-size:14px;font-weight:700;
  white-space:nowrap;padding:6px 0;border-bottom:2px solid transparent;
}
.global-nav a:hover{color:var(--red);border-bottom-color:var(--red)}
.header-meta{flex:none;text-align:right;line-height:1.35;font-size:11px;color:var(--ink-2)}
.header-meta b{display:block;font-size:16px;color:var(--ink);letter-spacing:.02em}
.header-cta{
  flex:none;background:var(--red);color:#fff;text-decoration:none;
  font-size:13px;font-weight:700;line-height:1.3;
  padding:11px 18px;border-radius:var(--r);white-space:nowrap;
}
.header-cta:hover{background:var(--red-bright);color:#fff}
.header-cta.ghost{background:var(--ink)}
.header-cta.ghost:hover{background:#3c2c28}
.header-offset{height:62px}

/* サイトの説明帯(参考サイトの、ヘッダ直下の細い帯) */
.ad-notice{
  border-bottom:1px solid var(--gray-line);background:var(--white);
  font-size:11.5px;color:var(--ink-3);
  padding:7px 22px;max-width:1340px;margin:0 auto;
  display:flex;justify-content:space-between;gap:16px;
}

/* 端末が狭いときの索引タブ */
.sp-tabbar{display:none}

/* ============================================================
   ヒーロー
   ============================================================ */
.hero{background:var(--beige);position:relative;overflow:hidden}
.hero-inner{
  max-width:var(--w);margin:0 auto;padding:0 20px;
  display:grid;grid-template-columns:1fr 440px;align-items:end;
  min-height:470px;
}
.hero-copy{padding:52px 0 56px}
.hero-eyebrow{
  font-size:12.5px;font-weight:700;letter-spacing:.14em;color:#6b5c49;
  margin:0 0 14px;
}
.hero h1{
  font-size:56px;font-weight:700;line-height:1.28;letter-spacing:.01em;
  color:var(--ink);margin:0 0 26px;
}
.hero h1 .thin{font-weight:500;font-size:.62em}
.hero-stat{
  font-size:22px;font-weight:700;margin:0 0 26px;color:var(--ink);
  line-height:1.35;
}
/* **数字と単位は必ず一緒に折る。**別々に折れると「42」だけ行末に残り、
   次の行の頭に大きな「社」が落ちる(携帯幅で実際にそうなった) */
.hero-numwrap{white-space:nowrap;display:inline-flex;align-items:baseline}
.hero-num{
  color:var(--red);font-size:52px;line-height:1;font-weight:700;
  letter-spacing:-.01em;font-variant-numeric:tabular-nums;margin:0 2px;
}
.hero-num-s{font-size:.46em}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;margin:0 0 12px}
.hero-note{font-size:11.5px;color:#6b5c49;margin:0}
.hero-photo{
  position:relative;align-self:end;justify-self:center;
  width:440px;max-width:100%;
}
.hero-photo img{width:100%;display:block}

/* ボタン(参考サイト: 赤ベタ・ほぼ直角・右に矢印) */
.btn-primary,.btn-line{
  display:inline-flex;align-items:center;justify-content:center;gap:14px;
  min-width:264px;padding:17px 26px;
  font-size:15px;font-weight:700;text-decoration:none;
  border-radius:var(--r-btn);transition:background .15s,color .15s;
}
.btn-primary{background:var(--red);color:#fff;border:1px solid var(--red)}
.btn-primary:hover{background:var(--red-bright);border-color:var(--red-bright);color:#fff}
.btn-line{background:transparent;color:var(--ink);border:1px solid var(--ink)}
.btn-line:hover{background:var(--ink);color:#fff}
.btn-primary::after,.btn-line::after{content:"\2192";font-size:15px;line-height:1}
.btn-sm{min-width:0;padding:11px 20px;font-size:13.5px}
.cta-wrap{text-align:center;margin:32px 0 8px}
.cta-note{font-size:12px;color:var(--ink-3);text-align:center;margin:10px 0 0}

/* ============================================================
   ヒーロー直下の3枚(参考サイトは利用企業の声。
   **こちらは声を持っていないので、数えた事実を置く。**)
   ============================================================ */
.point-strip{background:var(--gray-pale);border-bottom:1px solid var(--gray-line)}
.point-grid{
  max-width:1340px;margin:0 auto;padding:20px 22px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
}
.point-card{
  background:var(--white);border-radius:var(--r);box-shadow:var(--sh);
  padding:18px 20px;display:flex;gap:14px;align-items:flex-start;
}
.point-av{
  flex:none;width:72px;height:72px;border-radius:50%;
  background:var(--beige-pale);overflow:hidden;position:relative;
}
/* **全身をそのまま丸に入れると顔が豆粒になる。**上半分だけ見せる */
.point-av img{
  position:absolute;left:50%;top:-6%;transform:translateX(-50%);
  width:130%;max-width:none;
}
.point-body{min-width:0}
.point-lead{font-size:14px;line-height:1.65;margin:0 0 8px}
.point-lead b{color:var(--red);font-weight:700}
.point-from{
  font-size:11.5px;color:var(--ink-3);margin:0;padding-left:10px;
  border-left:2px solid var(--gray-line);line-height:1.6;
}

/* ============================================================
   数字と3つの理由(参考サイト: 淡い写真のモザイクを地に敷く)
   ============================================================ */
.reason-band{position:relative;background:var(--gray-pale);overflow:hidden;padding:64px 0 76px}
.reason-mosaic{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:.16;filter:grayscale(.35);pointer-events:none;
}
.reason-band > .wrap{position:relative}
.reason-stat{text-align:center;font-size:20px;font-weight:700;margin:0 0 6px}
.reason-stat .n{
  color:var(--red);font-size:46px;line-height:1;font-weight:700;
  font-variant-numeric:tabular-nums;margin:0 4px;
}
.reason-title{text-align:center;font-size:31px;font-weight:700;margin:6px 0 4px}
.reason-sub{text-align:center;font-size:11.5px;color:var(--ink-2);margin:0 0 40px}
.reason-circles{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;justify-items:center}
.circle{
  position:relative;width:262px;height:262px;border-radius:50%;
  background:rgba(255,255,255,.9);border:1px solid var(--gray-line);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:20px 26px;
}
.circle-no{
  position:absolute;top:-19px;left:50%;transform:translateX(-50%);
  width:38px;height:38px;border-radius:50%;background:var(--red);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;font-variant-numeric:tabular-nums;
}
.circle-top{font-size:13px;line-height:1.6;margin:0 0 6px;color:var(--ink-2)}
.circle-main{font-size:20px;font-weight:700;line-height:1.5;margin:0;color:var(--red)}

/* ============================================================
   番号つきの節(文章 ↔ 図。図はベージュの丸の上に置く)
   ============================================================ */
.feat{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  padding:64px 0;
}
.feat.flip .feat-copy{order:2}
.feat.flip .feat-media{order:1}
.feat-no{
  display:flex;align-items:center;gap:12px;
  font-size:13px;font-weight:700;color:var(--red);
  font-variant-numeric:tabular-nums;letter-spacing:.1em;margin:0 0 14px;
}
.feat-no::after{content:"";width:34px;height:1px;background:var(--ink-3)}
.feat-title{font-size:29px;font-weight:700;line-height:1.45;margin:0 0 18px}
.feat-copy p{font-size:14.5px;line-height:1.95;color:var(--ink-2);margin:0 0 14px}
.feat-copy p strong{color:var(--red)}
.feat-media{position:relative;display:flex;align-items:center;justify-content:center;min-height:300px}
.feat-media::before{
  content:"";position:absolute;width:300px;height:300px;border-radius:50%;
  background:var(--beige-mid);
}
.feat-media img{position:relative;max-height:320px;width:auto}
.feat-media.wide::before{display:none}
.feat-media.wide img{max-height:none;width:100%;box-shadow:var(--sh);border-radius:var(--r)}

/* ============================================================
   ベージュの申込帯 / 暗い写真帯
   ============================================================ */
.cta-band{background:var(--beige-mid)}
.cta-band-inner{
  max-width:var(--w);margin:0 auto;padding:30px 20px;
  display:grid;grid-template-columns:300px 1fr;gap:44px;align-items:center;
}
.cta-band-media{display:flex;justify-content:center}
.cta-band-media img{max-height:190px;width:auto}
.cta-band-title{font-size:25px;font-weight:700;margin:0 0 8px;line-height:1.5}
.cta-band-title em{font-style:normal;color:var(--red)}
.cta-band-sub{font-size:13.5px;color:#54483c;margin:0 0 18px}

.photo-band{
  position:relative;min-height:230px;display:flex;align-items:center;
  background:#2b2724;background-size:cover;background-position:center;
}
.photo-band::before{content:"";position:absolute;inset:0;background:rgba(20,14,12,.56)}
.photo-band .wrap{position:relative;color:#fff;padding-top:40px;padding-bottom:40px}
.photo-band h2{color:#fff;font-size:27px;margin:0 0 10px;line-height:1.55}
.photo-band p{color:rgba(255,255,255,.82);font-size:11.5px;margin:0}
.photo-band strong{color:#fff}

/* ============================================================
   章見出し
   ============================================================ */
.chapter-head{margin:70px 0 22px;padding-bottom:16px;border-bottom:2px solid var(--ink)}
.chapter-no{
  display:inline-block;font-size:11.5px;font-weight:700;letter-spacing:.16em;
  color:var(--red);margin-bottom:6px;
}
.chapter-title{font-size:29px;font-weight:700;margin:0 0 10px;line-height:1.45}
.chapter-note{font-size:13px;line-height:1.85;color:var(--ink-2);margin:0}
.chapter-note strong{color:var(--red)}
.sec-head{text-align:center;margin:0 0 30px}
.sec-head h2{font-size:29px;margin:0 0 8px}
.sec-head p{font-size:13.5px;color:var(--ink-2);margin:0}

/* ============================================================
   表
   ============================================================ */
.tbl-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 0 18px;border:1px solid var(--gray-line);border-radius:var(--r)}
table{border-collapse:collapse;width:100%;font-size:13.5px;background:var(--white);min-width:640px}
th,td{border-bottom:1px solid var(--gray-line);padding:12px 14px;text-align:left;vertical-align:top;line-height:1.7}
th{background:var(--gray-pale);font-weight:700;color:var(--ink);white-space:nowrap;font-size:12.5px}
tr:last-child td{border-bottom:0}
table tr:hover td{background:#fbfaf8}
td a{font-weight:700;text-decoration:none}
td a:hover{text-decoration:underline}
.score{font-variant-numeric:tabular-nums;font-weight:700;white-space:nowrap}
.note-cell{font-size:12px;color:var(--ink-2)}
.checked{font-size:11.5px;color:var(--ink-3);font-weight:500}

/* 比較表(参考サイト: 行の見出しが濃灰と赤のベタ) */
.cmp-wrap{overflow-x:auto;border:1px solid var(--gray-line);border-radius:var(--r);margin:0 0 18px}
table.cmp{min-width:760px;font-size:13.5px}
table.cmp th{text-align:center;background:var(--gray-pale)}
table.cmp td{text-align:center}
table.cmp .rowhead{
  background:var(--gray-deep);color:#fff;font-weight:700;width:112px;
  text-align:center;white-space:nowrap;border-bottom:1px solid #6a6e74;
}
table.cmp .rowhead.mark{background:var(--red);border-bottom-color:var(--red)}
table.cmp tr.mark td{background:var(--beige-pale)}
table.cmp tr.mark .em{color:var(--red);font-weight:700;display:block}
table.cmp tr:hover td{background:inherit}

/* ============================================================
   台帳カード / 事例カード
   ============================================================ */
.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:0 0 24px}
.case-card{
  background:var(--white);border:1px solid var(--gray-line);
  border-bottom:3px solid var(--red);border-radius:var(--r);
  padding:20px 20px 18px;text-decoration:none;color:var(--ink);
  display:flex;flex-direction:column;transition:box-shadow .15s,transform .15s;
}
.case-card:hover{box-shadow:var(--sh);transform:translateY(-2px);color:var(--ink)}
.case-kbn{
  align-self:flex-start;font-size:11px;font-weight:700;color:var(--red);
  border:1px solid var(--red);border-radius:var(--r);padding:2px 8px;margin:0 0 10px;
}
.case-name{font-size:17px;font-weight:700;margin:0 0 8px;line-height:1.5}
.case-desc{font-size:12.5px;color:var(--ink-2);line-height:1.8;margin:0 0 14px;flex:1}
.case-meta{border-top:1px solid var(--gray-line);padding-top:11px;font-size:11.5px;color:var(--ink-3);line-height:1.75}
.case-meta b{color:var(--ink);font-weight:700}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:0 0 24px}
.card{
  display:block;padding:18px 18px;background:var(--white);
  border:1px solid var(--gray-line);border-left:3px solid var(--red);
  border-radius:var(--r);text-decoration:none;color:var(--ink);
  font-size:14.5px;font-weight:700;line-height:1.65;
}
.card:hover{background:var(--beige-pale);color:var(--ink)}

/* 意図から入る枠 */
.intent-band{background:var(--gray-pale);padding:52px 0;border-top:1px solid var(--gray-line);border-bottom:1px solid var(--gray-line)}
.intent-head{text-align:center;margin:0 0 26px}
.intent-title{font-size:27px;font-weight:700;margin:0}
.intent-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.intent-card{
  background:var(--white);border:1px solid var(--gray-line);border-radius:var(--r);
  padding:20px;text-decoration:none;color:var(--ink);
  display:flex;flex-direction:column;gap:10px;transition:box-shadow .15s}
.intent-card:hover{box-shadow:var(--sh);color:var(--ink)}
.intent-q{font-size:15px;font-weight:700;line-height:1.65}
.intent-go{font-size:12.5px;color:var(--red);font-weight:700}

/* 読みもの(参考サイト: 画像 → 下に説明) */
.know-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px}
.know-card{text-decoration:none;color:var(--ink);display:block}
.know-thumb{
  background:var(--beige-pale);border-radius:var(--r);
  aspect-ratio:16/9;display:flex;align-items:flex-end;justify-content:center;
  overflow:hidden;margin:0 0 12px;border:1px solid var(--gray-line);
}
.know-thumb img{max-height:88%;width:auto}
.know-card p{text-align:center;font-size:14.5px;font-weight:700;margin:0;line-height:1.6}
.know-card:hover p{color:var(--red)}

.article-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:0 0 24px}
.article-card{
  display:block;background:var(--white);border:1px solid var(--gray-line);
  border-radius:var(--r);padding:18px 20px;text-decoration:none;color:var(--ink);
}
.article-card:hover{box-shadow:var(--sh);color:var(--ink)}
.article-card-title{font-size:15.5px;font-weight:700;margin:0 0 6px;line-height:1.6}
.article-card-desc{font-size:12.5px;color:var(--ink-2);margin:0;line-height:1.8}

/* ============================================================
   悩みの帯 / 調査の帯(SDキャラを添える)
   ============================================================ */
.worry-band{background:var(--beige-pale);padding:56px 0;border-top:1px solid var(--gray-line)}
.worry-inner{display:grid;grid-template-columns:250px 1fr;gap:44px;align-items:center}
.worry-img{width:100%;height:auto}
.worry-title{font-size:27px;font-weight:700;margin:0 0 18px}
.worry-list{margin:0 0 16px;padding:0;list-style:none}
.worry-list li{
  position:relative;padding:0 0 0 30px;margin:0 0 12px;
  font-size:14.5px;line-height:1.85;
}
.worry-list li::before{
  content:"";position:absolute;left:0;top:.62em;width:18px;height:2px;background:var(--red);
}
.worry-note{font-size:13px;color:var(--ink-2);margin:0}

.chosa-band{background:var(--white);padding:60px 0}
.chosa-inner{max-width:900px;margin:0 auto;text-align:center}
.chosa-eyebrow{font-size:12px;font-weight:700;letter-spacing:.14em;color:var(--red);margin:0 0 8px}
.chosa-title{font-size:31px;font-weight:700;margin:0 0 16px}
.chosa-lede{font-size:14.5px;line-height:1.95;color:var(--ink-2);text-align:left;margin:0 0 24px}
.chosa-img{width:100%;border:1px solid var(--gray-line);border-radius:var(--r);margin:0 0 24px}
.chosa-go{margin:0}

/* 本文中の図 */
.lead-img{width:100%;border:1px solid var(--gray-line);border-radius:var(--r);margin:0 0 26px}

/* 本文の脇に立つSDキャラ */
.sd-aside{
  display:grid;grid-template-columns:126px 1fr;gap:22px;align-items:center;
  background:var(--beige-pale);border-left:3px solid var(--red);
  border-radius:var(--r);padding:22px 26px;margin:34px 0;
}
.sd-aside img{width:100%}
.sd-aside .sd-say{margin:0;font-size:14px;line-height:1.9}
.sd-aside .sd-say + .sd-say{margin-top:8px;color:var(--ink-2);font-size:13.5px}

/* 台帳カード(ヒーロー内の小さい表) */
.ledger-card{background:var(--white);border:1px solid var(--gray-line);border-radius:var(--r);overflow:hidden}
.ledger-card-head{display:flex;gap:10px;align-items:baseline;padding:12px 16px;background:var(--gray-pale);border-bottom:1px solid var(--gray-line)}
.ledger-no{font-size:12px;font-weight:700;color:var(--red)}
.ledger-name{font-size:12px;color:var(--ink-2)}
.ledger-card .tbl-wrap{border:0;margin:0}
.ledger-foot{padding:12px 16px;margin:0;border-top:1px solid var(--gray-line)}
.ledger-more{font-size:13px;font-weight:700;text-decoration:none}

/* ============================================================
   個別ページの本文
   ============================================================ */
.page-head{border-bottom:2px solid var(--ink);padding-bottom:18px;margin:36px 0 26px}
.page-head h1{font-size:33px;line-height:1.45;margin:0 0 12px}
.page-head .meta{font-size:12px;color:var(--ink-3);margin:0}
article h2{border-left:4px solid var(--red);padding-left:14px}
article ul,article ol{padding-left:1.4em;margin:0 0 1.2em}
article li{margin:0 0 .5em;line-height:1.9}
blockquote{margin:1.4em 0;padding:14px 20px;background:var(--gray-pale);border-left:3px solid var(--gray-deep);font-size:14px;color:var(--ink-2)}
code{background:var(--gray-pale);padding:.12em .4em;border-radius:var(--r);font-size:.92em}

/* ============================================================
   フッタ
   ============================================================ */
.site-footer{background:var(--gray-deep);color:rgba(255,255,255,.9);margin-top:80px;padding:44px 0 26px}
.footer-cols{
  max-width:var(--w);margin:0 auto;padding:0 20px;
  display:grid;grid-template-columns:1.25fr 1fr 1fr 1fr;gap:34px;
}
.footer-brand .brand-name{font-size:16px;font-weight:700;color:#fff;display:block;margin-bottom:8px}
.footer-brand p{font-size:12px;color:rgba(255,255,255,.66);line-height:1.8;margin:0}
.footer-cols h3{font-size:13px;font-weight:700;color:#fff;margin:0 0 12px}
.footer-cols a{display:block;font-size:12.5px;color:rgba(255,255,255,.78);text-decoration:none;margin:0 0 8px;line-height:1.6}
.footer-cols a:hover{color:#fff;text-decoration:underline}
.copyright{
  max-width:var(--w);margin:30px auto 0;padding:18px 20px 0;
  border-top:1px solid rgba(255,255,255,.18);
  font-size:11.5px;color:rgba(255,255,255,.62);line-height:1.8;
}

/* ============================================================
   狭い画面
   ============================================================ */
@media(max-width:1080px){
  .hero-inner{grid-template-columns:1fr 350px}
  .hero h1{font-size:44px}
  .hero-photo{width:350px}
  .feat{gap:36px}
}
@media(max-width:900px){
  .global-nav{display:none}
  .header-meta{display:none}
  /* **狭い画面では赤(主)だけ残す。**両方置くと赤が画面外に押し出され、
     画面に残るのが副の黒だけになっていた(2026-08-23に実測) */
  .header-cta.ghost{display:none}
  .header-inner{gap:12px;justify-content:space-between}
  .point-grid,.reason-circles,.intent-grid,.case-grid,.cards,.know-row{grid-template-columns:1fr}
  .reason-circles{gap:34px}
  .article-grid{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr 1fr}
  .hero-inner{grid-template-columns:1fr;min-height:0}
  .hero-copy{padding:36px 0 8px}
  .hero h1{font-size:34px}
  .hero-stat{font-size:18px}
  .hero-num{font-size:34px}
  .hero-photo{width:260px;justify-self:end;margin-top:-10px}
  .hero-btns{flex-direction:column;align-items:stretch}
  .btn-primary,.btn-line{min-width:0;width:100%}
  .feat{grid-template-columns:1fr;padding:44px 0}
  .feat.flip .feat-copy,.feat.flip .feat-media{order:0}
  .feat-media{min-height:230px}
  .feat-media::before{width:230px;height:230px}
  .feat-media img{max-height:240px}
  .cta-band-inner{grid-template-columns:1fr;gap:16px;text-align:center}
  .worry-inner{grid-template-columns:1fr;gap:20px}
  .worry-img{max-width:200px;margin:0 auto}
  .sd-aside{grid-template-columns:92px 1fr;gap:16px;padding:18px}
  .chapter-title,.reason-title,.chosa-title,.intent-title,.worry-title,.feat-title{font-size:23px}
  h2{font-size:23px}
  .sp-tabbar{
    display:flex;gap:8px;overflow-x:auto;padding:10px 14px;background:var(--white);
    border-bottom:1px solid var(--gray-line);-webkit-overflow-scrolling:touch;
  }
  .sp-tabbar a{
    flex:none;font-size:12.5px;font-weight:700;text-decoration:none;color:var(--ink);
    border:1px solid var(--gray-line);border-radius:var(--r);padding:7px 13px;white-space:nowrap;
  }
  .ad-notice{flex-direction:column;gap:2px}
  /* 表は1列目を固定して横に流す */
  table{min-width:560px}
  .tbl-wrap table td:first-child,.tbl-wrap table th:first-child{
    position:sticky;left:0;background:var(--white);z-index:1;
  }
  .tbl-wrap table th:first-child{background:var(--gray-pale)}
}
@media(max-width:560px){
  .hero h1{font-size:28px}
  .hero-photo{width:200px}
  .circle{width:230px;height:230px}
  .footer-cols{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
}

/* ============================================================
   経験・目的から入る道(2026-08-23)
   ------------------------------------------------------------
   **サイトの主役をここに移した。**それまでは「42社を調べました」が
   先頭に来ていて、「自分はどれを使えばいいか」に答える場所が無かった。
   ============================================================ */
.erabu-band{background:var(--gray-pale);padding:58px 0;border-top:1px solid var(--gray-line);border-bottom:1px solid var(--gray-line)}
.route-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(238px,1fr));gap:16px}
/* **入口は1行に収める。**5枚が4+1で折り返すと、最後の1枚が余り物に見える */
.erabu-band .route-grid{grid-template-columns:repeat(auto-fit,minmax(196px,1fr))}
.route-card{
  background:var(--white);border:1px solid var(--gray-line);border-top:3px solid var(--red);
  border-radius:var(--r);padding:20px 20px 18px;text-decoration:none;color:var(--ink);
  display:flex;flex-direction:column;gap:9px;transition:box-shadow .15s,transform .15s;
}
.route-card:hover{box-shadow:var(--sh);transform:translateY(-2px);color:var(--ink)}
.route-label{font-size:12px;font-weight:700;color:var(--red);letter-spacing:.06em}
.route-ask{font-size:15.5px;font-weight:700;line-height:1.62;flex:1}
.route-go{font-size:12.5px;font-weight:700;color:var(--red)}

/* 枝(その人の事情でもう一段分ける) */
.branch{margin:56px 0 0}
.branch-q{
  font-size:24px;font-weight:700;margin:0 0 8px;padding:0 0 12px 16px;
  border-left:5px solid var(--red);border-bottom:1px solid var(--gray-line);line-height:1.5;
}
.branch-note{font-size:12.5px;color:var(--ink-2);margin:0 0 22px}
.branch-note strong{color:var(--red)}

/* 候補カード。**買う準備ができている面では、公式へのCTAが主** */
.pick-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px;margin:0 0 20px}
.pick-wrap{display:flex;flex-direction:column}
.pick-lead{font-size:13.5px;font-weight:700;color:var(--ink-2);margin:0 0 10px;line-height:1.6}
.pick{
  background:var(--white);border:1px solid var(--gray-line);border-bottom:3px solid var(--red);
  border-radius:var(--r);padding:20px 20px 18px;display:flex;flex-direction:column;height:100%;
}
.pick-kbn{
  align-self:flex-start;font-size:11px;font-weight:700;color:var(--red);
  border:1px solid var(--red);border-radius:var(--r);padding:2px 8px;margin:0 0 10px;
}
.pick-name{font-size:19px;font-weight:700;margin:0 0 12px;line-height:1.45}
.pick-for{
  font-size:13.5px;line-height:1.75;margin:0 0 14px;padding:11px 13px;
  background:var(--beige-pale);border-radius:var(--r);
}
.pick-for span{display:block;font-size:11px;font-weight:700;color:var(--red);margin-bottom:3px;letter-spacing:.06em}
.pick-facts-h{font-size:11.5px;font-weight:700;color:var(--ink-3);margin:0 0 7px;letter-spacing:.04em}
.pick-facts{list-style:none;margin:0 0 14px;padding:0;font-size:12.5px;line-height:1.75}
.pick-facts li{position:relative;padding:0 0 0 19px;margin:0 0 6px;color:var(--ink-2)}
.pick-facts li::before{
  content:"";position:absolute;left:2px;top:.52em;width:8px;height:4px;
  border-left:2px solid var(--red);border-bottom:2px solid var(--red);transform:rotate(-45deg);
}
.pick-chips{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 16px}
.pick-chips span{
  font-size:11px;font-weight:700;color:var(--ink-2);background:var(--gray-pale);
  border:1px solid var(--gray-line);border-radius:var(--r);padding:3px 9px;
}
.pick-cta{margin:auto 0 8px}
.pick-cta .btn-primary{width:100%;min-width:0;padding:15px 18px;font-size:14.5px}
.pick-sub{margin:0;text-align:center}
.pick-sub a{font-size:12px;color:var(--ink-3);text-decoration:underline}
.pick-sub a:hover{color:var(--red)}
.pick-more{margin:10px 0 0;text-align:center;font-size:13px;font-weight:700}

@media(max-width:900px){
  .branch-q{font-size:20px;padding-left:12px}
  .pick-grid,.route-grid{grid-template-columns:1fr}
}

/* ============================================================
   カードの作り直し(2026-08-23) / 簡易診断
   ------------------------------------------------------------
   **表側はユーザー向け、裏側が台帳。**
   許可番号・運営会社は調査記録ページへ。ここには「向く／向かない」を出す。
   ============================================================ */
.pick-tag{font-size:13px;color:var(--ink-2);margin:0 0 12px;line-height:1.7}
.pick-fit{margin:0 0 16px}
.fit{margin:0 0 10px}
.fit-h{
  font-size:11.5px;font-weight:700;margin:0 0 5px;letter-spacing:.06em;
  display:inline-block;padding:2px 9px;border-radius:var(--r);
}
.fit-ok .fit-h{background:var(--red);color:#fff}
.fit-ng .fit-h{background:var(--gray-deep);color:#fff}
.fit ul{list-style:none;margin:0;padding:0;font-size:12.5px;line-height:1.75}
.fit li{position:relative;padding:0 0 0 17px;margin:0 0 5px;color:var(--ink-2)}
.fit-ok li::before{
  content:"";position:absolute;left:1px;top:.5em;width:8px;height:4px;
  border-left:2px solid var(--red);border-bottom:2px solid var(--red);transform:rotate(-45deg);
}
.fit-ng li::before{
  content:"";position:absolute;left:2px;top:.72em;width:9px;height:2px;background:var(--ink-3);
}
.fit-none{font-size:12px;color:var(--ink-3);margin:0;line-height:1.7}
.pick-sub{margin:0;text-align:center;font-size:11.5px;color:var(--ink-3)}

/* 簡易診断 */
.shindan{background:var(--beige-pale);padding:60px 0;border-top:1px solid var(--gray-line)}
.q-wrap{display:flex;flex-direction:column;gap:20px;max-width:820px;margin:0 auto}
.q{background:var(--white);border:1px solid var(--gray-line);border-radius:var(--r);padding:20px 22px}
.q-h{font-size:16px;font-weight:700;margin:0 0 13px;display:flex;align-items:center;gap:11px}
.q-h span{
  flex:none;background:var(--red);color:#fff;font-size:12px;font-weight:700;
  border-radius:var(--r);padding:3px 9px;letter-spacing:.04em;
}
.q-opts{display:flex;flex-wrap:wrap;gap:9px}
.q-opts button{
  font-family:inherit;font-size:13.5px;font-weight:700;color:var(--ink);
  background:var(--white);border:1px solid var(--gray-line);border-radius:var(--r);
  padding:11px 16px;cursor:pointer;transition:background .12s,border-color .12s,color .12s;
}
.q-opts button:hover{border-color:var(--red);color:var(--red)}
.q-opts button.on{background:var(--red);border-color:var(--red);color:#fff}
.q-result{margin:30px 0 0}
.q-head{text-align:center;font-size:15px;font-weight:700;margin:0 0 6px}
.q-head strong{color:var(--red)}
.q-drop{text-align:center;font-size:12.5px;color:var(--ink-2);margin:0 0 18px}
.q-empty{text-align:center;font-size:14px;margin:0 0 18px}
.q-note{text-align:center;font-size:11.5px;color:var(--ink-2);margin:22px 0 0}
@media(max-width:900px){
  .q-opts{flex-direction:column}
  .q-opts button{width:100%}
}
.th-note{display:block;font-size:9.5px;font-weight:500;color:var(--ink-3);letter-spacing:0}
.pick-wrap .pick{margin-bottom:14px}

/* 入口ページの「何を変えたい？」 */
.chooser{background:var(--gray-pale);border:1px solid var(--gray-line);border-radius:var(--r);padding:20px 22px;margin:30px 0 8px}
.chooser-h{font-size:17px;font-weight:700;margin:0 0 13px}
.chooser-opts{display:flex;flex-wrap:wrap;gap:9px}
.chooser-opts a{
  display:inline-flex;align-items:center;gap:8px;background:var(--white);
  border:1px solid var(--gray-line);border-radius:var(--r);padding:10px 15px;
  font-size:13.5px;font-weight:700;color:var(--ink);text-decoration:none;
}
.chooser-opts a:hover{border-color:var(--red);color:var(--red)}
.chooser-opts a span{font-size:11.5px;color:var(--red);font-weight:700}
.branch{scroll-margin-top:76px}

/* ============================================================
   2026-08-24: 診断の結果まわり / 種別カード / 根拠の帯
   ------------------------------------------------------------
   **診断のあとに説明モードへ戻らない。**結果→比較→CTAで完結させる。
   ============================================================ */
.q-best{
  text-align:center;font-size:17px;font-weight:700;margin:0 0 20px;
  padding:12px 16px;background:var(--white);border:1px solid var(--gray-line);
  border-radius:var(--r);
}
.q-best b{color:var(--red);font-size:19px}
.q-head{margin-bottom:6px}
table.q-cmp{min-width:640px;background:var(--white)}
table.q-cmp th:first-child{text-align:left;width:200px;background:var(--gray-pale)}
table.q-cmp td{text-align:center;font-size:13px}
table.q-cmp b.yes{color:var(--red);font-weight:700}
table.q-cmp span.no{color:var(--ink-3);font-size:12px}
table.q-cmp tr.mark td b{font-size:16px;color:var(--red)}
.pick-score{
  margin:0 0 10px;font-size:11.5px;font-weight:700;color:var(--ink-2);
  background:var(--beige-pale);border-radius:var(--r);padding:5px 10px;text-align:center;
}
.pick-score b{color:var(--red);font-size:14px}

/* 3種別を3カードで短く */
.kbn-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:0 0 8px}
.kbn-card{
  background:var(--white);border:1px solid var(--gray-line);border-top:3px solid var(--red);
  border-radius:var(--r);padding:20px;text-decoration:none;color:var(--ink);
}
.kbn-card:hover{box-shadow:var(--sh);color:var(--ink)}
.kbn-name{font-size:17px;font-weight:700;margin:0 0 12px;display:flex;justify-content:space-between;align-items:baseline}
.kbn-name span{font-size:12px;color:var(--red);font-weight:700}
.kbn-card ul{list-style:none;margin:0;padding:0;font-size:13px;line-height:1.8;color:var(--ink-2)}
.kbn-card li{position:relative;padding-left:14px}
.kbn-card li::before{content:"";position:absolute;left:0;top:.8em;width:5px;height:5px;border-radius:50%;background:var(--gray-line)}

/* 比べ方の根拠。**短く1枠で終える** */
.konkyo{background:var(--beige-pale);border-radius:var(--r);margin:60px 0 0;padding:26px 30px}
.konkyo-inner{display:grid;grid-template-columns:120px 1fr;gap:26px;align-items:center}
.konkyo-inner img{width:100%;height:auto}
.konkyo-h{font-size:12px;font-weight:700;color:var(--red);letter-spacing:.1em;margin:0 0 6px}
.konkyo-t{font-size:15px;line-height:1.85;margin:0 0 8px}
.konkyo-n{font-size:12.5px;color:var(--ink-2);margin:0 0 14px;line-height:1.8}
.konkyo-go{margin:0}

@media(max-width:900px){
  .kbn-grid{grid-template-columns:1fr}
  .konkyo{padding:22px}
  .konkyo-inner{grid-template-columns:84px 1fr;gap:16px}
  .q-best{font-size:15px}
}
.pick-down{
  margin:auto 0 8px;font-size:12.5px;line-height:1.75;color:var(--ink-2);
  background:var(--gray-pale);border:1px solid var(--gray-line);
  border-radius:var(--r);padding:11px 13px;
}
