
:root {
  --navy: #0A1F44;
  --navy-mid: #0d2a5c;
  --blue: #007BFF;
  --cyan: #00E5FF;
  --orange: #FF6B00;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --text: #333333;
  --text-light: #8892a4;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(0,229,255,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── SCROLLBAR ─────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

/* ─── HEADER ─────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
header.scrolled {
  background: rgba(10,31,68,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-badge {
  width: 44px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-badge img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em;
  color: var(--white); line-height: 1.3;
}
.logo-text span { display: block; font-size: 10px; color: var(--cyan); letter-spacing: 0.2em; }
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  font-size: 13px; letter-spacing: 0.08em; color: rgba(255,255,255,0.8);
  text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--cyan); transform: scaleX(0); transition: transform 0.2s;
}
nav a:hover { color: var(--cyan); }
nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 24px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px !important; letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--white) !important; color: var(--orange) !important;
  box-shadow: 0 4px 20px rgba(0,229,255,0.5) !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ──────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0,123,255,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,229,255,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #060f22 0%, #0A1F44 45%, #071428 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridMove 25s linear infinite;
}
@keyframes gridMove { to { background-position: 70px 70px; } }

/* 斜めのライン装飾 */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: ''; position: absolute;
  top: -20%; left: -10%; width: 3px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.15), transparent);
  transform: rotate(25deg);
  animation: scanLine 6s ease-in-out infinite;
}
.hero-lines::after {
  content: ''; position: absolute;
  top: -20%; right: 20%; width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(0,123,255,0.1), transparent);
  transform: rotate(25deg);
  animation: scanLine 6s ease-in-out 2s infinite;
}
@keyframes scanLine { 0%,100%{opacity:0.3} 50%{opacity:1} }

.hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.5} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:1} }

.hero-diagonal {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; overflow: hidden; z-index: 2;
}
.hero-diagonal::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200%;
  background: var(--gray-light);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ── キービジュアル: メッセージのみ ── */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 6%;
  max-width: 960px; width: 100%;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.45em; color: var(--cyan);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--cyan); opacity: 0.6;
}
.hero-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: 38px;
  line-height: 1.6; margin-bottom: 0;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.hero-title .line1 {
  display: block; color: var(--white);
  opacity: 0;
  animation: blastFromLeft 1.1s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: blastFromRight 1.1s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .sep { display: block; height: 8px; }
.hero-title .line3 {
  display: block; color: var(--white); font-size: 38px;
  opacity: 0;
  animation: blastFromLeft 1.1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes blastFromLeft {
  0%   { opacity: 0; transform: translateX(-120px) skewX(10deg) scale(0.9); filter: blur(6px); }
  60%  { opacity: 1; filter: blur(0px); }
  80%  { transform: translateX(8px) skewX(-2deg) scale(1.02); }
  100% { opacity: 1; transform: translateX(0) skewX(0deg) scale(1); filter: blur(0px); }
}
@keyframes blastFromRight {
  0%   { opacity: 0; transform: translateX(120px) skewX(-10deg) scale(0.9); filter: blur(6px); }
  60%  { opacity: 1; filter: blur(0px); }
  80%  { transform: translateX(-8px) skewX(2deg) scale(1.02); }
  100% { opacity: 1; transform: translateX(0) skewX(0deg) scale(1); filter: blur(0px); }
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 2; color: rgba(255,255,255,0.65);
  margin-top: 36px; letter-spacing: 0.04em;
  opacity: 0; animation: fadeUp 1s 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ── ボタン類はキービジュアルに置かない ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255,107,0,0.5);
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: transparent;
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 6px 30px rgba(0,229,255,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0.05em;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}

/* スクロール促進インジケーター */
.hero-scroll {
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(0,229,255,0.6), transparent);
  margin: 0 auto 10px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }
.hero-scroll-text {
  font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 0.3em;
  color: rgba(0,229,255,0.5);
}

/* ── NUMBERS STRIP（ヒーロー直下） ── */
#numbers {
  background: var(--gray-light); position: relative; z-index: 1;
  padding: 0;
}
.numbers-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 100%; margin: 0;
}
.numbers-item {
  padding: 48px 5%;
  display: flex; align-items: center; gap: 24px;
  border-right: 1px solid #dde4ef;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.numbers-item:last-child { border-right: none; }
.numbers-item:hover { background: #eef2f9; }
.numbers-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--blue), var(--cyan));
}
.numbers-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,123,255,0.12), rgba(0,229,255,0.08));
  border: 1px solid rgba(0,123,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.numbers-val {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px); line-height: 1;
  color: var(--navy);
}
.numbers-val em {
  font-style: normal; font-size: 0.55em; color: var(--blue); margin-left: 2px;
}
.numbers-desc { font-size: 14px; color: #555; margin-top: 5px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ─── SECTION SHARED ─────────────────── */
.section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.35em;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: currentColor; }
.section-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.3;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px; line-height: 1.9; max-width: 540px;
}

