:root {
      /* Core Colors - 重厚感のあるネイビー×ゴールド */
      --navy-dark: #0f1419;
      --navy: #1a2332;
      --navy-medium: #2d3e50;
      --navy-light: #3d4f63;
      --navy-soft: #4a5f7a;
      
      --gold: #c9a961;
      --gold-dark: #a68948;
      --gold-light: #d4b876;
      --gold-pale: #f5ead8;
      
      --slate: #64748b;
      --slate-light: #94a3b8;
      --slate-pale: #cbd5e1;
      
      --bg: #fafbfc;
      --bg-warm: #fdfcfa;
      --surface: #ffffff;
      --border: #e8ecef;
      --border-strong: #d4dce3;
      
      --text: #1e293b;
      --text-medium: #475569;
      --text-light: #64748b;
      
      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.08);
      --shadow: 0 4px 12px rgba(15, 20, 25, 0.12);
      --shadow-lg: 0 8px 24px rgba(15, 20, 25, 0.15);
      --shadow-xl: 0 16px 48px rgba(15, 20, 25, 0.2);
      
      /* Radius */
      --radius: 4px;
      --radius-lg: 8px;
      --radius-xl: 12px;
      
      --max-width: 1200px;

      --r: 8px;
      --r2: 12px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
      background: 
        radial-gradient(900px 520px at 10% 0%, rgba(201,169,97,.08), transparent 60%),
        radial-gradient(900px 520px at 90% 10%, rgba(26,35,50,.08), transparent 60%),
        var(--bg);
      color: var(--text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .serif {
      font-family: inherit !important;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 20px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    
    /* Brand logo sizing (prevent oversized logo) */
    .brand img{
      height: 34px;
      width: auto;
      max-width: none;
      flex: 0 0 auto;
      object-fit: contain;
    }
    @media (min-width: 768px){
      .brand img{ height: 40px; }
    }

.brand-mark {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-weight: 800;
      font-size: 22px;
      position: relative;
      box-shadow: var(--shadow);
    }

    .brand-mark::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .nav {
      display: none;
      gap: 4px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .nav { display: flex; }
    }

    .nav a {
      padding: 10px 18px;
      color: var(--text-medium);
      font-size: 14px;
      font-weight: 500;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      letter-spacing: 0.01em;
    }

    .nav a:hover {
      color: var(--navy);
      background: var(--gold-pale);
    }

    .header-contact {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* Hamburger (mobile only) */
    .hamburger{
      display: none;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201,169,97,.35);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-direction: column;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger span{
      display:block;
      width: 20px;
      height: 2px;
      background: var(--navy);
      border-radius: 99px;
    }

    @media (max-width: 768px){
      .hamburger{ display: inline-flex; }
      /* スマホ版: ヘッダーをロゴ+社名+ハンバーガーのみに簡略化 */
      .header-contact .tel{ display: none !important; }
      .header-contact .btn{ display: none; }
    }

    .tel {
      display: none;
      flex-direction: column;
      align-items: flex-end;
    }

    @media (min-width: 1024px) {
      .tel { display: flex; }
    }

    .tel-number {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    .tel-hours {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
      letter-spacing: 0.02em;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-lg);
      font-weight: 700;
      font-size: 15px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
      letter-spacing: 0.02em;
      font-family: inherit;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-color: var(--navy);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .btn-gold:hover {
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-large {
      padding: 18px 36px;
      font-size: 16px;
    }

    /* Hero */
    .hero{
      
      background-image: url("../img/hero_bg.webp");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      padding: 42px 0 20px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(600px 400px at 20% 50%, rgba(201,169,97,.15), transparent 70%),
        radial-gradient(500px 350px at 80% 30%, rgba(26,35,50,.05), transparent 60%);
      pointer-events: none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 32px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .kdot{ width:10px; height:10px; border-radius: 99px; background: var(--gold); }

    h1{
      margin: 12px 0 10px;
      font-size: clamp(26px, 3.4vw, 42px);
      line-height: 1.15;
      letter-spacing: -.01em;
      color: var(--navy);
    }
    .hero p{
      margin:0;
      color: var(--text-medium);
      font-size: 15px;
      line-height: 1.85;
    }

    .hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }
    .micro{
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.65;
    }

    .chips{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top: 16px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.90);
      color: var(--text);
      font-size: 13px;
      font-weight: 700;
    }
    .chip svg{ width:16px; height:16px; }
    .chip:hover{ border-color: var(--gold); box-shadow: var(--shadow); }

    /* 修正箇所: hero-cardを廃止し、画像コンテナのみに */
    .hero-illus { 
      width: 100%; 
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* 枠線や背景を削除し、画像が浮かび上がるように調整 */
    }
    .hero-illus img { 
      width: 100%; 
      height: auto; 
      display: block;
      /* 必要に応じて少し角を丸めるのみ */
      border-radius: var(--radius-xl);
    }

    /* スマホ表示用の画像：デフォルトで非表示 */
    .hero-illus-mobile {
      display: none;
    }

    /* PC表示用の画像：デフォルトで表示 */
    .hero-illus-desktop {
      display: flex;
    }

    @media (max-width: 768px){
      .hero-grid{ grid-template-columns: 1fr; }

      /* モバイル時：ファーストビューのタグ群（添付箇所）を非表示 */
      .micro,
      .chips{
        display: none;
      }
      
      /* スマホ表示時：モバイル用画像を表示、デスクトップ用画像を非表示 */
      .hero-illus-mobile {
        display: flex;
        margin: 20px 0 24px 0;
      }
      
      .hero-illus-desktop {
        display: none;
      }
    }

    /* Sections */
    .section, .section-soft {
      padding: 80px 0;
    }

    .section-soft {
      background: var(--bg-warm);
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-label {
      display: inline-block;
      padding: 6px 16px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 999px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-family: inherit;
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Grid layout & Cards */
    .issue-grid, .service-grid {
      display: grid;
      gap: 24px;
      margin-top: 40px;
    }

    .issue-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    @media (max-width: 900px){ .service-grid { grid-template-columns: 1fr; } }

    .issue-card, .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .issue-card:hover, .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .service-tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 999px;
      margin-bottom: 16px;
    }

    /* Footer */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 60px 0 32px;
    }

    /* Additional UI details */
    .issue-icon {
      width: 56px; height: 56px; background: var(--gold-pale); font-size: 28px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; border-radius: 50%;
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed; bottom: 24px; right: 24px;
      display: flex; gap: 12px; z-index: 90;
    }

    @media (max-width: 640px) {
      .floating-cta { left: 24px; right: 24px; flex-direction: column; }
    }
  
/* =========================================================
   Friendly UI overrides (layout/テキスト/配置は変更しない)
   - palette: gold & navy keep
   - only: design / buttons / icons
   ========================================================= */
:root{
  /* shadows: soften to reduce 'luxury pressure' */
  --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow:    0 6px 16px rgba(15, 20, 25, 0.10);
  --shadow-lg: 0 10px 28px rgba(15, 20, 25, 0.12);
  --shadow-xl: 0 18px 52px rgba(15, 20, 25, 0.16);
}

/* Buttons: keep size/padding, make them more 'approachable' */
.btn{
  border-radius: 999px;
  border-width: 1px;
  letter-spacing: 0.01em;
}
.btn-primary{
  color: #fff;
  border-color: rgba(201,169,97,.35);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  box-shadow: 0 10px 22px rgba(26,35,50,.14);
  position: relative;
}
.btn-primary::after{
  content:"";
  position:absolute; inset: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,169,97,.26), rgba(201,169,97,.10));
  opacity: .95;
  pointer-events:none;
}
.btn-primary > *{ position: relative; z-index: 1; }
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26,35,50,.16);
}

