/* ==============================================================
   Protago School Recruit LP — style.css
   ==============================================================
   Brand colors:
     --color-main:    #1E3A8A  (primary navy)
     --color-accent:  #3B82F6  (sky blue)
     --color-text:    #111827  (body text)
     --color-bg:      #F9FAFB  (page background)
   Typography:
     Body: Noto Sans JP (400/500/700/800/900)
     Display nums: Inter (700/900)
   ============================================================== */

/* ============================================
   1. CSS Variables / Tokens
   ============================================ */
:root {
  /* Brand */
  --color-main: #1E3A8A;
  --color-main-dark: #172554;
  --color-main-light: #2C4FA8;
  --color-accent: #3B82F6;
  --color-accent-light: #60A5FA;
  --color-accent-soft: #DBEAFE;
  --color-text: #111827;
  --color-text-sub: #4B5563;
  --color-text-mute: #6B7280;
  --color-bg: #F9FAFB;
  --color-bg-alt: #F3F4F6;
  --color-bg-soft: #EFF6FF;
  --color-white: #FFFFFF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-success: #10B981;
  --color-warn: #F59E0B;
  --color-danger: #EF4444;
  --color-highlight: #FEF3C7;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  --grad-brand-soft: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  --grad-dark: linear-gradient(135deg, var(--color-main-dark) 0%, var(--color-main) 100%);

  /* Typography */
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', system-ui, -apple-system, sans-serif;
  --font-num: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 2px 6px rgba(30, 58, 138, 0.06), 0 1px 3px rgba(30, 58, 138, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.10), 0 2px 6px rgba(30, 58, 138, 0.06);
  --shadow-lg: 0 20px 50px rgba(30, 58, 138, 0.14), 0 6px 16px rgba(30, 58, 138, 0.08);
  --shadow-xl: 0 30px 80px rgba(30, 58, 138, 0.18), 0 10px 30px rgba(30, 58, 138, 0.10);
  --shadow-glow: 0 12px 36px rgba(59, 130, 246, 0.30);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 280ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 960px;
  --header-h: 76px;
  --notice-h: 36px;

  /* Z-index */
  --z-notice: 90;
  --z-header: 100;
  --z-sticky: 200;
  --z-overlay: 900;
  --z-modal: 1000;
}

/* ============================================
   2. Reset / Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-main); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.35; color: var(--color-text); letter-spacing: -0.01em; }
mark { background: linear-gradient(transparent 55%, rgba(251, 191, 36, 0.45) 55%); color: inherit; padding: 0 4px; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--color-accent); color: white; }

/* ============================================
   3. Layout helpers
   ============================================ */
.section { padding: var(--space-3xl) var(--space-lg); position: relative; }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__header { margin-bottom: var(--space-2xl); max-width: 760px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-num); font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: var(--space-md);
}
.section__eyebrow span {
  display: inline-block; padding: 4px 10px;
  background: var(--color-accent-soft); color: var(--color-main);
  border-radius: var(--radius-sm); font-size: 11px;
}
.section__eyebrow--light { color: var(--color-accent-light); }
.section__eyebrow--light span { background: rgba(255,255,255,0.15); color: white; }
.section__heading {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  line-height: 1.25; margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.section__heading--light { color: white; }
.section__subheading {
  font-size: 16px; color: var(--color-text-sub); line-height: 1.85;
}
.section__subheading--light { color: rgba(255,255,255,0.85); }

/* ============================================
   4. Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  font-family: var(--font-jp); font-weight: 700; font-size: 15px;
  line-height: 1.4; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  white-space: nowrap; user-select: none;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__arrow { transition: transform var(--transition-base); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-brand); color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); color: white; }

.btn-secondary {
  background: white; color: var(--color-main);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-main);
}
.btn-secondary:hover { background: var(--color-main); color: white; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--color-main);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { background: var(--color-bg-soft); border-color: var(--color-accent); color: var(--color-main); }

/* ============================================
   5. Top Notice Bar
   ============================================ */
.top-notice {
  background: var(--grad-dark); color: white;
  font-size: 13px; padding: 8px 0; position: relative; z-index: var(--z-notice);
}
.top-notice__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-lg);
  display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; justify-content: center;
}
.top-notice__badge {
  background: var(--color-accent); padding: 2px 10px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 11px;
  letter-spacing: 0.05em;
}
.top-notice__text { font-weight: 500; }
.top-notice__link {
  color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}
.top-notice__link:hover { color: var(--color-accent-light); }