/* ─── MESSAGE SECTION ────────────────── */
#message {
  background: var(--gray-light); color: var(--text);
  padding: 64px 8% 100px;
  position: relative; overflow: hidden;
}
#message::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 100px; overflow: hidden;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.message-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.message-tag {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--blue); margin-bottom: 20px;
  border-left: 3px solid var(--blue); padding-left: 12px;
}
.message-title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px); line-height: 1.3;
  margin-bottom: 28px; color: var(--navy);
  white-space: nowrap;
}
.message-title em { color: var(--blue); font-style: normal; }
.message-body { font-size: 16px; line-height: 2; color: #444; margin-bottom: 36px; }
.message-visual {
  position: relative;
}
.message-visual-inner {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.message-visual-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,123,255,0.05) 20px, rgba(0,123,255,0.05) 21px);
}
.shield-icon {
  width: 120px; height: 120px; opacity: 0.15;
}
.message-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  background: var(--orange); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
  color: var(--white); font-family: 'Montserrat', sans-serif;
}
.message-badge .big { font-size: 30px; font-weight: 900; line-height: 1; }
.message-badge .small { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; }

/* ─── WORK SECTION ───────────────────── */
#work {
  background: var(--navy); padding: 120px 8%;
  position: relative; overflow: hidden;
}
.work-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 90% 50%, rgba(0,123,255,0.08) 0%, transparent 60%);
}
.work-inner { max-width: 1200px; margin: 0 auto; }
.work-header { margin-bottom: 70px; }
.work-label { color: var(--cyan); }
.work-title { color: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.work-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.4);
}
.work-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transition: transform 0.3s ease;
}
.work-card:hover::after { transform: scaleX(1); }
.work-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,123,255,0.2), rgba(0,229,255,0.1));
  border: 1px solid rgba(0,229,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.work-card-title {
  font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--white);
}
.work-card-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); }

