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

#interview-page {
  --navy: #0d2a45;
  --steel: #3a8fbf;
  --accent: #4fb3e8;
  --light: #f5f8fa;
  --white: #ffffff;
  --text: #1c2b3a;
  --muted: #6b8499;
  --border: #d4e4ef;
}

/* ── テーマ 02・04：ダークネイビー ── */
#interview-page .theme-navy {
  --badge-bg: #061828;
  --card-accent: #4fb3e8;
  --section-bg: #0d2a45;
  --feat-bg: #0f3058;
  --tag-bg: #1e4a6e;
  --tag-color: #90d0f0;
  --heading-line: #4fb3e8;
  --stripe-color: rgba(79, 179, 232, 0.3);
  --divider-col: #1e4a6e;
  --cta-bg: #0a2238;
}

#interview-page {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ════════════ HERO ════════════ */
#interview-page .hero {
  position: relative;
  height: 40vh;
  min-height: 220px;
  overflow: visible;
  background: var(--navy);
}

#interview-page .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center 33%;
  background-repeat: no-repeat;
}

#interview-page .hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

#interview-page .interview-badge {
  position: absolute;
  top: 0;
  left: 40px;
  background: var(--steel);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

#interview-page .theme-navy .interview-badge {
  background: var(--badge-bg);
}

#interview-page .badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1;
}

#interview-page .badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}

#interview-page .hero-content {
  position: absolute;
  bottom: -36px;
  left: 40px;
  z-index: 4;
  background: var(--white);
  padding: 20px 32px 20px 24px;
  box-shadow: 0 4px 24px rgba(13, 42, 69, 0.10);
  min-width: 280px;
}

#interview-page .hero-year {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

#interview-page .hero-company {
  font-size: 13px;
  color: var(--steel);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

#interview-page .theme-navy .hero-company {
  color: var(--card-accent);
}

#interview-page .hero-name-label {
  display: inline;
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  margin-right: 8px;
}

#interview-page .hero-name {
  display: inline;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ════════════ REASON ════════════ */
#interview-page .reason-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

#interview-page .theme-navy .reason-section {
  background: var(--section-bg);
}

#interview-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

#interview-page .section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

#interview-page .theme-navy .section-heading {
  color: #f9fdff;
}

#interview-page .section-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

#interview-page .theme-navy .section-heading::after {
  background: var(--heading-line);
}

#interview-page .reason-text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  max-width: 940px;
  margin: 0 auto;
}

#interview-page .theme-navy .reason-text {
  color: #f9fdff;
}

/* ════════════ IMAGE GRID ════════════ */
#interview-page .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

#interview-page .image-grid-item {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
}

#interview-page .image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

/* ════════════ FEATURES ════════════ */
#interview-page .features {
  background: var(--white);
  padding: 80px 0;
}

#interview-page .theme-navy .features {
  background: var(--feat-bg);
}

#interview-page .feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

#interview-page .feature-block:last-child {
  margin-bottom: 0;
}

#interview-page .feature-block.reverse {
  direction: rtl;
}

#interview-page .feature-block.reverse>* {
  direction: ltr;
}

#interview-page .feature-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--navy);
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 14px;
  border-radius: 2px;
}

#interview-page .theme-navy .feature-tag {
  background: var(--tag-bg);
  color: var(--tag-color);
}

#interview-page .feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 18px;
}

#interview-page .theme-navy .feature-title {
  color: #f9fdff;
}

#interview-page .feature-body {
  font-size: 14px;
  line-height: 2.0;
  color: #3a4e60;
}

#interview-page .theme-navy .feature-body {
  color: #f9fdff;
}

#interview-page .highlight-stripe {
  background: rgba(79, 179, 232, 0.2);
}

#interview-page .theme-navy .highlight-stripe {
  background: var(--stripe-color);
}

#interview-page .map-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 42, 69, 0.12);
  line-height: 0;
}

#interview-page .theme-navy .map-img-wrap {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

#interview-page .map-img {
  width: 100%;
  height: auto;
  display: block;
}

#interview-page .divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 72px;
}

#interview-page .theme-navy .divider {
  background: var(--divider-col);
}

/* ════════════ CTA ════════════ */
#interview-page .cta-section {
  background: var(--light);
  padding: 56px 0;
  text-align: center;
}

#interview-page .theme-navy .cta-section {
  background: var(--cta-bg);
}

#interview-page .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 500;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#interview-page .theme-navy .cta-btn {
  background: var(--tag-bg);
}

#interview-page .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13, 42, 69, 0.22);
}

#interview-page .cta-icon {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#interview-page .theme-navy .cta-icon {
  background: var(--card-accent);
}

#interview-page .cta-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 2px;
}

/* ════════════ SEPARATOR ════════════ */
#interview-page .interview-sep {
  height: 6px;
  background: var(--steel);
}

#interview-page .interview-sep.sep-navy {
  background: var(--navy);
}


/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 720px) {
  #interview-page .interview-badge {
    left: 16px;
  }

  #interview-page .hero-content {
    left: 16px;
    bottom: -30px;
    min-width: unset;
    padding: 14px 18px;
  }

  #interview-page .container {
    padding: 0 20px;
  }

  #interview-page .feature-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #interview-page .feature-block.reverse {
    direction: ltr;
  }

  #interview-page .image-grid {
    grid-template-columns: 1fr;
  }

  #interview-page .reason-section {
    padding-top: 72px;
  }
}