/* ============================================
   6. Global Header
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--space-lg);
  height: var(--header-h);
  display: flex; align-items: center; gap: var(--space-lg);
}
.site-header__logo { flex-shrink: 0; display: inline-block; line-height: 0; }
.site-header__logo img { height: 44px; width: auto; }
.global-nav { flex: 1; }
.global-nav__list { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
.global-nav__list a {
  display: inline-block; color: var(--color-text-sub);
  font-weight: 700; font-size: 13px;
  padding: 6px 4px; position: relative;
}
.global-nav__list a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width var(--transition-base), left var(--transition-base);
}
.global-nav__list a:hover { color: var(--color-main); }
.global-nav__list a:hover::after { width: 100%; left: 0; }
.site-header__cta { display: flex; gap: var(--space-xs); flex-shrink: 0; }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--radius-md);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-main); border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: white; box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  padding: var(--space-lg);
}
.mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav__list a {
  display: block; padding: 14px var(--space-md);
  color: var(--color-text); font-weight: 700;
  border-radius: var(--radius-md);
}
.mobile-nav__list a:hover { background: var(--color-bg-soft); }
.mobile-nav__cta {
  margin-top: var(--space-md); text-align: center;
  background: var(--grad-brand) !important; color: white !important;
  box-shadow: var(--shadow-md);
}

/* ============================================
   7. Hero
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 60%, #BFDBFE 100%);
  padding: var(--space-3xl) var(--space-lg) calc(var(--space-3xl) + 40px);
  min-height: calc(100vh - var(--header-h) - var(--notice-h));
}
.hero__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl); align-items: center;
  position: relative; z-index: 2;
}
.hero__deco { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero__deco--circle-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(59,130,246,0.32), transparent 70%); top: -120px; right: -100px; animation: float 18s ease-in-out infinite; }
.hero__deco--circle-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(30,58,138,0.18), transparent 70%); bottom: -100px; left: -80px; animation: float 22s ease-in-out infinite reverse; }
.hero__deco--circle-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 70%); top: 50%; left: 50%; animation: float 16s ease-in-out infinite; }
.hero__deco--dots {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(30,58,138,0.10) 1px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.5;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-25px, 15px) scale(0.97); }
}

.hero__marquee {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 12px 0; background: var(--grad-dark); color: white;
  overflow: hidden; z-index: 3;
}
.hero__marquee-track {
  display: flex; gap: var(--space-2xl);
  white-space: nowrap; animation: marquee 36s linear infinite;
  font-family: var(--font-num); font-size: 13px; font-weight: 900;
  letter-spacing: 0.18em;
}
.hero__marquee-track span { display: inline-block; }
.hero__marquee-track span:nth-child(even) { color: var(--color-accent-light); font-family: var(--font-jp); letter-spacing: 0.05em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__body { padding-top: 40px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  margin-bottom: var(--space-lg); font-size: 13px;
}
.hero__eyebrow-badge {
  background: var(--grad-brand); color: white;
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-num); font-weight: 900; letter-spacing: 0.12em;
}
.hero__eyebrow-text { color: var(--color-text-sub); font-weight: 700; }

.hero__heading {
  font-size: clamp(34px, 5.4vw, 64px); font-weight: 900;
  line-height: 1.25; letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
  color: var(--color-main-dark);
}
.hero__heading-line { display: block; }

.hero__lead {
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.95;
  color: var(--color-text-sub); margin-bottom: var(--space-xl); font-weight: 500;
}
.hero__lead strong { color: var(--color-main); font-weight: 800; }

.hero__cta {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
  padding: var(--space-lg) 0; border-top: 2px dashed rgba(30,58,138,0.18);
}
.hero__highlights li {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.hero__highlight-num {
  font-size: 11px; font-weight: 700; color: var(--color-text-mute); letter-spacing: 0.1em;
}
.hero__highlight-val {
  font-family: var(--font-num); font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900; color: var(--color-main); line-height: 1.1;
}
.hero__highlight-val span {
  font-family: var(--font-jp); font-size: 0.55em; font-weight: 700;
  color: var(--color-text-sub); margin-left: 2px;
}

.hero__visual {
  position: relative; padding-top: 40px;
}
.hero__visual img {
  /* 横長の実写ヒーロー画像 (16:9 相当) を綺麗に表示 */
  width: 100%; max-width: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 80px rgba(30,58,138,0.18));
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__visual-badge {
  position: absolute; background: white;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  border: 2px solid var(--color-accent-soft);
}
.hero__visual-badge strong {
  font-family: var(--font-num); font-size: 28px; font-weight: 900;
  color: var(--color-main); line-height: 1;
}
.hero__visual-badge strong small { font-size: 16px; }
.hero__visual-badge span {
  font-size: 11px; font-weight: 700; color: var(--color-text-sub);
}
.hero__visual-badge--1 { top: 10%; left: -10px; animation: badgeFloat 6s ease-in-out infinite; }
.hero__visual-badge--2 { top: 50%; right: -20px; animation: badgeFloat 7s ease-in-out infinite -2s; }
.hero__visual-badge--3 { bottom: 10%; left: 10%; animation: badgeFloat 8s ease-in-out infinite -4s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

.hero__scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-num); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--color-main);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: var(--color-main);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -40px; left: 0;
  width: 1px; height: 40px; background: var(--color-accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { transform: translateY(80px); }
}

/* ============================================
   8. Section: Mission
   ============================================ */