/* ─── 統一セクション見出し ───────────── */
.sec-head { margin-bottom: 56px; }
.sec-head-en {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 1;
  letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 16px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.sec-head-en .ja {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.05em;
}
.sec-head-tagline {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 700;
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.sec-head-desc {
  font-size: 15px; line-height: 1.9; max-width: 520px;
}
.sec-head.on-dark .sec-head-en { color: var(--cyan); }
.sec-head.on-dark .sec-head-en .ja { color: rgba(0,229,255,0.65); }
.sec-head.on-dark .sec-head-tagline { color: var(--white); }
.sec-head.on-dark .sec-head-desc { color: rgba(255,255,255,0.55); }
.sec-head.on-light .sec-head-en { color: var(--blue); }
.sec-head.on-light .sec-head-en .ja { color: var(--blue); }
.sec-head.on-light .sec-head-tagline { color: var(--navy); }
.sec-head.on-light .sec-head-desc { color: #555; }

.career-path {
  margin-top: 0;
}
.career-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(32px, 4vw, 52px); line-height: 1;
  letter-spacing: -0.02em; color: var(--cyan);
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 32px;
}
.career-title .career-title-ja {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.05em;
  color: rgba(0,229,255,0.65);
}
.career-steps {
  display: flex; flex-direction: column; gap: 6px;
}
.career-step {
  display: flex; align-items: stretch; min-height: 90px;
  position: relative;
}
/* 矢印コネクター */
.career-step:not(:last-child)::after {
  content: '';
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 20px solid rgba(0,229,255,0.35);
  z-index: 3;
}
.career-step:not(:last-child) { margin-bottom: 22px; }

/* ── 左：ダークバッジ（台形） ── */
.career-step-badge {
  width: 280px; flex-shrink: 0;
  position: relative;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255,255,255,0.025) 6px,
      rgba(255,255,255,0.025) 7px
    ),
    linear-gradient(135deg, #060e1e 0%, #0d2045 100%);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  padding: 0 48px 0 28px;
  display: flex; align-items: center; gap: 14px;
  border-left: 4px solid rgba(0,229,255,0.5);
}
.career-step-num-wrap {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.career-step-word {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); text-transform: lowercase;
  margin-bottom: 2px;
}
.career-step-number {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 52px; line-height: 1;
  color: var(--white);
}
.career-step-divider {
  width: 1px; height: 40px; background: rgba(0,229,255,0.3); flex-shrink: 0;
}
.career-step-title {
  font-size: 18px; font-weight: 900; color: var(--white); line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ── 右：説明エリア ── */
.career-step-body {
  flex: 1;
  background: rgba(13, 42, 92, 0.5);
  border-top: 1px solid rgba(0,229,255,0.12);
  border-bottom: 1px solid rgba(0,229,255,0.12);
  border-right: 1px solid rgba(0,229,255,0.12);
  padding: 20px 28px;
  display: flex; align-items: center;
}
.career-step-salary {
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7;
}
.career-step-salary strong {
  color: var(--cyan); font-weight: 700;
}

/* モバイル */
@media (max-width: 768px) {
  .career-step { flex-direction: column; }
  .career-step-badge {
    width: 100%; clip-path: polygon(0 0, 100% 0, 100% 75%, 97% 100%, 0 100%);
    padding: 16px 20px; gap: 12px;
  }
  .career-step-number { font-size: 36px; }
  .career-step-body { border-left: 3px solid rgba(0,229,255,0.4); border-top: none; }
}

/* ─── SCHEDULE SECTION ───────────────── */
#schedule {
  background: linear-gradient(180deg, var(--navy) 0%, #071428 100%);
  padding: 100px 8%; position: relative; overflow: hidden;
}
.schedule-inner { max-width: 1200px; margin: 0 auto; }
.schedule-label { color: var(--orange); }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.schedule-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--glass-border);
}
.schedule-card-header {
  padding: 24px 32px;
  display: flex; align-items: center; gap: 14px;
}
.schedule-card.day .schedule-card-header { background: linear-gradient(135deg, #1a3d6b, #0d2a5c); }
.schedule-card.night .schedule-card-header { background: linear-gradient(135deg, #0d1f3d, #071020); }
.schedule-icon { font-size: 28px; }
.schedule-card-title { font-size: 18px; font-weight: 700; }
.schedule-card-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.schedule-timeline { padding: 28px 32px; background: rgba(255,255,255,0.02); }
.timeline-item {
  display: flex; gap: 20px; margin-bottom: 20px;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--cyan); min-width: 60px; padding-top: 2px;
}
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--cyan);
  margin-top: 5px; flex-shrink: 0;
  position: relative;
}
.timeline-dot::after {
  content: ''; position: absolute;
  top: 12px; left: 3px;
  width: 1px; height: 30px;
  background: rgba(0,229,255,0.2);
}
.timeline-item:last-child .timeline-dot::after { display: none; }
.timeline-label { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ─── BENEFITS ───────────────────────── */
#benefits {
  background: var(--gray-light); color: var(--text);
  padding: 0 0 100px; position: relative; overflow: hidden;
}
#benefits::before {
  content: ''; position: absolute; top: -2px; left: 0; right: 0;
  height: 100px; background: #071428;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.benefits-inner { max-width: 1200px; margin: 0 auto; padding: 0 8%; }

/* ── セクションヒーロー（画像2スタイル） ── */
.section-hero {
  position: relative; padding: 80px 8% 60px;
  margin-bottom: 0; overflow: hidden;
}
.section-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f0fb 0%, #f0f6ff 50%, #e4edf8 100%);
}
.section-hero-shape {
  position: absolute; bottom: -1px; right: -5%; width: 55%;
  height: 110%; background: rgba(255,255,255,0.55);
  border-radius: 60% 0 0 40%;
  transform: skewY(-3deg);
}
.section-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.section-hero-left {}
.section-hero-en-wrap {
  display: flex; align-items: baseline; gap: 18px; margin-bottom: 18px;
}
.section-hero-en {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(52px, 7vw, 96px); line-height: 1;
  color: var(--blue); letter-spacing: -0.02em;
}
.section-hero-ja {
  font-size: 16px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.05em;
}
.section-hero-tagline {
  font-size: clamp(16px, 2vw, 20px); font-weight: 700;
  color: var(--navy); letter-spacing: 0.02em;
}
.section-hero-desc {
  font-size: 14px; color: #666; line-height: 1.8; margin-top: 12px;
  max-width: 480px;
}
.section-hero-more {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em; color: var(--navy);
  text-decoration: none; flex-shrink: 0;
  transition: gap 0.2s;
}
.section-hero-more:hover { gap: 18px; color: var(--blue); }
.section-hero-more .arrow-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s, transform 0.2s;
}
.section-hero-more:hover .arrow-circle {
  background: var(--blue); transform: scale(1.1);
}