.btn-gold{
  color: var(--navy);
  border-color: rgba(26,35,50,.12);
  background: linear-gradient(135deg, rgba(201,169,97,.92) 0%, rgba(212,184,118,.92) 100%);
  box-shadow: 0 10px 22px rgba(15,20,25,.08);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15,20,25,.10);
}

/* Chips: keep layout, refine icon & border */
.chip{
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,.28);
  background: rgba(255,255,255,.88);
}
.chip svg{
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Issue icons: replace emoji with consistent outline icons */
.issue-icon{
  background: rgba(245,234,216,.70);
  border: 1px solid rgba(201,169,97,.35);
  box-shadow: 0 10px 20px rgba(15,20,25,.06);
  color: var(--navy);
  font-size: 0; /* hide emoji sizing if any left */
}
.issue-icon svg{
  width: 26px;
  height: 26px;
  display:block;
}
.issue-icon svg *{
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Minor: keep headings but reduce 'formal' feel */
.section-label{
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,.28);
  background: rgba(245,234,216,.55);
}


    .hero::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(253,252,250,.90) 0%, rgba(253,252,250,.78) 45%, rgba(253,252,250,.65) 100%);
      pointer-events:none;
    }
    .hero > .container{ position: relative; z-index: 1; }

    /* Services: 2-column (目的：子ページ誘導) */
    .service-card{ display:flex; flex-direction:column; }

    /* PCではカード全体をリンク化（スマホはCTAのみ） */
    .service-card{ position: relative; }
    @media (hover:hover) and (pointer:fine){
      .service-card{ cursor: pointer; }
    }
    .service-card-overlay{
      position:absolute;
      inset:0;
      border-radius: inherit;
      z-index: 2;
      display:block;
    }
    /* スマホ（タッチ）ではカード全体リンクを無効化 */
    @media (hover:none) and (pointer:coarse){
      .service-card-overlay{ display:none; }
    }
    /* 画面幅ベースでもスマホを判定（保険） */
    @media (max-width: 768px){
      .service-card-overlay{ display:none; }
      .service-card{ cursor: default; }
    }
    /* レイヤー順：本文(1) < overlay(2) < CTA(3) */
    .service-card > *{ position: relative; z-index: 1; }
    .service-card > .service-card-overlay{ z-index: 2; }
    .service-card > .service-cta{ position: relative; z-index: 3; }

    /* サービスカードの見出し：左（3行テキスト）＋右（3段イラスト） */
    .service-card-head{
      display:flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 12px;
    }
    .service-card-head-text{ min-width: 0; flex: 1; }
    .service-card-head .service-tag{ margin-bottom: 6px; }
    .service-card-head h3{ margin: 0; line-height: 1.25; }

        /* サービスカードのイラスト：3段→1つ（縦長ブロック） */
    .service-card-illus{
      flex: 0 0 auto;
      width: 54px;
      height: 106px; /* 30*3 + gap(8)*2 相当 */
      border-radius: 16px;
      background: rgba(245,234,216,.60);
      border: 1px solid rgba(201,169,97,.35);
      box-shadow: 0 10px 20px rgba(15,20,25,.06);
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 10px;
      margin-top: 2px;
    }
    .service-card-illus img{
      width: 100%;
      height: auto;
      max-height: 48px;
      object-fit: contain;
      display:block;
    }