.section--mission { background: var(--color-bg); }
.mission__statement {
  text-align: center; margin: 0 auto var(--space-2xl);
  padding: var(--space-2xl) var(--space-lg);
  background: var(--grad-brand-soft); border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.mission__statement::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
}
.mission__statement::after {
  content: ""; position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.18), transparent 70%);
}
.mission__big {
  position: relative;
  font-size: clamp(38px, 6vw, 80px); font-weight: 900;
  line-height: 1.25; letter-spacing: -0.03em;
  color: var(--color-main-dark);
  margin-bottom: var(--space-md);
}
.mission__en {
  position: relative;
  font-family: var(--font-num); font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 700; letter-spacing: 0.15em; color: var(--color-accent);
}
.mission__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl); align-items: center;
}
.mission__subheading {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 800;
  line-height: 1.45; margin-bottom: var(--space-lg);
  color: var(--color-main);
}
.mission__paragraph {
  font-size: 15.5px; line-height: 2; color: var(--color-text-sub);
  margin-bottom: var(--space-md);
}
.mission__paragraph strong { color: var(--color-main); background: var(--color-highlight); padding: 0 4px; }
.mission__visual img { width: 100%; max-width: 600px; margin-inline: auto; }

/* ============================================
   9. Section: Stages
   ============================================ */
.section--stages { background: var(--color-bg-alt); }
.stages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg); counter-reset: stage;
}
.stage {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative; overflow: hidden;
  border-top: 4px solid transparent;
}
.stage--1 { border-top-color: #93C5FD; }
.stage--2 { border-top-color: #60A5FA; }
.stage--3 { border-top-color: #3B82F6; }
.stage--4 { border-top-color: #1E3A8A; }
.stage:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.stage__no {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: var(--space-md);
}
.stage__no-label {
  font-family: var(--font-num); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--color-text-mute);
}
.stage__no-num {
  font-family: var(--font-num); font-size: 64px; font-weight: 900;
  line-height: 1; color: var(--color-main);
  -webkit-text-stroke: 1px var(--color-main);
}
.stage--1 .stage__no-num { color: transparent; -webkit-text-stroke: 2px #93C5FD; }
.stage--2 .stage__no-num { color: transparent; -webkit-text-stroke: 2px #60A5FA; }
.stage--3 .stage__no-num { color: var(--color-accent); -webkit-text-stroke: 0; }
.stage--4 .stage__no-num { color: var(--color-main); -webkit-text-stroke: 0; }

.stage__title {
  font-size: 20px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm);
}
.stage__desc {
  font-size: 14px; line-height: 1.85; color: var(--color-text-sub);
  margin-bottom: var(--space-md);
}
.stage__points {
  border-top: 1px solid var(--color-border-light); padding-top: var(--space-md);
  display: flex; flex-direction: column; gap: 6px;
}
.stage__points li {
  font-size: 13px; color: var(--color-text-sub); padding-left: 18px; position: relative;
}
.stage__points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--color-accent); font-weight: 900;
}
.stages__note {
  margin-top: var(--space-xl); text-align: center;
  font-size: 13px; color: var(--color-text-mute);
}

/* ============================================
   10. Section: Numbers
   ============================================ */
.section--numbers {
  background: var(--grad-dark); color: white;
  padding-top: var(--space-3xl); padding-bottom: var(--space-3xl);
  position: relative; overflow: hidden;
}
.section--numbers::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(59,130,246,0.18) 1px, transparent 1.5px);
  background-size: 32px 32px; opacity: 0.5; pointer-events: none;
}
.section--numbers .section__inner { position: relative; z-index: 1; }
.numbers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.number-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}
.number-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--color-accent);
}
.number-card__label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.75); letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.number-card__value {
  font-family: var(--font-num); font-weight: 900;
  font-size: clamp(40px, 5vw, 60px); line-height: 1;
  color: white;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: var(--space-xs);
}
.number-card__unit {
  font-family: var(--font-jp); font-size: 0.32em; font-weight: 700;
  color: var(--color-accent-light);
}
.number-card__sub {
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.numbers__note {
  margin-top: var(--space-2xl); text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.85;
}

/* ============================================
   11. Section: Work
   ============================================ */
.section--work { background: var(--color-bg); }
.work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg); margin-bottom: var(--space-3xl);
}
.work-card {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.work-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--color-accent-soft);
}
.work-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: var(--space-md);
}
.work-card__title {
  font-size: 18px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm);
}
.work-card__desc {
  font-size: 14.5px; line-height: 1.9; color: var(--color-text-sub);
}

.work__day {
  background: white; border-radius: var(--radius-xl);
  padding: var(--space-2xl); box-shadow: var(--shadow-md);
}
.work__day-heading {
  font-size: 24px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-lg); text-align: center;
}
.work__day-img { width: 100%; max-width: 600px; margin: 0 auto var(--space-xl); }
.work__day-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--space-md);
}
.work__day-list li {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--space-lg); align-items: start;
  padding: var(--space-md); border-radius: var(--radius-md);
  background: var(--color-bg-soft);
}
.work__day-time {
  font-family: var(--font-num); font-weight: 900;
  font-size: 20px; color: var(--color-main);
}
.work__day-list strong {
  display: block; font-size: 15px; color: var(--color-main); margin-bottom: 4px;
}
.work__day-list p {
  font-size: 13.5px; line-height: 1.8; color: var(--color-text-sub);
}

/* ============================================
   12. Section: Members
   ============================================ */