/* ── ダーク版 section-hero（interview用） ── */
.section-hero.dark .section-hero-bg {
  background: linear-gradient(135deg, #071020 0%, #0d2045 50%, #071428 100%);
}
.section-hero.dark .section-hero-shape {
  background: rgba(255,255,255,0.03);
}
.section-hero.dark .section-hero-en { color: var(--cyan); }
.section-hero.dark .section-hero-ja { color: var(--cyan); }
.section-hero.dark .section-hero-tagline { color: var(--white); }
.section-hero.dark .section-hero-desc { color: rgba(255,255,255,0.55); }
.section-hero.dark .section-hero-more { color: rgba(255,255,255,0.7); }
.section-hero.dark .section-hero-more:hover { color: var(--cyan); }
.section-hero.dark .section-hero-more .arrow-circle {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(0,229,255,0.3);
}
.section-hero.dark .section-hero-more:hover .arrow-circle {
  background: var(--cyan); color: var(--navy);
}

.benefits-label { color: var(--blue); }
.benefits-title { color: var(--navy); }
.benefits-desc { color: #555; }

/* ── タブ：セグメント型 ── */
.benefits-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin: 0 0 40px;
  background: var(--white);
  border: 2px solid #dde5f0;
  border-radius: 12px; overflow: hidden;
}
.benefits-tab {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 16px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  color: #888; background: var(--white);
  border: none; border-right: 1px solid #dde5f0;
  transition: all 0.2s ease;
  letter-spacing: 0.02em; position: relative;
}
.benefits-tab:last-child { border-right: none; }
.benefits-tab .tab-icon { font-size: 20px; flex-shrink: 0; }
.benefits-tab .tab-texts { text-align: left; }
.benefits-tab .tab-label { display: block; color: inherit; }
.benefits-tab .tab-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  color: #ccc; display: block; margin-top: 2px;
  transition: color 0.2s;
}
.benefits-tab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: transform 0.2s ease;
}
.benefits-tab:hover { background: #f5f8ff; color: var(--navy); }
.benefits-tab:hover .tab-en { color: var(--blue); }
.benefits-tab.active {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f2ff 100%);
  color: var(--blue);
}
.benefits-tab.active .tab-en { color: var(--blue); }
.benefits-tab.active::after { transform: scaleX(1); }

