/* =====================================================================
   CoWorker 採用サイト 第1弾 - styles.css  v2.0 (2026-06-08 改訂反映)
   方針: navy基調 / 明朝はHero H1とFinal CTAの2箇所のみ / Curveグラデは装飾専用
   grad-text全廃 / 本物Curve大 / tag一色 / カテゴリ名主役 / 自然な日本語改行
   ===================================================================== */

/* ---- 0. RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  word-break: normal;            /* 日本語は標準折返し(禁則) */
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
.pc-only-br { display: inline; }   /* 見出しの明示改行: モバイルで消す */

/* ---- 1. DESIGN TOKENS ---- */
:root {
  /* COLOR */
  --white:      #FFFFFF;
  --navy-2:     #F5F8FF;
  --navy-3:     #E8EEFC;
  --navy-8:     #5B78BA;
  --navy-11:    #092062;
  --neutral-3:  #DDE2EC;
  --neutral-9:  #666666;

  --curve-purple: #7A40CC;
  --curve-teal:   #1AC2A7;
  --curve-blue:   #448FBF;
  --curve-gradient: linear-gradient(135deg, #7A40CC 0%, #1AC2A7 50%, #448FBF 100%);

  --danger: #B91C1C;

  --bg:       var(--white);
  --bg-alt:   var(--navy-2);
  --bg-dark:  var(--navy-11);
  --ink:      var(--navy-11);
  --ink-mute: #506070;            /* 補助テキスト: navy調和のクールスレート (AA white 6.47 / navy-2 6.08) */
  --line:     #D4DCEE;   /* navy寄りの薄いライン (単なるグレーを廃止) */
  --ink-on-dark:      rgba(255,255,255,1);
  --ink-mute-on-dark: rgba(255,255,255,0.78);

  /* TYPOGRAPHY */
  --font-ja:    'Inter', 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;  /* 欧文(Inter)を先頭に: 英数はInter / 和文はNoto Sans JP */
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;  /* Hero H1 / Final CTA h2 のみ */
  --font-en:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --text-hero-h1:       clamp(32px, 5.4vw, 74px);   /* desktop 74px / 狭幅は32pxまで縮め「で、」の孤立を防ぐ */
  --text-section-title: clamp(27px, 3.4vw, 46px);
  --text-kv-number:     clamp(44px, 5vw, 64px);
  --text-lead:          17px;
  --text-body:          15px;
  --text-card-title:    19px;
  --text-label:         13px;
  --text-caption:       12px;

  /* SPACING */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 40px; --space-8: 64px;
  --space-9: 110px; --space-10: 140px;
  --container-max: 1240px;
  --container-px: 32px;
  --container-px-mob: 20px;

  /* RADIUS / SHADOW */
  --radius-2: 8px;
  --shadow-cta:  0 6px 16px rgba(9, 32, 98, 0.16);
  --shadow-card: 0 8px 24px rgba(9, 32, 98, 0.10);

  --nav-h: 64px;
  --ceo-photo: 200px;
}

/* ---- 2. PRIMITIVES ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-px); }
section { padding-block: var(--space-9); }
.section-head { max-width: 880px; margin-bottom: var(--space-8); }

/* セクション見出し = ゴシック(800)。明朝は使わない */
.section-title {
  font-family: var(--font-ja);
  font-weight: 800;
  font-size: var(--text-section-title);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: 0.01em;
  overflow-wrap: normal; word-break: normal;  /* 改行はbrで制御 */
  text-wrap: balance;                          /* 見出しの行バランス(単語途中改行を回避) */
}
/* 軽いサブラベル(英語eyebrowの代替・日本語) */
.kicker {
  font-family: var(--font-ja); font-size: var(--text-label); font-weight: 700;
  letter-spacing: 0.05em; color: var(--ink-mute); margin-bottom: var(--space-4);
}
.lead { font-size: var(--text-lead); line-height: 2; color: var(--ink-mute); margin-top: var(--space-5); }
.lead, .culture-block p, .pos-desc, .persona-desc, .ceo-message p, .hero-lead, .about-body, .stat-desc, .step-desc, .voice-card p {
  overflow-wrap: break-word;
  text-wrap: pretty;                           /* 行末1文字孤立を回避(対応ブラウザ) */
}

.icon { width: 22px; height: 22px; stroke: var(--ink-mute); stroke-width: 1.8;
        fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-arrow, .icon-arrow-down, .icon-arrow-r { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2;
              fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-chat { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.9;
              fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.btn-primary .icon-chat { width: 16px; height: 16px; }
.btn-pos-action .icon-chat { width: 14px; height: 14px; }

/* ---- ACCESSIBILITY: focus & skip-link ---- */
:focus-visible { outline: 3px solid var(--navy-8); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus {
  position: fixed; top: 16px; left: max(16px, env(safe-area-inset-left));
  background: var(--navy-11); color: var(--white); padding: 12px 20px;
  border-radius: var(--radius-2); font-size: 14px; font-weight: 600;
}

/* ---- 3. NAV ---- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--container-max); height: 100%; margin: 0 auto;
  padding-inline: var(--container-px); display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--space-7); }
.nav-links a:not(.nav-cta) { font-family: var(--font-ja); font-size: 13px; font-weight: 500;
  color: var(--ink-mute); transition: color 0.18s ease; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { font-family: var(--font-ja); font-size: 13px; font-weight: 600; color: var(--white);
  background: var(--navy-11); padding: 9px 18px; border-radius: var(--radius-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: box-shadow 0.18s ease, transform 0.18s ease; }
.nav-cta:hover { box-shadow: var(--shadow-cta); transform: translateY(-1px); }
.nav-burger { display: none; }

/* ---- 4. BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--navy-11); color: var(--white);
  font-family: var(--font-ja); font-size: 14px; font-weight: 600;
  padding: 15px 30px; border-radius: var(--radius-2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { box-shadow: var(--shadow-cta); transform: translateY(-2px); }

/* セカンダリ(アウトライン): Heroで「募集職種を見る」に使い、primaryと差別化 */
.btn-secondary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: transparent; color: var(--navy-11); border: 1.5px solid var(--navy-11);
  font-family: var(--font-ja); font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius-2);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { background: var(--navy-11); color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--white); color: var(--navy-11);
  font-family: var(--font-ja); font-size: 15px; font-weight: 600;
  padding: 17px 34px; border-radius: var(--radius-2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-white:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.2); transform: translateY(-2px); }

/* ---- 5. HERO ---- */
.hero {
  position: relative; overflow: hidden; background: var(--bg);
  padding: calc(var(--nav-h) + 72px) 0 40px;
  min-height: 76svh; display: flex; align-items: center;
}
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding-inline: var(--container-px); }   /* .container と左端を一致させる */
.hero-left { max-width: 720px; }
.hero-h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: var(--text-hero-h1); line-height: 1.18; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: var(--space-6);
}
.hero-lead { font-size: var(--text-lead); line-height: 2; color: var(--ink-mute);
  max-width: 560px; margin-bottom: var(--space-7); }
.hero-cta-wrap { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.hero-now-hiring { margin-top: var(--space-7); display: flex; align-items: center;
  gap: var(--space-3); flex-wrap: wrap; }
.hero-now-hiring .nh-label {
  font-family: var(--font-ja); font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--navy-3); padding: 4px 12px; border-radius: var(--radius-2);
}
.hero-now-hiring .nh-roles { font-family: var(--font-ja); font-size: 14px; color: var(--ink); font-weight: 500; }

/* 本物Curve を特大の背景装飾として右上へダイナミックに (item1) */
.hero-curve-bg {
  position: absolute; right: -140px; top: -60px;
  width: min(78vw, 1120px); height: auto; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.16) 22%, rgba(0,0,0,0.72) 44%, #000 64%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.16) 22%, rgba(0,0,0,0.72) 44%, #000 64%);
  filter: drop-shadow(0 24px 56px rgba(9,32,98,0.12));
}