.section--members { background: var(--color-bg-alt); }
.members {
  /* Phase Q-1-v7: メンバー 2人を中央に大きく配置（4列→2列、最大幅制限） */
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl); margin: 0 auto var(--space-2xl);
  max-width: 920px;
}
.member-card {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex; flex-direction: column;
  /* 大きく見せるための minimum height */
  min-height: 520px;
}
.member-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
}
.member-card__photo {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--grad-brand-soft);
}
.member-card__photo img {
  /* Gemini ウォーターマーク (画像右下) を非表示にするため、
     画像を拡大 + 左上寄せ表示で右下を切り落とす */
  width: 112%; height: 112%; object-fit: cover;
  object-position: left top;
  margin-left: -6%; margin-top: -6%;
  transition: transform var(--transition-slow);
}
.member-card:hover .member-card__photo img { transform: scale(1.05); }
.member-card__body { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; }
.member-card__name {
  /* Phase Q-1-v7: 2人カードの存在感UP */
  font-size: 22px; font-weight: 800; color: var(--color-main);
  margin-bottom: 4px;
}
.member-card__role {
  font-size: 13px; color: var(--color-text-mute);
  font-weight: 600; margin-bottom: var(--space-md);
}
.member-card__quote {
  font-size: 15px; line-height: 1.85; color: var(--color-text-sub);
  font-style: italic; padding: var(--space-md);
  background: var(--color-bg-soft); border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--space-md);
  flex: 1;
}
.member-card__meta {
  display: grid; grid-template-columns: 60px 1fr; gap: 6px var(--space-sm);
  font-size: 12px;
}
.member-card__meta dt {
  color: var(--color-text-mute); font-weight: 700;
  border-right: 1px solid var(--color-border); padding-right: var(--space-sm);
}
.member-card__meta dd { color: var(--color-text-sub); }

.members__visual { margin-top: var(--space-2xl); display: flex; justify-content: center; }
.members__visual img { width: 100%; max-width: 600px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }

/* ============================================
   13. Section: Jobs
   ============================================ */
.section--jobs { background: var(--color-bg); }
.job-card {
  background: white; border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border-light);
  border-top: 6px solid var(--color-accent);
}
.job-card--sub { border-top-color: var(--color-text-mute); }
.job-card__head { margin-bottom: var(--space-xl); }
.job-card__badge {
  display: inline-block; padding: 5px 14px;
  background: var(--color-bg-alt); color: var(--color-text-sub);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.job-card__badge--main {
  background: var(--grad-brand); color: white;
}
.job-card__title {
  font-size: 28px; font-weight: 900; color: var(--color-main);
  margin-bottom: var(--space-xs);
}
.job-card__lead {
  font-size: 15px; color: var(--color-text-sub);
  font-weight: 500;
}
.job-detail {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
.job-detail__row {
  display: grid; grid-template-columns: 160px 1fr;
  gap: var(--space-lg); padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.job-detail dt {
  font-weight: 700; color: var(--color-main); font-size: 14px;
}
.job-detail dd {
  font-size: 14.5px; line-height: 1.85; color: var(--color-text-sub);
}
.job-detail dd strong { color: var(--color-main); font-weight: 800; }
.job-detail dd ul { display: flex; flex-direction: column; gap: 6px; padding-left: 16px; }
.job-detail dd ul li {
  list-style: none; position: relative;
}
.job-detail dd ul li::before {
  content: "▸"; position: absolute; left: -16px; color: var(--color-accent);
}
.job-card__schools { margin-bottom: var(--space-xl); }
.job-card__schools-title {
  font-size: 16px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-md);
}
.schools {
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.schools li {
  display: grid; grid-template-columns: 100px 1fr;
  gap: var(--space-md); padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-soft); border-radius: var(--radius-md);
}
.schools__area {
  font-weight: 800; color: var(--color-main); font-size: 13px;
  display: inline-flex; align-items: center;
}
.schools__name {
  font-size: 14px; color: var(--color-text-sub);
}
.job-card__cta {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  padding-top: var(--space-lg); border-top: 1px solid var(--color-border);
}

/* ============================================
   14. Section: Career
   ============================================ */
.section--career { background: var(--color-bg-alt); }
.career-visual {
  display: flex; justify-content: center;
  margin-bottom: var(--space-2xl);
}
.career-visual img {
  width: 100%; max-width: 600px;
  filter: drop-shadow(0 12px 30px rgba(30,58,138,0.12));
}
.career-list {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md); position: relative;
}
.career-list::before {
  content: ""; position: absolute;
  top: 32px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, var(--color-main) 80%, transparent 100%);
  z-index: 0;
}
.career-step {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-lg); text-align: center;
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.career-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.career-step__no {
  width: 56px; height: 56px;
  border-radius: 50%; background: var(--grad-brand);
  color: white; font-family: var(--font-num); font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-glow);
}
.career-step__title {
  font-size: 16px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm);
}
.career-step__desc {
  font-size: 13px; line-height: 1.85; color: var(--color-text-sub);
}
.career-note {
  margin-top: var(--space-2xl); padding: var(--space-lg);
  background: white; border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  font-size: 13.5px; line-height: 1.85; color: var(--color-text-sub);
}

/* ============================================
   15. Section: Benefits
   ============================================ */