.benefits-panel { display: none; }
.benefits-panel.active { display: block; }

.salary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.salary-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 1px solid #e0e7ef;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.salary-card:hover { box-shadow: 0 8px 30px rgba(0,123,255,0.12); }
.salary-type {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--blue); margin-bottom: 10px;
  display: inline-block; background: rgba(0,123,255,0.08);
  padding: 3px 10px; border-radius: 20px;
}
.salary-amount { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--navy); line-height: 1; }
.salary-unit { font-size: 14px; color: #888; margin-top: 4px; }

.allowance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.allowance-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: 10px; padding: 18px 20px;
  border: 1px solid #e0e7ef;
}
.allowance-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.allowance-text { font-size: 14px; color: var(--text); }
.allowance-val { font-weight: 700; color: var(--navy); margin-left: auto; font-size: 14px; }

.welfare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.welfare-card {
  background: var(--white); border-radius: 12px; padding: 28px 20px;
  text-align: center; border: 1px solid #e0e7ef;
  transition: all 0.2s;
}
.welfare-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(0,123,255,0.1);
  transform: translateY(-3px);
}
.welfare-emoji { font-size: 32px; margin-bottom: 12px; }
.welfare-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.welfare-desc { font-size: 12px; color: #666; line-height: 1.6; }

/* ─── INTERVIEW ──────────────────────── */
#interview {
  background: linear-gradient(180deg, #071428 0%, var(--navy) 100%);
  padding: 0 0 100px;
}
.interview-inner { max-width: 1200px; margin: 0 auto; padding: 0 8%; }
.interview-label { color: var(--cyan); }
.interview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.interview-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.interview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.interview-thumb {
  height: 200px; position: relative;
  background: linear-gradient(135deg, #1a3d6b, #0d2a5c);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.interview-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(0,229,255,0.03) 15px, rgba(0,229,255,0.03) 16px);
}
.interview-thumb-icon { font-size: 64px; opacity: 0.3; }
.interview-thumb-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--navy); background: var(--cyan);
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.1em;
}
.interview-body { padding: 28px 24px; }
.interview-person {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.interview-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy); font-weight: 900;
  flex-shrink: 0;
}
.interview-name { font-size: 15px; font-weight: 700; color: var(--white); }
.interview-role { font-size: 12px; color: var(--cyan); }
.interview-quote {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.8);
  border-left: 2px solid var(--cyan); padding-left: 14px;
  font-style: italic;
}

/* ─── RECRUIT ────────────────────────── */
#recruit {
  background: var(--gray-light); color: var(--text);
  padding: 120px 8%;
}
.recruit-inner { max-width: 1000px; margin: 0 auto; }
.recruit-label { color: var(--blue); }
.recruit-title { color: var(--navy); }

.recruit-tabs {
  display: flex; gap: 8px; margin-bottom: 40px; margin-top: 40px; flex-wrap: wrap;
}
.recruit-tab {
  padding: 10px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  background: var(--white); color: #888;
  border: 2px solid #e0e7ef; transition: all 0.2s;
}
.recruit-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.recruit-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.recruit-table { width: 100%; border-collapse: collapse; }
.recruit-table tr { border-bottom: 1px solid #e8edf3; }
.recruit-table th {
  padding: 20px 24px; text-align: left; width: 200px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  background: rgba(0,123,255,0.05);
  vertical-align: top;
}
.recruit-table td {
  padding: 20px 24px; font-size: 14px; color: var(--text); line-height: 1.8;
}
.recruit-table tr:hover td { background: rgba(0,123,255,0.02); }

.flow-section { margin-top: 60px; }
.flow-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(32px, 4vw, 52px); line-height: 1;
  letter-spacing: -0.02em; color: var(--blue);
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 36px;
}
.flow-title .flow-title-ja {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.05em;
  color: var(--blue);
}
.flow-steps { display: flex; gap: 0; flex-wrap: wrap; }
.flow-step {
  flex: 1; min-width: 130px; text-align: center; padding: 28px 16px;
  position: relative; background: var(--white);
  border: 1px solid #e0e7ef;
}
.flow-step:first-child { border-radius: 12px 0 0 12px; }
.flow-step:last-child { border-radius: 0 12px 12px 0; }
.flow-step:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #e0e7ef;
  z-index: 1;
}
.flow-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.flow-label { font-size: 13px; font-weight: 700; color: var(--navy); }