.service-lead{
      margin: 0 0 14px;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-medium);
    }
    /* 旧：3行の枠（service-points / service-point）は削除（HTML側で出さない） */
    .service-cta{
      margin-top: auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 8px;
      width: 100%;
      padding: 12px 14px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201,169,97,.55);
      background: rgba(245,234,216,.65);
      color: var(--navy);
      font-weight: 800;
      text-decoration:none;
      transition: all .25s ease;
    }
    .service-cta:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      background: rgba(245,234,216,.78);
    }

/* =========================
   Page specific (recruitment)
   ========================= */

:root {
      /* Core Colors - 重厚感のあるネイビー×ゴールド */
      --navy-dark: #0f1419;
      --navy: #1a2332;
      --navy-medium: #2d3e50;
      --navy-light: #3d4f63;
      --navy-soft: #4a5f7a;
      
      --gold: #c9a961;
      --gold-dark: #a68948;
      --gold-light: #d4b876;
      --gold-pale: #f5ead8;
      
      --slate: #64748b;
      --slate-light: #94a3b8;
      --slate-pale: #cbd5e1;
      
      --bg: #fafbfc;
      --bg-warm: #fdfcfa;
      --surface: #ffffff;
      --border: #e8ecef;
      --border-strong: #d4dce3;
      
      --text: #1e293b;
      --text-medium: #475569;
      --text-light: #64748b;
      
      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.08);
      --shadow: 0 4px 12px rgba(15, 20, 25, 0.12);
      --shadow-lg: 0 8px 24px rgba(15, 20, 25, 0.15);
      --shadow-xl: 0 16px 48px rgba(15, 20, 25, 0.2);
      
      /* Radius */
      --radius: 4px;
      --radius-lg: 8px;
      --radius-xl: 12px;
      
      --max-width: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* Typography */
    .serif {
      font-family: "Noto Serif JP", Georgia, serif;
    }

    /* Container */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 20px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-weight: 800;
      font-size: 22px;
      position: relative;
      box-shadow: var(--shadow);
    }

    .brand-mark::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .nav {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .nav a {
      padding: 10px 18px;
      color: var(--text-medium);
      font-size: 14px;
      font-weight: 500;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      letter-spacing: 0.01em;
    }

    .nav a:hover {
      color: var(--navy);
      background: var(--gold-pale);
    }

    .header-contact {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .tel {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .tel-number {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    .tel-hours {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
      letter-spacing: 0.02em;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-lg);
      font-weight: 700;
      font-size: 15px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-color: var(--navy);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .btn-gold:hover {
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-outline {
      background: var(--surface);
      color: var(--navy);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      background: var(--navy);
      color: var(--gold);
    }

    .btn-large {
      padding: 18px 36px;
      font-size: 16px;
    }

    /* Hero */
    .hero {
      padding: 80px 0 100px;
      background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.03) 100%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 20px;
      background: var(--surface);
      border: 1px solid var(--navy);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 28px;
      box-shadow: var(--shadow-sm);
      letter-spacing: 0.03em;
    }



    h1 {
      font-size: clamp(36px, 5vw, 50px);
      line-height: 1.25;
      margin: 0 0 32px;
      color: var(--navy);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .hero-accent {
      color: var(--gold-dark);
      font-family: "Noto Serif JP", Georgia, serif;
      font-style: italic;
      position: relative;
      display: inline-block;
    }

    .hero-accent::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 8px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
      z-index: -1;
    }

    .hero-lead {
      font-size: 17px;
      color: var(--text-medium);
      margin: 0 0 40px;
      line-height: 1.9;
      font-weight: 400;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 32px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      position: relative;
    }

    .hero-stats::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .stat {
      text-align: center;
      padding: 16px 8px;
      border-right: 1px solid var(--border);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-value {
      font-size: 32px;
      font-weight: 800;
      color: var(--gold-dark);
      font-family: "Noto Serif JP", Georgia, serif;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    .hero-visual {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }



    /* Section */
    section { padding: 80px 0; }

    .section-navy {
      background: var(--navy);
      color: var(--gold-pale);
    }

    .section-soft {
      background: var(--bg-warm);
    }

    .section-header { text-align: center; margin-bottom: 48px; }

    .section-label {
      display: inline-block;
      padding: 6px 20px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: 1px solid var(--gold);
    }

    .section-navy .section-label {
      background: rgba(201, 169, 97, 0.15);
      color: var(--gold);
      border-color: var(--gold);
    }

    h2 {
      font-size: clamp(32px, 4vw, 42px);
      margin: 0 0 20px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .section-navy h2 {
      color: var(--gold);
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-medium);
      margin: 0;
      font-weight: 400;
    }

    .section-navy .section-desc {
      color: var(--slate-pale);
    }

    /* Grid */
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

    /* Card */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-radius: var(--radius-lg);
      font-weight: 800;
      font-size: 20px;
      margin-bottom: 20px;
      font-family: "Noto Serif JP", Georgia, serif;
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 20px;
      margin: 0 0 16px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.01em;
    }

    .card p {
      margin: 0;
      color: var(--text-medium);
      line-height: 1.85;
      font-size: 15px;
    }

    /* Problems Section */
    .problems-box {
      background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
      border: 2px solid var(--gold);
      border-radius: var(--radius-xl);
      padding: 44px;
      position: relative;
    }

    .problems-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .problems-box h3 {
      margin: 0 0 24px;
      font-size: 22px;
      color: var(--navy);
      font-weight: 700;
    }

    .problems-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .problems-list li {
      padding: 14px 0 14px 40px;
      position: relative;
      color: var(--text-medium);
      font-size: 16px;
      border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    }

    .problems-list li:last-child {
      border-bottom: none;
    }

    .problems-list li::before {
      content: "▸";
      position: absolute;
      left: 12px;
      color: var(--gold-dark);
      font-size: 18px;
      font-weight: 700;
    }

    /* CTA Box */
    .cta-box {
      background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-medium) 100%);
      border: 1px solid var(--slate-pale);
      border-radius: var(--radius-xl);
      padding: 44px;
      text-align: center;
      box-shadow: var(--shadow);
      position: relative;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .cta-box h3 {
      margin: 0 0 16px;
      font-size: 24px;
      font-weight: 700;
      color: var(--gold);
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .cta-box p {
      margin: 0 0 28px;
      color: var(--slate-pale);
      font-size: 15px;
    }

    /* Feature List */
    .feature-list {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 48px;
      box-shadow: var(--shadow);
    }

    .feature-item {
      display: flex;
      gap: 24px;
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }

    .feature-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .feature-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--gold-pale) 0%, rgba(201, 169, 97, 0.1) 100%);
      border: 2px solid var(--gold);
      color: var(--gold-dark);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .feature-content h4 {
      margin: 0 0 12px;
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
    }

    .feature-content p {
      margin: 0;
      color: var(--text-medium);
      line-height: 1.85;
      font-size: 15px;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .pricing-card {
      background: var(--surface);
      border: 2px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px 48px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .pricing-plan {
      font-size: 13px;
      font-weight: 700;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .pricing-card h3 {
      font-size: 24px;
      margin: 0 0 12px;
      font-weight: 700;
      color: var(--navy);
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .pricing-desc {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 28px;
      min-height: 40px;
    }

    .pricing-price {
      font-size: 40px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .pricing-price small {
      font-size: 18px;
      color: var(--text-light);
      font-weight: 500;
    }

    .pricing-note {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 32px;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 28px 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 12px 0 12px 32px;
      position: relative;
      font-size: 14px;
      color: var(--text-medium);
      border-bottom: 1px solid var(--border);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pricing-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold-dark);
      font-weight: 700;
      font-size: 16px;
    }

    /* Flow */
    .flow-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }

    .flow-section h3 {
      font-size: 24px;
      margin: 0 0 32px;
      font-weight: 700;
      color: var(--navy);
      padding-left: 16px;
      border-left: 4px solid var(--gold);
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .flow-step {
      display: flex;
      gap: 20px;
      margin-bottom: 24px;
      padding: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: all 0.3s ease;
    }

    .flow-step:hover {
      box-shadow: var(--shadow);
      border-color: var(--gold);
    }

    .flow-number {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 22px;
      font-family: "Noto Serif JP", Georgia, serif;
      box-shadow: var(--shadow);
    }

    .flow-content h4 {
      margin: 0 0 8px;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
    }

    .flow-content p {
      margin: 0;
      font-size: 14px;
      color: var(--text-medium);
      line-height: 1.7;
    }

    /* Testimonial */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
      position: relative;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .testimonial:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-4px);
    }

    .testimonial::before {
      content: """;
      position: absolute;
      top: 32px;
      left: 32px;
      font-size: 72px;
      color: var(--gold);
      line-height: 1;
      font-family: Georgia, serif;
      opacity: 0.3;
    }

    .testimonial h4 {
      margin: 0 0 16px;
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
      padding-top: 40px;
    }

    .testimonial p {
      margin: 0 0 20px;
      color: var(--text-medium);
      line-height: 1.85;
      font-size: 15px;
    }

    .testimonial-author {
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    /* FAQ */
    .faq-list {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: var(--surface);
      border: none;
      padding: 28px 32px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      transition: all 0.2s ease;
    }

    .faq-question:hover {
      background: var(--bg-warm);
    }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gold-pale);
      border: 2px solid var(--gold);
      color: var(--gold-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .faq-item[open] .faq-icon {
      background: var(--gold);
      color: var(--navy);
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 32px 28px;
      color: var(--text-medium);
      line-height: 1.85;
      font-size: 15px;
      display: none;
    }

    .faq-item[open] .faq-answer {
      display: block;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .contact-info {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow);
    }

    .contact-info h3 {
      margin: 0 0 20px;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      font-family: "Noto Serif JP", Georgia, serif;
    }

    .contact-info p {
      margin: 0 0 28px;
      color: var(--text-medium);
      line-height: 1.85;
      font-size: 15px;
    }

    .contact-tel-box {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px;
      background: var(--bg-warm);
      border: 2px solid var(--gold);
      border-radius: var(--radius-lg);
      margin-bottom: 24px;
    }

    .contact-tel-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: var(--shadow);
    }

    .contact-tel-number {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
      letter-spacing: 0.02em;
    }

    .contact-tel-hours {
      font-size: 12px;
      color: var(--text-light);
    }

    .form-container {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 48px;
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      gap: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }

    .form-group label .required {
      color: var(--gold-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-lg);
      font-size: 15px;
      font-family: inherit;
      transition: all 0.2s ease;
      background: var(--surface);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    /* Footer */
    .footer {
      background: var(--navy-dark);
      color: var(--slate-pale);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer h4 {
      margin: 0 0 20px;
      font-size: 16px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.02em;
    }

    .footer p {
      margin: 0 0 12px;
      font-size: 14px;
      line-height: 1.75;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(201, 169, 97, 0.2);
      text-align: center;
      font-size: 13px;
      color: var(--slate);
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .floating-cta .btn {
      box-shadow: var(--shadow-xl);
    }

    /* Header CTA button override */
    .header-contact .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--text-medium);
      border-color: var(--gold);
    }

    .header-contact .btn-primary:hover {
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
      color: var(--navy);
    }

    /* Floating CTA button override */
    .floating-cta .btn-primary {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-color: var(--navy);
    }

    .floating-cta .btn-primary:hover {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 8px;
      cursor: pointer;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-nav {
      display: none;
      padding: 24px;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .mobile-nav a {
      display: block;
      padding: 14px 0;
      color: var(--text-medium);
      font-weight: 500;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    .mobile-nav a:hover {
      color: var(--gold-dark);
    }

    /* Divider */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
      margin: 32px 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 44px; }
      .grid-2 { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: scale(1); }
      .flow-grid { grid-template-columns: 1fr; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid var(--border); }
      .stat:last-child { border-bottom: none; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav { display: none; }
      .hamburger { display: flex; }
      .header-contact { flex-direction: column; align-items: flex-end; gap: 12px; }
      .tel-number { font-size: 18px; }
      .floating-cta { left: 20px; right: 20px; }
      .floating-cta .btn { width: 100%; }
      section { padding: 60px 0; }
      h1 { font-size: 32px; }
      h2 { font-size: 28px; }
    }

    /* Utilities */
    .text-center { text-align: center; }
    .mb-large { margin-bottom: 48px; }
    .mt-large { margin-top: 48px; }

/* =========================================================
   Overrides: align typography with top page (index.html)
   - Use only Noto Sans JP (inherit)
   ========================================================= */
.serif,
h2,
.section-header h2,
.hero-accent,
.stat-value,
.card-number,
.pricing-card h3,
.flow-section h3,
.cta-box h3,
.contact-info h3,
.flow-number{
  font-family: inherit !important;
  font-style: normal !important;
}

/* Pricing: 2 column layout for comparison */
.pricing-grid{
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 100%;
  margin: 0 auto;
  gap: 32px;
}

/* Utility: block buttons */
.btn-block{ width: 100%; }

/* Small muted notes */
.text-note{
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}
.privacy-note strong{ color: var(--navy); }
.note-center{
  margin: 0;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* =========================================================
   recruitment-clinic.css
   Clinic page overrides (colors unchanged)
   ========================================================= */

/* Pricing: single plan layout */
.pricing-grid{
  grid-template-columns: 1fr !important;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-card{
  max-width: 880px;
  margin: 0 auto;
}

/* Hero: slightly tighter lead for readability (no color changes) */
.hero-lead{
  max-width: 46em;
}

/* ---------------------------------------
   Recruitment page enhancements (2026-01)
   --------------------------------------- */

/* moved from inline <style> */
.tel-link { color: inherit; text-decoration: none; }
.tel-link:hover, .tel-link:focus { text-decoration: none; }
.btn-primary::before, .btn-primary::after { display: none !important; }

/* Hero bullets */
.hero-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text-medium);
  line-height: 1.65;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 12px;
}
.hero-note {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Quick consult cards */
.quick-consult .grid-3 { margin-top: 28px; }
.quick-card { position: relative; padding-top: 56px; }
.quick-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.quick-card h3 { margin-top: 0; }

/* Impact strip */
.impact-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.impact-card {
  background: linear-gradient(180deg, var(--surface), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.impact-title {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.impact-desc {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.55;
}

/* Pricing tweaks */
.pricing-keypoints {
  margin: 18px 0 18px;
  padding-left: 18px;
  color: var(--text-medium);
}
.pricing-keypoints li { margin: 8px 0; }
.avoid-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-medium);
}
.avoid-list li { margin: 8px 0; }
.avoid-card {
  border: 1px solid var(--border-strong);
}
.roi-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-warm), var(--surface));
}

/* Accordion (for Merit / Pricing / Flow details) */
.accordion-list { display: grid; gap: 14px; }
details.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
details.accordion summary::-webkit-details-marker { display: none; }
.accordion-head { display: grid; gap: 6px; }
.accordion-title { font-weight: 800; color: var(--navy); }
.accordion-sub { font-size: 14px; color: var(--text-light); line-height: 1.55; }
.accordion-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-weight: 900;
  margin-right: 10px;
}
.accordion-toggle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
  transition: transform .15s ease;
}
details.accordion[open] .accordion-toggle { transform: rotate(45deg); }
.accordion-body {
  padding: 0 20px 18px;
  color: var(--text-medium);
}
.accordion-body p { margin-top: 10px; }
.accordion-compact summary { padding: 16px 18px; }
.accordion-compact .accordion-body { padding: 0 18px 16px; }

/* flow summary cards */
.flow-summary h3 { margin-top: 0; }
.flow-bullets { margin: 10px 0 0; padding-left: 18px; color: var(--text-medium); }
.flow-bullets li { margin: 8px 0; }

/* responsive */
@media (max-width: 960px) {
  .impact-strip { grid-template-columns: 1fr; }
  .quick-card { padding-top: 52px; }
}


/* =========================================================
   Recruit page refinements (Hero spacing + scanability)
   ========================================================= */

.hero-lead-primary{
  margin-top: 8px;
  margin-bottom: 12px;
}
.hero-lead-secondary{
  margin-top: 0;
  margin-bottom: 26px;
}

@media (min-width: 769px){
  .hero-grid{
    grid-template-columns: 1.25fr 0.75fr;
    gap: 44px;
  }
}

.micro{
  margin-top: 18px;
  margin-bottom: 10px;
}

.hero-bullets{
  margin: 0 0 18px 0;
  max-width: 46rem;
}

.hero-tagline{
  margin-top: 18px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--navy);
}

.hero-cta{
  margin-top: 6px;
  gap: 14px;
}

/* Mobile: keep micro visible (chips are not used on this page) */
@media (max-width: 768px){
  .micro{
    display: block !important;
  }
}

/* =========================================================
   Reasons section: reduce "spacing bloat" for readability
   ========================================================= */
#reasons .grid-3{
  gap: 22px;
}
#reasons .card{
  padding: 28px 26px;
}
#reasons .card h3{
  margin-bottom: 10px;
}
#reasons .card p{
  line-height: 1.7;
}


/* =========================================================
   Worry Block (v4から追加: ファーストビュー用)
   ========================================================= */
.worry-block {
  margin-top: 16px;
  margin-bottom: 18px;
}

.worry-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.worry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.worry-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,.32);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.worry-chip:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.worry-chip:focus-visible {
  outline: 3px solid rgba(201,169,97,.45);
  outline-offset: 2px;
}

/* モバイルで1行ずつ表示 */
@media (max-width: 640px) {
  .worry-chip {
    width: 100%;
    justify-content: flex-start;
  }
}
