/* =========================================================
   PD for HR (newagency) — /hr/newagency/ 専用スタイル
   hr.css（hr/agency・hr/client用）からフォークしたもの。
   このページの見た目を直すたびに hr.css 側は変更しないこと
   （hr/agency・hr/client の本番表示に影響が出るため）。
   ========================================================= */

.hr{
  --cy:#00A9CE; --cy-d:#0089AC; --cy-l:#E8F6FA; --cy-deep:#137FA6;
  --navy:#123A5A; --navy-d:#0C2B45;
  --yl:#FBD85D; --yl-d:#F2C931;
  --ink:#1A1D22; --dim:#5C6570; --faint:#98A0AA;
  --line:#E3E8EC; --bg:#F4F7F9;
  --jp:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic Medium",Meiryo,sans-serif;
  --lt:"Inter",var(--jp);
  /* 1280px時に左右96pxの余白になる幅。Figma原本の本文グリッドに合わせている。 */
  --maxw:1144px;
  margin:0;background:#fff;color:var(--ink);
  font-family:var(--jp);font-size:16px;line-height:1.9;
  font-feature-settings:"palt" 1;-webkit-font-smoothing:antialiased;
}
.hr *{box-sizing:border-box}
.hr img,.hr svg{max-width:100%}
.hr a{color:inherit;text-decoration:none}
.hr :focus-visible{outline:3px solid var(--cy);outline-offset:2px}
.hr .wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.hr h1,.hr h2,.hr h3{margin:0;letter-spacing:-.02em;line-height:1.5;word-break:auto-phrase}

/* ---------- ロゴ ----------
   独自の字形（45°面取りのジオメトリック体）なのでウェブフォントでは再現できない。
   原本PNGから切り出して背景をアルファに起こした画像を使う。
   Figmaからロゴのベクター（SVG）が届いたら同名で差し替えること。
   なお .hrlogo の中で class="hr" は使わないこと。body に .hr が付いているため
   .hr{background:#fff;...} が当たって白いベタ塗りの箱になる。 */
.hrlogo{display:inline-flex;align-items:center;line-height:1}
.hrlogo img{display:block;width:auto;height:40px}
.hrlogo__by{font-size:14px;font-weight:700;color:var(--ink);margin-left:10px;letter-spacing:0}

/* ---------- ヘッダー ---------- */
/* Figma node 20037:2（PC / 1280px）に合わせて再実装。maxw(1144)は本文グリッド用なので
   ヘッダーは使わず、フレーム全幅の1280pxを使う。 */
