:root{
    /* ===== ネツレン カラースキーム ===== */
    --red:#E6001C;        /* コーポレート／メインアクセント */
    --red-deep:#C20018;   /* ボタンhover等の沈め用 */
    --gray:#5F605C;       /* サポート：サブ見出し・ラベル */
    --gold:#9D7B38;       /* アクセント：格の装飾（線/点） */
    --silver:#858583;     /* アクセント：区切り罫・カード枠 */

    --ink:#222222;        /* 本文テキスト（#000は不使用） */
    --line:#858583;       /* 罫線＝銀 */
    --line-soft:#dcdcdc;  /* やわらかい区切り罫 */
    --fill:#eef0f1;       /* 写真プレースホルダ地 */
    --fill-2:#e4e6e7;     /* テキストバー地 */
    --fill-3:#f6f7f8;     /* カード地（ごく薄いグレー） */
    --paper:#ffffff; --muted:#5F605C;  /* ラベル等＝サポートグレー */
    --pad:32px;           /* セクション内側の余白（PC基準） */
    --note:#7a6a00; --note-bg:#fbf7df;
    --cream:#FBF6E9;      /* 背景のメリハリ：薄クリーム面 */
    --cream-2:#F7EFD6;    /* やや濃いクリーム */
    --yellow:#FCE36B;     /* サブ見出しピル */
    --gold-soft:#EFE2C4;  /* 金の薄い面 */
    --gold-dk:#7A5E26;    /* 金の濃い影色 */
    --company-img:url("images/img_company.jpg");
    --radius:18px;        /* 丸みアクセントの基準 */
    --navy:#003b83;       /* メッセージ本文：信頼感のあるネイビー */
    --font: "Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{margin:0;background:var(--paper);font-family:var(--font);color:var(--ink);line-height:1.6;font-size:16px;}
  .nr-site{width:100%;background:var(--paper);}

  /* ===== ページ全体の枠 ===== */
  
  
  
  
  
  

  
  

  /* ===== デバイス枠 ===== */
  
  
  
  

  /* ===== ワイヤー共通パーツ ===== */
  
  .nr-section{border-bottom:none;position:relative;width:100%;}
  .nr-section-inner{max-width:1200px;margin:0 auto;padding:5%;position:relative;}
  .nr-hero .nr-section-inner{padding:0;max-width:100%;}
  /* セクション交互背景でメリハリ */
  .nr-section.cream{background:var(--cream);}
  .nr-tag{position:absolute;top:8px;right:8px;background:var(--silver);color:#fff;
    font-size:10px;padding:2px 7px;border-radius:10px;letter-spacing:.03em;}
  .nr-eyebrow{font-size:16px;letter-spacing:.14em;color:var(--red);font-weight:700;margin:0 0 6px;}
  .nr-eyebrow::before{content:"";display:inline-block;width:18px;height:2px;
    background:var(--red);vertical-align:middle;margin-right:8px;}
  /* ===== 見出しラベル（ネツレン D案：赤マーク＋ロゴ角度の白2本スラッシュ＋白地プレート） ===== */
  /* ロゴ実測：白スラッシュは水平から約29°（左下→右上） */
  .nr-section-title{display:inline-flex;align-items:stretch;
    font-size:22px;font-weight:800;color:var(--ink);margin:4px 0 60px;letter-spacing:.02em;}
  
  /* 中央寄せ用ラッパ */
  .nr-section-title-wrap{text-align:center;}
  .nr-section-title-wrap .nr-section-title{text-align:left;}
  /* 赤マークブロック＋白2本スラッシュ（ロゴ角度29deg） */
  .nr-section-title .nr-mark{position:relative;width:34px;background:var(--red);
    border-radius:5px 0 0 5px;overflow:hidden;flex:none;}
  
  .nr-section-title .nr-mark::before,.nr-section-title .nr-mark::after{content:"";position:absolute;
    left:-40%;width:180%;height:5px;background:#fff;
    transform:rotate(-29deg);}
  .nr-section-title .nr-mark::before{top:34%;}
  .nr-section-title .nr-mark::after{top:60%;}
  /* 白地プレート（鉄板に貼ったラベル） */
  .nr-section-title .nr-text{background:#fff;border:2px solid var(--red);border-left:none;
    color:var(--ink);padding:11px 22px;border-radius:0 5px 5px 0;
    display:flex;align-items:center;font-size:28px;}

  /* ===== 見出し出現アニメーション ===== */
  /* プレート(mark+text)が左から開く → 文字が浮かぶ の2段階 */
  :root{
    --nr-anim-plate-dur:0.45s;
    --nr-anim-text-dur:0.40s;
    --nr-anim-text-delay:0.55s;
    --nr-anim-ease:cubic-bezier(.22,.61,.36,1);
  }
  .nr-anim .nr-mark,
  .nr-anim .nr-text{
    transform:scaleX(0);transform-origin:left center;opacity:0;
    transition:transform var(--nr-anim-plate-dur) var(--nr-anim-ease),
               opacity var(--nr-anim-plate-dur) var(--nr-anim-ease);}
  .nr-anim .nr-text-inner{
    display:inline-block;opacity:0;transform:translateY(10px);
    transition:opacity var(--nr-anim-text-dur) ease,
               transform var(--nr-anim-text-dur) var(--nr-anim-ease);
    transition-delay:var(--nr-anim-text-delay);}
  .nr-anim.nr-in .nr-mark,
  .nr-anim.nr-in .nr-text{transform:scaleX(1);opacity:1;}
  .nr-anim.nr-in .nr-text-inner{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion:reduce){
    .nr-anim .nr-mark,.nr-anim .nr-text,.nr-anim .nr-text-inner{
      transition:none;transform:none;opacity:1;}}

  
  /* 黄色の角丸ピル（サブ見出し） */
  .nr-pill{display:inline-block;background:var(--yellow);color:var(--ink);
    font-size:20px;font-weight:800;padding:1% 5%;border-radius:999px;
    margin:0 0 20px;}
  .nr-pill.nr-center{display:block;width:max-content;margin-left:auto;margin-right:auto;}
  .nr-sp-br{display:none;}
  .nr-heading-block{height:14px;background:var(--line);border-radius:7px;}
  .nr-text-line{height:9px;background:var(--fill-2);border-radius:5px;margin:7px 0;}
  .nr-text-line.nr-line--s{width:55%;} .nr-text-line.nr-line--m{width:78%;} .nr-text-line.nr-line--l{width:100%;}
  .nr-label{font-size:16px;color:var(--muted);}
  .nr-placeholder{background:var(--fill);border:1px solid var(--line-soft);border-radius:var(--radius);
    display:flex;align-items:center;justify-content:center;text-align:center;
    color:var(--muted);font-size:16px;position:relative;overflow:hidden;}
  .nr-placeholder::before{content:"";position:absolute;inset:6px;border-radius:12px;
    background:
      linear-gradient(45deg,transparent 49%,var(--line-soft) 49%,var(--line-soft) 51%,transparent 51%),
      linear-gradient(-45deg,transparent 49%,var(--line-soft) 49%,var(--line-soft) 51%,transparent 51%);
    opacity:.5;}
  .nr-placeholder span{position:relative;z-index:1;background:var(--fill);padding:2px 8px;border-radius:8px;}
  /* 赤い円アイコン＋白ピクト（④仕事の役割） */
  .nr-circle{width:96px;height:96px;border-radius:50%;background:var(--red);
    display:flex;align-items:center;justify-content:center;margin:0 auto 10px;
    color:#fff;font-size:34px;}
  
  .nr-btn{display:inline-flex;align-items:center;justify-content:center;
    border:2px solid var(--red);color:var(--red);font-size:16px;
    padding:10px 22px;border-radius:999px;background:#fff;font-weight:700;}
  .nr-btn.nr-btn--solid{background:var(--red);color:#fff;border-color:var(--red);text-decoration:none;}
  a.nr-ebook{text-decoration:none;background:#fff;margin-top:60px;transition:all .15s ease;}
  a.nr-ebook:hover{background:var(--red);color:#fff;box-shadow:0 4px 10px rgba(0,0,0,.25);}
  a.nr-ebook:active{background:var(--red);color:#fff;transform:translateY(1px);box-shadow:0 1px 3px rgba(0,0,0,.2);}
  .nr-ebook-row{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:16px;margin-top:60px;}
  a.nr-ebook,a.nr-pdf-dl{margin-top:0;}
  a.nr-pdf-dl{text-decoration:none;background:#fff;transition:all .15s ease;}
  a.nr-pdf-dl:hover{background:var(--red);color:#fff;box-shadow:0 4px 10px rgba(0,0,0,.25);}
  a.nr-pdf-dl:active{background:var(--red);color:#fff;transform:translateY(1px);box-shadow:0 1px 3px rgba(0,0,0,.2);}
  
  .nr-note{background:var(--note-bg);border:1px solid #e7dca0;color:var(--note);
    font-size:16px;padding:7px 10px;border-radius:10px;margin-top:10px;line-height:1.5;}
  .nr-video{position:relative;background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("images/img_company.jpg") center/cover;border:1px solid var(--line-soft);
    border-radius:var(--radius);display:flex;align-items:center;justify-content:center;height:300px;text-decoration:none;}
  .nr-video::after{content:"▶";color:#fff;background:var(--red);
    width:48px;height:48px;border-radius:50%;display:flex;align-items:center;
    justify-content:center;font-size:15px;padding-left:3px;}
  .nr-grid{display:grid;gap:12px;}
  .nr-office-link{background:var(--red);border:1px solid var(--red);border-radius:12px;
    font-size:16px;color:#fff;padding:13px 18px;display:flex;align-items:center;gap:6px;
    text-decoration:none;font-weight:700;
    box-shadow:0 2px 6px rgba(230,0,28,.25);
    transition:transform .12s ease,box-shadow .12s ease,background-color .12s ease;}
  .nr-office-link:hover{background:#c70019;transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(230,0,28,.38);}
  .nr-office-link:active{transform:translateY(1px);
    box-shadow:0 1px 4px rgba(230,0,28,.30);}
  .nr-office-link .nr-office-icon{margin-left:auto;color:#fff;font-size:18px;}

  /* ===== ヘッダー（固定ナビのワイヤー表現） ===== */
  .nr-nav-wrapper{border-bottom:3px solid var(--red);background:#fff;}
  .nr-nav{display:flex;align-items:center;justify-content:space-between;
    padding:12px var(--pad);max-width:1200px;margin:0 auto;}
  .nr-nav .nr-logo{height:60px;display:flex;align-items:center;}
  .nr-nav .nr-logo img{height:100%;width:auto;display:block;object-fit:contain;}
  
  /* MENUボタン（PC/SP共通） */
  .nr-menu-btn{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
    background:var(--gold);color:#fff;width:64px;height:64px;border-radius:8px;padding-top:6px;
    text-decoration:none;flex:none;cursor:pointer;
    position:fixed;top:8px;right:24px;z-index:1001;}
  .nr-menu-btn .nr-menu-bars{display:flex;flex-direction:column;gap:4px;align-items:center;}
  .nr-menu-btn .nr-menu-bars span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;}
  .nr-menu-btn .nr-menu-txt{font-size:10px;font-weight:800;letter-spacing:.1em;color:#fff;margin-top:2px;}

  /* ===== 展開メニュー オーバーレイ ===== */
  .nr-nav-overlay{position:fixed;inset:0;z-index:1000;background:var(--cream);
    display:none;flex-direction:column;}
  .nr-nav-overlay.nr-open{display:flex;}
  body.nr-nav-locked #nr-menu-open{display:none;}
  .nr-nav-overlay-head{display:flex;align-items:center;justify-content:space-between;
    padding:12px 24px;border-bottom:1px solid var(--cream-2);}
  .nr-nav-overlay-head .nr-logo{height:60px;display:flex;align-items:center;}
  .nr-nav-overlay-head .nr-logo img{height:60px;width:auto;display:block;object-fit:contain;}
  .nr-nav-close{display:flex;align-items:center;justify-content:center;
    width:48px;height:48px;border-radius:50%;background:transparent;border:2px solid var(--gold);
    color:var(--gold);cursor:pointer;position:relative;transition:background .15s,border-color .15s;flex:none;}
  .nr-nav-close::before,.nr-nav-close::after{content:'';position:absolute;
    width:20px;height:2.5px;background:var(--gold);border-radius:2px;top:50%;left:50%;transition:background .15s;}
  .nr-nav-close::before{transform:translate(-50%,-50%) rotate(45deg);}
  .nr-nav-close::after{transform:translate(-50%,-50%) rotate(-45deg);}
  .nr-nav-close:hover{background:var(--gold);}
  .nr-nav-close:hover::before,.nr-nav-close:hover::after{background:#fff;}
  .nr-nav-overlay-body{flex:1;display:flex;flex-direction:column;justify-content:center;
    padding:24px 48px 16px;overflow-y:auto;}
  .nr-nav-list{list-style:none;display:flex;flex-direction:column;gap:0;}
  .nr-nav-list li{border-bottom:1px solid var(--cream-2);}
  .nr-nav-list li:first-child{border-top:1px solid var(--cream-2);}
  .nr-nav-list a{display:flex;align-items:center;gap:14px;padding:13px 8px;
    color:var(--gold);font-size:16px;font-weight:700;text-decoration:none;
    transition:padding-left .15s,color .15s;}
  .nr-nav-list a .nr-nav-arrow{color:var(--red);font-size:12px;flex:none;transition:transform .15s;}
  .nr-nav-list a:hover{padding-left:16px;color:var(--red);}
  .nr-nav-list a:hover .nr-nav-arrow{transform:translateX(4px);}
  .nr-nav-overlay-foot{padding:20px 48px 28px;}
  .nr-nav-corp-btn{display:block;text-align:center;border:2px solid var(--gold);border-radius:999px;
    color:var(--gold);font-size:15px;font-weight:700;padding:13px 0;text-decoration:none;
    transition:background .15s,color .15s;letter-spacing:.05em;}
  .nr-nav-corp-btn:hover{background:var(--gold);color:#fff;}

  /* ===== ② メッセージ ビジュアル ===== */
  .nr-msg-text{font-size:18px;font-weight:700;line-height:2;margin:0;color:var(--navy);text-align:left;}
  
  /* PC：イラスト全景の上に中央オーバーレイ座布団 */
  .nr-msg-visual{position:relative;border-radius:18px;overflow:hidden;margin-top:8px;}
  .nr-msg-visual img{display:block;width:80%;height:auto;margin:0 auto;}
  .nr-msg-visual .nr-msg-overlay{position:absolute;top:0;left:0;right:0;padding:22px 22px 0;display:flex;justify-content:center;}
  .nr-msg-visual .nr-card{background:rgba(255,255,255,.9);border-radius:14px;padding:16px 20px;
    box-shadow:0 4px 18px rgba(0,0,0,.12);max-width:92%;}
  /* SP：テキストを画像の上に独立配置、下端を画像へ少し潜り込ませる */
  .nr-msg-visual-sp{margin-top:8px;display:none;}
  .nr-msg-visual-sp .nr-card{position:relative;z-index:2;background:rgba(255,255,255,.9);
    border-radius:14px;padding:14px 16px;box-shadow:0 4px 18px rgba(0,0,0,.12);margin-bottom:-22px;}
  .nr-msg-visual-sp .nr-img-wrap{border-radius:18px;overflow:hidden;}
  .nr-msg-visual-sp img{display:block;width:100%;height:auto;}
  /* 出し分け */
  
  

  /* ===== ヒーロー ===== */
  .nr-hero{padding:0;background-color:#333;}
  .nr-hero .nr-keyvisual{height:auto;}
  
  .nr-hero .nr-keyvisual{background:linear-gradient(160deg,var(--cream),var(--fill));
    display:flex;flex-direction:column;align-items:center;justify-content:space-between;position:relative;overflow:hidden;padding:0;}
  #message{border-top:3px solid var(--red);}
  /* スライドショー */
  .nr-kv-video{position:relative;width:100%;height:auto;display:block;z-index:0;
    background:#333;}
  /* スライド上のオーバーレイ（暗め・テキスト視認性確保） */
  .nr-keyvisual-overlay{display:none;}
  /* テキスト・ボタンをスライドの上に */
  .nr-hero .nr-hero-catch{width:80%;position:relative;z-index:2;}
  .nr-hero-title{display:none;font-size:2.1667vw;margin:0;color:var(--red);font-weight:800;
    letter-spacing:.02em;background:rgba(255,255,255,.82);padding:1vw 2vw;border-radius:14px;
    box-shadow:0 4px 16px rgba(0,0,0,.08);}
  .nr-hero .nr-btn.nr-btn--solid{display:none;}
  .nr-hero .nr-btn.nr-btn--solid i{margin-right:0.6667vw;}
  .nr-hero .nr-hero-catch .nr-heading-block{height:20px;margin-bottom:10px;}
  
  .nr-scroll-cue{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);
    font-size:16px;letter-spacing:.2em;color:var(--red);font-weight:700;}
  .nr-scroll-cue::after{content:"";display:block;width:2px;height:24px;
    background:var(--red);margin:6px auto 0;}

  .nr-two-col{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:center;}
  
  /* ③ どんな会社？ 層1 リード */
  .nr-lead{font-size:30px;font-weight:800;line-height:1.7;margin:0 0 6px;color:var(--ink);letter-spacing:3px;}
  
  /* リード背景（B案／D案 両対応。クラス付け替えで切替） */
  .nr-lead-bg{position:relative;border-radius:var(--radius);overflow:hidden;margin:8px 0 4px;
    background-image:var(--company-img);background-size:cover;background-position:center;
    display:flex;flex-direction:column;}
  .nr-lead-bg .nr-lead{position:relative;z-index:2;color:#fff;margin:0;}
  .nr-lead-bg::before{content:"";position:absolute;inset:0;z-index:1;}
  /* D案：下グラデ＋下寄せ中央 */
  .nr-lead-bg.nr-lead-bg--d{min-height:360px;align-items:center;justify-content:flex-end;padding:26px;text-align:center;}
  .nr-lead-bg.nr-lead-bg--d::before{background:linear-gradient(180deg,rgba(0,0,0,0) 30%,rgba(0,0,0,.78) 100%);}
  /* B案：左グラデ＋左寄せ */
  .nr-lead-bg.nr-lead-bg--b{min-height:220px;align-items:flex-start;justify-content:center;padding:26px 30px;text-align:left;}
  .nr-lead-bg.nr-lead-bg--b::before{background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.45) 45%,rgba(0,0,0,0) 80%);}

  /* ③ 層2 数字カード（上下リボン帯・高さ揃え） */
  .nr-stat-head{font-size:clamp(16px,4.5vw,24px);font-weight:800;color:#fff;background:var(--red);
    display:inline-block;margin:clamp(20px,6vw,50px) 0;padding:0.6em 1.4em;border-radius:999px;
    white-space:nowrap;}
  .nr-num-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
  
  .nr-num-card{border:1px solid var(--line-soft);border-radius:16px;background:#fff;
    padding:0;text-align:center;overflow:hidden;display:flex;flex-direction:column;}
  .nr-num-card .nr-ribbon{height:8px;background:linear-gradient(90deg,#C9A85C,#F3DC8E,#9D7B38,#E6CF86,#7A5E26);}
  .nr-num-card .nr-inner{padding:16px 12px;flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;}
  .nr-num-card .nr-big{font-size:28px;font-weight:800;color:var(--red);line-height:1.05;letter-spacing:.01em;}
  
  .nr-num-card .nr-unit{font-size:16px;font-weight:700;}
  .nr-num-card .nr-caption{font-size:16px;color:var(--gray);margin-top:7px;order:-1;margin-top:0;margin-bottom:5px;}
  .nr-num-card .nr-sub{font-size:16px;color:var(--gold-dk);font-weight:700;margin-top:3px;}
  /* ③ 層3 意味づけ（東証プライム＝格。金で品よく） */
  .nr-mean{border:2px solid var(--gold);border-radius:var(--radius);
    background:var(--gold-soft);margin-top:24px;padding:20px;}
  .nr-mean-head{font-size:16px;font-weight:800;color:var(--gold);margin:0 0 12px;}
  .nr-mean-head::before{content:"";display:inline-block;width:9px;height:9px;
    background:var(--gold);border-radius:50%;margin-right:8px;vertical-align:middle;}
  
  .nr-mean .nr-row{margin:0 0 10px;}
  .nr-mean .nr-row:last-child{margin-bottom:0;}
  .nr-mean .nr-value{font-size:16px;line-height:1;color:var(--ink);}
  .nr-mean .nr-value b{font-weight:800;color:var(--red);}
  .nr-req-th-kyuyo,.nr-req-th-jikan{font-size:16px;}

  /* ===== ④ どんな仕事 ===== */
  /* 選択ラベル */
  .nr-job-ask{font-size:16px;color:var(--gray);text-align:center;margin:0 0 18px;line-height:1.6;}
  .nr-job-banner{display:flex;align-items:center;gap:12px;margin:28px 0 14px;padding:12px 16px;
    background:var(--ink);border-radius:10px;}
  .nr-job-num{font-size:16px;font-weight:800;color:#fff;background:var(--red);
    padding:4px 14px;border-radius:999px;white-space:nowrap;}
  .nr-job-desc{font-size:16px;color:#ddd;line-height:1.5;}
  .nr-job-wrap{display:flex;flex-direction:column;gap:18px;}
  /* 共通 */
  .nr-job-icon{width:120px;height:120px;border-radius:50%;object-fit:cover;border:3px solid var(--red);background:#fff;flex:none;}
  .nr-job-name{font-size:30px;font-weight:800;color:var(--red);}
  .nr-job-short{font-size:16px;font-weight:700;color:var(--ink);margin:8px 0;line-height:1.5;}
  ul.nr-points{margin:0;padding:0;list-style:none;}
  ul.nr-points li{font-size:16px;line-height:1.6;color:var(--ink);padding-left:16px;position:relative;margin-bottom:6px;}
  ul.nr-points li::before{content:"";position:absolute;left:0;top:8px;width:7px;height:7px;background:var(--gold);border-radius:50%;}
  .nr-subhead{font-size:16px;font-weight:800;color:var(--ink);margin:12px 0 4px;padding-left:10px;border-left:3px solid var(--red);}
  .nr-job-photo{width:100%;border-radius:14px;display:block;object-fit:cover;margin-top:14px;}
  .nr-job-foot{text-align:center;margin-top:12px;}
  a.nr-job-shorts{display:inline-flex;align-items:center;gap:8px;color:var(--red);font-weight:700;
    font-size:16px;text-decoration:none;border:2px solid var(--red);border-radius:999px;padding:8px 16px;margin-top:3%;
    background:#fff;transition:all .15s ease;}
  a.nr-job-shorts:hover{background:var(--red);color:#fff;box-shadow:0 4px 10px rgba(0,0,0,.25);}
  a.nr-job-shorts:active{background:var(--red);color:#fff;transform:translateY(1px);box-shadow:0 1px 3px rgba(0,0,0,.2);}
  /* 案1：縦積み */
  .nr-job{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:20px;}
  .nr-job-head{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;margin-bottom:10px;}
  /* 案2：写真上部・アイコン重ね */
  .nr-job--alt{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);overflow:hidden;margin-top:5%;}
  .nr-job-hero{position:relative;}
  .nr-job-photo--alt{width:100%;height:300px;object-fit:cover;display:block;}
  .nr-job-icon--alt{width:100px;height:100px;border-radius:50%;object-fit:cover;border:3px solid var(--red);
    background:#fff;position:absolute;left:50%;bottom:-50px;transform:translateX(-50%);
    box-shadow:0 2px 10px rgba(0,0,0,.25);}
  .nr-fade{opacity:0;transition:opacity 1.8s ease;}
  .nr-fade.nr-fade-in{opacity:1;}
  .nr-job-body--alt{padding:5%;text-align:center;}
  .nr-job-body--alt ul.nr-points{text-align:left;display:block;max-width:100%;}
  .nr-job-body--alt .nr-subhead{text-align:left;}
  .nr-job-body--alt .nr-job-short{text-align:left;}
  .nr-voice{border:1px solid var(--line-soft);border-radius:var(--radius);padding:16px 16px 18px;
    background:#fff;position:relative;display:flex;flex-direction:column;gap:10px;margin-bottom:0;}
  .nr-voice .nr-voice-who{display:flex;align-items:center;gap:10px;}
  .nr-voice .nr-avatar{width:52px;height:52px;border-radius:50%;background:#fff;
    border:2px solid var(--red);flex:none;overflow:hidden;}
  .nr-voice .nr-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
  .nr-voice .nr-name{font-weight:800;font-size:16px;color:var(--red);}
  .nr-voice .nr-text-body{position:relative;background:#FDFBF5;border:1px solid #F0E9D6;border-radius:12px;
    padding:12px 14px;font-size:16px;line-height:1.85;color:var(--ink);margin:0;}
  .nr-voice .nr-text-body::before{content:"";position:absolute;top:-7px;left:18px;width:14px;height:14px;
    background:#FDFBF5;border-left:1px solid #F0E9D6;border-top:1px solid #F0E9D6;transform:rotate(45deg);border-radius:2px;}

  .nr-footer{background:var(--red);color:#fff;padding:9px var(--pad);font-size:12px;text-align:center;}

  /* SP固定追尾バー（案2：白地＋上端カラーライン）。PCでは非表示、SPで表示 */
  .nr-spbar{display:none;}
  .nr-contact-fab{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
    position:fixed;top:92px;right:24px;z-index:1001;width:64px;height:64px;
    background:var(--red);color:#fff;text-decoration:none;border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.25);}
  .nr-contact-fab i{font-size:20px;}
  .nr-contact-fab span{font-size:7px;font-weight:800;line-height:1.2;white-space:nowrap;}
  .nr-footer .nr-heading-block{background:#6a6a6a;width:120px;margin-bottom:10px;}
  .nr-footer .nr-text-line{background:#4f4f4f;}

  /* ===== ⑤ どんな働き方？ シフトタイムライン（案A） ===== */
  .nr-workstyle-card{border:1px solid var(--line-soft);border-radius:14px;background:#fff;padding:3%;margin:8px 0 60px;}
  .nr-workstyle-card .nr-job-tag{font-size:20px;font-weight:800;color:var(--ink);margin:0 0 20px;}
  .nr-timeline{margin:10px 0 4px;}
  .nr-timeline-row{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
  .nr-timeline-label{width:130px;font-size:14px;font-weight:700;color:var(--ink);flex:none;}
  
  .nr-timeline-bar{flex:1;position:relative;height:26px;background:#f0f0f0;border-radius:6px;overflow:hidden;}
  .nr-timeline-seg{position:absolute;top:0;height:100%;display:flex;align-items:center;justify-content:center;
    font-size:12px;font-weight:700;color:#fff;border-right:2px solid #fff;}
  .nr-timeline-scale{display:flex;margin-left:140px;font-size:9px;color:var(--gray);justify-content:space-between;}
  
  .nr-seg--red{background:var(--red);} .nr-seg--navy{background:var(--navy);} .nr-seg--gold{background:var(--gold);}
  .nr-seg--day{background:#2e9e5b;}
  .nr-workstyle-photo{width:100%;height:300px;object-fit:cover;border-radius:12px;margin-top:14px;display:block;}
  ul.nr-workstyle-points{margin:6px 0 14px;padding:0;list-style:none;}
  ul.nr-workstyle-points li{font-size:16px;line-height:1.7;color:var(--ink);padding-left:16px;position:relative;margin-bottom:6px;}
  ul.nr-workstyle-points li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;background:var(--gold);border-radius:50%;}

  /* ===== ⑥ 集合写真 / ⑦ 住居写真 / ⑨ マップ 画像 ===== */
  .nr-group-photos{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px;}
  
  .nr-group-photos img{width:100%;height:200px;object-fit:cover;border-radius:12px;display:block;}
  .nr-two-col img.nr-residence-photo{width:100%;height:100%;min-height:150px;object-fit:cover;border-radius:12px;display:block;}
  .nr-map-img{width:100%;height:auto;border-radius:12px;display:block;margin-bottom:14px;}

  .nr-voice-grid{grid-template-columns:1fr 1fr;}
  .office-grid{grid-template-columns:1fr 1fr 1fr;}

  /* ===== レスポンシブ：1200px以下（ヒーローKVをフル幅化） ===== */
  @media (max-width:1200px){
    .nr-hero .nr-section-inner{max-width:100%;}
  }

  /* ===== レスポンシブ：768px以下（スマホ） ===== */
  @media (max-width:768px){
    .nr-footer{font-size:10px;}
    body{padding-bottom:62px;}
    .nr-contact-fab{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
      position:fixed;right:0;top:25%;transform:translateY(-50%);z-index:1002;
      width:64px;height:64px;background:var(--red);color:#fff;text-decoration:none;
      border-radius:8px 0 0 8px;box-shadow:-2px 2px 10px rgba(0,0,0,.25);
      opacity:0;pointer-events:none;transition:opacity .3s ease;}
    .nr-contact-fab.nr-fab-show{opacity:1;pointer-events:auto;}
    .nr-contact-fab i{font-size:20px;}
    .nr-contact-fab span{font-size:7px;font-weight:800;line-height:1.2;white-space:nowrap;}
    .nr-spbar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:1002;      background:#fff;box-shadow:0 -3px 14px rgba(0,0,0,.10);}
    .nr-spbar-btn{flex:1 1 50%;display:flex;flex-direction:column;align-items:center;justify-content:center;
      gap:3px;height:62px;font-size:14px;font-weight:800;text-decoration:none;line-height:1.25;
      text-align:center;position:relative;}
    .nr-spbar-btn::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;}
    .nr-spbar-btn i{font-size:17px;}
    .nr-spbar-pdf{color:var(--gold);}
    .nr-spbar-pdf::before{background:var(--gold);}
    .nr-spbar-yt{color:var(--red);border-left:1px solid #eee;}
    .nr-spbar-yt::before{background:var(--red);}
    .nr-section-inner{max-width:100%;}
    .nr-sp-br{display:inline;}
    /* SP：MENUボタンの右上追尾を一時解除（クライアント要望。戻す時はこの1ブロックを削除）。
       ベースの position:fixed/top/right を static で打ち消し、ヘッダー内のロゴ右隣に収める。 */
    .nr-menu-btn{position:static;top:auto;right:auto;width:56px;height:56px;}
    .nr-job-body--alt{padding:20% 5% 10%;}
    .nr-workstyle-card .nr-job-tag{text-align:center;}
    .nr-ebook-row{flex-direction:column;gap:12px;margin-top:20px;}
    a.nr-ebook,a.nr-pdf-dl{font-size:3.5vw;}
    .nr-nav-overlay-body{justify-content:flex-start;padding:8px 24px 16px;}
    .nr-nav-overlay-foot{padding:16px 24px 86px;}
    .nr-video{height:160px;}
    .nr-job-photo--alt{height:200px;}
    .nr-msg-text{line-height:1.5;}
    .nr-job-name{font-size:17px;}
    .nr-timeline-seg{font-size:9px;}
    .nr-timeline-seg.nr-seg--night2{font-size:7px;}
    .nr-job-icon{width:88px;height:88px;}
    .nr-workstyle-photo{height:150px;}
:root{--pad:18px;}
    .nr-section-title{font-size:17px;margin:4px 0 30px;}
    .nr-section-title .nr-mark{width:28px;}
    .nr-section-title .nr-text{padding:10px 16px;width:100%;text-align:center;display:block;margin-left:-10px;}
    .nr-circle{width:80px;height:80px;font-size:28px;}
    .nr-hero .nr-btn.nr-btn--solid{font-size:13px;padding:10px 16px;}
    .nr-nav .nr-logo{height:50px;}
    .nr-nav .nr-logo img{height:60px;margin-top:10px;margin-left:6px;}
    .nr-msg-text{font-size:15px;}
    .nr-msg-text-sp{font-size:3.5vw;line-height:1.7;}
    /* SP：横幅優先。動画は横幅100%・比率で高さ自動、全体表示。h1は左上バッジ、YouTubeボタンは非表示（追尾バーに集約） */
    .nr-hero .nr-keyvisual{height:auto;display:block;padding:0;}
    .nr-hero .nr-hero-catch{width:auto;position:static;transform:none;}
    .nr-hero-title{display:block;position:absolute;top:16px;left:50%;transform:translateX(-50%);width:50%;
      background:rgba(255,255,255,.85);border-radius:12px;padding:10px 10px;
      box-shadow:0 4px 16px rgba(0,0,0,.10);font-size:11px;font-weight:800;color:var(--red);
      letter-spacing:.01em;line-height:1.4;text-align:center;z-index:2;}
    .nr-hero .nr-btn.nr-btn--solid{display:none;}
    .nr-two-col{grid-template-columns:1fr;}
    .nr-lead{font-size:3.5vw;letter-spacing:1px;}
    .nr-num-grid{grid-template-columns:1fr 1fr;gap:12px;}
    .nr-num-card .nr-big{font-size:24px;}
    .nr-num-card .nr-sub{font-size:3vw;}
    .nr-mean-head{font-size:15px;}
    .nr-mean .nr-value{font-size:13px;line-height:1.6;}
    .nr-req-th-kyuyo{font-size:4vw;}
    .nr-req-th-jikan{font-size:3vw;}
    .nr-timeline-label{width:64px;font-size:11px;white-space:nowrap;}
    .nr-timeline-scale{margin-left:60px;}
    .nr-group-photos{grid-template-columns:1fr;}
    .nr-msg-visual{display:none;}
    .nr-msg-visual-sp{display:block;}
    .nr-voice-grid{grid-template-columns:1fr;}
    .office-grid{grid-template-columns:1fr;}
    .nr-offices-lead{font-size:3.4vw;white-space:nowrap;}
    .nr-section h2{font-size:16px;}
    .nr-section p[style*="line-height:2"]{font-size:12px;}
  }

  /* 制作用セクション識別タグは本番非表示 */
  .nr-tag{display:none;}