/* 青梅ではたらく ── 共通スタイル（Design 2a/3a-3e 準拠） */
:root{
  --blue:#1d4e89;
  --blue-deep:#173a63;
  --blue-grad:linear-gradient(160deg,#1d4e89,#2a6cb5);
  --blue-lt:#58a6e8;
  --orange:#f08a24;
  --ink:#313131;
  --ink2:#42505f;
  --muted:#6b7a8d;
  --muted2:#8a97a6;
  --muted3:#9aa7b5;
  --line:#dde5ee;
  --line-lt:#eef2f7;
  --bg-soft:#f5f8fb;
  --badge-c-bg:#e7f3ea; --badge-c-tx:#2c7a45;
  --badge-b-bg:#e9effa; --badge-b-tx:#3d5f9e;
  --badge-a-bg:#eef2f7; --badge-a-tx:#5c6b7c;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:"Noto Sans JP",sans-serif;color:var(--ink);background:#fff;line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:1120px;margin:0 auto;padding:0 16px}
.sec-label{font-family:'Nunito',sans-serif;font-weight:800;letter-spacing:.1em;color:var(--blue)}

/* ─── header ─── */
.site-head{padding:12px 0 10px}
.site-head .wrap{display:flex;justify-content:space-between;align-items:center;gap:8px}
.brand .tagline{font-size:9.5px;color:var(--muted);letter-spacing:.06em}
.brand .logo{font-weight:900;font-size:20px;line-height:1.3}
.brand .logo .chip{background:var(--blue);color:#fff;padding:1px 6px;border-radius:4px}
.head-stats{text-align:right;font-size:9.5px;color:var(--muted);line-height:1.7;flex:none}
.head-stats b{font-size:13px;color:var(--blue)}
.head-stats .row{display:block;white-space:nowrap}
.head-stats .pc-word{display:none}

/* ─── nav ─── */
.gnav{background:var(--blue-deep)}
.gnav .wrap{display:flex;padding:0}
.gnav .tabs{display:contents}
.gnav a{flex:1;text-align:center;padding:9px 0;font-size:11.5px;color:#b9cbdf}
.gnav a.on{font-weight:700;color:#fff;border-bottom:2px solid var(--blue-lt)}
.gnav a.wide{flex:1.4}
.gnav .about{display:none}

/* ─── breadcrumb（詳細・一覧） ─── */
.crumb{background:var(--blue-deep);padding:9px 16px;font-size:10px;color:#b9cbdf}
.crumb .cur{color:#fff}
.crumb-pc{display:none}

/* ─── バッジ ─── */
.date-badge{background:var(--orange);color:#fff;font-size:11px;font-weight:900;border-radius:4px;padding:3px 9px}
.route-badge{font-size:10px;font-weight:700;border-radius:4px;padding:3px 8px;white-space:nowrap}
.route-badge.C{background:var(--badge-c-bg);color:var(--badge-c-tx)}
.route-badge.B{background:var(--badge-b-bg);color:var(--badge-b-tx)}
.route-badge.A{background:var(--badge-a-bg);color:var(--badge-a-tx)}

/* 動画バッジ（8/18：動画あり企業を一覧で見分ける） */
.thumb-badges{position:absolute;bottom:8px;left:8px;display:flex;gap:5px}
.video-badge{background:rgba(13,24,38,.82);color:#fff;font-size:10px;font-weight:700;border-radius:4px;padding:3px 9px;backdrop-filter:blur(4px)}
.video-badge.article{background:rgba(44,122,69,.85)}

/* ─── 求人カード（共通・トップ/一覧） ─── */
.job-grid{display:flex;flex-direction:column;gap:12px}
.job-card{border:1px solid var(--line);border-radius:8px;overflow:hidden;background:#fff;display:block}
.jc-thumb{height:120px;position:relative;display:flex;align-items:center;justify-content:center}
.jc-thumb.photo{background:repeating-linear-gradient(45deg,#e7edf4,#e7edf4 8px,#eef3f9 8px,#eef3f9 16px)}
.jc-thumb.photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.jc-thumb .ph-note{font-size:10px;color:var(--muted2)}
.jc-thumb.jobcard{background:var(--blue);padding:14px 16px;flex-direction:column;align-items:flex-start;justify-content:center;gap:4px}
.jc-thumb.jobcard .jc-kicker{font-size:9px;color:#9dbede;letter-spacing:.12em;width:100%;text-align:right}
.jc-thumb.jobcard .jc-jobname{color:#fff;font-size:16px;font-weight:900}
.jc-thumb.jobcard .jc-tags{display:flex;gap:6px;margin-top:2px}
.jc-thumb.jobcard .jc-tags span{background:rgba(255,255,255,.14);color:#fff;font-size:10.5px;border-radius:4px;padding:2px 8px}
.jc-thumb .date-badge{position:absolute;top:8px;left:8px}
.jc-thumb .route-badge{position:absolute;top:8px;right:8px}
.jc-body{padding:12px 14px}
.jc-company-row{display:flex;justify-content:space-between;align-items:baseline;gap:8px}
.jc-company{font-size:10.5px;color:var(--muted)}
.jc-title{font-size:15px;font-weight:900;margin-top:2px}
.jc-desc{font-size:11px;color:#5c6b7c;margin-top:2px;line-height:1.6}
.jc-facts{display:grid;grid-template-columns:44px 1fr;gap:2px 8px;font-size:11.5px;margin-top:8px;line-height:1.8}
.jc-facts .k{color:var(--muted2)}
.jc-facts b{font-size:13.5px;color:var(--blue)}
.jc-foot{display:flex;justify-content:space-between;align-items:center;margin-top:10px;padding-top:9px;border-top:1px solid var(--line-lt)}
.jc-source{font-size:10px;color:var(--muted2)}
.jc-more{font-size:11px;font-weight:700;color:var(--blue)}

/* ─── footer ─── */
.site-foot{background:var(--blue-deep);margin-top:16px;padding:24px 16px 0;color:#9db4cd}
.foot-brand .logo{font-weight:900;font-size:16px;color:#fff;margin-bottom:4px}
.foot-brand .logo .chip{background:#fff;color:var(--blue-deep);padding:1px 5px;border-radius:4px}
.foot-brand .desc{font-size:10.5px;line-height:1.8}
.foot-sns{display:flex;gap:8px;margin-top:12px}
.foot-sns span{font-size:10.5px;border:1px solid #3d5a7d;border-radius:999px;padding:4px 12px}
.foot-links{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:18px;padding-bottom:20px}
.foot-col h3{font-size:10.5px;font-weight:700;color:#8fb4dc;letter-spacing:.1em;margin-bottom:8px}
.foot-col ul{list-style:none;display:flex;flex-direction:column;gap:7px;font-size:11px;color:#c8dcf2}
.foot-bottom{border-top:1px solid #2c4a6d;padding:12px 0 16px;font-size:10px;color:#7d97b5;line-height:2}
.foot-bottom .links{display:flex;flex-wrap:wrap;gap:4px 18px}

/* ═══════════ 一覧ページ ═══════════ */
.list-main{display:block}
.list-body{display:block}
.pc-only{display:none}
.list-head{padding:16px 16px 0;display:flex;justify-content:space-between;align-items:baseline}
.list-head h1{font-size:18px;font-weight:900}
.list-head .count{font-size:11px;color:var(--muted)}
.list-head .count b{font-size:15px;color:var(--blue)}
.sort-note{padding:12px 16px 4px;font-size:10px;color:var(--muted2)}
.list-wrap{padding:0 16px}
.list-end{text-align:center;padding:16px 0 18px;font-size:10.5px;color:var(--muted2)}

/* ═══════════ 詳細ページ ═══════════ */
.detail-main{display:block}
.detail-body{display:block}
.detail-head{padding:18px 16px 0}
.detail-badges .taken{display:none}
.detail-badges{display:flex;gap:8px;align-items:center;margin-bottom:10px}
.detail-badges .date-badge{font-size:13px;border-radius:5px;padding:5px 12px}
.detail-badges .route-badge{font-size:11px;padding:4px 10px}
.detail-title{font-size:21px;font-weight:900;line-height:1.4}
.detail-company{font-size:12.5px;color:var(--muted);margin-top:4px}
.detail-summary{font-size:13px;color:#42505f;margin-top:10px;line-height:1.9}
.detail-lead{font-size:12.5px;line-height:2;color:var(--ink2);margin-top:12px;text-wrap:pretty}
/* 写真（C/B） */
.photo-pc{display:none}
.hero-photo{height:170px;background:repeating-linear-gradient(45deg,#e7edf4,#e7edf4 8px,#eef3f9 8px,#eef3f9 16px);display:flex;align-items:center;justify-content:center;position:relative}
.hero-photo .ph-note{font-size:10.5px;color:var(--muted2)}
.hero-photo .date-badge{position:absolute;top:10px;left:10px;font-size:13px;border-radius:5px;padding:5px 12px}
.hero-photo .route-badge{position:absolute;top:10px;right:10px;font-size:11px;padding:4px 10px}
.sub-photos{display:flex;gap:6px;padding:6px 16px 0}
.sub-photos div{flex:1;height:56px;background:#eef3f9;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:9px;color:var(--muted2)}
/* 動画 */
.video-box{margin:16px;border:1px solid var(--line);border-radius:8px;overflow:hidden}
.video-box .vb-inner{height:150px;background:#22303f;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;position:relative}
.video-box .vb-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.82}
.video-box .vb-inner .play,.video-box .vb-inner .vb-title{position:relative;z-index:1}
.video-box .vb-inner .vb-title{text-shadow:0 1px 6px rgba(0,0,0,.7)}
.video-box .play{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.9);color:#22303f;display:flex;align-items:center;justify-content:center;font-size:13px}
.video-box .vb-title{color:#fff;font-size:11px;font-weight:700}
/* 事実テーブル */
.fact-table{margin:16px;border:1px solid var(--line);border-radius:8px;overflow:hidden}
.fact-table .ft-grid{display:grid;grid-template-columns:88px 1fr;font-size:12.5px;line-height:1.7}
.fact-table .k{background:var(--bg-soft);padding:11px 12px;color:#5c6b7c;border-bottom:1px solid var(--line-lt)}
.fact-table .v{padding:11px 12px;border-bottom:1px solid var(--line-lt)}
.fact-table .v.salary{font-weight:700}
.fact-table .v.salary b{font-size:15px;color:var(--blue)}
.fact-table .v .v-note{display:block;font-size:10.5px;color:var(--muted2);font-weight:400;margin-top:2px}
.fact-table .ft-grid > :nth-last-child(-n+2){border-bottom:none}
/* CTA */
.cta-zone{padding:18px 16px 0}
.cta{background:var(--blue);border-radius:8px;padding:15px 16px;display:flex;align-items:center;justify-content:space-between;box-shadow:0 4px 14px rgba(29,78,137,.3)}
.cta .cta-main{color:#fff;font-size:14.5px;font-weight:900}
.cta .cta-sub{color:#9dbede;font-size:10px;margin-top:2px}
.cta .cta-arrow{color:#fff;font-size:18px;font-weight:900}
.cta-note{text-align:center;font-size:10px;color:var(--muted2);margin-top:8px}
/* 注記 */
.notice{margin:18px 16px 0;background:var(--bg-soft);border-radius:8px;padding:14px 16px;font-size:11px;color:#5c6b7c;line-height:2}
.notice b{color:var(--ink2)}
.notice a{color:var(--blue);font-weight:700}
/* 回遊 */
.related{padding:20px 16px 8px}
.related h2{font-size:13px;font-weight:700;margin-bottom:10px}
.rel-item{border:1px solid var(--line);border-radius:8px;padding:12px 14px;display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.rel-badges{display:flex;gap:6px;align-items:center;margin-bottom:4px}
.rel-badges .date-badge{font-size:10px;padding:2px 7px}
.rel-badges .route-badge{font-size:9.5px;padding:2px 7px}
.rel-title{font-size:13.5px;font-weight:900}
.rel-sub{font-size:11px;color:#5c6b7c;margin-top:2px}
.rel-sub b{color:var(--blue)}
.rel-arrow{font-size:12px;color:var(--blue);font-weight:700}
.side-cta{display:none}

/* ═══════════ PC ═══════════ */
@media (min-width:900px){
  .site-head{padding:16px 0 12px}
  .brand{display:flex;align-items:baseline;gap:14px}
  .brand .logo{font-size:26px}
  .brand .logo .chip{padding:2px 8px;border-radius:5px}
  .brand .tagline{font-size:11px;order:2}
  .head-stats{display:flex;gap:22px;align-items:baseline;font-size:11px;text-align:left}
  .head-stats b{font-size:17px}
  .head-stats .row{display:inline}
  .head-stats .pc-word{display:inline}
  .gnav .wrap{justify-content:space-between;padding:0 16px}
  .gnav .tabs{display:flex;gap:4px}
  .gnav a{flex:none;padding:12px 22px;font-size:13px}
  .gnav a.on{border-bottom-width:3px}
  .gnav .about{display:block;font-size:12px;padding:12px 0}
  .crumb{display:none}
  .crumb-pc{display:block;max-width:1120px;margin:0 auto;padding:22px 16px 0;font-size:11px;color:var(--muted2)}

  /* 一覧 PC：左サイドバー＋2カラムカード */
  .pc-only{display:inline}
  .list-main{max-width:1120px;margin:0 auto;padding:8px 16px 0;display:block}
  .list-head{padding:0 0 18px;align-items:baseline}
  .list-head h1{font-size:24px}
  .list-head .count{font-size:12px}
  .list-head .count b{font-size:19px}
  .filters{display:none}
  .sort-note{display:none}
  .sb-apply{text-align:center;background:var(--blue);color:#fff;font-size:12.5px;font-weight:700;border:none;border-radius:6px;padding:10px 0;font-family:inherit;cursor:pointer}
  .list-wrap{padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
  .job-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
  .list-end{grid-column:1/-1;padding:4px 0 8px}
  .jc-thumb{height:120px}

  /* 詳細 PC：本文＋右サイドバーCTA */
  .detail-main{max-width:1120px;margin:0 auto;padding:14px 16px 0;display:grid;grid-template-columns:1fr 340px;gap:32px;align-items:start}
  .detail-head{padding:0}
  .detail-badges .date-badge{display:none}
  .detail-badges .taken{display:inline;font-size:11px;color:var(--muted2)}
  .detail-title{font-size:26px}
  .detail-company{font-size:13.5px}
  .detail-summary{font-size:13px;color:#42505f;margin-top:10px;line-height:1.9}
.detail-lead{font-size:13.5px;margin-top:16px}
  .photo-sp{display:none}
  .photo-pc{display:grid;grid-template-columns:2fr 1fr;gap:8px;margin-top:16px}
  .photo-pc .hero-photo{height:230px;border-radius:8px}
  .photo-pc .sub-photos{flex-direction:column;padding:0;gap:8px;height:230px}
  .photo-pc .sub-photos div{height:auto;flex:1;border-radius:8px;font-size:9.5px}
  .video-box{margin:18px 0 0}
  .video-box .vb-inner{height:220px;gap:10px}
  .video-box .play{width:44px;height:44px;font-size:15px}
  .video-box .vb-title{font-size:12px}
  .fact-table{margin:18px 0 0}
  .fact-table .ft-grid{grid-template-columns:110px 1fr;font-size:13px}
  .fact-table .k,.fact-table .v{padding:12px 14px}
  .fact-table .v.salary b{font-size:16px}
  .notice{margin:18px 0 0;padding:16px 18px;font-size:12px;line-height:2.1}
  .cta-zone{display:none}
  .side-cta{display:flex;flex-direction:column;gap:14px}
  .side-box{border:1px solid var(--line);border-radius:8px;padding:18px;text-align:center}
  .side-box .date-badge{font-size:15px;border-radius:6px;padding:7px 18px;display:inline-block}
  .side-box .upd{font-size:10.5px;color:var(--muted2);margin-top:8px}
  .side-box .cta{display:block;margin-top:14px;text-align:left}
  .side-box .cta .cta-main{font-size:14.5px}
  .side-box .side-note{font-size:10px;color:var(--muted2);margin-top:10px;line-height:1.7}
  .side-rel{border:1px solid var(--line);border-radius:8px;padding:16px 16px 12px}
  .side-rel h2{font-size:12.5px;font-weight:700;margin-bottom:10px}
  .side-rel .rel-item{border:none;border-top:1px solid var(--line-lt);border-radius:0;padding:10px 0;display:block;margin:0}
  .related{display:none}
  .foot-slim{margin-top:28px;padding:14px 24px}
  .foot-slim .links{display:flex;gap:18px;font-size:10.5px;color:#7d97b5}
  .foot-slim .op{display:none}
}

/* 詳細ページ：シートと統一したCTA・注記（8/20） */
.sh-cta{display:block;text-align:center;color:#fff;font-size:13.5px;font-weight:900;background:var(--blue);border-radius:8px;padding:14px 12px;margin-top:14px;box-shadow:0 4px 14px rgba(29,78,137,.3)}
.sh-cta.hw{background:var(--orange);box-shadow:0 4px 14px rgba(240,138,36,.3);margin-top:10px}
.sh-cta .hw-no{display:block;font-size:10.5px;font-weight:500;color:rgba(255,255,255,.85);margin-top:3px;letter-spacing:.04em}
.notice-line{margin:18px 16px 0;font-size:10px;color:#a7b2bf;line-height:1.9}
.notice-line a{color:var(--blue);font-weight:700}
@media (min-width:900px){ .notice-line{margin:18px 0 0} }

/* PICKUP型カード（一覧共用・求人トップのインラインと同定義） */
.g1{background:linear-gradient(165deg,#1d4e89 0%,#2a6cb5 55%,#173a63 100%)}
.g2{background:linear-gradient(165deg,#22303f 0%,#3c5670 60%,#1a2733 100%)}
.g3{background:linear-gradient(165deg,#2c7a45 0%,#1d4e89 100%)}
.g4{background:linear-gradient(165deg,#535e8c 0%,#173a63 100%)}
.pk-card{border:1px solid var(--line);border-radius:10px;background:#fff;overflow:hidden}
.list-wrap .pk-card{margin-bottom:14px}
.pk-head{display:block}
.pk-thumb{height:120px;position:relative;display:flex;align-items:center;justify-content:center}
.pk-thumb.photo{background:repeating-linear-gradient(45deg,#e7edf4,#e7edf4 8px,#eef3f9 8px,#eef3f9 16px)}
.pk-thumb.photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.pk-thumb.jobcard{background:var(--blue);flex-direction:column;gap:6px}
.pk-thumb .pk-logo{font-family:'Nunito',sans-serif;font-weight:800;font-size:11px;letter-spacing:.18em;color:rgba(255,255,255,.55)}
.pk-thumb .pk-tags{display:flex;gap:5px;flex-wrap:wrap;justify-content:center;padding:0 10px}
.pk-thumb .pk-tags span{background:rgba(255,255,255,.14);color:#fff;font-size:9.5px;border-radius:4px;padding:2px 7px}
.pk-thumb .ph-note{font-size:10px;color:var(--muted2)}
.pk-body{padding:11px 14px 12px}
.pk-company{font-size:10px;color:var(--muted)}
.pk-title{font-size:15.5px;font-weight:900;margin-top:1px;line-height:1.4}
.pk-desc{font-size:11px;color:#5c6b7c;margin-top:3px;line-height:1.6}
.pk-salary{font-size:11.5px;color:#5c6b7c;margin-top:4px}
.pk-salary b{font-size:13.5px;color:var(--blue)}
.pk-strip{display:flex;gap:8px;overflow-x:auto;padding:2px 14px 13px;scrollbar-width:none}
.pk-strip::-webkit-scrollbar{display:none}
.pk-strip .ms-card.art{align-items:center;justify-content:center}
.pk-strip .ms-card.art .ms-artlabel{position:static;font-size:10px}
.ms-card{flex:none;width:118px;height:196px;border-radius:12px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.ms-card .ms-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ms-card .ms-play{position:relative;z-index:1;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.9);color:#22303f;display:flex;align-items:center;justify-content:center;font-size:12px;padding-left:2px}
.ms-card .ms-meta{position:absolute;left:9px;right:9px;bottom:9px;display:flex;flex-direction:column;gap:1px;z-index:1}
.ms-card .ms-company{font-size:8.5px;color:rgba(255,255,255,.8);text-shadow:0 1px 4px rgba(0,0,0,.5);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ms-card .ms-job{font-size:11px;font-weight:900;color:#fff;text-shadow:0 1px 5px rgba(0,0,0,.6);line-height:1.4}
.ms-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(10,18,30,.72) 0%,rgba(10,18,30,0) 45%);pointer-events:none}
.ms-card.art{background:#eaf0f8;display:flex;align-items:flex-start}
.ms-card.art::after{background:none}
.ms-card.art .ms-artlabel{position:absolute;top:9px;left:9px;font-size:8.5px;font-weight:900;color:var(--blue-deep);background:#fff;border-radius:3px;padding:2px 7px}
.ms-card.art .ms-job{color:var(--blue-deep);text-shadow:none}
.ms-card.art.exp{background:#e7f3ea}
.ms-card.art.exp .ms-artlabel{color:#2c7a45}
.ms-card.art.exp .ms-job{color:#1f5232}
.pk-strip .ms-meta{display:none}
@media(min-width:960px){
  .site-foot{margin-top:32px;padding:36px 16px 0}
  .foot-inner{max-width:1120px;margin:0 auto}
  .foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.1fr;gap:28px;padding-bottom:28px}
  .foot-brand .logo{font-size:18px;margin-bottom:6px}
  .foot-brand .desc{font-size:11px;line-height:1.9}
  .foot-links{display:contents}
  .foot-col ul{font-size:12px;gap:8px}
  .foot-bottom{padding:14px 0}
  .foot-bottom-inner{max-width:1120px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}
  .list-wrap .pk-card{margin-bottom:0}
}

/* 条件シート（一覧・求人トップ共用） */
.ms-filter{margin-left:auto;font-size:11.5px;font-weight:700;color:#5c6b7c;background:#fff;border:1.5px solid var(--line);border-radius:999px;padding:6px 14px;font-family:inherit;cursor:pointer}
.list-head .ms-filter{flex:none}
.list-sub{padding:6px 16px 12px;display:flex;justify-content:space-between;align-items:baseline;gap:10px}
.list-sub .count{font-size:11px;color:var(--muted)}
.list-sub .count b{font-size:15px;color:var(--blue)}
.sort-note2{font-size:9.5px;color:var(--muted2)}
.msf-bg{position:fixed;inset:0;background:rgba(6,12,20,.45);z-index:30;opacity:0;pointer-events:none;transition:opacity .25s}
.msf-bg.open{opacity:1;pointer-events:auto}
.msf-sheet{position:fixed;left:0;right:0;bottom:0;z-index:31;background:#fff;border-radius:16px 16px 0 0;transform:translateY(102%);transition:transform .3s cubic-bezier(.2,.8,.25,1);max-height:82dvh;display:flex;flex-direction:column;padding-bottom:env(safe-area-inset-bottom)}
.msf-sheet.open{transform:translateY(0)}
.msf-grip{width:38px;height:4px;border-radius:2px;background:#d4dce6;margin:10px auto 4px;flex:none}
.msf-head{display:flex;justify-content:space-between;align-items:center;padding:6px 16px 4px;font-size:16px;font-weight:900}
.msf-close{background:none;border:none;font-size:18px;color:#5c6b7c;cursor:pointer;padding:6px;font-family:inherit}
.msf-scroll{overflow-y:auto;padding:8px 16px 16px}
.msf-sec{padding:10px 0 4px}
.msf-sec h3{font-size:12.5px;font-weight:900;margin-bottom:8px}
.msf-q{width:100%;font-size:14px;font-family:inherit;border:1.5px solid #d4dce6;border-radius:8px;padding:11px 14px;background:#f7f9fc;-webkit-appearance:none}
.msf-q:focus{outline:none;border-color:var(--blue);background:#fff}
.msf-chips{display:flex;flex-wrap:wrap;gap:8px}
.msf-chip{font-size:12.5px;font-weight:500;color:var(--ink);background:#fff;border:1px solid #d4dce6;border-radius:999px;padding:8px 15px;font-family:inherit;cursor:pointer}
.msf-chip.on{color:#fff;background:var(--blue);border-color:var(--blue);font-weight:700}
.msf-bar{display:flex;gap:10px;padding:12px 16px calc(env(safe-area-inset-bottom) + 12px);border-top:1px solid var(--line-lt);flex:none}
.msf-clear{flex:none;font-size:13px;font-weight:700;color:#5c6b7c;background:#fff;border:1.5px solid #d4dce6;border-radius:8px;padding:13px 20px;font-family:inherit;cursor:pointer}
.msf-apply{flex:1;font-size:14px;font-weight:900;color:#fff;background:var(--blue);border:none;border-radius:8px;padding:13px 0;font-family:inherit;cursor:pointer}
@media(min-width:900px){ .msf-sheet{left:50%;transform:translate(-50%,102%);width:430px} .msf-sheet.open{transform:translate(-50%,0)} }

/* ═══ AIの見立て（求人票の事実からのAI推測＝公式情報と視覚的に区別する） ═══ */
.pk-foryou{margin-top:7px;font-size:12px;color:#44536b;line-height:1.55;background:#f3f6fb;border-radius:6px;padding:6px 9px}
.fy-badge{display:inline-block;font-size:10px;font-weight:700;color:#5a6b8c;border:1px solid #c3cfe0;border-radius:4px;padding:0 5px;margin-right:6px;background:#fff;white-space:nowrap}
.detail-foryou{margin:14px 0;background:#f3f6fb;border-radius:8px;padding:12px 14px;font-size:14px;color:#2d3748;line-height:1.6}
.detail-foryou .fy-text{font-weight:600}
.detail-foryou .fy-note{display:block;font-size:11px;color:#8a94a6;margin-top:5px}

/* ═══ カードの境目強化（8/28・v2: 地は白のまま、カード自体の輪郭と帯の階層で区切る） ═══ */
/* MOVIE→PICKUP間をヒーロー→MOVIE間（モバイル18px/PC28px・stripのpadding-bottom差し引き）と同値に */
section.pickup{margin-top:14px}
.pk-card{border:1px solid #dfe4ea;box-shadow:0 1px 3px rgba(23,58,99,.07)}
.list-wrap .pk-card{margin-bottom:18px}
/* ミニカルーセルを「従」に沈める＝テキスト部との階層で1社のまとまりを作る */
.pk-strip{border-top:1px solid #edf0f4;background:#f8fafc;padding-top:10px;margin-top:2px}
.pk-strip .ms-card{transform:scale(.96);transform-origin:left center}

/* ═══ カード情報リッチ化（8/28: タグチップ・雇用形態・勤務地） ═══ */
.pk-titlerow{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.pk-emp{font-size:10.5px;font-weight:700;padding:1px 7px;border-radius:4px;white-space:nowrap}
.pk-emp.fulltime{background:#e3edf9;color:#1d4e89}
.pk-emp.contract{background:#eef1f5;color:#5a6b7c}
.pk-emp.parttime{background:#f4ede3;color:#8a6d3b}
.pk-metarow{font-size:11.5px;color:#7b8794;margin-top:2px}
.pk-chips{display:flex;gap:5px;flex-wrap:wrap;margin-top:7px}
.pk-chips span{font-size:11px;color:#42505f;border:1px solid #d6dce4;border-radius:99px;padding:1px 9px;background:#fbfcfd}

/* ═══ カード v3（求人ボックス型・8/28: 職種大＋AIメモ帯＋アイコンメタ） ═══ */
.pk-body .pk-emp{display:inline-block;margin-bottom:6px}
.pk-title2{font-size:18px;font-weight:800;line-height:1.4;color:var(--ink);margin-bottom:10px}
.pk-hl{display:flex;gap:10px;align-items:flex-start;background:#f2f5f9;border-radius:8px;padding:10px 12px;margin-bottom:12px}
.pk-hl .pki.bulb{width:20px;height:20px;flex:none;color:#5a6b8c;margin-top:1px}
.pk-hl-t{font-size:13px;font-weight:700;color:#2d3748;line-height:1.55}
.pk-hl-t .fy-badge{margin-right:6px;vertical-align:1px}
.pk-meta2{display:flex;flex-direction:column;gap:6px}
.pk-meta2 .m{display:flex;gap:9px;align-items:flex-start;font-size:13px;color:#42505f;line-height:1.5}
.pk-meta2 .pki{width:16px;height:16px;flex:none;color:#8a94a6;margin-top:2px}
.pk-salary2 b{color:var(--blue);font-size:15px}

/* 社名クリック→同じ会社の求人を検索（8/28） */
.pk-colink{color:var(--blue);text-decoration:underline;text-underline-offset:2px;cursor:pointer}
.detail-company a{color:inherit;text-decoration:underline;text-underline-offset:3px}

/* 詳細ページの条件タグ（8/28） */
.detail-chips{margin:12px 0 2px}
.detail-chips span{font-size:12px;padding:2px 11px}

/* 事実テーブル内のタグ（魅力行・8/28） */
.ft-grid .detail-chips{margin:0}

/* AIメモ直後のCTAは上と同じ間隔に（8/28: メモ下の隙間が広すぎた） */
.detail-foryou + .cta-zone{padding-top:0}

/* ═══ ロゴ3a「バッジ＋シークバー」（2026-08-28 山下がclaude.ai/designで選定） ═══ */
.lg3a{display:inline-flex;align-items:flex-end;gap:8px;line-height:1}
.lg3a .lg-chip{position:relative;display:inline-flex;align-items:center;background:var(--blue);color:#fff;font-weight:900;font-size:19px;letter-spacing:.05em;border-radius:9px;padding:6px 11px 7px}
.lg3a .lg-play{position:absolute;top:-7px;right:-7px;width:17px;height:17px;border-radius:999px;background:var(--orange);border:2px solid #fff;display:flex;align-items:center;justify-content:center}
.lg3a .lg-play svg{width:6px;height:7px;margin-left:1px}
.lg3a .lg-right{display:inline-flex;flex-direction:column;gap:4px}
.lg3a .lg-text{color:#1e2430;font-weight:900;font-size:19px;letter-spacing:.02em}
.lg3a .lg-seek{position:relative;display:block;height:4px;border-radius:2px;background:#e7e4dd}
.lg3a .lg-fill{position:absolute;left:0;top:0;bottom:0;width:68%;border-radius:2px;background:var(--orange)}
.lg3a .lg-knob{position:absolute;left:68%;top:50%;width:9px;height:9px;border-radius:999px;background:var(--blue);transform:translate(-50%,-50%)}
/* フッター（紺地）＝反転版 */
.foot-brand .lg3a .lg-chip{background:#fff;color:var(--blue)}
.foot-brand .lg3a .lg-play{border-color:var(--blue-deep)}
.foot-brand .lg3a .lg-text{color:#fff}
.foot-brand .lg3a .lg-seek{background:rgba(255,255,255,.25)}
.foot-brand .lg3a .lg-knob{background:#fff}

/* MOVIE帯 COMING SOON（動画0件時のプレースホルダー・動画が入れば自動で本物に切替 8/28） */
.ms-card.ms-soon{cursor:default;opacity:.85;flex-direction:column;gap:10px}
.ms-card.ms-soon .ms-play{opacity:.55}
.ms-soon-t{color:rgba(255,255,255,.85);font-weight:800;font-size:12px;letter-spacing:.18em;text-align:center;line-height:1.6}

/* ヘッダーとヒーローの間隔を少し確保（8/28 ロゴ3aのシークバーが窮屈だったため） */
.site-head{padding:16px 0 18px}
@media (min-width: 768px){ .site-head{padding:20px 0 20px} }

@media (min-width: 768px){ section.pickup{margin-top:28px} }

/* ═══ ヒーロー→ヘッダー統合（8/28: 紺帯廃止・白地で検索バー＋チップ） ═══ */
.hero.hero-flat{background:#fff;padding:2px 16px 6px}
.hero-flat .searchbar input{border:2px solid #d6dce4}
.hero-flat .chips a{color:#42505f;border:1px solid #d6dce4;background:#fff}
.hero-flat .chips a:hover{border-color:var(--blue);color:var(--blue)}
@media (min-width: 768px){ .hero.hero-flat{padding:6px 24px 10px;text-align:center} }


/* ═══ ヒーロー=ヘッダー統合 v2（8/28: 紺帯の中にロゴ・件数・検索・チップ） ═══ */
.hero.hero-brand{background:var(--blue);padding:18px 16px 20px;position:relative;overflow:hidden}
.hero.hero-brand::before{content:"";position:absolute;top:-80px;right:-60px;width:340px;height:340px;border-radius:999px;background:rgba(255,255,255,.05)}
.hero.hero-brand::after{content:"";position:absolute;bottom:-120px;left:-80px;width:300px;height:300px;border-radius:999px;background:rgba(42,108,181,.35)}
.hero.hero-brand .hero-inner{position:relative;z-index:1}
.hero-brand .hero-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}
/* 件数2行積み・ロゴの高さ（チップ+シークバー≒42px）に揃える */
.hero-brand .hero-stats2{display:flex;flex-direction:column;justify-content:center;align-items:flex-end;gap:3px;height:42px}
.hero-brand .hero-stats2 span{font-size:11.5px;font-weight:700;color:#fff;line-height:1.4}
.hero-brand .hero-stats2 b{font-size:15px;margin:0 1px}
.hero-brand .brand{text-decoration:none}
/* 紺地用ロゴ反転（フッターと同型） */
.hero-brand .lg3a .lg-chip{background:#fff;color:var(--blue)}
.hero-brand .lg3a .lg-chip{color:var(--blue)}
.hero-brand .lg3a .lg-play{border-color:var(--blue-deep)}
.hero-brand .lg3a .lg-text{color:#fff}
.hero-brand .lg3a .lg-seek{background:rgba(255,255,255,.25)}
.hero-brand .lg3a .lg-knob{background:#fff}
.hero-brand .lg-chip{color:var(--blue) !important}
.hero-stats2{color:#fff;font-size:12.5px;font-weight:700}
.hero-stats2 b{font-size:19px;margin:0 2px}
.hero-brand .chips a{color:#fff;border:1px solid rgba(255,255,255,.55);background:transparent}
.hero-brand .chips a:hover{background:rgba(255,255,255,.12)}
.hero-brand .searchbar input{border:0}
@media (min-width: 768px){
  .hero.hero-brand{padding:24px 24px 26px}
  .hero-brand .hero-inner{max-width:1120px}
  .hero-brand .hero-head{max-width:640px;margin:0 auto 18px}
  .hero-brand .searchbar{max-width:640px;margin:0 auto}
  .hero-brand .chips{justify-content:center}
}

/* ═══ 本文背景をごく薄い青みグレーに（8/28: 真っ白回避・全幅・カードの白が立つ） ═══ */
body{background:#f4f6f9}
.site-head{background:#fff}
.fact-table{background:#fff}
.searchbar input{background:#fff}

/* カード立体化（8/28: 背景は白・多層シャドウ＋下エッジ＋上辺ハイライトで浮かせる。パステル模様は不採用）
   div.pk-card＝トップページのインライン<style>の .pk-card 定義より詳細度で勝たせる（後勝ち対策） */
div.pk-card{background:#fff;border:1px solid #e3e9f0;border-bottom:3px solid #d5dde6;border-radius:12px;
  box-shadow:0 1px 2px rgba(23,58,99,.05), 0 7px 18px -5px rgba(23,58,99,.14),
  inset 0 1px 0 rgba(255,255,255,.9)}
@media (hover:hover){
  div.pk-card{transition:transform .16s ease, box-shadow .16s ease}
  div.pk-card:hover{transform:translateY(-2px);
    box-shadow:0 2px 4px rgba(23,58,99,.06), 0 14px 26px -6px rgba(23,58,99,.18),
    inset 0 1px 0 rgba(255,255,255,.9)}
}
.pk-card .pk-strip{background:#f6f8fb}

/* カテゴリページのSEOテキスト（8/29: データ自動生成・盛れない数字のみ） */
.list-intro{padding:2px 16px 0;font-size:12px;line-height:1.9;color:#6b7a8d;max-width:720px}
@media (min-width:768px){ .list-intro{padding:2px 24px 0} }
