:root {
  --navy: #0f172a;
  --blue: #1e3a8a;
  --cyan: #0f766e;
  --orange: #f97316;
  --gold: #facc15;
  --paper: #ffffff;
  --soft: #f8fafc;
  --ink: #161923;
  --muted: #5b6472;
  --border: #dbe3ef;
  --shadow: 0 16px 44px rgba(15, 23, 42, 0.16);
  --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  line-height: 1.8;
  background: var(--soft);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.recruit-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 68px;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 900;
  color: var(--navy);
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
}
.recruit-nav { display: flex; gap: 24px; font-size: 0.92rem; font-weight: 800; color: var(--navy); }
.recruit-nav a:hover { color: var(--orange); }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 76px;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.64) 48%, rgba(15, 23, 42, 0.2)),
    url('../recruiting_lps/assets/recruit-experienced-hero.jpg') center / cover no-repeat;
  transform: scale(1.02);
}
.hero-content {
  position: relative;
  width: min(860px, 100%);
}
.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(2.25rem, 6.5vw, 5.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.lead {
  width: min(720px, 100%);
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions,
.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.primary-btn,
.secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 900;
}
.primary-btn { background: linear-gradient(135deg, var(--orange), #ea580c); color: #fff; }
.secondary-btn { border: 1px solid rgba(255,255,255,0.72); color: #fff; }
.secondary-btn.dark { border-color: var(--border); color: var(--navy); background: #fff; }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-heading {
  width: min(800px, 100%);
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.32;
  color: var(--navy);
}
.section-heading p,
.system-grid > div > p,
.entry-box p {
  color: var(--muted);
  margin: 16px 0 0;
}

.vision { background: #fff; }
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.style-grid article,
.system-list article {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.style-grid span {
  font-weight: 900;
  color: var(--orange);
}
.style-grid h3,
.system-list h3 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
}
.style-grid p,
.system-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.story-link {
  margin-top: 22px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}
.story-link p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.story-link h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
}
.story-link a {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.jobs { background: var(--soft); }
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.job-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.job-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-card div { padding: 24px; }
.job-card p {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}
.job-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.45;
}
.job-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.system { background: #fff; }
.system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.system-list {
  display: grid;
  gap: 16px;
}
.system-list article { box-shadow: none; border-left: 5px solid var(--cyan); }

.entry {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
}
.entry-box {
  width: min(860px, calc(100% - 40px));
}
.entry h2 { color: #fff; }
.entry-box p { color: rgba(255,255,255,0.82); }

.recruit-footer {
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: var(--navy);
}
.recruit-footer p { margin: 0; }
.recruit-footer a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 880px) {
  .recruit-header { height: auto; min-height: 64px; align-items: flex-start; flex-direction: column; padding: 12px 18px; }
  .recruit-nav { width: 100%; gap: 14px; overflow-x: auto; padding-bottom: 2px; font-size: 0.84rem; }
  .hero { min-height: 88vh; padding-top: 128px; }
  .style-grid,
  .job-grid,
  .system-grid { grid-template-columns: 1fr; }
  .story-link { align-items: flex-start; flex-direction: column; }
  .story-link a { width: 100%; }
  .job-card { grid-template-columns: 1fr; }
  .job-card img { aspect-ratio: 16 / 9; }
  .hero-actions a,
  .entry-actions a { width: 100%; }
  .recruit-footer { flex-direction: column; align-items: flex-start; }
}