/* ---- 6. §1 TRUST ---- */
.trust { background: var(--bg); padding-top: 32px; }   /* Hero⇄実績の余白を詰める */
.stat-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { padding: var(--space-7) var(--space-5); }
.stat-item + .stat-item { border-left: 1px solid var(--line); }
/* ラベルを数字の上に・太く(ラベルが主) */
.stat-label { font-size: 16px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.01em; margin-bottom: var(--space-2); line-height: 1.45; }
.stat-number { font-family: var(--font-en); font-weight: 700; font-size: var(--text-kv-number);
  line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; min-width: 4ch; }
.stat-number.is-text { font-size: clamp(26px, 2.8vw, 34px); letter-spacing: -0.01em; }
.stat-unit { font-family: var(--font-en); font-weight: 700; font-size: 0.42em; margin-left: 2px; color: var(--ink); }
.stat-desc { margin-top: var(--space-4); font-size: 13.5px; line-height: 1.85; color: var(--ink-mute); max-width: 36ch; }
.trust-note { margin-top: var(--space-7); max-width: 820px; font-size: var(--text-body);
  line-height: 1.95; color: var(--ink-mute); }
.trust-note + .trust-note { margin-top: var(--space-3); }

/* お知らせ: corp の microCMS ニュースを実績欄に表示(取得成功時のみ JS が hidden 解除) */
.news-block { margin-bottom: var(--space-8); }
.news-block-label { font-family: var(--font-ja); font-size: var(--text-label); font-weight: 700;
  letter-spacing: 0.05em; color: var(--ink-mute); margin-bottom: var(--space-4); }