.section--benefits { background: var(--color-bg); }
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.benefit-card {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%; background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto var(--space-md);
  box-shadow: inset 0 0 0 4px white, 0 6px 16px rgba(30,58,138,0.10);
}
.benefit-card__title {
  font-size: 16px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm);
}
.benefit-card__desc {
  font-size: 13px; line-height: 1.85; color: var(--color-text-sub);
}

/* ============================================
   16. Section: Flow
   ============================================ */
.section--flow {
  background: var(--color-bg-alt);
  position: relative; overflow: hidden;
}
.flow {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg) var(--space-xl); margin-bottom: var(--space-2xl);
  position: relative;
}
.flow-step {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-xl); text-align: center;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow-step__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-brand); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-glow);
}
.flow-step__no {
  font-family: var(--font-num); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--color-accent);
  margin-bottom: var(--space-xs);
}
.flow-step__title {
  font-size: 16px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm);
}
.flow-step__desc {
  font-size: 13px; line-height: 1.85; color: var(--color-text-sub);
}

.flow__cta {
  text-align: center; padding: var(--space-2xl); border-radius: var(--radius-xl);
  background: white; box-shadow: var(--shadow-md);
}
.flow__cta-text {
  font-size: 18px; font-weight: 700; color: var(--color-main); line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.flow__cta-buttons {
  display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap;
}

/* ============================================
   17. Section: Voices
   ============================================ */
.section--voices { background: var(--color-bg); }
.voices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.voice-card {
  background: white; border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice-card__head {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border-light);
}
.voice-card__avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  background: var(--grad-brand-soft); flex-shrink: 0;
  /* インライン SVG アイコンを中央配置 */
  display: flex; align-items: center; justify-content: center;
}
.voice-card__avatar img {
  /* Gemini ウォーターマーク (画像右下) を非表示にするため、
     画像を拡大 + 左上寄せ表示で右下を切り落とす */
  width: 115%; height: 115%; object-fit: cover;
  object-position: left top;
  margin-left: -7%; margin-top: -7%;
}
.voice-card__avatar svg {
  width: 60%; height: 60%; display: block;
}
.voice-card__name {
  font-size: 15px; font-weight: 800; color: var(--color-main);
}
.voice-card__role {
  font-size: 11.5px; color: var(--color-text-mute); font-weight: 600;
}
.voice-card__title {
  font-size: 16px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-sm); line-height: 1.5;
}
.voice-card__quote {
  font-size: 13.5px; line-height: 1.95; color: var(--color-text-sub);
}

/* ============================================
   18. Section: FAQ
   ============================================ */
.section--faq { background: var(--color-bg-alt); }
.faq {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.faq-item {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden; transition: box-shadow var(--transition-base);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item__q {
  font-size: 15.5px; font-weight: 700; color: var(--color-main);
  padding: var(--space-md) var(--space-lg);
  padding-left: 56px;
  cursor: pointer; list-style: none;
  position: relative;
  transition: background var(--transition-fast);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
  content: "Q"; position: absolute; left: var(--space-md); top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-brand); color: white;
  font-family: var(--font-num); font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item__q::after {
  content: ""; position: absolute; right: var(--space-lg); top: 50%;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--color-main);
  border-bottom: 2.5px solid var(--color-main);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition-base);
}
.faq-item[open] .faq-item__q::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item__q:hover { background: var(--color-bg-soft); }
.faq-item__a {
  padding: 0 var(--space-lg) var(--space-md);
  padding-left: 56px;
}
.faq-item__a p {
  font-size: 14px; line-height: 1.95; color: var(--color-text-sub);
  position: relative; padding-left: 40px;
}
.faq-item__a p::before {
  content: "A"; position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent-soft); color: var(--color-main);
  font-family: var(--font-num); font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================
   19. Section: Referral
   ============================================ */
.section--referral { background: var(--color-bg); padding-block: var(--space-2xl); }
.referral-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--space-2xl); align-items: center;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.referral-card::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.referral-card__icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: white; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; flex-shrink: 0; position: relative;
}
.referral-card__body { position: relative; }
.referral-card__eyebrow {
  font-family: var(--font-num); font-size: 11px; font-weight: 900;
  letter-spacing: 0.2em; color: #92400E; margin-bottom: var(--space-xs);
}
.referral-card__title {
  font-size: clamp(24px, 3vw, 32px); font-weight: 900;
  color: #78350F; margin-bottom: var(--space-sm);
}
.referral-card__desc {
  font-size: 15px; line-height: 1.85; color: #78350F;
  margin-bottom: var(--space-sm);
}
.referral-card__desc strong { color: #B91C1C; font-size: 1.15em; }
.referral-card__note {
  font-size: 12px; color: #92400E;
}

/* ============================================
   20. Section: Apply
   ============================================ */
.section--apply {
  background: var(--grad-dark); color: white;
  position: relative; overflow: hidden;
}
.section--apply::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(59,130,246,0.18) 1px, transparent 1.5px);
  background-size: 32px 32px; opacity: 0.4; pointer-events: none;
}
.section--apply .section__inner { position: relative; z-index: 1; }
.apply-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
}
.apply-card {
  background: white; color: var(--color-text);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}
