/* ===========================
   Google Fonts: Inter + Noto Sans JP
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ===========================
   リセット・CSS変数
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── カラー ── */
  --bg-dark:          #0B1020;   /* メイン背景（ダーク） */
  --bg-dark-sub:      #151B2E;   /* サブ背景（ダーク） */
  --bg-dark-card:     #1C2340;   /* カード背景（ダーク） */
  --bg-white:         #F8FAFC;   /* 白背景 */
  --bg-light:         #F1F5F9;   /* ライトグレー背景 */
  --bg-light-blue:    #EEF2FF;   /* ライトブルー背景 */

  --text-main:        #1E293B;   /* 本文 */
  --text-sub:         #64748B;   /* 補助テキスト */
  --text-light:       #94A3B8;   /* 薄いテキスト */
  --text-on-dark:     #F8FAFC;   /* ダーク背景上のテキスト */
  --text-on-dark-sub: rgba(248,250,252,0.6);

  --border:           #E2E8F0;
  --border-dark:      rgba(255,255,255,0.08);

  --gold:             #C9A227;   /* ゴールドアクセント */
  --gold-light:       #E8C547;
  --cta:              #3B82F6;   /* CTAボタン */
  --cta-dark:         #2563EB;
  --navy:             #1A2340;
  --navy-light:       #253156;
  --green:            #22C55E;
  --red:              #EF4444;

  /* ── タイポグラフィ ── */
  --font-ja:  'Noto Sans JP', sans-serif;
  --font-en:  'Inter', sans-serif;

  /* ── 余白 ── */
  --section-py: 108px;
  --card-p:     28px 32px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* ── シャドウ ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.8;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   ユーティリティ
=========================== */
.container { max-width: 1040px; margin: 0 auto; padding: 0 32px; }
.section    { padding: var(--section-py) 0; }
.bg-light   { background: var(--bg-light); }
.bg-dark    { background: var(--bg-dark); }
.accent     { color: var(--gold); }
.accent-blue { color: var(--cta); }

/* ───── セクションタイトル ───── */
.section-title {
  font-family: var(--font-ja);
  font-weight: 900;
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-title.white { color: var(--text-on-dark); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header { margin-bottom: 56px; }

.title-underline {
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 14px;
}
.title-underline.center { margin-left: auto; margin-right: auto; }

/* ===========================
   ヘッダー（固定）
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(11,16,32,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-product-site {
  height: 40px;
  padding: 0 18px;
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(248,250,252,0.25);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-product-site:hover {
  background: rgba(248,250,252,0.1);
  border-color: rgba(248,250,252,0.5);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .btn-product-site { display: none; }
  .btn-apply-header { padding: 0 14px; font-size: 0.78rem; height: 36px; }
}
.btn-apply-header {
  height: 40px;
  padding: 0 22px;
  background: var(--cta);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(59,130,246,0.25);
}
.btn-apply-header:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(59,130,246,0.35);
}

/* ===========================
   ヒーローセクション
=========================== */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 108px 32px 88px;
}

/* 背景グラデーション + グリッドテクスチャ */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 58%, rgba(201,162,39,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 88% 18%, rgba(59,130,246,0.07) 0%, transparent 60%),
    linear-gradient(158deg, #0B1020 0%, #0F1628 45%, #0B1020 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 85% 55% at 50% 50%, transparent 38%, rgba(11,16,32,0.55) 100%);
}

/* 2カラムレイアウト */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-content { text-align: left; }

/* 小ラベル */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.28);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  font-family: var(--font-en);
  text-transform: uppercase;
}

/* 見出し階層 */
.hero-title {
  font-family: var(--font-ja);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.hero-title-label {
  display: block;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: var(--text-on-dark-sub);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero-title-main {
  display: block;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.1;
}
.hero-title-main .accent { color: var(--gold); }

.hero-sub {
  color: var(--text-on-dark-sub);
  font-size: 0.96rem;
  margin-bottom: 40px;
  line-height: 2;
}

/* 数値バッジ（3列） */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}
.hero-stat {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.07); }
.hero-stat-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--text-on-dark);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}
.hero-stat-num span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: 2px;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: var(--text-on-dark-sub);
  line-height: 1.45;
  font-weight: 500;
}

/* CTA ボタン（プライマリ） */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: white;
  padding: 0 40px;
  height: 54px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(59,130,246,0.3);
  letter-spacing: 0.03em;
}
.btn-hero:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.42);
}