.news-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.news-item { display: flex; gap: var(--space-5); align-items: center; padding: var(--space-4) 0; border-bottom: 1px solid var(--line); }
.news-thumb { flex-shrink: 0; width: 144px; height: 81px; border-radius: 2px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.news-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.news-body { flex: 1; min-width: 0; }
.news-meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: 6px; }
.news-cat { font-size: 12px; font-weight: 700; color: var(--ink);
  background: var(--bg); padding: 2px 8px; border-radius: 2px; }
.news-date { font-family: var(--font-en); font-size: 13px; color: var(--ink-mute); }
.news-title { margin: 0; font-size: 15px; line-height: 1.7; font-weight: 700; color: var(--ink); }
.news-link { color: var(--ink); text-decoration: none; }
.news-link:hover { text-decoration: underline; }

/* 取引先・パートナー: 静的グリッド(流れない) */
.partners-label { margin-top: var(--space-8); margin-bottom: var(--space-4);
  font-family: var(--font-ja); font-size: var(--text-label); font-weight: 700;
  letter-spacing: 0.05em; color: var(--ink-mute); }
.partners-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.partners-track { display: flex; width: max-content; animation: partners-scroll 44s linear infinite;
  will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0); }
/* marqueeはhoverでも止めない */
@keyframes partners-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.partners-set { display: flex; align-items: center; gap: 64px; padding-inline: 32px; flex-shrink: 0; }
.partner-logo { height: 48px; width: auto; max-width: 240px; object-fit: contain; display: block;
  opacity: 1; transition: opacity 0.2s ease; }   /* 薄ぼんやり解消: grayscale撤去・通常色でクリアに */
/* ロゴを「面積」で均等化: 高さ揃えをやめ、アスペクト比に応じて個別height (item: ロゴが豆粒/不揃い) */
.partners-set .partner-logo:nth-child(1)  { height: 56px; }  /* gsx */
.partners-set .partner-logo:nth-child(2)  { height: 56px; }  /* psc */
.partners-set .partner-logo:nth-child(3)  { height: 66px; }  /* littlefamily (余白なし=密度高いため更に拡大) */
.partners-set .partner-logo:nth-child(4)  { height: 56px; }  /* soden */
.partners-set .partner-logo:nth-child(5)  { height: 54px; }  /* bipsee */
.partners-set .partner-logo:nth-child(6)  { height: 42px; }  /* kakecom (横長) */
.partners-set .partner-logo:nth-child(7)  { height: 46px; }  /* unreact */
.partners-set .partner-logo:nth-child(8)  { height: 44px; }  /* lxgic */
.partners-set .partner-logo:nth-child(9)  { height: 56px; }  /* hakobune */
.partners-set .partner-logo:nth-child(10) { height: 42px; }  /* eucalia */
/* hoverで色は変えない(常に通常の見た目) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- 7. §2 ABOUT ---- */
.about { background: var(--bg-alt); }
.about-body { max-width: 880px; font-size: var(--text-lead); line-height: 2; color: var(--ink);
  margin-bottom: var(--space-8); }