.hrhd{position:sticky;top:0;z-index:60;background:#fff;box-shadow:0 2px 2px rgba(0,0,0,.1)}
.hrhd__in{max-width:1280px;margin:0 auto;padding:16px 24px 16px 16px;display:flex;align-items:center;gap:24px}
.hrhd .hrlogo img{height:28px;width:auto}
.hrnav{display:flex;gap:16px;margin-left:auto;font-size:14px;font-weight:400;line-height:1.5}
.hrnav a:hover{color:var(--cy)}
.hrhd__cta{display:flex;gap:8px}

/* ---------- ボタン ---------- */
.hrbtn{display:inline-flex;align-items:center;justify-content:center;gap:12px;
  font-size:15px;font-weight:700;padding:15px 28px;border-radius:999px;border:2px solid transparent;
  cursor:pointer;white-space:nowrap;transition:transform .18s,box-shadow .18s,background-color .18s}
.hrbtn:hover{transform:translateY(-2px)}
/* .hr a{color:inherit} に負けないよう .hr を前置して詳細度を上げている。
   これを外すと濃色セクション上でボタンの文字が背景と同色になり消える。 */
.hr .hrbtn--y{background:var(--yl);color:var(--navy);box-shadow:0 6px 18px rgba(240,200,60,.35)}
.hr .hrbtn--y:hover{background:var(--yl-d)}
.hr .hrbtn--n{background:var(--navy);color:#fff;box-shadow:0 6px 18px rgba(18,58,90,.28)}
.hr .hrbtn--n:hover{background:var(--navy-d)}
.hr .hrbtn--w{background:#fff;color:var(--navy);border-color:#fff}
.hr .hrbtn--w:hover{background:#EAF6FA}
.hrbtn--sm{padding:11px 22px;font-size:13.5px}
/* ヘッダー専用ボタン（Figma node 20037:2）。hrbtn--smはFLOWセクションの
   問い合わせボタンとも共有しているため、色・サイズは.hrhdスコープでのみ上書きする。 */
.hrhd .hrbtn{padding:12px 44px;font-size:14px;font-weight:500;box-shadow:none}
.hr .hrhd .hrbtn--y{background:#fcdc4a;color:#1c89a6}
.hr .hrhd .hrbtn--y:hover{background:#f2cd2e}
.hr .hrhd .hrbtn--n{background:#1c89a6;color:#fff}
.hr .hrhd .hrbtn--n:hover{background:#166f87}

/* ラベル付きCTA（吹き出し風の小さな見出し＋ボタン） */
.hrcta2{display:flex;flex-wrap:wrap;gap:22px}
.hrcta{display:inline-flex;flex-direction:column;align-items:center;gap:0}
.hrcta__tag{font-size:12px;font-weight:700;padding:5px 16px;border-radius:999px;
  background:rgba(255,255,255,.9);color:var(--navy);position:relative;z-index:1;margin-bottom:-6px}
.hrcta--y .hrcta__tag{background:var(--yl);color:var(--navy)}
.hrcta .hrbtn{min-width:298px}
/* 中間幅（タブレット等）でボタンが画面いっぱいに間延びしないよう最大幅を設ける。 幅いっぱいのベタ押しボタンは安っぽく見えるため。 */
@media(max-width:680px){.hrcta{width:100%;max-width:440px}.hrcta .hrbtn{width:100%;min-width:0}}

/* ---------- ヒーロー ---------- */
/* Figma node 20038:25（PC / 1280px）に合わせて再実装。 */
/* 背景はStudio実装（turquoise601985.studio.site）のsd-19と同じ重ね順：
   装飾パターン画像（cover）を最前面、その下にteal→cyanのグラデーション。 */
.hrhero{position:relative;color:#fff;overflow:hidden;
  background:url(hr-newagency/hero-bg-pattern.svg) center/cover no-repeat,
    linear-gradient(90deg,#1c89a6 0%,#04b7e2 100%)}
/* ヒーローだけは本文グリッドより外側から始まる（原本で左64px）。 */
.hrhero__in{position:relative;z-index:2;max-width:1208px;margin:0 auto;padding:0 28px;
  min-height:728px;display:flex;align-items:center}
.hrhero__c{width:100%;max-width:620px;padding:56px 0 64px}
.hrbadge{display:inline-block;font-size:14px;font-weight:500;padding:8px 16px;
  border:1px solid #fff;border-radius:32px;margin-bottom:26px}
/* 見出しはFigmaからSVG書き出しした画像をそのまま使う（node 20038:37）。 */
.hrhero h1{margin:0 0 26px}
.hrhero h1 img{display:block;width:100%;max-width:464px;height:auto}
.hrhero__lead{font-size:16px;line-height:1.5;margin:0 0 34px;color:#fff}
.hrchips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:38px}
.hrchip{display:flex;align-items:center;gap:16px;background:rgba(28,137,166,.8);
  border-radius:4px;padding:16px;font-size:14px;font-weight:500;line-height:1.5}
.hrchips .hrchip:first-child{background:#1891b0}
.hrchip__i{width:48px;height:48px;flex:none;display:grid;place-items:center}
.hrchip__i img{width:100%;height:100%}
/* 写真エリア。原本(1280px)の右側をそのまま切り出した画像を右下basisで敷く。
   画像は自前のグラデーションを含むので、左端はマスクでフェードさせて
   セクションのグラデーションに溶かし、継ぎ目を出さない。
   Figmaから透過素材が届いたら同名ファイルを差し替えるだけでよい。 */
.hrhero__fig{position:absolute;z-index:1;top:0;bottom:0;right:0;
  /* 写真は背景を抜いた透過PNG。下地のグラデーションにそのまま重なるので、
     継ぎ目を隠すための埋め色もマスクも要らない。
     --shift は「本文の右端より少し右に人物が来る」量。画面が広いほど大きくなり、
     1280px以下では 0 になって原本どおり画面右端に張り付く。 */
  --photo:none;
  --shift:clamp(0px,calc(50vw - 620px),320px);
  --pw:min(590px,46vw);
  width:calc(var(--pw) + var(--shift));
  background-image:var(--photo);
  background-repeat:no-repeat;
  background-position:left bottom;
  background-size:var(--pw) auto}
/* ヒーロー専用CTA配色（Figma node 20038:25）。hrcta2/hrcta__tag/hrbtn--y・--nは
   ページ下部のCTAバンドとも共有しているため、色・間隔は.hrheroスコープでのみ上書きする。 */
.hrhero .hrcta2{gap:16px}
.hrhero .hrcta__tag{background:#1c89a6;color:#fff}
.hrhero .hrcta--y .hrcta__tag{background:#fcdc4a;color:#1c89a6}
.hrhero .hrbtn{border-color:#fff;box-shadow:none;font-size:16px;font-weight:700;
  padding:18px 32px 16px 44px}
.hr .hrhero .hrbtn--y{background:#fcdc4a;color:#1c89a6}
.hr .hrhero .hrbtn--y:hover{background:#f2cd2e}
.hr .hrhero .hrbtn--n{background:#1c89a6;color:#fff}
.hr .hrhero .hrbtn--n:hover{background:#166f87}
/* 写真が未入稿のときの代替 */
.hrhero__fig--empty{display:flex;align-items:center;justify-content:center;
  width:min(520px,42vw);right:32px;top:64px;bottom:64px;
  border:1.5px dashed rgba(255,255,255,.45);border-radius:14px;
  background:rgba(255,255,255,.06);-webkit-mask-image:none;mask-image:none}
.hrhero__fig--empty p{margin:0;padding:24px;text-align:center;font-size:13px;line-height:2;color:rgba(255,255,255,.9)}
@media(max-width:1180px){.hrhero__c{max-width:54%}}
@media(max-width:940px){
  .hrhero__in{min-height:0;display:block}
  /* モバイルは中央寄せに統一（見出し・チップ・CTA・肩書き） */
  .hrhero__c{max-width:none;padding:48px 0 36px;text-align:center}
  .hrhero h1 img{margin:0 auto}
  .hrchips{justify-content:center}
  .hrcta2{justify-content:center}
  /* 画面幅いっぱいに敷く。元画像の比率をそのまま使うので上下とも切れない。 */
  /* 透過写真は縦長（590:728）なので、モバイルで全幅にすると高さ550pxになり、
       頭上の透明部分が地色として大きく残ってCTAとの間が空いて見える。
       高さを確保しつつ、顔がフレーム上寄りに収まる位置にする。 */
  .hrhero__fig{position:static;width:auto;height:min(122vw,486px);aspect-ratio:auto;
    margin:0 -28px;overflow:hidden;background-image:var(--photo);
    background-size:100% auto;background-position:center 22%}
  .hrhero__fig--empty{position:static;width:auto;height:min(420px,72vw);aspect-ratio:auto;
    margin:0 -28px;-webkit-mask-image:none;mask-image:none;border:0;border-radius:0}
}

/* ---------- セクション共通 ---------- */
.hrsec{padding:96px 0}
.hrsec--bg{background:var(--bg)}
.hrlabel{display:inline-flex;align-items:center;gap:10px;font-family:'Inter',sans-serif;font-size:16px;
  font-weight:500;letter-spacing:.04em;color:#000;margin-bottom:8px}
.hrlabel::before{content:"";width:14px;height:14px;border-radius:50%;
  background:linear-gradient(135deg,#1C89A6,#04B7E2)}
.hrsec h2{font-size:clamp(24px,3.4vw,32px);font-weight:700;line-height:1.5;margin-bottom:16px}
.hrsec__lead{font-size:15px;line-height:2.1;color:var(--dim);margin:0 0 48px}
.hrsec__lead strong{color:var(--ink);font-weight:700}
.hrnote{font-size:12px;color:var(--faint);margin:14px 0 0}

/* 見出しブロックの右にイラストを置く */
.hrsec__head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:44px;align-items:start}
.hrsec__head .hrsec__lead{margin-bottom:0}
.pd-ill{display:block;height:auto}
@media(max-width:900px){
  .hrsec__head{grid-template-columns:minmax(0,1fr)}
  .hrsec__head>.pd-ill{display:none}
}

/* ---------- 課題（3カード） ---------- */
.hrflow3{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:14px;align-items:stretch}
.hrflow3__a{display:flex;align-items:center;color:#B9C2CB;font-size:20px}
.hrcard{background:#fff;border:1px solid var(--line);border-radius:14px;padding:30px 26px;text-align:center;
  box-shadow:0 2px 14px rgba(20,40,60,.04)}
.hrcard--dark{background:#5E5C5C;border-color:#5E5C5C;color:#fff}
.hrcard__i{height:88px;display:grid;place-items:center;margin-bottom:18px}
.hrcard h3{font-size:17px;font-weight:800;margin-bottom:14px}
.hrcard p{font-size:13.5px;line-height:1.95;color:var(--dim);margin:0;text-align:left}
.hrcard--dark p{color:rgba(255,255,255,.88)}
.hrcard small{display:block;font-size:11.5px;color:var(--faint);margin-top:12px;text-align:left}
.hrcard--dark small{color:rgba(255,255,255,.6)}
@media(max-width:900px){
  .hrflow3{grid-template-columns:minmax(0,1fr)}
  .hrflow3__a{justify-content:center;transform:rotate(90deg)}
}

/* ---------- 市場データ（2グラフ） ---------- */
.hrduo{display:flex;gap:32px;align-items:stretch}
.hrduo>.hrfig--fee{flex:0 0 588px;max-width:588px}
.hrduo>.hrfig--gap{flex:1 1 0;min-width:0}
@media(max-width:860px){.hrduo{flex-direction:column}.hrduo>.hrfig--fee{flex-basis:auto;max-width:none}}
.hrfig{background:#fff;border-radius:8px;padding:24px 32px;
  box-shadow:0 0 4px rgba(0,0,0,.16)}
.hrfig__t{text-align:center;font-size:24px;font-weight:500;line-height:36px;margin:0}
.hrfig__s{text-align:center;font-size:14px;color:#000;margin:0 0 16px}
.hrfig svg{width:100%;height:auto;display:block}

/* ---------- PD for HR ブランドセクション ---------- */
.hrbrand{position:relative;color:#fff;overflow:hidden;padding:120px 0;
  background:linear-gradient(90deg,#1C89A6,#04B7E2)}
.hrbrand .wrap{position:relative;z-index:1}
.hrbrand__tag{display:inline-block;background:#FCDC4A;color:#1C89A6;font-size:16px;font-weight:700;
  padding:8px 16px;border-radius:32px;margin-bottom:32px}
.hrbrand .hrlogo{display:flex;margin-bottom:48px}
.hrbrand .hrlogo img{height:48px}
.hrbrand h2{font-size:clamp(24px,3.4vw,32px);font-weight:700;margin-bottom:16px;color:#fff}
.hrbrand__lead{font-size:16px;line-height:1.5;color:#fff;margin:0 0 48px;max-width:74ch}
.hrfeat{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
@media(max-width:860px){.hrfeat{grid-template-columns:minmax(0,1fr)}}
.hrfeat__c{background:#fff;color:var(--ink);border-radius:8px;padding:32px 24px;
  box-shadow:0 0 4px rgba(0,0,0,.16)}
.hrfeat__i{width:64px;height:64px;border-radius:4px;display:grid;place-items:center;margin-bottom:16px;
  background:linear-gradient(90deg,#04B7E2,#1C89A6);color:#fff}
.hrfeat__c h3{font-size:20px;font-weight:500;margin-bottom:16px}
.hrfeat__c p{font-size:16px;line-height:1.5;color:#5E5C5C;margin:0}
.hrfeat__c small{display:block;font-size:12px;color:#5E5C5C;margin-top:8px}

/* ---------- ベネフィット ---------- */
.hrben{padding:0 0 20px}
.hrben+.hrben{margin-top:76px}
.hrben__n{font-family:'Inter',sans-serif;font-size:16px;font-weight:500;color:#1C89A6;display:block;margin-bottom:8px}
.hrben h3{font-size:24px;line-height:36px;font-weight:700;margin-bottom:16px}
.hrben p{font-size:16px;line-height:1.5;color:#000;margin:0}
.hrben__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.72fr);gap:40px;align-items:center}
.hrben__fig{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:44px;align-items:center}
@media(max-width:900px){
  .hrben__grid,.hrben__fig{grid-template-columns:minmax(0,1fr)}
  .hrben__fig>.pd-ill{display:none}
}

/* Before / After */
.hrba{display:grid;grid-template-columns:1fr auto 1fr;gap:20px;align-items:stretch;margin-bottom:16px}
@media(max-width:860px){.hrba{grid-template-columns:minmax(0,1fr)}}
.hrba__c{border-radius:16px;padding:8px 24px 16px}
.hrba__c--b{background:#F6F6F6}
.hrba__c--a{background:#F4F9FB;box-shadow:0 0 4px rgba(28,137,166,.2);color:#1C89A6}
.hrba__tag{display:inline-block;font-size:14px;font-weight:400;
  padding:2px 24px;border-radius:99px;margin-bottom:8px;color:#fff}
.hrba__c--b .hrba__tag{background:#4C4C4C}
.hrba__c--a .hrba__tag{background:#1C89A6}
.hrba__v{font-size:24px;font-weight:500;line-height:36px;margin:0 0 8px;color:#0E1F17}
.hrba__c--a .hrba__v{font-weight:700;color:#1C89A6}
.hrba__s{font-size:14px;color:inherit;margin:0 0 8px;padding-bottom:8px;border-bottom:1px solid rgba(0,0,0,.12)}
.hrba__c--a .hrba__s{border-bottom-color:rgba(28,137,166,.25)}
.hrba__l{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.hrba__l li{display:flex;gap:8px;align-items:center;font-size:14px;line-height:1.5}
.hrba__ic{width:16px;height:16px;flex:none;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#D9D9D9}
.hrba__ic img{width:10px;height:10px}
.hrba__c--a .hrba__ic{background:#1C89A6}
.hrba__c--a .hrba__ic img{width:9px;height:8px}
.hrba__mid{position:relative;display:flex;align-items:center;justify-content:center;gap:10px}
.hrba__mid::before{content:"";position:absolute;left:0;right:0;top:50%;height:2px;
  background:var(--cy);transform:translateY(-50%);z-index:0}
.hrba__mid::after{content:"";position:absolute;right:-2px;top:50%;width:0;height:0;
  border-top:5px solid transparent;border-bottom:5px solid transparent;
  border-left:7px solid var(--cy);transform:translateY(-50%)}
.hrba__mid .hrlogo{position:relative;z-index:1;border:1.5px solid var(--cy);border-radius:999px;padding:8px 18px;background:#fff}
.hrba__mid .hrlogo img{height:24px}

/* ---------- 市場データ：需要/供給ギャップ比較 ---------- */
.hrmkt-headline{text-align:center;font-size:24px;font-weight:700;margin:16px 0 28px}
.hrmkt-headline__n{font-size:40px;font-weight:800;color:#E23B3B}
.hrmkt-compare{display:flex;align-items:flex-end;justify-content:center;gap:0}
.hrmkt-box{width:168px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:8px;color:#fff}
.hrmkt-box--demand{height:258px;background:#1C89A6}
.hrmkt-box--supply{height:166px;background:#444}
.hrmkt-box__label{font-size:20px}
.hrmkt-box__num{font-family:var(--lt);font-size:40px;font-weight:800;display:flex;align-items:baseline;gap:6px}
.hrmkt-box__num small{font-size:20px;font-weight:400;font-family:inherit}
.hrmkt-gap{align-self:flex-start;width:36px;height:92px;display:flex;align-items:center;justify-content:center}
.hrmkt-gap img{width:23px;height:92px}
.hrmkt-col{display:flex;flex-direction:column}
.hrmkt-workers{width:168px;height:92px;display:grid;grid-template-columns:repeat(6,1fr);
  grid-template-rows:repeat(4,1fr);gap:2px;place-items:center}
.hrmkt-worker{width:26px;height:26px}
@media(max-width:860px){
  .hrmkt-compare{gap:16px}
  .hrmkt-gap{width:24px}
}

/* 補足チップ。PC/タブレットは.hrben__gridの狭い列に収まる縦積み、
   モバイルは列が全幅になり横並びで収まる（Figma node 18568:4134 SP）。 */
.hrstack{display:grid;gap:16px}
.hrstack__c{display:flex;align-items:center;gap:16px;background:#F4F9FB;
  border-radius:4px;padding:8px 32px;font-size:14px;font-weight:500;box-shadow:0 0 4px rgba(28,137,166,.2)}
.hrstack__i{width:32px;height:32px;flex:none;display:grid;place-items:center}
.hrstack__i img{width:100%;height:100%}
@media(max-width:900px){
  .hrstack{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
  .hrstack__c{flex-direction:column;text-align:center;gap:8px;padding:16px 8px;font-size:12.5px}
}

/* ---------- CTAバンド ---------- */
.hrctaband{padding:64px 0;color:#fff;text-align:center;
  background:linear-gradient(90deg,#1C89A6,#04B7E2)}
.hrctaband h2{font-size:clamp(23px,3.3vw,32px);font-weight:700;margin-bottom:24px;color:#fff}
.hrctaband p{font-size:16px;line-height:1.5;color:#fff;margin:0 0 48px}
.hrctaband .hrcta2{justify-content:center}
.hrctaband .hrcta__tag{background:#1c89a6;color:#fff}
.hrctaband .hrcta--y .hrcta__tag{background:#fcdc4a;color:#1c89a6}
.hrctaband .hrbtn{border-color:#fff;box-shadow:none}
.hr .hrctaband .hrbtn--y{background:#fcdc4a;color:#1c89a6}
.hr .hrctaband .hrbtn--y:hover{background:#f2cd2e}
.hr .hrctaband .hrbtn--n{background:#1c89a6;color:#fff}
.hr .hrctaband .hrbtn--n:hover{background:#166f87}

/* ---------- 比較表 ---------- */
.hrtblwrap{overflow-x:auto}
.hrtbl{width:100%;border-collapse:separate;border-spacing:0;min-width:720px;font-size:16px}
.hrtbl th,.hrtbl td{padding:8px 16px;height:64px;text-align:center;vertical-align:middle}
/* ヘッダー行：列名を縦中央でロゴと揃える */
.hrtbl thead th{height:112px;background:#E9EFF1;font-weight:700;font-size:20px;color:#5E5C5C;
  vertical-align:middle}
.hrtbl thead th:first-child{background:transparent}
.hrtbl .hrlogo{justify-content:center}
.hrtbl .hrlogo img{height:28px}
/* 左端の費目ラベル：左寄せテキスト */
.hrtbl tbody th{text-align:left;font-size:16px;font-weight:400;color:#000;
  background:#F4F9FB;white-space:nowrap;padding-left:24px}
/* 区切り線は全列を横断させ、1つの表として統一 */
.hrtbl tbody td,.hrtbl tbody th{border-top:2px solid #E9EFF1}
.hrtbl tbody td{color:#5E5C5C;font-weight:400}
/* PD列：全高ハイライト。ヘッダーで蓋、行区切りは内部にも薄く通す */
.hrtbl .pdcol{color:#1C89A6;font-weight:600;
  border-left:4px solid #1C89A6;border-right:4px solid #1C89A6}
.hrtbl thead .pdcol{background:#CDE7EE;border-top:4px solid #1C89A6;border-radius:8px 8px 0 0}
.hrtbl tbody .pdcol{border-top:2px solid #E9EFF1}
.hrtbl tbody tr:first-child .pdcol{border-top:0}
.hrtbl tbody tr:last-child .pdcol{border-bottom:4px solid #1C89A6;border-radius:0 0 8px 8px}
.hrtbl .ng{color:#E23B3B}
/* ※注記：行を膨らませない上付き */
.hrtbl small{font-size:12px;color:#5E5C5C;font-weight:400;vertical-align:super;margin-left:1px}

/* ---------- 導入フロー ---------- */
.hrstep{background:#fff;border-radius:16px;padding:32px 48px;display:grid;
  grid-template-columns:96px minmax(0,1fr);gap:96px;align-items:center}
.hrstep+.hrstep{margin-top:16px}
.hrstep__i{display:grid;place-items:center}
.hrstep__t{font-size:20px;font-weight:500;color:#1C89A6;padding-bottom:16px;
  border-bottom:1px solid #E9EFF1;margin-bottom:16px}
.hrstep__t em{font-style:normal;font-family:'Inter',sans-serif;font-weight:500;color:#1C89A6;margin-right:4px}
.hrstep p{font-size:16px;line-height:1.5;color:#000;margin:0}
.hrstep .hrbtn{margin-top:16px}
/* Figma SP（node 18568:4587）はモバイルでもアイコンと文章を横並びのまま保つ。
   縦積みにはしない。 */
@media(max-width:700px){.hrstep{grid-template-columns:64px minmax(0,1fr);gap:24px;padding:24px}}

/* ---------- FAQ ---------- */
.hrfaq{border-top:1px solid #E9EFF1}
.hrq{border-bottom:1px solid #E9EFF1}
.hrq summary{list-style:none;cursor:pointer;padding:48px 52px 48px 0;position:relative;
  font-size:16px;font-weight:400;line-height:1.5;color:#737373;display:flex;gap:16px;align-items:flex-start}
.hrq summary::-webkit-details-marker{display:none}
.hrq summary b{font-family:'Inter',sans-serif;color:#98A2B3;font-weight:700;flex:none}
.hrq summary::after{content:"";position:absolute;right:14px;top:50%;margin-top:-12px;width:24px;height:24px;
  border-radius:50%;background:#737373;background-image:
    linear-gradient(#fff,#fff),linear-gradient(#fff,#fff);
  background-size:10px 1.5px,1.5px 10px;background-position:center;background-repeat:no-repeat;transition:transform .25s}
.hrq[open] summary::after{background-image:linear-gradient(#fff,#fff);background-size:10px 1.5px}
.hrq__a{margin:0;padding:0 52px 48px 32px;font-size:16px;line-height:1.5;color:#0E1F17}

/* ---------- 下部CTA ---------- */
.hrfoot-cta{padding:64px 0;color:#fff;text-align:center;
  background:linear-gradient(90deg,#1C89A6,#04B7E2)}
.hrfoot-cta h2{font-size:clamp(23px,3.3vw,32px);font-weight:700;color:#fff;margin-bottom:24px}
.hrfoot-cta p{font-size:16px;line-height:1.5;color:#fff;margin:0}

/* ---------- お問い合わせフォーム ---------- */
.hrcontact{background:#F4F9FB;padding:120px 0}
.hrcontact .hrsec__lead{margin-bottom:0}
.hrnotice{margin:28px 0 0;padding:18px 22px;border-radius:8px;font-size:14.5px;line-height:1.9}
.hrnotice--ok{background:#E7F6F0;border:1px solid #9ED9C3;color:#0F6B4F}
.hrnotice--ng{background:#FCECEA;border:1px solid #F0B4AC;color:#A32717}
.hrform{margin-top:48px;display:grid;gap:48px}
.hrform__row{display:grid;grid-template-columns:240px minmax(0,1fr);gap:24px;align-items:start}
.hrform__l{padding-top:28px;font-size:16px;font-weight:400;line-height:1.5;color:#000}
.hrform__l .req{display:inline-block;margin-left:8px;font-size:11px;font-weight:700;color:#fff;
  background:#D0342C;border-radius:3px;padding:2px 7px;vertical-align:2px}
.hrform__l .opt{display:inline-block;margin-left:8px;font-size:11px;font-weight:700;color:#5E5C5C;
  background:#E5EBEF;border-radius:3px;padding:2px 7px;vertical-align:2px}
.hrfield{width:100%;background:#fff;border:1px solid transparent;border-radius:4px;
  padding:28px 10px;font-family:inherit;font-size:16px;color:#000;line-height:1.5;
  -webkit-appearance:none;appearance:none}
.hrfield::placeholder{color:#D9D9D9}
.hrfield:focus{outline:none;border-color:#1C89A6;box-shadow:0 0 0 3px rgba(28,137,166,.18)}
textarea.hrfield{min-height:400px;resize:vertical;display:block}
.hrform__agree{display:flex;gap:12px;align-items:flex-start;font-size:13.5px;line-height:1.9;color:var(--dim)}
.hrform__agree input{margin-top:.45em;width:17px;height:17px;flex:none;accent-color:#1C89A6}
.hrsubmit{width:100%;border:0;border-radius:8px;padding:24px 32px;color:#fff;font-size:16px;font-weight:700;
  font-family:inherit;cursor:pointer;background:linear-gradient(90deg,#1C89A6,#04B7E2);
  transition:filter .18s,transform .18s}
.hrsubmit:hover{filter:brightness(1.06);transform:translateY(-2px)}
/* 自動送信よけ。表示はさせないが display:none だと埋められることがあるため画面外に置く */
.hr-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
@media(max-width:760px){
  .hrform__row{grid-template-columns:minmax(0,1fr);gap:10px}
  .hrform__l{padding-top:0}
  .hrfield{padding:16px 16px}
  textarea.hrfield{min-height:200px}
  .hrsubmit{padding:20px}
}

/* ---------- フッター ---------- */
.hrft{background:#fff;padding:96px 0 64px}
.hrft .hrlogo img{height:28px}
.hrft__in{display:flex;flex-wrap:wrap;gap:24px;align-items:flex-end;justify-content:space-between;margin-bottom:64px}
.hrft__n{display:flex;flex-wrap:wrap;gap:12px 24px;font-size:14px;font-weight:400;color:#000}
.hrft__n a:hover{color:var(--cy)}
.hrft__c{font-size:16px;color:#A5A5A5;margin:0;text-align:center}

@media(max-width:940px){.hrnav,.hrhd__cta{display:none}}

/* =========================================================
   スマートフォン調整
   （この位置より上のルールを上書きするので、末尾に置くこと）
   ========================================================= */
@media(max-width:940px){
  /* ナビは畳むが、問い合わせ導線だけはヘッダーに残す */
  .hrhd__cta{display:flex}
  .hrhd__cta .hrbtn--y{display:none}
  .hrhd__in{height:64px;gap:14px;padding:0 18px}
  .hrhd__cta .hrbtn{margin-left:auto;padding:10px 18px;font-size:13px}
  .hrlogo img{height:30px}

  .hr .wrap{padding:0 22px}
  .hrsec{padding:64px 0}
  .hrbrand{padding:60px 0 68px}
  .hrctaband{padding:60px 0}
  .hrfoot-cta{padding:60px 0}
  .hrcontact{padding:64px 0 76px}
  .hrbrand .hrlogo img{height:44px}
  .hrsec__lead{margin-bottom:36px}
  .hrben+.hrben{margin-top:56px}
}

@media(max-width:620px){
  /* 比較表は横スクロールするが、それが分かりにくいので明示する */
  .hrtblwrap{-webkit-overflow-scrolling:touch}
  .hrtblwrap::after{content:"→ 表は横にスクロールできます";display:block;margin-top:12px;font-size:12px;color:var(--dim);font-weight:400}

  .hrstep{padding:22px 20px;gap:16px}
  .hrflow3{gap:10px}
  .hrcard{padding:26px 20px}
  .hrfig{padding:20px 18px}
  .hrmkt-box,.hrmkt-box--demand,.hrmkt-box--supply{width:130px}
  .hrmkt-workers{width:130px}
}

@media(prefers-reduced-motion:reduce){.hr *{transition-duration:.01ms!important}}

/* ヒーローの見出し直下に置く一段大きめのリード。
   見出しと本文の差が開きすぎるので、その間を埋めて
   「何のサービスか」を一目で読ませる。 */
.hrhero__sub{font-size:clamp(18px,1.95vw,25px);font-weight:700;line-height:1.6;
  margin:0 0 14px;color:#fff;letter-spacing:-.01em}
@media(max-width:940px){.hrhero__sub{margin-bottom:10px}}

/* お役立ちコラム（LP下部の記事導線） */
.hrcol{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:20px;margin-top:36px}
.hrcol__c{display:flex;flex-direction:column;gap:12px;background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:26px 26px 24px;box-shadow:0 2px 14px rgba(20,40,60,.05);
  transition:transform .18s,box-shadow .18s}
.hrcol__c:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,120,150,.14)}
.hrcol__tag{align-self:flex-start;font-size:12px;font-weight:700;padding:4px 12px;border-radius:5px;
  background:var(--cy-l);color:var(--cy-d)}
.hrcol__t{font-size:17px;font-weight:800;line-height:1.6;color:var(--ink)}
.hrcol__m{font-size:13.5px;line-height:1.9;color:var(--dim)}
.hrcol__more{margin-top:auto;font-size:13.5px;font-weight:700;color:var(--cy-d)}

/* お役立ちコラムの記事カード（動的・面共通） */
.pdcols{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:22px;margin-top:36px}
.pdcol__c{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);
  border-radius:14px;overflow:hidden;box-shadow:0 2px 14px rgba(20,40,60,.05);
  transition:transform .18s,box-shadow .18s}
.pdcol__c:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(0,0,0,.10)}
.pdcol__th{aspect-ratio:1200/630;background-size:cover;background-position:center;border-bottom:1px solid var(--line)}
.pdcol__b{padding:18px 20px 20px;display:flex;flex-direction:column;gap:9px;flex:1}
.pdcol__tag{align-self:flex-start;font-size:12px;font-weight:700;padding:4px 11px;border-radius:5px;
  background:var(--cy-l);color:var(--cy-d)}
.pdcol__t{font-size:15.5px;font-weight:800;line-height:1.6;color:var(--ink);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.pdcol__more{margin-top:auto;font-size:13px;font-weight:700;color:var(--cy-d)}
.hrcol-more{text-align:center;margin-top:38px}
.hrmore-btn{display:inline-flex;align-items:center;gap:2px;font-family:var(--lt);font-weight:800;
  font-size:14.5px;letter-spacing:.01em;padding:15px 34px;border-radius:11px;text-decoration:none;
  color:var(--cy-d);border:1.6px solid var(--cy);background:#fff;
  transition:background .18s,color .18s,transform .18s,box-shadow .18s}
.hrmore-btn:hover{background:var(--cy);color:#fff;transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,90,110,.20)}