/* 右: 写真フレーム */
.hero-image-wrap { position: relative; }
.hero-image-frame { position: relative; width: 100%; }
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 45% 8%;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 28px 72px rgba(0,0,0,0.55);
}
.hero-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, transparent 45%, rgba(11,16,32,0.28) 100%);
  pointer-events: none;
}

/* 切り抜き画像専用 */
.hero-image-frame--cutout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 580px;
  /* 薄いグラデーション土台 */
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(201,162,39,0.08) 0%, transparent 70%);
  overflow: visible;
}
.hero-image-frame--cutout::after { display: none; }

.hero-img--cutout {
  width: auto;
  max-width: 100%;
  height: 580px;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 0;
  box-shadow: none;
  /* 足元にごく薄い影で地面感を演出 */
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
}

/* 写真上フローティングカード */
.hero-image-card {
  position: absolute;
  top: 60px; left: -22px;
  background: rgba(21,27,46,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  animation: float 3.8s ease-in-out infinite;
}
.hero-image-card--bottom {
  top: auto; bottom: 36px;
  left: auto; right: -18px;
  animation-delay: 1.9s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hero-image-card-icon {
  width: 34px; height: 34px;
  background: rgba(201,162,39,0.14);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.hero-image-card-label { font-size: 0.63rem; color: rgba(255,255,255,0.45); line-height: 1.3; }
.hero-image-card-value { font-size: 0.87rem; font-weight: 700; color: white; line-height: 1.35; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.2);
  font-size: 0.95rem;
  animation: bounce 2.6s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ===========================
   4つのポイント
=========================== */
.section.points { background: var(--bg-white); }

.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.point-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.point-card::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-lg) var(--radius-lg) 0 0;
}
.point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
/* 薄い大番号 */
.point-num {
  position: absolute;
  top: -4px; right: 20px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 5.5rem;
  color: rgba(201,162,39,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.point-card-eyebrow {
  font-family: var(--font-en);
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.point-card h3 {
  font-family: var(--font-ja);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 12px;
}
.point-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.88;
  flex: 1;
}

/* ===========================
   仕事内容
=========================== */
.job-lead {
  font-size: 1.02rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 48px;
  line-height: 2;
}
.job-lead strong { color: var(--navy); font-weight: 700; }

.job-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.job-block {
  background: white;
  border-radius: var(--radius);
  padding: 28px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.job-block h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}
.job-block h3 i { color: var(--gold); font-size: 0.88rem; }
.job-block p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.88;
}

/* 商材カード */
.product-card {
  background: var(--bg-dark-sub);
  border-radius: var(--radius-lg);
  padding: 38px 44px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  border: 1px solid var(--border-dark);
}
.product-icon {
  width: 62px; height: 62px; min-width: 62px;
  background: rgba(201,162,39,0.1);
  border-radius: 14px;
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: var(--gold);
}
.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.product-info ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.product-info ul li {
  font-size: 0.875rem;
  color: rgba(248,250,252,0.8);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.7;
}
.product-info ul li i { color: var(--gold); font-size: 0.78rem; flex-shrink: 0; }

/* ===========================
   仕事内容：デモ写真
=========================== */
.job-demo-img-wrap {
  position: relative;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-demo-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}
.job-demo-img-wrap:hover .job-demo-img { transform: scale(1.03); }
.job-demo-badge {
  position: absolute;
  bottom: 18px; left: 20px;
  background: rgba(11,16,32,0.82);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 6px;
}
.job-demo-badge i { color: var(--gold); }

/* チームミーティング写真 */
.job-team-img-wrap {
  position: relative;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.job-team-img-wrap:hover .job-team-img { transform: scale(1.03); }

/* ===========================
   成長ステップ（タイムライン）
=========================== */
/* PC：横並び */
.timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
/* 横線 */
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,0.15) 100%);
  z-index: 0;
}
.timeline-node {
  width: 56px; height: 56px;
  background: white;
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  box-shadow: 0 0 0 7px rgba(201,162,39,0.06), 0 4px 12px rgba(0,0,0,0.08);
}
.timeline-body {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-sm);
  margin: 0 8px;
}
.timeline-period {
  display: inline-block;
  background: var(--bg-light-blue);
  border: 1px solid rgba(59,130,246,0.15);
  color: var(--cta-dark);
  font-size: 0.67rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}
.timeline-body h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.4;
}
.timeline-body p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.82;
}