.pillar-list { border-top: 1px solid var(--line); }
.pillar-item { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-7);
  padding: var(--space-6) 0; border-bottom: 1px solid var(--line); align-items: start; }
.pillar-name { font-size: var(--text-card-title); font-weight: 700; color: var(--ink); line-height: 1.4; }
.pillar-desc { font-size: var(--text-body); line-height: 1.95; color: var(--ink-mute); }
.pillar-link { display: inline-flex; align-items: center; gap: 7px; margin-top: var(--space-4);
  font-family: var(--font-ja); font-size: 15px; font-weight: 600; color: var(--navy-11);
  transition: gap 0.18s ease, color 0.18s ease; }
.pillar-link svg { width: 16px; height: 16px; }
.pillar-link:hover { gap: 10px; color: var(--navy-8); }

/* ---- 8. §3 CULTURE ---- */
.culture { background: var(--bg); }
.culture-grid { display: grid; grid-template-columns: 56fr 40fr; gap: var(--space-8); align-items: start; }
.culture-block { padding-bottom: var(--space-6); margin-bottom: var(--space-6); border-bottom: 1px solid var(--line); }
.culture-block:last-child { border-bottom: 0; margin-bottom: 0; }
.culture-block-head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.culture-block-head h3 { font-size: var(--text-card-title); font-weight: 700; color: var(--ink); }
.culture-block p { font-size: var(--text-body); line-height: 1.95; color: var(--ink-mute); }
.culture-block ul { margin-top: var(--space-3); display: grid; gap: var(--space-2); }
.culture-block li { position: relative; padding-left: 18px; font-size: var(--text-body);
  line-height: 1.9; color: var(--ink-mute); }
.culture-block li::before { content: ''; position: absolute; left: 2px; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--navy-8); }  /* teal廃止 */

.culture-side { display: flex; flex-direction: column; gap: var(--space-5);
  position: sticky; top: calc(var(--nav-h) + 24px); }
.workstyle-card { background: var(--navy-2); border: 1px solid rgba(9,32,98,0.07);
  border-radius: var(--radius-2); padding: var(--space-6); }
.workstyle-card h3 { font-family: var(--font-ja); font-size: 14px; font-weight: 700;
  color: var(--ink); margin-bottom: var(--space-4); }
.workstyle-table th, .workstyle-table td { text-align: left; vertical-align: top;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: var(--text-body); }
.workstyle-table tr:last-child th, .workstyle-table tr:last-child td { border-bottom: 0; }
.workstyle-table th { width: 40%; color: var(--ink-mute); font-weight: 500; }
.workstyle-table td { color: var(--ink); font-weight: 500; }

/* オフィス画像(仮stock): 左クロップでwatermark回避 + navyトーン */
.office-photo { position: relative; border-radius: var(--radius-2); overflow: hidden; border: 1px solid var(--line); }
.office-photo img { width: 100%; height: 200px; object-fit: cover; object-position: 72% 38%; display: block; }
.office-photo::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,32,98,0.16), rgba(9,32,98,0.02)); }
.office-caption { position: absolute; left: 12px; bottom: 10px; z-index: 1;
  font-size: 11px; color: rgba(255,255,255,0.9); font-family: var(--font-ja); }
/* オフィス写真を勤務スタイルカード内・H3直下にフルブリード配置 (item10) */
.workstyle-card .office-photo { margin: var(--space-4) calc(-1 * var(--space-6)) var(--space-5);
  border-radius: 0; border-left: 0; border-right: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workstyle-card .office-photo img { height: 168px; }

/* メンバーの声: 名前なし・役職+経歴メタ */
.voices { margin-top: var(--space-8); }
.voices-head { display: flex; align-items: baseline; gap: var(--space-4); margin-bottom: var(--space-6); flex-wrap: wrap; }
.voices-head h3 { font-size: var(--text-card-title); font-weight: 800; color: var(--ink); }
.voices-note { font-size: var(--text-caption); color: var(--neutral-9); }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-5); align-items: stretch; }
.voice-card { position: relative; overflow: hidden; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-2);
  padding: var(--space-6);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.voice-card:hover { transform: translateY(-4px); border-color: var(--navy-8); box-shadow: var(--shadow-card); }