/* ─── ENTRY ──────────────────────────── */
#entry {
  background: linear-gradient(135deg, #0A1F44 0%, #071428 100%);
  padding: 100px 8%;
  position: relative; overflow: hidden;
}
#entry::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.entry-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.entry-label { color: var(--orange); justify-content: center; }
.entry-title { font-size: clamp(28px, 4vw, 46px); font-weight: 900; margin-bottom: 20px; }
.entry-title em { background: linear-gradient(90deg, var(--orange), #ffaa00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; }
.entry-desc { color: rgba(255,255,255,0.7); margin-bottom: 50px; font-size: 16px; }

.entry-form {
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 48px 52px;
  backdrop-filter: blur(10px);
  text-align: left;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.85); margin-bottom: 8px; letter-spacing: 0.05em;
}
.form-label span { color: var(--orange); margin-left: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; font-size: 16px;
  color: var(--white); font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.15);
}
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--cyan); }
.form-check label { font-size: 14px; color: rgba(255,255,255,0.7); }
.form-check a { color: var(--cyan); text-decoration: underline; }
.form-submit {
  width: 100%; padding: 18px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 25px rgba(255,107,0,0.5);
  transition: all 0.3s ease; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  background: var(--white); color: var(--orange);
  box-shadow: 0 6px 30px rgba(0,229,255,0.4);
}

/* ─── FOOTER ─────────────────────────── */
footer {
  background: #050e1f;
  border-top: 1px solid rgba(0,229,255,0.1);
  padding: 60px 8% 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 40px; }
.footer-logo { margin-bottom: 20px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.7; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--cyan); margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ─── FLOATING CTA ───────────────────── */
.float-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease;
}
.float-cta.visible { opacity: 1; transform: translateY(0); }
.float-cta a {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: 0 6px 25px rgba(255,107,0,0.6);
  transition: all 0.2s;
}
.float-cta a:hover {
  background: var(--white); color: var(--orange);
  box-shadow: 0 6px 25px rgba(0,229,255,0.4);
}

/* ─── SCROLL REVEAL ──────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .numbers-strip { grid-template-columns: 1fr; }
  .numbers-item { border-right: none; border-bottom: 1px solid #dde4ef; }
  .numbers-item:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .welfare-grid { grid-template-columns: repeat(2, 1fr); }
  .interview-grid { grid-template-columns: 1fr 1fr; }
  .message-inner { grid-template-columns: 1fr; gap: 40px; }
  .schedule-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(10,31,68,0.98); padding: 80px 5%; z-index: 999; gap: 20px; }
  nav.open a { font-size: 20px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .work-grid { grid-template-columns: 1fr; }
  .interview-grid { grid-template-columns: 1fr; }
  .salary-grid { grid-template-columns: 1fr; }
  .welfare-grid { grid-template-columns: 1fr 1fr; }
  .career-step-body { border-left: 3px solid rgba(0,229,255,0.4); border-top: none; }
  .career-step:not(:last-child)::after { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .form-row { grid-template-columns: 1fr; }
  .entry-form { padding: 32px 28px; }
  .flow-steps { flex-direction: column; }
  .flow-step { border-radius: 10px !important; margin-bottom: 8px; }
  .flow-step:not(:last-child)::after { display: none; }
  .benefits-tabs { overflow-x: auto; }
  .recruit-table { display: block; overflow-x: auto; }
  .allowance-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 30px; }
}