.apply-card__title {
  font-size: 22px; font-weight: 800; color: var(--color-main);
  margin-bottom: var(--space-xs);
}
.apply-card__sub {
  font-size: 13.5px; color: var(--color-text-mute);
  margin-bottom: var(--space-xl);
}

/* Form */
.form-row { margin-bottom: var(--space-md); }
.form-label {
  display: block; font-size: 13.5px; font-weight: 700;
  color: var(--color-main); margin-bottom: 6px;
}
.form-required {
  display: inline-block; background: var(--color-danger); color: white;
  font-size: 10.5px; font-weight: 700; padding: 1px 7px;
  border-radius: 4px; margin-left: 6px;
  vertical-align: middle;
}
.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  outline: none; border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%231E3A8A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  background-size: 10px 7px; padding-right: 36px;
}
.form-row--consent { margin: var(--space-lg) 0; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 13px; line-height: 1.6;
}
.form-checkbox input {
  width: 18px; height: 18px; accent-color: var(--color-accent);
  flex-shrink: 0; margin-top: 2px;
}
.form-checkbox__link {
  text-decoration: underline; text-underline-offset: 2px;
  color: var(--color-accent);
}
.apply-form__note {
  margin-top: var(--space-md); text-align: center;
  font-size: 12px; color: var(--color-text-mute);
}

/* Alt apply */
.apply-card--alt { display: flex; flex-direction: column; gap: var(--space-lg); }
.apply-method {
  display: flex; gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}
.apply-method:last-child { border-bottom: 0; padding-bottom: 0; }
.apply-method__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.apply-method__body { flex: 1; }
.apply-method__title {
  font-size: 15px; font-weight: 800; color: var(--color-main);
  margin-bottom: 4px;
}
.apply-method__desc {
  font-size: 13px; color: var(--color-text-sub); line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.apply-method__desc a { font-weight: 700; }
.line-qr {
  display: flex; gap: var(--space-md); align-items: center;
  padding: var(--space-md);
  background: var(--color-bg); border-radius: var(--radius-md);
}
.line-qr img {
  width: 100px; height: 100px;
  border-radius: var(--radius-sm); border: 1px solid var(--color-border);
}

/* ============================================
   21. Footer
   ============================================ */
.site-footer {
  background: var(--color-main-dark); color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  position: relative;
}
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-2xl);
}
.site-footer__brand { }
.site-footer__logo {
  filter: brightness(0) invert(1);
  height: 48px; width: auto; margin-bottom: var(--space-md);
}
.site-footer__tagline {
  font-size: 18px; font-weight: 800; color: white;
  margin-bottom: var(--space-lg); line-height: 1.5;
}
.site-footer__company {
  font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.65);
}
.site-footer__company strong { color: white; font-weight: 800; }
.site-footer__company a { color: var(--color-accent-light); }
.site-footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg);
}
.site-footer__col-title {
  font-size: 12px; font-weight: 800; color: white;
  letter-spacing: 0.1em; margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer__col a {
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.site-footer__col a:hover { color: var(--color-accent-light); }
.site-footer__bottom {
  max-width: var(--max-w); margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md); flex-wrap: wrap;
}
.site-footer__copy {
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.site-footer__designed {
  font-family: var(--font-num); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
}

/* ============================================
   22. Sticky CTA
   ============================================ */
.sticky-cta {
  position: fixed; right: 20px; bottom: 20px;
  z-index: var(--z-sticky);
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--grad-brand); color: white;
  border-radius: var(--radius-pill);
  font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.sticky-cta__btn:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-glow); color: white;
}
.sticky-cta__btn--sub {
  background: white; color: var(--color-main);
  border: 2px solid var(--color-main);
}
.sticky-cta__btn--sub:hover { background: var(--color-main); color: white; border-color: var(--color-main); }

/* ============================================
   23. Back to Top
   ============================================ */
.back-to-top {
  position: fixed; left: 20px; bottom: 20px;
  width: 48px; height: 48px;
  background: white; color: var(--color-main);
  border-radius: 50%; box-shadow: var(--shadow-md);
  font-size: 20px; font-weight: 900;
  z-index: var(--z-sticky);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-base);
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--color-main); color: white; }

/* ============================================
   24. Scroll Animations (intersection observer)
   ============================================ */