.voice-card > * { position: relative; z-index: 1; }
/* 大きく薄いnavyの人物ベクターをカード背景の透かしに (member voices / 単体・2人・3人) */
/* (A) 右上 = 職種別アイコン (Outlined・各カード別モチーフ) */
.voice-card-role-icon { position: absolute; top: var(--space-5); right: var(--space-5);
  width: 26px; height: 26px; stroke: var(--navy-11); stroke-width: 1.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.55; z-index: 1;
  pointer-events: none; flex-shrink: 0; }
.voice-card:hover .voice-card-role-icon { opacity: 0.85; }
/* (B) 背景 = 「メンバーの声」共通の吹き出し (Filled) 透かし */
.voice-card-bg-icon { position: absolute; right: 16px; bottom: 16px;
  width: 120px; height: 120px; fill: var(--navy-11); stroke: none;
  opacity: 0.07; z-index: 0; pointer-events: none; transition: opacity 0.25s ease; }
.voice-card:hover .voice-card-bg-icon { opacity: 0.12; }
.voice-role { font-family: var(--font-ja); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; padding-right: 30px; }
.voice-meta { font-size: 12px; color: var(--ink-mute); line-height: 1.7;
  padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
.voice-card p:not(.voice-role):not(.voice-meta) { font-size: 14px; line-height: 1.95; color: var(--ink-mute); }
.voice-card p + p:not(.voice-meta) { margin-top: var(--space-3); }

/* ---- 9. §4 POSITIONS ---- */
.positions { background: var(--bg-alt); }
.pos-group { margin-top: var(--space-8); }
.pos-group:first-of-type { margin-top: var(--space-7); }
.pos-group-head { margin-bottom: var(--space-5); padding-bottom: var(--space-2); }
.pos-group-name { font-family: var(--font-ja); font-size: 18px; font-weight: 800; color: var(--ink); }
.pos-group-meta { margin-top: 6px; font-size: 13px; color: var(--ink-mute); }
.job-cards { display: grid; gap: var(--space-4); }
.position-card { display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-2); padding: var(--space-5) var(--space-6);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.position-card:hover { transform: translateY(-3px); border-color: var(--navy-8); box-shadow: var(--shadow-card); }
.pos-head { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-3); }
.pos-title { font-size: var(--text-card-title); font-weight: 700; color: var(--ink); }
.pos-badges { display: flex; gap: 6px; flex-wrap: wrap; }
/* タグ一色(#スタイル) */
.badge-tag { font-family: var(--font-ja); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-2); background: var(--navy-2);
  color: var(--ink-mute); }
