/* ==========================================================
   体入サンキュー MEN'S — pattern-d (mens-b-top) 忠実再現版
   ネイビー × クリーム × ゴールド × ティール / 明朝体
   v2: 全体トンマナ「詰め」調整(余白・ボタン高・文字間を圧縮)
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* 数字は Montserrat(ゴシック)で統一する。
   HTML 側で &text=0123456789 のサブセットとして読み込んでいるため、
   このフォントは数字しか持たない = 英字・日本語は次の明朝へ自然に落ちる。 */

:root {
  --navy-950: #0a1120;
  --navy-900: #0d1626;
  --navy-800: #101c30;
  --ink: #1b2a44;            /* クリーム上の濃紺文字 */
  --cream-100: #faf6eb;      /* セクション背景 */
  --cream-50:  #fdfbf4;      /* カード背景 */
  --cream-200: #f2ecdb;
  --gold: #c9a24b;
  --gold-bright: #e0be6d;
  --gold-dim: #a3823c;
  --teal: #17808d;
  --teal-deep: #0f6a76;
  --orange: #e8542a;
  --orange-deep: #d4451d;
  --line-green: #06C755;
  --rose: #d8354a;

  --serif: "Montserrat", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  /* セクション番号・STEP・給与額など、数字を主役に見せる箇所 */
  --num-font: "Montserrat", "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--serif);
  background: #060b16;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* スマホLPを中央寄せ(PC閲覧時) */
.lp {
  max-width: 480px;
  margin: 0 auto;
  background: var(--navy-900);
  box-shadow: 0 0 60px rgba(0,0,0,.6);
  overflow: hidden;
}

.mock-note {
  background: #fff8e1; color: #8d6e00;
  font-size: 10px; text-align: center; padding: 3px 8px;
  font-family: sans-serif;
}

/* ---------- 共通アイコン ---------- */
.ic { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.12em; }
svg.silhouette { fill: currentColor; }

/* ---------- 共通パーツ ---------- */
.inner { padding-left: 16px; padding-right: 16px; }

/* セクション番号(金) */
.sec-num {
  font-family: var(--num-font);
  font-size: 34px; font-weight: 500; line-height: 1;
  color: var(--gold);
  text-align: center;
  letter-spacing: .03em;
}
.sec-num--rule { display: flex; align-items: center; justify-content: center; gap: 12px; }
.sec-num--rule::before, .sec-num--rule::after {
  content: ""; height: 1px; width: 48px; background: var(--gold);
}
.sec-num--underline { position: relative; padding-bottom: 7px; }
.sec-num--underline::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 62px; height: 2px; background: var(--gold);
}
/* 下線+ダイヤ */
.num-diamond { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 4px; }
.num-diamond::before, .num-diamond::after { content: ""; height: 1px; width: 52px; background: var(--gold); }
.num-diamond i {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); display: block;
}