[data-anim] {
  opacity: 0; transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
[data-anim="fade-up"] { transform: translateY(28px); }
[data-anim="fade-in"] { transform: none; }
[data-anim="fade-left"] { transform: translateX(28px); }
[data-anim="fade-right"] { transform: translateX(-28px); }
[data-anim].is-visible {
  opacity: 1; transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   25. Responsive — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__body { padding-top: 50px; text-align: left; }
  .hero__visual { max-width: 540px; margin: 0 auto; padding-top: 0; }
  .global-nav__list { gap: var(--space-sm); }
  .global-nav__list a { font-size: 12.5px; }
  .stages { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .members { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .voices { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .career-list { grid-template-columns: repeat(2, 1fr); }
  .career-list::before { display: none; }
  .mission__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .apply-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   26. Responsive — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding: var(--space-2xl) var(--space-md); }
  .section__header { margin-bottom: var(--space-xl); }

  .top-notice__inner { gap: 8px; font-size: 11.5px; }
  .top-notice__badge { font-size: 10px; padding: 2px 8px; }

  .site-header__inner { gap: var(--space-sm); padding: 0 var(--space-md); }
  .site-header__logo img { height: 36px; }
  .global-nav { display: none; }
  .site-header__cta .btn { padding: 8px 14px; font-size: 12px; }
  .site-header__cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .hero {
    padding: var(--space-2xl) var(--space-md);
    min-height: auto;
  }
  .hero__inner { gap: var(--space-lg); }
  .hero__heading { font-size: clamp(28px, 8vw, 40px); }
  .hero__lead { font-size: 14.5px; }
  .hero__cta .btn { width: 100%; }
  .hero__highlights { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .hero__visual-badge { padding: 8px 12px; }
  .hero__visual-badge strong { font-size: 20px; }
  .hero__visual-badge span { font-size: 10px; }
  .hero__marquee { padding: 8px 0; font-size: 11px; }

  .mission__big { font-size: clamp(32px, 9vw, 48px); }
  .mission__statement { padding: var(--space-xl) var(--space-md); }
  .mission__subheading { font-size: 20px; }

  .stages { grid-template-columns: 1fr; gap: var(--space-md); }
  .work__grid { grid-template-columns: 1fr; }
  .work__day { padding: var(--space-lg); }
  .work__day-list li { grid-template-columns: 1fr; gap: 4px; }
  .work__day-time { font-size: 18px; }

  .members { grid-template-columns: 1fr; gap: var(--space-md); }
  .member-card { min-height: auto; }
  .member-card__photo { aspect-ratio: 4 / 3; }
  .member-card__name { font-size: 19px; }
  .member-card__quote { font-size: 14px; }

  .numbers { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .number-card { padding: var(--space-lg) var(--space-sm); }
  .number-card__value { font-size: clamp(30px, 9vw, 40px); }

  .benefits { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .benefit-card { padding: var(--space-lg) var(--space-sm); }
  .benefit-card__icon { width: 56px; height: 56px; font-size: 24px; }
  .benefit-card__title { font-size: 14px; }
  .benefit-card__desc { font-size: 12px; }

  .voices { grid-template-columns: 1fr; }

  .flow { grid-template-columns: 1fr; }
  .flow__cta { padding: var(--space-xl) var(--space-md); }
  .flow__cta-text { font-size: 16px; }
  .flow__cta-buttons .btn { width: 100%; }

  .faq-item__q { font-size: 14px; padding: var(--space-md) 48px var(--space-md) 50px; }
  .faq-item__q::before { left: 12px; width: 26px; height: 26px; font-size: 12px; }
  .faq-item__q::after { right: 16px; width: 10px; height: 10px; }
  .faq-item__a { padding: 0 var(--space-md) var(--space-md) 50px; }
  .faq-item__a p { padding-left: 36px; font-size: 13px; }

  .job-card { padding: var(--space-xl) var(--space-md); }
  .job-card__title { font-size: 22px; }
  .job-detail__row { grid-template-columns: 1fr; gap: 4px; padding: var(--space-sm) 0; }
  .job-detail dt { font-size: 12px; color: var(--color-text-mute); }
  .schools li { grid-template-columns: 1fr; gap: 4px; padding: var(--space-sm) var(--space-md); }
  .schools__area { font-size: 12px; }
  .schools__name { font-size: 13px; }
  .job-card__cta { flex-direction: column; }
  .job-card__cta .btn { width: 100%; }

  .career-list { grid-template-columns: 1fr; }
  .career-list::before { display: none; }
  .career-visual img { max-width: 100%; }

  .referral-card { grid-template-columns: 1fr; gap: var(--space-md); padding: var(--space-lg); text-align: center; }
  .referral-card__icon { margin: 0 auto; }

  .apply-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .apply-card { padding: var(--space-lg) var(--space-md); }
  .line-qr { flex-direction: column; text-align: center; }

  .site-footer { padding: var(--space-2xl) var(--space-md) var(--space-md); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { right: 12px; bottom: 12px; gap: 8px; }
  .sticky-cta__btn { padding: 11px 16px; font-size: 12.5px; }
  .sticky-cta__btn .sticky-cta__label { display: inline; }
  .back-to-top { left: 12px; bottom: 12px; width: 42px; height: 42px; font-size: 17px; }
}

/* ============================================
   27. Responsive — Small Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero__heading { font-size: clamp(26px, 8vw, 32px); }
  .hero__lead { font-size: 14px; }
  .section__heading { font-size: clamp(24px, 7vw, 32px); }
  .section__subheading { font-size: 13.5px; }
  .mission__big { font-size: 38px; }
  .stage__no-num { font-size: 48px; }
  .number-card__value { font-size: 36px; }
  .job-card__title { font-size: 20px; }
  .referral-card__title { font-size: 22px; }
  .site-footer__cols { grid-template-columns: 1fr; }
}

/* ============================================
   28. Print
   ============================================ */
@media print {
  .top-notice, .site-header, .sticky-cta, .back-to-top, .hero__marquee, .hero__scroll { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 20px 0; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   END
   ============================================ */

/* ============================================
   29. Hero Speed Note (内定までの平均日数)
   ============================================ */
.hero__speed-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin-top: var(--space-md);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(59, 130, 246, 0.10));
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 999px;
  font-size: 14px;
  color: var(--color-text);
  max-width: 100%;
  flex-wrap: wrap;
}
.hero__speed-note strong { color: var(--color-main); font-weight: 800; }
.hero__speed-icon { font-size: 20px; }

/* ============================================
   30. WORK Video Embed (YouTube)
   ============================================ */
.work__video {
  margin-top: var(--space-2xl);
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.work__video-heading {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--color-main);
}
.work__video-sub {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: var(--space-lg);
}
.work__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: var(--shadow-md);
}
.work__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   31. FIT (向き不向き) Section
   ============================================ */
.section--fit { background: var(--color-bg-soft); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.fit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.fit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fit-card--yes { border-color: rgba(34, 197, 94, 0.35); }
.fit-card--no { border-color: rgba(239, 68, 68, 0.28); }
.fit-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px dashed var(--color-line);
}
.fit-card__icon {
  font-size: 32px;
  flex-shrink: 0;
}
.fit-card--yes .fit-card__title { color: #16a34a; }
.fit-card--no .fit-card__title { color: #dc2626; }
.fit-card__title { font-size: 20px; font-weight: 800; }
.fit-list { display: flex; flex-direction: column; gap: 14px; }
.fit-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  font-size: 15px;
}
.fit-list li strong { font-weight: 800; }
.fit-list li span { font-size: 13px; color: var(--color-text-sub); }
.fit-note {
  margin-top: var(--space-lg);
  font-size: 13px;
  color: var(--color-text-sub);
  text-align: center;
}

/* ============================================
   32. COMPARE (他社との違い) Section
   ============================================ */
.compare-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
}
.compare-table thead th {
  font-weight: 800;
  color: var(--color-text-sub);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-bg-soft);
}
.compare-table th[scope="row"] {
  font-weight: 700;
  color: var(--color-text);
  width: 32%;
}
.compare-table thead th.compare-table__us,
.compare-table tbody td.compare-table__us {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.06), rgba(30, 58, 138, 0.02));
  color: var(--color-main);
  font-weight: 700;
}
.compare-table thead th.compare-table__us { color: var(--color-main); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-note {
  margin-top: var(--space-lg);
  font-size: 12.5px;
  color: var(--color-text-sub);
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   33. FLOW Speed Card (内定まで平均10日)
   ============================================ */
.flow-speed {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(251, 191, 36, 0.08));
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(30, 58, 138, 0.25);
}
.flow-speed__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: var(--color-main);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.flow-speed__text { font-size: 18px; font-weight: 700; }
.flow-speed__text strong { color: var(--color-main); font-weight: 900; }
.flow-speed__sub { font-size: 13px; color: var(--color-text-sub); }

/* ============================================
   34. APPLY LINE (LINE で繋がりましょう)
   ============================================ */
.apply-line {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.apply-line__qr-card {
  background: white;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.apply-line__qr-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.apply-line__qr {
  background: white;
  padding: 12px;
  border-radius: var(--radius-md);
  margin: 0 auto var(--space-sm);
  display: inline-block;
  border: 1px solid var(--color-line);
}
.apply-line__qr img { display: block; width: 220px; height: 220px; }
.apply-line__qr-note {
  font-family: var(--font-en, var(--font-jp));
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
}
.apply-line__sub { margin-top: 10px; font-size: 12px; color: var(--color-text-sub); }

.apply-line__steps {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: white;
}
.apply-line__steps-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: white;
}
.apply-line__steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-lg);
}
.apply-line__steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-md);
}
.apply-line__steps-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: var(--color-main);
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
}
.apply-line__steps-list strong { display: block; font-weight: 800; color: white; margin-bottom: 2px; }
.apply-line__steps-list p { font-size: 13px; color: rgba(255, 255, 255, 0.82); }