.pos-desc { font-size: var(--text-body); line-height: 1.95; color: var(--ink-mute); }
.pos-detail { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.pos-detail div { font-size: 13px; line-height: 1.85; color: var(--ink-mute); }
.pos-detail dt { font-weight: 700; color: var(--ink); display: inline; }
.pos-detail dd { display: inline; }
/* 矢印リンク→ボタン化(navy) */
.pos-action { margin-top: var(--space-5); }
.btn-pos-action { display: inline-flex; align-items: center; gap: 7px; background: var(--navy-3); color: var(--navy-11);
  border: none; font-family: var(--font-ja); font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: var(--radius-2);
  transition: background 0.18s ease, color 0.18s ease; }
.btn-pos-action:hover { background: var(--navy-11); color: var(--white); }

/* ---- 10. §5 PERSONA ---- */
.persona { background: var(--bg); }
.persona-stack { border-top: 1px solid var(--line); }
.persona-item { display: grid; grid-template-columns: 90px 1fr; gap: var(--space-6);
  padding: var(--space-7) 0; border-bottom: 1px solid var(--line); align-items: start; }
.persona-num { font-family: var(--font-en); font-weight: 700; font-size: 48px; line-height: 1; color: var(--navy-3); }
.persona-name { font-size: var(--text-card-title); font-weight: 700; color: var(--ink); margin-bottom: var(--space-3); }
.persona-desc { font-size: var(--text-body); line-height: 1.95; color: var(--ink-mute); }

/* ---- 11. §6 CEO MESSAGE ---- */
.ceo { background: var(--bg-dark); color: var(--ink-on-dark); position: relative; overflow: hidden; }
.ceo .kicker { color: var(--ink-mute-on-dark); }
.ceo .section-title { color: var(--white); font-size: clamp(26px, 3vw, 42px); }  /* 長め見出しを1行に収める */
.ceo-grid { display: grid; grid-template-columns: 200px minmax(0, 46em); gap: var(--space-8);
  align-items: start; position: relative; z-index: 1; }
.ceo-photo { display: flex; justify-content: center; }
.ceo-photo-circle { width: var(--ceo-photo); height: var(--ceo-photo); border-radius: 50%;
  object-fit: cover; object-position: center 22%; border: 3px solid rgba(255,255,255,0.18); flex-shrink: 0; }
.ceo-quote-mark { font-family: var(--font-en); font-weight: 700; font-size: 80px; line-height: 0.6;
  color: rgba(255,255,255,0.22); margin-bottom: var(--space-4); }   /* グラデ廃止・単色 */
.ceo-message p { font-size: var(--text-lead); line-height: 2; color: var(--ink-on-dark); }
.ceo-message p + p { margin-top: var(--space-4); }
.ceo-sign { margin-top: var(--space-6); }
.ceo-sign .name-ja { font-size: 18px; font-weight: 700; color: var(--white); }
.ceo-sign .name-en { font-family: var(--font-en); font-size: 13px; color: var(--ink-mute-on-dark); margin-top: 2px; }
.ceo-cta { margin-top: var(--space-6); }
.ceo-curve { position: absolute; right: -120px; bottom: -90px; width: 460px; opacity: 0.16; pointer-events: none; z-index: 0; }

/* ---- 12. §7 PROCESS ---- */
.process { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--space-5); }
.step { position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 8px; right: calc(var(--space-5) / -2 - 4px);
  width: 12px; height: 12px; border-right: 2px solid var(--ink-mute); border-bottom: 2px solid var(--ink-mute); transform: rotate(-45deg); }
.step-num { font-family: var(--font-en); font-weight: 700; font-size: 28px; color: var(--navy-11);
  line-height: 1; margin-bottom: var(--space-3); }
.step-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: var(--space-2); line-height: 1.5; }
.step-desc { font-size: 13px; line-height: 1.85; color: var(--ink-mute); }

/* ---- 13. FINAL CTA ---- */
.final-cta { background: var(--bg-dark); color: var(--ink-on-dark); position: relative; overflow: hidden; }
.final-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8);
  align-items: center; position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--font-serif); font-weight: 700;  /* 明朝(2箇所目) */
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.35; color: var(--white); text-wrap: balance; }
.final-cta .final-lead { margin-top: var(--space-5); font-size: var(--text-lead); line-height: 2; color: var(--ink-mute-on-dark); }
.final-hints { margin-top: var(--space-6); display: grid; gap: var(--space-2); }
.final-hints li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.85; color: var(--ink-mute-on-dark); }
.final-hints li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 2px; background: var(--navy-8); }
.final-action { text-align: left; }
/* マイクロコピーを「気づくサイズ」に */
.final-micro { margin-top: var(--space-4); font-family: var(--font-ja); font-size: 16px;
  font-weight: 600; line-height: 1.8; color: rgba(255,255,255,0.88); }
.final-curve { position: absolute; left: -130px; bottom: -90px; width: 500px; opacity: 0.16; pointer-events: none; z-index: 0; }