.sec-title {
  font-size: 27px; font-weight: 800; line-height: 1.3;
  text-align: center; letter-spacing: .02em;
  margin-top: 6px;
}
.sec-title .t-teal { color: var(--teal); }
.sec-title .t-gold { color: var(--gold); }
.sec-lead {
  text-align: center; font-size: 13.5px; letter-spacing: .04em;
  margin-top: 4px;
}
.on-dark { color: #f4efe2; }
.on-dark .sec-lead { color: #d8d2c2; }

/* 金下線スウッシュ(簡易) */
.gold-swash { position: relative; display: inline-block; padding-bottom: 6px; }
.gold-swash::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: 0; height: 8px;
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 100% 60% / 0 0 14px 6px;
}

/* ---------- セクション間カーブ ---------- */
.curve { position: relative; height: 42px; overflow: hidden; }
.curve i {
  position: absolute; left: -8%; right: -8%; top: 0; height: 100px;
  border-radius: 50% 50% 0 0 / 42px 42px 0 0;
  border-top: 2px solid var(--gold);
}
.curve--cream { background: var(--navy-900); }
.curve--cream i { background: var(--cream-100); }
.curve--navy { background: var(--cream-100); }
.curve--navy i { background: var(--navy-900); }

/* ---------- CTAボタン ---------- */
.cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  font-weight: 700; letter-spacing: .05em;
  padding: 12px 30px 12px 16px; font-size: 16px;
  position: relative;
  font-family: var(--serif);
}
.cta .chev { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-weight: 700; }
.cta--fill {
  background: linear-gradient(180deg, #ef6636 0%, var(--orange) 55%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232, 84, 42, .35);
}
.cta--line {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.cta--line-gold { background: transparent; color: var(--orange); border: 1.5px solid var(--gold); }
/* LINE相談(店舗に紐づかない総合相談)。応募3連は店舗ページ専用なので、
   それ以外のページはこの単独ボタンで受ける。 */
.cta--line-green {
  background: var(--line-green); color: #fff; border: 2px solid var(--line-green);
  box-shadow: 0 4px 12px rgba(6, 199, 85, .32);
  font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,.22);
}
.cta--line-green .line-badge { background: #fff; color: var(--line-green); }
.cta--white { background: #fff; color: #16221c; border: 2px solid var(--line-green); }
.cta small { font-size: 11px; letter-spacing: .08em; font-weight: 600; display: block; line-height: 1.3; }
.cta .cta-stack { text-align: center; line-height: 1.3; }
.cta .cta-stack b { font-size: 17px; letter-spacing: .08em; }

/* ---------- 応募CTA 3連(LINEで応募 / フォームで応募 / 電話で応募) ----------
   LINE を主導線として緑ベタ、残り2つは枠線で同格に並べる。 */
.cta-trio {
  margin-top: 12px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
}
.ct-item {
  background: #fff;
  border: 2px solid #e3dbc4;
  border-radius: 13px;
  padding: 11px 4px 9px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(27,42,68,.08);
  font-family: var(--serif);
}
.ct-item .ct-ic {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ct-item .ct-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .01em;
  line-height: 1.25; text-align: center;
}
.ct-item .ct-label small { display: block; font-size: 9.5px; font-weight: 600; opacity: .85; }

/* LINE = 緑ベタ(LINEブランドカラー #06C755)
   ※ 白文字 × #06C755 のコントラストは約2.3:1で WCAG AA(4.5:1)に届かない。
      LINE の公式ボタンと同じ配色を優先しているため、緑を濃くする/文字を濃色にする
      といった調整を入れる場合はブランド表記の指針とあわせて判断すること。 */
.ct-item--line {
  background: var(--line-green); border-color: var(--line-green); color: #fff;
  box-shadow: 0 4px 12px rgba(6, 199, 85, .32);
}
.ct-item--line .ct-label { font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.ct-item--line .ct-ic { background: #fff; color: var(--line-green); }
.ct-item--line .ct-ic .line-badge {
  width: 36px; height: 36px; font-size: 10px;
  background: #fff; color: var(--line-green);
}
/* フォーム = オレンジ枠 */
.ct-item--form { border-color: var(--orange); }
.ct-item--form .ct-ic { background: var(--orange); color: #fff; }
/* 電話 = ティール枠 */
.ct-item--tel { border-color: var(--teal); }
.ct-item--tel .ct-ic { background: var(--teal); color: #fff; }

/* ダーク面に置く場合の下地 */
.on-dark .ct-item--form,
.on-dark .ct-item--tel { background: var(--cream-50); }

/* LINEロゴ風バッジ */
.line-badge {
  background: var(--line-green); color: #fff;
  font-family: sans-serif; font-weight: 800; font-size: 9px;
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}

/* ---------- 3特徴帯 ---------- */
.feat3 { display: flex; }
.feat3 > div {
  flex: 1; text-align: center; padding: 10px 4px;
  font-size: 12px; letter-spacing: .03em; font-weight: 600;
  position: relative;
}
.feat3 > div + div::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: currentColor; opacity: .25;
}
.feat3 .f-ic {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 4px;
}

/* =========================================================
   SEC 01 ファーストビュー
   ========================================================= */
.hero { background: #0a0e1c; position: relative; }

/* ヒーロー背景写真(01-first-view-hero-background.png)
   胸あたりまで見せるため縮小して右上アンカー(画像の地色と.heroの地色は同系で馴染む) */
.hero-photo {
  position: absolute; top: 0; left: 0; right: 0;
  aspect-ratio: 904 / 1791;
  background: url("../img/hero-bg.png") top right / 78% auto no-repeat;
  pointer-events: none;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0a0e1c 20%, rgba(10,14,28,0) 36%),
    linear-gradient(180deg,
      rgba(10,14,28,.30) 0%,
      rgba(10,14,28,0) 12%,
      rgba(10,14,28,0) 52%,
      #0a0e1c 72%);
}

.hero-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 0;
  position: relative; z-index: 3;
}
.brand { display: flex; align-items: center; gap: 7px; color: #f4efe2; }
.brand .rose { width: 28px; height: 28px; color: var(--rose); }
.brand .b-name { font-size: 15.5px; font-weight: 700; letter-spacing: .02em; }
.brand .b-name small { font-size: 11px; letter-spacing: .05em; }
.area-badge {
  border: 1.5px solid var(--gold); color: var(--gold-bright);
  border-radius: 999px; padding: 4px 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-indent: .22em;
  white-space: nowrap;
}

.hero-body { position: relative; padding: 24px 0 0; }

.hero-figure {
  position: absolute; right: -12px; top: 12px; width: 62%; height: 88%;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
}
.hero-figure .silhouette { width: 100%; height: 92%; color: #2c4160; opacity: .9; }
.ph-caption {
  position: absolute; right: 10px; top: 6px;
  font-size: 9px; color: #6d7d93; letter-spacing: .08em;
  border: 1px dashed #3a4d67; border-radius: 4px; padding: 2px 6px;
  font-family: sans-serif;
}

.hero-copy { position: relative; z-index: 2; padding-left: 18px; }
.hero-copy .l1 {
  font-size: 38px; font-weight: 800; line-height: 1.2;
  color: #f6f1e4; letter-spacing: .01em;
}
.hero-copy .l2 {
  font-size: 50px; font-weight: 800; line-height: 1.12;
  color: var(--gold-bright); letter-spacing: .01em;
  position: relative; display: inline-block;
  text-shadow: 0 2px 24px rgba(224, 190, 109, .25);
}
.hero-copy .l2 .swash {
  position: absolute; left: -6px; right: -28px; bottom: -10px; height: 16px;
  border-bottom: 2.5px solid var(--gold);
  border-radius: 0 0 100% 30% / 0 0 20px 5px;
  transform: rotate(-2deg);
}
.hero-sub { margin-top: 26px; }
.hero-sub .s1 { font-size: 23px; font-weight: 700; color: #f6f1e4; line-height: 1.4; }
.hero-sub .s2 { font-size: 26px; font-weight: 800; color: #f6f1e4; line-height: 1.35; }
.hero-sub .s3 { font-size: 13.5px; color: #cfd6e2; margin-top: 6px; letter-spacing: .03em; }
.hero-sub .s3 .t-teal { color: #3fb3bf; font-weight: 700; }

/* ヒーロー下部 検索ナビカード(クリーム面) */
.hero-panel-wrap {
  margin-top: 74px; /* 写真の胸元まで見せるための余白(右側は人物が埋める) */
  background: var(--cream-100);
  border-radius: 38px 38px 0 0;
  position: relative; z-index: 2;
  padding: 16px 14px 14px;
  box-shadow: 0 -3px 0 var(--gold), 0 -14px 40px rgba(0,0,0,.45);
}
.search-nav {
  background: var(--cream-50);
  border: 1px solid #e7dcbf;
  border-radius: 16px;
  padding: 2px 14px;
  box-shadow: 0 6px 18px rgba(27, 42, 68, .08);
}
.search-nav .sn-item {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 2px;
  border-bottom: 1px solid #e9dfc6;
  font-size: 19px; font-weight: 700; letter-spacing: .03em;
  color: var(--ink);
}
.search-nav .sn-item:last-child { border-bottom: none; }
.search-nav .sn-item small { font-size: 14px; font-weight: 600; }
.search-nav .sn-label { flex: 1; min-width: 0; }
.sn-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: #f1e9d2;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.sn-chev { margin-left: auto; color: var(--teal); font-size: 16px; font-weight: 700; }

.hero-panel-wrap .cta { margin-top: 12px; }

.hero-feat { background: var(--navy-950); color: #f0ead9; }
.hero-feat .f-ic { color: var(--gold); font-size: 20px; }
.hero-feat .line-badge { width: 24px; height: 24px; font-size: 8px; }

/* =========================================================
   旧SEC02 職種から探す — トップからは削除済み(mens-b-guide.html で使用中)
   ========================================================= */
.sec { position: relative; }
.sec--cream { background: var(--cream-100); padding: 28px 0 26px; }
.sec--navy { background: var(--navy-900); padding: 30px 0 28px; }

.deco-lines { position: absolute; left: 0; top: 0; width: 120px; height: 120px; opacity: .5; pointer-events: none; }

.cat-list { margin-top: 14px; display: grid; gap: 9px; }
.cat-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream-50);
  border: 1px solid #e2d5b4;
  border-radius: 13px;
  padding: 13px 13px;
  box-shadow: 0 3px 10px rgba(27,42,68,.06);
  font-size: 18px; font-weight: 800; letter-spacing: .02em;
}
.cat-item small { font-size: 13px; font-weight: 700; }
.cat-item .c-label { flex: 1; min-width: 0; }
.cat-item .c-ic { color: var(--teal); font-size: 27px; width: 36px; text-align: center; flex-shrink: 0; }
.cat-item .c-chev { margin-left: auto; color: var(--orange); font-size: 17px; font-weight: 700; }

.sec-cta { margin-top: 14px; }

/* =========================================================
   SEC 02 おすすめ店舗 (ネイビー)
   ========================================================= */
.note-pill {
  border: 1px solid var(--gold); border-radius: 12px;
  text-align: center; padding: 7px 14px;
  margin: 12px auto 0; max-width: 330px;
  color: #f0ead9;
}
.note-pill b { color: var(--gold-bright); font-size: 14px; letter-spacing: .08em; display: block; }
.note-pill span { font-size: 11.5px; letter-spacing: .03em; opacity: .85; }

.job-list { margin-top: 14px; display: grid; gap: 10px; }
.job-item {
  background: var(--cream-50);
  border-radius: 15px;
  padding: 11px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.32);
  color: var(--ink);
}
.job-item .j-photo {
  width: 88px; height: 100px; flex-shrink: 0;
  background: #e3e0d8; border-radius: 8px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.job-item .j-photo .silhouette { width: 86%; height: 82%; color: #b9b6ad; }
.job-item .j-main { flex: 1; min-width: 0; }
.job-item .j-title { display: block; font-size: 17.5px; font-weight: 800; letter-spacing: .01em; line-height: 1.3; }
.job-item .j-title small { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.j-emp {
  display: inline-block; background: var(--teal); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; padding: 2px 12px; margin-top: 4px;
}
.j-emp--part { background: var(--teal); }
.j-sep { display: block; border-top: 2px dotted #cfc6ad; margin: 7px 0 5px; }
.j-meta { display: block; font-size: 12.5px; color: #4c5568; letter-spacing: .01em; }
.j-chev { color: var(--orange); font-size: 18px; font-weight: 700; flex-shrink: 0; }

/* =========================================================
   SEC 03 条件から探す (クリーム)
   ========================================================= */
.cond-list { margin-top: 14px; display: grid; gap: 10px; }
.cond-group {
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: transparent;
  padding: 13px 13px;
}
.cond-head { display: flex; align-items: center; gap: 11px; }
.cond-head .ch-ic {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #f6efdd;
  color: var(--teal); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cond-head .ch-title { font-size: 19px; font-weight: 800; letter-spacing: .06em; }
.cond-head .ch-rule { flex: 1; display: flex; align-items: center; gap: 5px; }
.cond-head .ch-rule::before { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: .7; }
.cond-head .ch-rule i { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }
.pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--teal);
  color: var(--teal-deep);
  background: var(--cream-50);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
}
.pill .ic { color: var(--teal); }

/* =========================================================
   SEC 04 キャリア (ネイビー)
   ========================================================= */
.num-ribbon {
  position: absolute; left: 0; top: 0;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-dim));
  color: var(--navy-900);
  font-family: var(--num-font);
  font-size: 28px; font-weight: 600;
  padding: 8px 18px 13px 15px;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
  line-height: 1;
}
.career-photo {
  height: 110px; border-radius: 12px;
  background:
    radial-gradient(80% 120% at 70% 20%, #2a3b58 0%, #16233a 70%);
  border: 1px solid #2c3d59;
  margin-top: 12px;
}
.badge-outline {
  display: inline-block; border: 1.5px solid var(--gold);
  color: var(--gold-bright); border-radius: 7px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  padding: 5px 14px; margin-top: 10px;
}

.step-flow { margin-top: 14px; }
.step-row { display: flex; align-items: center; gap: 12px; }
.step-coin {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(120% 120% at 30% 25%, #ecd28c 0%, var(--gold) 45%, #8a6a25 100%);
  color: #3a2c0d;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1.05;
  box-shadow: 0 3px 10px rgba(0,0,0,.4), inset 0 0 0 2px rgba(255,255,255,.18);
}
.step-coin small { font-size: 9.5px; letter-spacing: .16em; font-weight: 700; }
.step-coin b { font-family: var(--num-font); font-size: 21px; font-weight: 600; }
.step-card {
  flex: 1;
  background: var(--cream-50);
  border-radius: 12px;
  padding: 13px 13px;
  display: flex; align-items: center; gap: 11px;
  font-size: 18px; font-weight: 800; letter-spacing: .01em;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(0,0,0,.32);
}
.step-card .ic { color: var(--teal); font-size: 24px; flex-shrink: 0; }
.step-arrow {
  width: 60px; display: flex; justify-content: center;
  color: var(--gold); font-size: 17px; line-height: 1;
  padding: 3px 0;
}

.career-note {
  margin-top: 12px;
  background: #0c1424;
  border: 1px solid #2c3d59;
  border-radius: 12px;
  padding: 10px;
  display: flex; gap: 12px; align-items: center;
}
.career-note .cn-photo {
  width: 104px; height: 74px; flex-shrink: 0; border-radius: 7px;
  background:
    radial-gradient(90% 120% at 60% 30%, #2a3b58 0%, #131f34 75%);
}
.career-note .cn-text {
  flex: 1; text-align: center;
  color: var(--gold-bright);
  font-size: 15px; font-weight: 700; line-height: 1.55; letter-spacing: .04em;
}
.cn-orn { display: block; color: var(--gold); text-align: center; font-size: 9px; letter-spacing: .25em; opacity: .9; }

/* =========================================================
   SEC 05 安心サポート (クリーム)
   ========================================================= */
.sec-kicker {
  text-align: center; margin-top: 5px;
}
.sec-kicker span {
  display: inline-block;
  font-size: 16px; font-weight: 700; letter-spacing: .12em;
  border-bottom: 1.5px solid var(--gold);
  padding: 0 6px 5px;
}
.support-photo {
  margin-top: 14px; height: 150px; border-radius: 13px;
  background:
    linear-gradient(160deg, #ece8df 0%, #dcd8cd 100%);
  border: 1px solid #e0d9c6;
}
.support-list { margin-top: 14px; display: grid; gap: 9px; }
.support-item {
  background: #fff;
  border: 1px solid #eee4cd;
  border-radius: 14px;
  padding: 12px 13px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 14px rgba(27,42,68,.07);
}
.support-item .s-ic {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--gold);
  color: var(--teal); font-size: 21px;
  display: flex; align-items: center; justify-content: center;
  background: #fdfaf1;
}
.support-item .s-title { font-size: 17.5px; font-weight: 800; letter-spacing: .02em; }
.support-item .s-sub { font-size: 12px; color: #5c6474; margin-top: 1px; letter-spacing: .02em; }
.support-item .s-chev { margin-left: auto; color: var(--gold-dim); font-size: 16px; font-weight: 700; }

.assure-band {
  margin-top: 14px;
  background: var(--cream-200);
  border-radius: 12px;
  padding: 3px 2px;
  color: var(--ink);
}
.assure-band .f-ic { color: var(--teal); font-size: 23px; }
.assure-band > .feat3 > div { font-size: 11.5px; }

/* =========================================================
   SEC 06 はじめてガイド (クリーム)
   ========================================================= */
.sec--guide { background: linear-gradient(180deg, #f6efe0 0%, var(--cream-100) 30%); }
.guide-head { position: relative; padding-top: 2px; }
.guide-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, #ecd28c 0%, var(--gold) 50%, #8a6a25 100%);
  color: #3a2c0d;
  font-family: var(--num-font); font-size: 21px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.guide-kicker {
  font-size: 14.5px; font-weight: 700; letter-spacing: .14em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 6px;
}
/* 「応募前に知っておきたいこと」を1行で収める。
   狭い端末でも折り返さないよう、幅に応じて字送りを詰める。 */
.guide-title {
  font-size: clamp(21px, 6.4vw, 26px);
  font-weight: 800; line-height: 1.35; letter-spacing: 0;
  margin-top: 12px;
  white-space: nowrap;
}
.guide-title small { font-size: 22px; }
.guide-photo {
  height: 106px; border-radius: 12px; margin-top: 10px;
  background:
    linear-gradient(150deg, #efe9dc, #ded7c7);
  border: 1px solid #e0d9c6;
}

.guide-card {
  margin-top: 14px;
  background: #fff;
  border-radius: 15px;
  padding: 2px 15px;
  box-shadow: 0 6px 18px rgba(27,42,68,.08);
}
.guide-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e6d9b8;
}
.guide-item:last-child { border-bottom: none; }
.guide-item .g-ic {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #f3edda;
  color: var(--teal); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.guide-item .g-title { font-size: 18px; font-weight: 800; letter-spacing: .05em; }
.guide-item .g-sub { font-size: 12px; color: #5c6474; letter-spacing: .02em; margin-top: 1px; }
.guide-item .g-chev { margin-left: auto; color: var(--teal); font-size: 16px; font-weight: 700; }

.age-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 16px;
  font-size: 16px; font-weight: 800; letter-spacing: .04em;
}
.age-shield {
  width: 36px; height: 40px; color: var(--gold);
  position: relative; flex-shrink: 0;
}
.age-shield b {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--num-font); font-size: 14px; color: var(--gold-dim);
  padding-bottom: 4px;
}

/* =========================================================
   SEC 07 最終CTA + フッター (ネイビー)
   ========================================================= */
.final-copy .l1 { font-size: 36px; font-weight: 800; line-height: 1.28; color: #f6f1e4; }
.final-copy .l2 { font-size: 40px; font-weight: 800; line-height: 1.15; color: var(--gold-bright); }
.final-sub {
  color: #cfd6e2; font-size: 14px; line-height: 1.7; letter-spacing: .03em;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 8px;
}
/* 最終CTA背後の夜景(人物シルエットから差し替え) */
.final-figure {
  position: relative; height: 128px; margin-top: 14px; pointer-events: none;
  border-radius: 14px; overflow: hidden;
  border: 1px solid #22334c;
}
.final-figure .ph-night {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* 下端だけ暗くしてカードへ自然につなぐ(夜景そのものは見せる) */
.final-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,22,38,0) 45%, rgba(13,22,38,.85) 100%);
}

.final-card {
  position: relative; z-index: 2;
  margin-top: 16px;
  background: var(--cream-50);
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  padding: 16px 13px 6px;
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
  color: var(--ink);
}
.final-card .cta + .cta { margin-top: 9px; }
.final-card hr { border: none; border-top: 1px solid var(--gold); opacity: .55; margin: 13px 6px 0; }
.final-card .feat3 > div { font-size: 12px; font-weight: 700; padding: 11px 2px 8px; }
.final-card .f-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
}

.footer {
  background: var(--navy-950);
  color: #d9d2bf;
  margin-top: 24px;
  padding: 20px 16px 18px;
}
.footer .brand { color: #f4efe2; }
.footer .brand .b-name { font-size: 16.5px; }
.footer .f-company { font-size: 13px; color: #aab2c2; margin-top: 10px; letter-spacing: .03em; }
.footer .f-links {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
  font-size: 11.5px; letter-spacing: 0;
}
.footer .f-links a {
  text-align: center; position: relative; padding: 2px 8px;
  white-space: nowrap;
}
.footer .f-links a + a::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: #3a4a63;
}
.footer .f-rule { border: none; border-top: 1px solid var(--gold-dim); opacity: .6; margin: 13px 0 10px; }
.footer .f-copy { text-align: center; font-size: 12px; letter-spacing: .06em; color: #aab2c2; }

/* =========================================================
   下層ページ共通コンポーネント (pattern-d)
   ========================================================= */

/* スリムヘッダー(ダーク帯) */
.site-bar {
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
}
.site-bar .area-badge { font-size: 11px; padding: 3px 10px; }
.site-bar .brand .b-name { font-size: 14.5px; }

/* ページタイトル帯(ネイビー / 下層ページ共通)
   背景に中洲の夜景を敷き、文字が読めるよう暗幕を重ねる。 */
.page-head {
  background: var(--navy-900);
  color: #f4efe2;
  padding: 13px 16px 20px;
  position: relative; overflow: hidden;
  z-index: 0;
}
.page-head .ph-night {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,17,32,.72) 0%, rgba(10,17,32,.86) 100%);
}
.page-head .p-bc { font-size: 11px; color: #8b96ad; letter-spacing: .02em; margin-bottom: 8px; }
.page-head .p-bc a { text-decoration: underline; text-underline-offset: 3px; }
.page-head .p-kicker { font-size: 11px; letter-spacing: .22em; color: var(--gold-bright); margin-bottom: 2px; }
.page-head .p-title { font-size: 23px; font-weight: 800; letter-spacing: .03em; line-height: 1.3; }
.page-head .p-title .t-gold { color: var(--gold-bright); }
.page-head .p-sub { font-size: 12.5px; color: #aab2c2; margin-top: 4px; letter-spacing: .02em; }
.page-head .p-rule { width: 52px; height: 2px; background: var(--gold); margin-top: 9px; }

/* 下層本文(クリーム面) */
.page-body { background: var(--cream-100); padding: 2px 0 26px; }
.page-sec { padding: 16px 16px 0; }
.page-sec-title {
  font-size: 18px; font-weight: 800; letter-spacing: .04em;
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 10px;
}
.page-sec-title::before {
  content: ""; width: 5px; height: 19px; border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
}
.page-sec-title small { font-size: 11.5px; color: #8a7f68; font-weight: 600; letter-spacing: .03em; }

/* 求人一覧: 件数・並び順 */
.list-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.list-meta .lm-count { font-size: 13.5px; }
.list-meta .lm-count b { font-family: var(--num-font); font-size: 22px; color: var(--orange); padding: 0 2px; }
.list-meta select {
  font: inherit; font-size: 12px; padding: 6px 8px;
  border: 1px solid var(--gold); border-radius: 7px;
  background: var(--cream-50); color: var(--ink);
}

/* 求人カード(一覧用・job-item拡張) */
.job-item .j-shop { display: block; font-size: 12.5px; color: #4c5568; letter-spacing: .01em; }
.job-item .j-wage { display: block; font-size: 16px; font-weight: 800; color: var(--orange); margin-top: 1px; }
.job-item .j-wage small { font-size: 11px; font-weight: 700; color: #8a7f68; margin-right: 3px; }
.tag-mini {
  display: inline-block; border: 1px solid var(--teal);
  color: var(--teal-deep); border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .02em;
  padding: 1px 8px; margin: 4px 3px 0 0;
  background: var(--cream-50);
}
.page-body .job-item { box-shadow: 0 4px 14px rgba(27,42,68,.08); border: 1px solid #eee4cd; }

/* ページャ */
.pager-d { display: flex; justify-content: center; align-items: center; gap: 9px; padding: 16px 0 2px; }
.pager-d a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--num-font); font-size: 15px; color: var(--ink);
  background: var(--cream-50);
}
.pager-d a.is-cur { background: linear-gradient(160deg, var(--gold-bright), var(--gold-dim)); color: #2a2008; border-color: transparent; font-weight: 600; }

/* 詳細: 写真 */
.photo-main {
  aspect-ratio: 16 / 9; border-radius: 12px;
  background: linear-gradient(150deg, #e9e3d3, #d8d1bf);
  border: 1px solid #e0d9c6;
  display: flex; align-items: center; justify-content: center;
  color: #9a968b; font-size: 11px; letter-spacing: .1em; font-family: sans-serif;
}
.photo-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 6px; }
.photo-thumbs .ph-t {
  aspect-ratio: 4 / 3; border-radius: 8px;
  background: linear-gradient(150deg, #ece6d7, #dcd5c3);
  border: 1px solid #e0d9c6;
  display: flex; align-items: center; justify-content: center;
  color: #a29e93; font-size: 10px; font-family: sans-serif;
}

/* 詳細: タイトルブロック */
.detail-title { padding-top: 12px; }
.detail-title .dt-shop { font-size: 12.5px; color: #6d6250; letter-spacing: .04em; }
.detail-title h1 { font-size: 23px; font-weight: 800; letter-spacing: .02em; line-height: 1.3; margin-top: 2px; }
.detail-title h1 small { font-size: 16px; }
/* ---------- 仮画像(モック用・本番では差し替え) ----------
   CSSの背景ではなく <img> で入れている。背景方式だとCSSがキャッシュされた
   ブラウザでは画像URLごとルールが存在せず、何も表示されないため。 */
.ph-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.j-photo { position: relative; overflow: hidden; }
.j-photo .ph-img { position: absolute; inset: 0; }

/* 写真枠(角丸からはみ出さないようにする) */
.ph-wrap { position: relative; overflow: hidden; }

/* 写真の代わりにロゴを置く枠。
   写真は cover で塗るが、ロゴは全体を見せたいので contain + 余白 + 白地。 */
.j-photo.is-logo { background: #fff; border: 1px solid #eee4cd; }
.j-photo.is-logo .ph-img {
  object-fit: contain;
  padding: 9px;
  background: #fff;
}

/* 求人詳細のサムネイル: 写真の上にラベルを載せる */
.ph-t.has-img { position: relative; overflow: hidden; color: #fff; padding: 0; }
.ph-t.has-img .ph-img { position: absolute; inset: 0; }
.ph-t.has-img .pt-label {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center; height: 100%;
  padding-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
}
.ph-t.has-img::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%; z-index: 1;
  background: linear-gradient(180deg, rgba(10,17,32,0) 0%, rgba(10,17,32,.78) 100%);
}

/* ---------- 求人カードのバッジ(PR / 急募 / 新着) ---------- */
.j-badge {
  display: inline-block; vertical-align: 3px;
  border-radius: 5px; padding: 1px 7px; margin-left: 5px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em;
  font-family: var(--serif);
}
.j-badge--pr { border: 1px solid var(--gold); color: var(--gold-dim); }
.j-badge--urgent { background: var(--orange); color: #fff; }
.j-badge--new { background: var(--teal); color: #fff; }

/* ---------- 検索結果0件 ---------- */
.empty-d {
  margin-top: 4px; padding: 30px 20px 26px;
  background: #fff; border: 1px solid #eee4cd; border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(27,42,68,.06);
}
.empty-d .em-ic {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 12px;
  border: 1.5px solid var(--gold); background: #fdfaf1;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 25px;
}
.empty-d .em-title { font-size: 18px; font-weight: 800; letter-spacing: .02em; }
.empty-d .em-sub { font-size: 13px; color: #5c6474; margin-top: 7px; line-height: 1.75; }
.empty-d .em-hint {
  margin-top: 16px; padding-top: 14px; border-top: 1px dotted #cfc6ad;
  font-size: 12.5px; color: #4c5568; text-align: left;
}
.empty-d .em-hint b { display: block; margin-bottom: 6px; font-size: 13px; }
.empty-d .em-hint li { position: relative; padding: 3px 0 3px 15px; }
.empty-d .em-hint li::before {
  content: "◇"; position: absolute; left: 0; top: 3px; color: var(--gold); font-size: 9px;
}

/* ---------- 掲載終了 ---------- */
.closed-d {
  margin-top: 4px; padding: 20px 16px 18px;
  background: #f3f0e7; border: 1px solid #ddd4bd; border-radius: 14px;
  text-align: center;
}
.closed-d .cd-label {
  display: inline-block; background: #7c8496; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  border-radius: 999px; padding: 3px 14px;
}
.closed-d .cd-title { font-size: 17px; font-weight: 800; margin-top: 10px; letter-spacing: .02em; }
.closed-d .cd-sub { font-size: 12.5px; color: #5c6474; margin-top: 6px; line-height: 1.7; }
/* 掲載終了求人の「掲載当時の内容」。
   opacity で一律に薄くすると本文のコントラストが落ちるため、
   彩度を持つ要素だけを個別に落とし、文字色は可読域を保つ。 */
.is-closed .wage-d { background: #f0ede4; border-color: #d8d0bd; }
.is-closed .wage-d .wd-main b,
.is-closed .wage-d .wd-main .wd-unit { color: #6b7280; }
.is-closed .j-emp { background: #8a91a0; }
.is-closed .tag-mini { border-color: #cfc6ad; color: #5c6474; }
.is-closed .photo-main,
.is-closed .ph-t { filter: grayscale(1); }

.genre-chip {
  display: inline-block; border: 1px solid var(--gold);
  color: var(--gold-dim); border-radius: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 2px 8px; margin-right: 5px;
}

/* 詳細: 給与ボックス */
.wage-d {
  border: 1.5px solid var(--gold);
  background: var(--cream-50);
  border-radius: 13px;
  padding: 13px 14px;
  margin-top: 10px;
}
.wage-d .wd-label { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: #8a7f68; }
.wage-d .wd-main { display: flex; align-items: baseline; gap: 5px; margin-top: 2px; }
.wage-d .wd-main b { font-family: var(--num-font); font-size: 38px; line-height: 1; color: var(--orange); font-weight: 600; }
.wage-d .wd-main .wd-unit { font-size: 16px; font-weight: 800; color: var(--orange); }
.wage-d .wd-sub { font-size: 12.5px; color: #4c5568; margin-top: 7px; line-height: 1.65; border-top: 1px dotted #cfc6ad; padding-top: 7px; }

/* 詳細: 募集要項テーブル */
.d-table { width: 100%; border-collapse: collapse; background: var(--cream-50); font-size: 13.5px; line-height: 1.65; }
.d-table th, .d-table td { border: 1px solid #e2d5b4; padding: 9px 10px; text-align: left; vertical-align: top; }
.d-table th { background: #f3ecd9; width: 30%; font-size: 12.5px; color: #6d6250; letter-spacing: .03em; }
.d-table .note { font-size: 11px; color: #8a8374; }

/* 応募カード(final-card簡略版) */
.apply-d {
  background: var(--cream-50);
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  padding: 15px 13px;
  text-align: center;
}
.apply-d .ad-title { font-size: 17.5px; font-weight: 800; letter-spacing: .05em; }
.apply-d .ad-sub { font-size: 12px; color: #6d6250; margin: 2px 0 11px; }
.apply-d .cta + .cta { margin-top: 8px; }

/* ポータル相互リンク */
.portal-d {
  display: block;
  border: 1.5px dashed var(--gold);
  border-radius: 12px;
  background: var(--cream-50);
  padding: 11px 13px;
  font-size: 12.5px; color: #4c5568; line-height: 1.6;
}
.portal-d b { color: var(--ink); font-size: 13px; }
.portal-d .pd-badge {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold-dim);
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  border-radius: 4px; padding: 1px 7px; margin-bottom: 4px;
}

/* FAQ */
.faq-d {
  background: var(--cream-50);
  border: 1px solid #e2d5b4;
  border-radius: 11px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-d summary {
  list-style: none; cursor: pointer;
  padding: 11px 36px 11px 12px;
  font-size: 14.5px; font-weight: 800; letter-spacing: .02em;
  position: relative;
}
.faq-d summary::-webkit-details-marker { display: none; }
.faq-d summary::before { content: "Q."; color: var(--teal); font-family: var(--num-font); margin-right: 7px; }
.faq-d summary::after {
  content: "+"; position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  color: var(--gold-dim); font-size: 18px; font-family: var(--num-font);
}
.faq-d[open] summary::after { content: "−"; }
.faq-d .fa { padding: 0 12px 11px; font-size: 13px; color: #5c6474; line-height: 1.7; }
.faq-d .fa::before { content: "A."; color: var(--orange); font-family: var(--num-font); margin-right: 7px; font-weight: 600; }

/* ガイド: クリーム面のステップ */
.steps-cream .step-card { border: 1px solid #e2d5b4; box-shadow: 0 3px 10px rgba(27,42,68,.06); background: #fff; }
.steps-cream .step-card .sc-body { flex: 1; min-width: 0; }
.steps-cream .step-card .sc-title { display: block; font-size: 16.5px; font-weight: 800; }
.steps-cream .step-card .sc-sub { display: block; font-size: 11.5px; color: #5c6474; font-weight: 600; letter-spacing: .01em; margin-top: 1px; }
.steps-cream .step-arrow { color: var(--gold-dim); }
.steps-cream .step-coin { width: 52px; height: 52px; }
.steps-cream .step-coin b { font-size: 18px; }
.steps-cream .step-arrow { width: 52px; }

/* フォーム */
.f-card {
  background: #fff;
  border: 1px solid #eee4cd;
  border-radius: 15px;
  padding: 15px 13px;
  box-shadow: 0 6px 18px rgba(27,42,68,.07);
}
.f-row { margin-bottom: 12px; }
.f-row label { display: block; font-size: 13.5px; font-weight: 800; letter-spacing: .03em; margin-bottom: 5px; }
.f-req {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 800; border-radius: 4px;
  padding: 1px 6px; margin-left: 7px; vertical-align: 2px; letter-spacing: .06em;
}
.f-input, .f-select, .f-textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid #d8c9a4; border-radius: 8px;
  background: var(--cream-50);
  padding: 10px 10px;
}
.f-textarea { min-height: 84px; resize: vertical; }
.f-note { font-size: 11px; color: #8a8374; margin-top: 4px; }
.f-choice { display: flex; flex-wrap: wrap; gap: 7px; }
.f-choice .pill { padding: 7px 13px; font-size: 13.5px; }
.f-choice .pill.is-on { background: var(--teal); color: #fff; }

/* LINE第一導線ブロック */
.line-d {
  background: linear-gradient(160deg, #07c159 0%, #05a44c 100%);
  border-radius: 15px;
  color: #fff;
  text-align: center;
  padding: 15px 13px;
  box-shadow: 0 8px 20px rgba(6,160,75,.25);
}
.line-d .ld-title { font-size: 18px; font-weight: 800; letter-spacing: .04em; }
.line-d .ld-sub { font-size: 12px; opacity: .95; margin: 4px 0 10px; line-height: 1.6; }
.line-d .cta { background: #fff; color: #069a4a; font-size: 15px; padding: 11px 30px 11px 14px; }

.or-d { display: flex; align-items: center; gap: 10px; margin: 16px 0 12px; color: #8a7f68; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.or-d::before, .or-d::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: .5; }

/* 18歳注記(小) */
.age-line { display: flex; align-items: center; gap: 7px; justify-content: center; font-size: 12.5px; font-weight: 700; color: #6d6250; }
.age-line .ic { color: var(--gold-dim); font-size: 16px; }

/* PC時の背景 */
@media (min-width: 520px) {
  body { padding: 0; }
}

/* ---------- 実装用: フォーム化した絞り込みピル ---------- */
.pill { cursor: pointer; }
.pill-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.pill:has(.pill-input:focus-visible) { outline: 2px solid var(--orange); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.pager-d span[aria-disabled] { opacity: .35; }
.job-item .j-photo--empty { display: flex; align-items: flex-end; justify-content: center; }
.cta-trio--1 { grid-template-columns: 1fr; }
.cta-trio--2 { grid-template-columns: repeat(2, 1fr); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   PC 表示: 本文カラムの左右に固定パネル
   左 = サイトメニュー(ダーク) / 右 = 条件から探す(クリーム)
   1080px 未満(スマホ・タブレット縦)は非表示 = 従来どおり
   1080〜1199px: 本文 480px のまま / 1200px 以上: 本文 600px + 余白拡大
   ========================================================= */
.side { display: none; }

:root {
  --pc-col: 480px;    /* 本文カラム幅 */
  --pc-gap: 18px;     /* 本文とパネルの隙間 */
  --pc-panel: 260px;  /* パネル幅 */
}
@media (min-width: 1200px) {
  :root { --pc-col: 600px; --pc-gap: 28px; --pc-panel: 260px; }
  .lp { max-width: var(--pc-col); }
  /* 横幅が増えた分、本文の内側余白も少し広げる */
  .inner, .page-head, .page-sec, .footer, .site-bar { padding-left: 24px; padding-right: 24px; }
}

@media (min-width: 1080px) {
  .side {
    display: block;
    position: fixed;
    top: 20px;
    width: var(--pc-panel);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 8px;
    padding: 16px 16px 14px;
    scrollbar-width: thin;
    z-index: 5;
  }
  /* 本文カラムの外側 + 隙間ぶん離して置く */
  .side--l { right: calc(50% + var(--pc-col) / 2 + var(--pc-gap)); }
  .side--r { left: calc(50% + var(--pc-col) / 2 + var(--pc-gap)); }

  /* --- 共通見出し --- */
  .side-h {
    font-family: var(--num-font);
    font-size: 11px; font-weight: 700; letter-spacing: .22em;
    padding-bottom: 6px; margin-bottom: 8px;
    border-bottom: 1px solid currentColor;
  }

  /* --- 左: メニュー --- */
  .side--l {
    background: var(--navy-950);
    color: #d9d2bf;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
  }
  .side--l .side-h { color: var(--gold); border-color: rgba(201,162,75,.45); }
  .side-brand { display: block; color: #f4efe2; padding: 2px 0 12px; }
  .side-brand .sb-name { display: block; font-size: 18px; font-weight: 700; letter-spacing: .02em; line-height: 1.3; }
  .side-brand .sb-name small { font-size: 12px; letter-spacing: .05em; color: var(--gold-bright); }
  .side-brand .sb-area { display: block; margin-top: 3px; font-size: 11px; letter-spacing: .12em; color: var(--gold); }
  .side-nav ul { list-style: none; }
  .sn-link {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; border-radius: 6px;
    font-size: 13.5px; font-weight: 700; letter-spacing: 0;
    color: #d9d2bf;
    border-left: 2px solid transparent;
  }
  .sn-link .ic { color: var(--gold); font-size: 15px; flex-shrink: 0; }
  .sn-link:hover { color: #fff; background: rgba(255,255,255,.04); }
  .sn-link.is-on { color: var(--gold-bright); background: rgba(201,162,75,.12); border-left-color: var(--gold); border-radius: 0 6px 6px 0; }
  .sn-sub { margin: 2px 0 6px 25px; }
  .sn-sub a {
    display: block; padding: 4px 8px 4px 12px; position: relative;
    font-size: 13px; color: #aab2c2; border-radius: 4px;
  }
  .sn-sub a::before { content: "›"; position: absolute; left: 0; top: 4px; color: var(--gold-dim); }
  .sn-sub a:hover { color: #fff; }
  .sn-sub a.is-on { color: var(--gold-bright); }
  .side-foot { margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(201,162,75,.3); font-size: 11.5px; color: #aab2c2; }
  .side-foot .sf-company { letter-spacing: .03em; }
  .side-foot .sf-links { display: flex; gap: 12px; margin-top: 4px; }
  .side-foot .sf-links a:hover { color: #fff; }

  /* --- 右: 条件から探す --- */
  .side--r {
    background: var(--cream-50);
    color: var(--ink);
    border: 1px solid var(--cream-200);
    box-shadow: 0 0 40px rgba(0,0,0,.5);
  }
  .side--r .side-h { color: var(--gold-dim); border-color: rgba(163,130,60,.4); font-size: 13px; letter-spacing: .1em; }
  .side-group + .side-group { margin-top: 12px; }
  .sg-title { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 800; letter-spacing: .04em; }
  .sg-title .ic { color: var(--teal); font-size: 15px; }
  .side-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
  .side-pills .pill { padding: 5px 10px; font-size: 12.5px; gap: 5px; }
  .side-pills .pill:hover { background: var(--teal); color: #fff; }
  .side-pills .pill:hover .ic { color: #fff; }
  .side-cta { font-size: 14px; padding: 10px 26px 10px 12px; margin-top: 12px; }
  .side-cta + .side-cta { margin-top: 8px; }
  .side-cta .chev { right: 12px; }
  .side-age { margin-top: 10px; font-size: 11px; }
  .side-age .ic { font-size: 14px; }
}