.apply-line__alt {
  padding-top: var(--space-md);
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  text-align: center;
}
.apply-line__alt-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}
.apply-line__alt-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .fit-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .apply-line { grid-template-columns: 1fr; gap: var(--space-md); }
  .apply-line__qr-card { max-width: 100%; }
  .compare-table { font-size: 13.5px; }
  .work__video { padding: var(--space-lg) var(--space-md); }
  .hero__speed-note { font-size: 13px; padding: 10px 14px; }
}

/* ============================================
   END (大規模改修追記分)
   ============================================ */

/* ============================================
   Gemini ウォーターマーク非表示 (en-gage 画像)
   ============================================
   en-gage 画像は AI 生成のため右下/下部に Gemini
   ウォーターマークが入る。CSS の mask-image で
   画像下部 5% をフェードアウトさせて見えなくする。
   member-card__photo と voice-card__avatar は既に
   クロップ対応済みなので mask を打ち消す。
*/

img[src*="image.en-gage.net"] {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 92%, transparent 97%);
          mask-image: linear-gradient(to bottom, black 0%, black 92%, transparent 97%);
}

.member-card__photo img[src*="image.en-gage.net"],
.voice-card__avatar img[src*="image.en-gage.net"] {
  -webkit-mask-image: none;
          mask-image: none;
}