/* ---- 14. FOOTER ---- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: var(--space-8) var(--container-px) var(--space-6); }
.footer-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--space-7); }
.footer-inner > * { min-width: 0; }
.footer-brand img { height: 28px; width: auto; display: block; margin-bottom: var(--space-4); }
.footer-tagline { font-size: 13.5px; line-height: 1.9; color: var(--ink); max-width: 280px; margin-left: 0; padding-left: 0; }
.footer-col h4 { font-family: var(--font-ja); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: var(--space-4); }
.footer-col li { margin-bottom: var(--space-3); }
.footer-col a { font-size: 13px; color: var(--ink-mute); transition: color 0.18s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { max-width: var(--container-max); margin: var(--space-7) auto 0; padding-top: var(--space-5);
  border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.footer-bottom span, .footer-bottom a { font-family: var(--font-en); font-size: 11px; color: var(--ink-mute); }

/* ---- 15. MOTION (reveal) ---- */
.reveal { transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .hero-lead, .js .hero-cta-wrap, .js .hero-now-hiring {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.56s cubic-bezier(0.22,1,0.36,1), transform 0.56s cubic-bezier(0.22,1,0.36,1);
}
.js .hero.is-loaded .hero-lead { opacity: 1; transform: none; transition-delay: 0.5s; }
.js .hero.is-loaded .hero-cta-wrap { opacity: 1; transform: none; transition-delay: 0.62s; }
.js .hero.is-loaded .hero-now-hiring { opacity: 1; transform: none; transition-delay: 0.72s; }
/* H1: 1文字ずつフェードイン (splitHeroChars が .char を生成) */
.js .hero-h1 .char { display: inline-block; opacity: 0; transform: translateY(0.26em);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.js .hero.is-loaded .hero-h1 .char { opacity: 1; transform: none; }
/* 背景Curve: ゆっくりフェードイン */
.js .hero-curve-bg { opacity: 0; transition: opacity 1.5s ease 0.2s; }
.js .hero.is-loaded .hero-curve-bg { opacity: 1; }

/* 本物Curveの穏やかな浮遊(装飾) + CEO/Final curveの軽いparallax */
@keyframes curve-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-curve-bg { animation: curve-float 7s ease-in-out infinite; }
@supports (animation-timeline: view()) {
  .ceo-curve, .final-curve { animation: ceo-parallax linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
}
@keyframes ceo-parallax { from { transform: translateY(0); } to { transform: translateY(-54px); } }

/* ---- 16. RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-curve-bg { width: min(64vw, 470px); right: -56px; top: -18px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, #000 62%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, #000 62%); }
  .culture-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .culture-side { position: static; }
  .ceo-grid { grid-template-columns: 1fr; gap: var(--space-6); justify-items: center; text-align: left; }
  .final-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .voice-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .step:not(:last-child)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 768px) {
  :root { --container-px: var(--container-px-mob); }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  section { padding-block: var(--space-8); }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .hero { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 40px; min-height: auto; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: 0; border-top: 1px solid var(--line); }
  .pillar-item { grid-template-columns: 1fr; gap: var(--space-3); }
  .persona-item { grid-template-columns: 1fr; gap: var(--space-3); }
  .persona-num { font-size: 36px; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .pc-only-br { display: none; }   /* モバイルでは見出しの強制改行を解除 */
  .mobile-sticky-cta { display: flex; }
  .hero-curve-bg { width: 300px; right: -36px; top: -6px; }
  .js .hero.is-loaded .hero-curve-bg { opacity: 0.55; }
}

/* Mobile sticky CTA */
.mobile-sticky-cta { display: none; position: fixed; inset: auto 0 0 0; z-index: 90;
  padding: 10px var(--container-px-mob) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-sticky-cta a { flex: 1; justify-content: center; }

/* ---- 17. REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal, .js .reveal.is-visible { opacity: 1 !important; transform: none !important; }
  .js .hero-h1, .js .hero-lead, .js .hero-cta-wrap, .js .hero-now-hiring { opacity: 1 !important; transform: none !important; }
  .hero-curve-bg, .ceo-curve, .final-curve { animation: none !important; transform: none; }
  .partners-track { animation: none !important; flex-wrap: wrap; width: auto; }
  .partners-set + .partners-set { display: none; }
}