/* ===========================
   成長ステップ：OJT写真
=========================== */
.onboarding-photo-wrap {
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.onboarding-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.onboarding-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,16,32,0.75));
  color: rgba(248,250,252,0.88);
  font-size: 0.82rem;
  padding: 36px 24px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.onboarding-photo-caption i { color: var(--gold); font-size: 0.75rem; }

/* ===========================
   職場の雰囲気
=========================== */
.workplace-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.workplace-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.workplace-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.55s ease;
}
.workplace-img-wrap:hover .workplace-img { transform: scale(1.04); }

.workplace-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-en);
  margin-bottom: 16px;
}
.workplace-title {
  font-family: var(--font-ja);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.workplace-title .accent { color: var(--gold); }
.workplace-title-bar {
  width: 32px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 22px;
}
.workplace-desc {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 30px;
}
.workplace-desc strong {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.08em;
}

/* 2列アイコンリスト */
.workplace-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
}
.workplace-list li {
  font-size: 0.875rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.65;
  font-weight: 500;
}
.workplace-list li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ===========================
   募集要項（定義リスト型カード）
=========================== */
.req-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.req-item {
  display: grid;
  grid-template-columns: 172px 1fr;
  border-bottom: 1px solid var(--border);
}
.req-item:last-child { border-bottom: none; }
.req-item:hover .req-value { background: #FAFBFF; }
.req-key {
  padding: 24px 26px;
  background: var(--bg-light);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  line-height: 1.55;
  border-right: 1px solid var(--border);
}
.req-value {
  padding: 24px 30px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.88;
  transition: background 0.15s;
}
.req-value strong { color: var(--text-main); font-weight: 700; }
.req-value .tag-good {
  display: inline-block;
  background: rgba(34,197,94,0.08);
  color: #15803D;
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.77rem;
  font-weight: 700;
  padding: 2px 11px;
  border-radius: 50px;
  margin: 2px 3px;
}
.req-note {
  display: block;
  font-size: 0.77rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.6;
}

/* ハイライト行 */
.req-item--highlight .req-key {
  background: var(--bg-dark-sub);
  color: var(--text-on-dark);
  border-right: 3px solid var(--gold);
}
.req-item--highlight .req-value { background: #F7FAFE; }

/* ===========================
   インタビュー（縦長カード型）
=========================== */
.interview-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.interview-profile {
  background: var(--bg-dark);
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  border-right: 1px solid var(--border-dark);
}
.interview-img-wrap {
  width: 130px; height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201,162,39,0.28);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.interview-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.interview-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 5px;
}
.interview-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-dark);
  line-height: 1.55;
}
.interview-career {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.interview-career i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.interview-qa { padding: 44px 48px; display: flex; flex-direction: column; gap: 34px; }
.interview-q-block {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.interview-q-block:last-child { border-bottom: none; padding-bottom: 0; }
.interview-q {
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.02em;
}
.interview-q i { font-size: 0.82rem; }
.interview-a {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.95;
}

/* ===========================
   向いている人 / 向いていない人
=========================== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* 左: ネイビー系 */
.fit-card {
  border-radius: var(--radius-xl);
  padding: 38px 38px;
  box-shadow: var(--shadow-sm);
}
.fit-card.fit-good {
  background: var(--bg-dark-sub);
  border: 1px solid rgba(201,162,39,0.12);
}
.fit-card.fit-bad {
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.fit-label {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fit-card.fit-good .fit-label { color: var(--gold); }
.fit-card.fit-bad .fit-label  { color: var(--text-sub); }

.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.fit-card ul li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.72;
  font-weight: 500;
}
.fit-card.fit-good ul li { color: rgba(248,250,252,0.85); }
.fit-card.fit-bad  ul li { color: var(--text-main); }
.fit-card.fit-good ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.fit-card.fit-bad ul li::before {
  content: '✗';
  position: absolute; left: 0;
  color: var(--text-light);
  font-weight: 700;
}

/* ===========================
   選考フロー（フローチャート）
=========================== */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 36px;
}
.process-step {
  flex: 1;
  background: white;
  border-radius: var(--radius);
  padding: 26px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step.highlight-step {
  background: var(--bg-dark);
  border: 1px solid rgba(201,162,39,0.3);
  box-shadow: 0 4px 20px rgba(201,162,39,0.08);
}
.process-icon {
  width: 46px; height: 46px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.highlight-step .process-icon {
  background: rgba(201,162,39,0.14);
  color: var(--gold);
}
.process-label {
  font-family: var(--font-en);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.highlight-step .process-label { color: rgba(255,255,255,0.38); }
.process-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}
.highlight-step .process-title { color: white; }
.process-step p {
  font-size: 0.77rem;
  color: var(--text-sub);
  line-height: 1.65;
}
.highlight-step p { color: rgba(255,255,255,0.48); }

/* 内定バッジ */
.process-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.process-arrow {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: -6px;
}
.process-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.process-note i { color: var(--cta); }

/* ===========================
   応募CTAセクション
=========================== */
.apply {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 22% 62%, rgba(201,162,39,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 82% 28%, rgba(59,130,246,0.06) 0%, transparent 55%);
}
.apply::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 52px 52px;
}
.apply .container { position: relative; z-index: 1; text-align: center; }
.apply-sub {
  color: var(--text-on-dark-sub);
  font-size: 0.97rem;
  margin-bottom: 44px;
  line-height: 2;
}
.apply-info {
  display: flex;
  gap: 44px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.apply-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  color: white;
}
.apply-info-item > i {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border-dark);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.apply-info-label { font-size: 0.7rem; color: var(--text-on-dark-sub); margin-bottom: 4px; }
.apply-info-value { font-size: 0.97rem; font-weight: 700; line-height: 1.55; }
.apply-info-small { font-size: 0.7rem; color: rgba(255,255,255,0.36); margin-top: 2px; }

.btn-apply-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: white;
  padding: 0 56px;
  height: 58px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(59,130,246,0.35);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.btn-apply-main:hover {
  background: var(--cta-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.46);
}
.apply-note { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ===========================
   フッター
=========================== */
.footer { background: #060B16; padding: 40px 32px; }
.footer-inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-weight: 700; font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer-text { font-size: 0.77rem; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.18); }

/* ===========================
   レスポンシブ
=========================== */

/* タブレット〜 */
@media (max-width: 960px) {
  :root { --section-py: 80px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-stats { max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
  .hero-image-wrap { display: none; }

  .interview-card { grid-template-columns: 1fr; }
  .interview-profile {
    flex-direction: row;
    text-align: left;
    padding: 28px 28px;
    gap: 22px;
    align-items: center;
  }
  .interview-img-wrap { width: 84px; height: 100px; margin-bottom: 0; flex-shrink: 0; }
  .interview-name { font-size: 1.05rem; }
  .interview-career { display: none; }
  .interview-qa { padding: 30px; }

  .workplace-inner { grid-template-columns: 1fr; gap: 36px; }
  .workplace-img { height: 280px; }
  .workplace-list { grid-template-columns: 1fr; }
}

/* スマートフォン */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .section-title { font-size: 1.55rem; }

  .points-grid { grid-template-columns: 1fr; }
  .job-details { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; gap: 20px; padding: 26px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card.fit-good { order: 1; }
  .fit-card.fit-bad  { order: 2; }

  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hero-stat-num { font-size: 1.35rem; }

  .req-item { grid-template-columns: 96px 1fr; }
  .req-key { padding: 16px 14px; font-size: 0.77rem; }
  .req-value { padding: 16px 16px; font-size: 0.86rem; }

  .process-flow { flex-direction: column; gap: 6px; }
  .process-arrow { transform: rotate(90deg); margin: -2px auto; }
  .process-step { width: 100%; flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .process-step .process-icon { margin-bottom: 0; flex-shrink: 0; }
  .highlight-step { flex-direction: column; text-align: center; align-items: center; }
  .highlight-step .process-icon { margin-bottom: 14px; }

  .apply-info { flex-direction: column; align-items: center; gap: 22px; }
  .btn-apply-main { padding: 0 36px; height: 54px; font-size: 0.95rem; }
  .interview-qa { padding: 22px; gap: 26px; }

  /* タイムライン SP：縦型 */
  .timeline { flex-direction: column; gap: 0; }
  .timeline-item::after { display: none; }
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 28px;
  }
  .timeline-item {
    border-left: 2px solid rgba(201,162,39,0.22);
    margin-left: 27px;
    padding-left: 26px;
  }
  .timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }
  .timeline-node { margin-bottom: 0; flex-shrink: 0; width: 44px; height: 44px; margin-left: -52px; }
  .timeline-body { text-align: left; margin: 0; }
}

/* 小スマートフォン */
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 200px; }
  .fit-card { padding: 26px; }
  .workplace-list { grid-template-columns: 1fr; }
  .hero-title-main { font-size: 2.2rem; }
}
