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

img,
svg {
  display: block;
  max-width: 100%;
}

ul[class],
ol[class] {
  list-style: none;
}

/* スクリーンリーダー専用（視覚的に非表示） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Tokens ─────────────────────────────── */
:root {
  --c-primary: #007AAA;
  --c-primary-dk: #005F87;
  --c-primary-lt: #E6F4FA;
  --c-ink: #1A1A1A;
  --c-orange: #FF5500;
  --c-orange-hover: #E04A00;
  --c-ink-mid: #4A5568;
  --c-ink-light: #718096;
  --c-white: #FFFFFF;
  --c-border: #D8EBF3;
  --c-stripe: #E4EDF2;

  --header-h: 72px;
  --max-w: 1280px;
  --px: clamp(20px, 5vw, 80px);
}

/* ── Base ───────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: #ffffff url('/recruit/new-graduate/images/bg_grd.webp') no-repeat right bottom fixed;
  background-size: 100% auto;
}

html:has(dialog[open]) {
  scrollbar-gutter: stable;
}

body {
  font-family: 'Montserrat', 'YuGothic', '游ゴシック', 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', Meiryo, sans-serif;
  font-size: 16px;
  color: var(--c-ink);
  background: transparent;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-anchor: none;
  /* 開閉等の高さ変化でスクロール位置が補正され要素がズレるのを防ぐ */
}



/* ── Skip nav (a11y) ────────────────────── */
.skip-nav {
  position: absolute;
  top: -9999px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
}

.skip-nav:focus {
  top: 8px;
}

/* ══════════════════════════════════════════
    HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 6px;
  left: 10px;
  right: 10px;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #fff;
  border-radius: 16px;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 28px rgba(0, 122, 170, 0.11);
  border-color: var(--c-border);
}

.header-inner {
  width: 100%;
  padding: 0 24px 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 16px);
}

/* Logo */
.site-logo-h1 {
  margin: 0;
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.site-logo:focus-visible {
  outline: none;
}

.site-logo:focus-visible .logo-main {
  outline: 2px solid var(--c-primary);
  outline-offset: 4px;
  border-radius: 6px;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-main img {
  display: block;
  height: 38px;
  width: auto;
}

.logo-recruit {
  font-size: 16px;
  color: var(--c-ink);
  margin: 0px 0px 0px 12px;
  line-height: 1;
}

.logo-year {
  color: var(--c-primary);
  font-size: 18px;
  font-weight: 400;
  margin: 0px 0px 1px;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list li a {
  position: relative;
  display: block;
  padding: 6px clamp(4px, 0.55vw, 12px);
  font-size: 13px;
  font-weight: 600;
  color: #005080;
  text-decoration: none;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(4px, 0.55vw, 12px);
  right: clamp(4px, 0.55vw, 12px);
  height: 2px;
  background: #00AEEF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-list li a:focus-visible {
  color: var(--c-primary);
}

.nav-list li a:focus-visible::after {
  transform: scaleX(1);
}

@media (hover: hover) {
  .nav-list li a:hover {
    color: var(--c-primary);
  }

  .nav-list li a:hover::after {
    transform: scaleX(1);
  }
}

.btn-entry-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(8px, 1vw, 20px);
  height: 42px;
  padding: 0 22px;
  width: 125px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(93deg, #FFAA65 0%, #FF5100 9%, #D14200 22%, #D14200 82%, #FF5100 91%, #FFAA65 100%);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-entry-header:focus-visible {
  background-position: right;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

@media (hover: hover) {
  .btn-entry-header:hover {
    background-position: right;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  margin-top: -1px;
  background: #003c74;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transform-origin: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scaleX(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 6px);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  flex-direction: column;
  overflow-y: auto;
  padding: 20px var(--px) 40px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav > .mobile-nav-list,
.mobile-nav > .btn-entry-mobile {
  flex-shrink: 0;
}

.mobile-nav-trap {
  width: 0;
  height: 0;
}

.mobile-nav-trap:focus {
  outline: none;
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 60, 116);
  letter-spacing: 0.8px;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}

@media (hover: hover) {
  .mobile-nav a:hover {
    color: var(--c-primary);
  }
}

.mobile-nav .btn-entry-mobile {
  margin-top: 28px;
  min-height: 60px;
  height: 60px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(93deg, #FFAA65 0%, #FF5100 9%, #D14200 22%, #D14200 82%, #FF5100 91%, #FFAA65 100%);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .mobile-nav .btn-entry-mobile:hover {
    background-position: right;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    color: #fff;
  }
}

/* ══════════════════════════════════════════
    HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-overlay {
  position: absolute;
  left: 5.625%;
  /* 81px / 1440 */
  top: 16.13%;
  /* 150px / 930 */
  width: 39.13%;
  /* 563.5px / 1440 */
  max-width: 563.5px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-overlay .hero-copy-img {
  display: block;
  width: calc(563.5 / 1440 * 100vw);
  max-width: none;
  height: auto;
}

.hero-overlay .hero-entry-btn {
  width: calc(260 / 1440 * 100vw);
  height: calc(72 / 1440 * 100vw);
  padding: 0;
  margin-top: calc(49 / 1440 * 100vw);
  /* 460 - 150 - 261 = 49px @1440 */
  font-family: 'Montserrat', sans-serif;
  font-size: calc(24 / 1440 * 100vw);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-hero {
  align-self: flex-start;
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  width: 180px;
  background: linear-gradient(93deg, #FFAA65 0%, #FF5100 9%, #D14200 22%, #D14200 82%, #FF5100 91%, #FFAA65 100%);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}

.btn-hero:focus-visible {
  background-position: right;
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  gap: 18px;
}

@media (hover: hover) {
  .btn-hero:hover {
    background-position: right;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    gap: 18px;
  }
}

.btn-hero,
.btn-entry-header,
.mobile-nav .btn-entry-mobile,
.btn-entry-footer {
  position: relative;
  transition: filter 0.45s ease, transform 0.25s ease, box-shadow 0.45s ease;
}

@media (hover: hover) {

  .btn-hero:hover,
  .btn-entry-header:hover,
  .mobile-nav .btn-entry-mobile:hover,
  .btn-entry-footer:hover {
    filter: brightness(1.12) saturate(1.03);
  }
}

.btn-entry-header,
.mobile-nav .btn-entry-mobile,
.btn-entry-footer {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.sparkle-canvas {
  position: fixed;
  bottom: 0;
  height: 55vh;
  width: 32vw;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.sparkle-canvas-left {
  left: 0;
}

.sparkle-canvas-right {
  right: 0;
}

.mv-wave-separator {
  position: relative;
  z-index: 1;
  margin-top: calc(100vw * 700 / 1440 - 100vw * 1860 / 2880);
  margin-bottom: calc(100vw * 1000 / 1440 - 100vw * 700 / 1440 - 100vw * 555 / 1920);
  pointer-events: none;
  line-height: 0;
}

.mv-wave-separator picture {
  display: block;
  width: 100%;
}

.mv-wave-separator img {
  width: 100vw;
  max-width: 100%;
  height: auto;
  display: block;
}

#main-content {
  display: flex;
  flex-direction: column;
}

.section-people {
  order: 4;
}

.section-benefits {
  order: 5;
}

.section-numbers {
  order: 6;
}

.section-lookfor {
  order: 7;
}

.section-requirements {
  order: 8;
}

.section-flow {
  order: 9;
}

.section-faq {
  order: 10;
}

.section-wrap {
  padding: 96px var(--px);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.features-display-label {
  font-size: 120px;
  font-weight: 200;
  line-height: 1;
  height: auto;
  overflow: visible;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.features-display-label .char {
  background: linear-gradient(to right, #33DAFF 0%, #00AEEF 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--i) * 0.06s);
}

.features-display-label.is-visible .char {
  transform: translateY(0);
}

.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.features-ja-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(120deg, #0078C2 calc(100% - 64px), #00C1F7 100%);
  line-height: 1.7;
  letter-spacing: 1.6px;
  padding: 2px 76px 2px 16px;
  margin: 0px 0px 33px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-ja-label.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.features-ja-label--flush {
  margin: 0px;
}

.section-features .section-title {
  color: var(--c-primary);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2.2px;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--c-ink);
  margin-bottom: 48px;
}

.section-title.section-title-lead {
  color: rgb(0, 60, 116);
  letter-spacing: 1.4px;
  font-size: 28px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
    BUSINESS SECTION
══════════════════════════════════════════ */
.section-business {
  background: linear-gradient(120deg, #E2F3FF 54%, #F2FDFF 100%);
  position: relative;
  z-index: 5;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.business-card:nth-child(1) {
  grid-column: 1 / 3;
}

.business-card:nth-child(2) {
  grid-column: 3 / 5;
}

.business-card:nth-child(3) {
  grid-column: 5 / 7;
}

.business-card:nth-child(4) {
  grid-column: 1 / 3;
}

.business-card:nth-child(5) {
  grid-column: 3 / 5;
}

.business-card:nth-child(6) {
  grid-column: 5 / 7;
}

.business-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0, 122, 170, 0.12);
  border-width: 0px 0px 1px 1px;
  height: 447px;
}

.biz-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.biz-card-num {
  font-size: 60px;
  font-weight: 200;
  color: rgb(0, 174, 239);
  flex-shrink: 0;
  line-height: 1;
  margin: 0;
  letter-spacing: 2px;
}

.biz-card-title {
  font-size: 24px;
  font-weight: 600;
  color: rgb(0, 60, 116);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.biz-card-img {
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.biz-card-body {
  font-size: 15px;
  font-weight: 400;
  color: rgb(0, 60, 116);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════
    PEOPLE SECTION
══════════════════════════════════════════ */
.section-people {
  background: transparent;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1080px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}

.people-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d0d8e0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 60, 116, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  border-radius: 16px;
}

.people-card-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

/* テキストはボタン内に置きつつ、クリック判定はカード全体へ広げる */
.people-card-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 16px;
}

.people-card-btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: -3px;
}

.people-card:has(.people-card-btn:focus-visible) {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.people-card:has(.people-card-btn:focus-visible) .people-card-btn:focus-visible {
  outline: none;
  /* :has() 対応時は二重リングを避ける */
}

.people-card-plus .material-symbols-rounded {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

@media (hover: hover) {
  .people-card:hover {
    box-shadow: 0 8px 32px rgba(0, 120, 194, 0.12);
    transform: translateY(-4px);
  }

  .people-card:hover .people-card-plus .material-symbols-rounded {
    transform: rotate(180deg);
  }
}

.people-card-img {
  aspect-ratio: 3 / 4;
  width: 100%;
  position: relative;
  z-index: 0;
  display: block;
  transition: transform 0.45s ease;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  object-position: center top;
}

@media (hover: hover) {
  .people-card:hover .people-card-img {
    transform: scale(1.05);
  }
}

.people-card-body {
  padding: 16px 16px 12px;
  isolation: isolate;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.people-card-dept {
  font-size: 14px;
  color: rgb(0, 120, 194);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.people-card-quote {
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 60, 116);
  line-height: 1.55;
}

.people-card-meta {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-top: auto;
}

.people-meta-line {
  display: block;
  font-size: 14px;
}

.people-card-plus {
  align-self: flex-end;
  font-size: 24px;
  font-weight: 200;
  color: rgb(0, 120, 194);
  line-height: 1;
  padding-top: 4px;
}

.people-card-plus .material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  font-size: 28px;
  display: block;
}

/* ── People modal ───────────────────────── */
.person-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border: 0;
  z-index: 1000;
  padding: 32px 20px;
  background: rgba(0, 36, 70, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.person-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-modal::backdrop {
  background: transparent;
}

.person-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: minmax(0, 1fr);
  width: min(960px, 100%);
  max-height: calc(100dvh - 64px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 40, 100, 0.35);
  transform: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@starting-style {
  .person-modal[open] .person-modal-dialog {
    transform: translateY(24px) scale(0.98);
  }
}

.person-modal-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 100%;
}

.person-modal-photo::after {
  content: '';
  display: none;
}

.person-modal-body {
  padding: 48px 48px 44px;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.person-modal-dept {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--tww-grad-pill, linear-gradient(120deg, #0078C2 calc(100% - 64px), #00C1F7 100%));
  letter-spacing: 1.4px;
  padding: 3px 18px;
  margin-bottom: 18px;
}

.person-modal-name {
  font-size: 26px;
  font-weight: 600;
  color: rgb(0, 40, 100);
  line-height: 1.4;
  margin-bottom: 4px;
}

.person-modal-name small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #0078C2;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.person-modal-text {
  margin-top: 26px;
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.person-modal-text p {
  margin: 0 0 18px;
}

.person-modal-text p:last-child {
  margin-bottom: 0;
}

.person-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: rgb(0, 60, 116);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 40, 100, 0.18);
  transition: background 0.2s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.person-modal-close:focus {
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .person-modal-close:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: -3px;
  }
}

.person-modal-close .material-symbols-rounded {
  font-size: 24px;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .person-modal-close:hover {
    background: #fff;
  }

  .person-modal-close:hover .material-symbols-rounded {
    transform: rotate(90deg);
  }
}

.people-card {
  cursor: pointer;
}

@media (max-width: 767px) {
  .person-modal-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100dvh - 48px);
  }

  .person-modal-photo {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .person-modal-body {
    padding: 32px 28px 36px;
  }

  .person-modal-name {
    font-size: 22px;
  }
}

/* ── Entry modal ──────── */
.entry-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border: 0;
  z-index: 1000;
  padding: 32px 20px;
  background: rgba(0, 36, 70, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.entry-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-modal::backdrop {
  background: transparent;
}

.entry-modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100dvh - 64px);
  background: #fff;
  border: 1px solid #D0D8E0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 40, 100, 0.35);
  transform: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@starting-style {
  .entry-modal[open] .entry-modal-dialog {
    transform: translateY(24px) scale(0.98);
  }
}

.entry-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: rgb(0, 60, 116);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 40, 100, 0.18);
  transition: background 0.2s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.entry-modal-close:focus {
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .entry-modal-close:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: -3px;
  }
}

.entry-modal-close .material-symbols-rounded {
  font-size: 24px;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .entry-modal-close:hover {
    background: #fff;
  }

  .entry-modal-close:hover .material-symbols-rounded {
    transform: rotate(90deg);
  }
}

.entry-modal-body {
  padding: 44px clamp(24px, 6vw, 48px) 44px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.entry-modal-title {
  font-size: clamp(21px, 4.5vw, 26px);
  font-weight: 600;
  color: rgb(0, 40, 100);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.entry-modal-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-ink-mid);
  text-wrap: pretty;
  margin-bottom: 26px;
}

.entry-modal-lead strong {
  font-weight: 600;
  color: rgb(0, 40, 100);
}

/* ── 注意書き（CTA 直下） ── */
.entry-modal-note {
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-ink-light);
  text-wrap: pretty;
  margin: 30px 0 28px;
}

/* ── メールソフト非起動時のフォールバック（折りたたみ） ── */
.entry-fallback {
  margin-top: 20px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.entry-fallback-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c-primary);
  text-wrap: pretty;
  -webkit-tap-highlight-color: transparent;
}

.entry-fallback-summary::-webkit-details-marker {
  display: none;
}

.entry-fallback-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  transition: transform 0.25s ease;
}

.entry-fallback[open] .entry-fallback-summary .entry-fallback-chevron {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .entry-fallback-chevron {
    transition: none;
  }
}

.entry-fallback-body {
  margin-top: 18px;
}

.entry-fallback-body .entry-template:last-child {
  margin-bottom: 0;
}

/* ── コピー用テンプレート ── */
.entry-template {
  background: #F4F9FC;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 18px clamp(18px, 4.5vw, 24px) 20px;
  margin-bottom: 18px;
}

.entry-template-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.entry-field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin: 0;
}

.entry-template-text {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.95;
  color: rgb(0, 40, 100);
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.entry-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgb(0, 60, 116);
  border-radius: 9999px;
  color: rgb(0, 60, 116);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .entry-copy-btn:hover {
    background: var(--c-primary-lt);
  }
}

.entry-copy-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.entry-copy-btn.is-copied {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* ── CTA ── */
.entry-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(93deg, #FFAA65 0%, #FF5100 9%, #D14200 22%, #D14200 82%, #FF5100 91%, #FFAA65 100%);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  font-size: clamp(16px, 3.6vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: filter 0.45s ease, transform 0.25s ease, box-shadow 0.45s ease, gap 0.25s ease;
}

.entry-modal-cta:focus-visible {
  filter: brightness(1.12) saturate(1.03);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  gap: 18px;
}

@media (hover: hover) {
  .entry-modal-cta:hover {
    filter: brightness(1.12) saturate(1.03);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    gap: 18px;
  }
}

.entry-modal-cta .cta-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 14px;
}

@media (max-width: 480px) {
  .entry-modal {
    padding: 20px 14px;
  }

  .entry-modal-body {
    padding: 56px 20px 32px;
  }

  .entry-modal-title {
    font-size: 17px;
    text-wrap: balance;
    margin-bottom: 14px;
  }

  .entry-modal-lead {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 22px;
  }

  .entry-template {
    padding: 14px 14px 16px;
    margin-bottom: 12px;
  }

  .entry-copy-btn {
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .entry-copy-btn svg {
    width: 13px;
    height: 13px;
  }

  .entry-template-text {
    font-size: 13px;
    line-height: 1.85;
  }

  .entry-modal-cta {
    padding: 18px 16px;
    gap: 8px;
    font-size: clamp(14px, 4vw, 15px);
    letter-spacing: 0.05em;
  }

  .entry-modal-cta .cta-arrow {
    width: 18px;
    height: 12px;
  }
}

@media (max-width: 1080px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .business-card:nth-child(1),
  .business-card:nth-child(2),
  .business-card:nth-child(3),
  .business-card:nth-child(4),
  .business-card:nth-child(5),
  .business-card:nth-child(6) {
    grid-column: auto;
  }

  .business-card {
    height: auto;
  }
}

@media (max-width: 767px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .business-card {
    height: auto;
  }
}

@media (max-width: 480px) {
  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    padding: 14px 16px;
  }
}

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
.footer-cta {
  background: linear-gradient(90deg, #33DAFF 0%, #00AEEF 5%, #016AC4 25%, #016AC4 75%, #00AEEF 95%, #33DAFF 100%);
  padding: 100px 80px 0;
  text-align: center;
  position: relative;
}

.footer-cta-title {
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin: 6px 0 48px;
}

.footer-cta-title-sub {
  display: block;
  font-size: 25px;
  margin-top: 12px;
}

.btn-entry-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px 15px;
  width: 320px;
  height: 79px;
  background: linear-gradient(93deg, #FFAA65 0%, #FF5100 9%, #D14200 22%, #D14200 82%, #FF5100 91%, #FFAA65 100%);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin: 0px 0px -1px;
  position: relative;
  z-index: 5;
}

@media (hover: hover) {
  .btn-entry-footer:hover {
    background-position: right;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  }
}

.footer-city {
  width: 100%;
  margin-top: 40px;
  line-height: 0;
}

.footer-city-bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 120px;
  background-image: url('/recruit/new-graduate/images/footer.webp');
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 100%;
}

.footer-nav-bar {
  background: linear-gradient(180deg, #e8f6fd 0%, #fff 60%);
  padding: 40px var(--px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 5;
  color: rgb(0, 174, 239);
}

.footer-copyright {
  font-size: 12px;
  color: rgb(85, 85, 85);
  padding: 32px 0px 9px;
}

/* SP のみ表示する改行 */
.br-sp {
  display: none;
}

.footer-corp-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  padding-top: 8px;
}

.footer-corp-logo {
  height: 44px;
  width: auto;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .footer-corp-link:hover .footer-corp-logo {
    opacity: 0.8;
  }
}

.footer-corp-text {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #003C74;
  letter-spacing: 0.06em;
}

.footer-corp-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: #007AAA;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .footer-corp-link:hover .footer-corp-text {
    color: #007AAA;
  }

  .footer-corp-link:hover .footer-corp-text::after {
    transform: scaleX(1);
  }
}

/* ══════════════════════════════════════════
    FAQ SECTION
══════════════════════════════════════════ */
.section-faq {
  background: transparent;
}

.faq-list {
  margin-top: 48px;
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #33DAFF 0%, #00AEEF 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 60, 116, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .back-to-top:hover {
    filter: brightness(1.06);
  }
}

.back-to-top .material-symbols-rounded {
  font-size: 30px;
}

@media (max-width: 767px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .back-to-top .material-symbols-rounded {
    font-size: 26px;
  }
}

.faq-item {
  border-top: 1px solid #dde4ed;
}

.faq-list > li:last-child .faq-item {
  border-bottom: 1px solid #dde4ed;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

@media (hover: hover) {
  .faq-trigger:hover {
    opacity: 0.75;
  }
}

/* summary（FAQ）の既定マーカー（▶）を消す */
.faq-trigger {
  list-style: none;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-q-label {
  font-size: 46px;
  font-weight: 200;
  font-family: 'Montserrat', sans-serif;
  color: rgb(0, 120, 194);
  flex-shrink: 0;
  line-height: 1;
  width: 64px;
  /* Q1〜Q5 を同じ幅に揃える（2文字ラベルが収まる） */
  letter-spacing: 2.1px;
  margin: 0px 21px 0px 0px;
}

.faq-q-text {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  color: rgb(0, 40, 100);
  font-weight: 600;
  line-height: 1.6;
  font-family: 'YuGothic', '游ゴシック', 'Yu Gothic', 'Yu Gothic UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', Meiryo, sans-serif;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(0, 174, 239);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transition: background 0.2s, transform 0.35s ease;
}

.faq-icon .material-symbols-rounded {
  font-size: 24px;
  color: #fff;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 18;
  transition: transform 0.35s ease;
}

.faq-item[open] .faq-icon {
  background: rgb(0, 60, 116);
}

.faq-item[open] .faq-icon .material-symbols-rounded {
  color: #fff;
}

.faq-body {
  overflow: hidden;
}

.faq-a-wrap {
  padding: 0px 0px 28px 100px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.faq-a-label {
  display: none;
}

.faq-a-text {
  font-size: 17px;
  color: #444;
  line-height: 1.85;
  flex: 1;
  max-width: 1000px;
  min-width: 0;
}

.faq-a-text p {
  margin: 0;
}

.faq-a-text p + p {
  margin-top: 1.85em;
}

/* ══════════════════════════════════════════
    SELECTION FLOW SECTION
══════════════════════════════════════════ */
.section-flow {
  background: linear-gradient(120deg, #E2F3FF 54%, #F2FDFF 100%);
}

.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 48px;
}

.flow-step {
  flex: 1;
  background: #fff;
  border: 1px solid #dde6ef;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  height: 230px;
}

.flow-step.is-final {
  background: linear-gradient(90deg, #016AC4 0%, #016AC4 67%, #01ACE7 95%);
  border-color: #1a1a2e;
  border-width: 0px;
}

/* 装飾の矢印（ステップ間） */
.flow-step:not(.is-final)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16.5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #00AEEF;
}

.flow-step-num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgb(0, 120, 194);
}

.flow-step.is-final .flow-step-num {
  color: rgb(255, 255, 255);
}

.flow-step-title {
  font-size: 22px;
  font-weight: 600;
  color: rgb(0, 40, 100);
  line-height: 1.3;
}

.flow-step.is-final .flow-step-title {
  color: #fff;
}

.flow-step-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.flow-step.is-final .flow-step-desc {
  color: #aaa;
}

@media (max-width: 1080px) {
  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .flow-step {
    width: 100%;
    max-width: 560px;
    height: auto;
    padding: 12px 20px;
    gap: 4px;
  }

  .flow-step-num {
    margin: 0;
  }

  .flow-step-title {
    margin: 0;
  }

  .flow-step-desc {
    margin: 0;
  }

  .flow-step:not(.is-final)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* ══════════════════════════════════════════
    REQUIREMENTS SECTION
══════════════════════════════════════════ */
.section-requirements {
  background: transparent;
}

.req-table-wrap {
  margin-top: 34px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.req-table {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 17em 1fr;
}

.req-row {
  display: contents;
}

.req-row dt {
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 60, 116);
  white-space: nowrap;
  border-bottom: 1px solid #dde4ed;
}

.req-row dd {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  border-bottom: 1px solid #dde4ed;
}

.req-row:nth-child(odd) dt,
.req-row:nth-child(odd) dd {
  background: #f4f9ff;
}

/* ── 詳細を見る（disclosure） ────────────── */
.req-table:not(.is-open) .req-row--extra {
  display: none;
}

.req-more {
  display: flex;
  justify-content: center;
  position: relative;
}
.req-more::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 76px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.req-more.is-faded::before {
  opacity: 1;
}
.req-more-toggle {
  cursor: pointer;
  user-select: none;
}
.req-more-toggle:focus-visible {
  outline: 2px solid #007aaa;
  outline-offset: 2px;
}

/* 開閉でラベル文言を切り替え */
.req-more-text--close {
  display: none;
}
.req-more-toggle[aria-expanded="true"] .req-more-text--open {
  display: none;
}
.req-more-toggle[aria-expanded="true"] .req-more-text--close {
  display: inline;
}

.req-more--btn.req-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  appearance: none;
  -webkit-appearance: none;
  padding: 14px 40px;
  border: 1.5px solid rgb(0, 60, 116);
  background: rgb(0, 60, 116);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
@media (hover: hover) {
  .req-more--btn.req-more-toggle:hover {
    background: transparent;
    color: rgb(0, 60, 116);
  }
}
.req-more--btn.req-more-toggle:focus-visible {
  outline-offset: 3px;
}
.req-more--btn .req-more-icon {
  font-size: 20px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.req-more-icon--close {
  display: none;
}
.req-more-toggle[aria-expanded="true"] .req-more-icon--open {
  display: none;
}
.req-more-toggle[aria-expanded="true"] .req-more-icon--close {
  display: inline-flex;
}

@media (prefers-reduced-motion: reduce) {
  .req-more--btn.req-more-toggle,
  .req-more::before {
    transition: none;
  }
}

@media (max-width: 480px) {
  .req-table {
    grid-template-columns: 9.5em 1fr;
  }

  .req-row dt {
    font-size: 13px;
    white-space: normal;
    line-height: 1.45;
    padding: 11px 10px;
  }

  .req-row dd {
    font-size: 13px;
    padding: 11px 10px;
  }
}

/* ══════════════════════════════════════════
    LOOK FOR SECTION
══════════════════════════════════════════ */
.section-lookfor {
  background: linear-gradient(120deg, #E2F3FF 54%, #F2FDFF 100%);
}

.lookfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lookfor-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.lookfor-card-img {
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookfor-card-body {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.lookfor-card-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(0, 40, 100);
  line-height: 1.4;
}

.lookfor-card-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .lookfor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookfor-card:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .lookfor-card-body {
    padding: 20px 20px 28px;
  }
}

@media (max-width: 480px) {
  .lookfor-grid {
    grid-template-columns: 1fr;
  }

  .lookfor-card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
    width: auto;
  }
}

/* ══════════════════════════════════════════
    NUMBERS SECTION
══════════════════════════════════════════ */
.section-numbers {
  background: transparent;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin: 56px 0 0;
  padding: 0;
}

.numbers-grid .number-item {
  grid-column: span 2;
}

.numbers-grid .number-item:nth-child(5) {
  grid-column: 2 / span 2;
}

.number-item {
  padding: 40px 32px 36px;
  border-radius: 16px;
  background: linear-gradient(-87deg, #F0FCFF, #E5FAFF);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.number-item dd {
  order: -1;
}

.number-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 40, 100);
  letter-spacing: -0.02em;
}

.number-value sup {
  font-size: 0.38em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.number-value .number-suffix {
  font-size: 0.28em;
  font-weight: 700;
  vertical-align: baseline;
  letter-spacing: 0;
  margin-left: 2px;
}

.number-value-flex {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.number-unit {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: normal;
}

.number-label {
  font-size: 16px;
  color: rgb(0, 116, 189);
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .numbers-grid .number-item,
  .numbers-grid .number-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid .number-item,
  .numbers-grid .number-item:nth-child(5) {
    grid-column: auto;
  }

  .number-item {
    padding: 28px 20px 24px;
  }
}

/* ══════════════════════════════════════════
    BENEFITS SECTION
══════════════════════════════════════════ */
.section-benefits {
  background: linear-gradient(120deg, #E2F3FF 54%, #F2FDFF 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  margin: 56px 0 0;
  padding: 0;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-width: 0;
}

.benefit-icon {
  width: 120px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(-87deg, #00AEEF, #33DAFF);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.25);
  flex-shrink: 0;
}

.benefit-icon .material-symbols-rounded {
  font-size: 55px;
  color: #fff;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 40;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(0, 40, 100);
  letter-spacing: 0.02em;
}

.benefit-title-sm {
  font-size: 18px;
}

.benefit-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  width: 100%;
  max-width: 190px;
}

@media (max-width: 1080px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    margin-top: 28px;
  }

  #benefits .section-title {
    margin-bottom: 20px;
  }

  .benefit-item {
    gap: 8px;
  }
}

/* ══════════════════════════════════════════
    FEATURES SECTION
══════════════════════════════════════════ */
.section-features {
  background: var(--features-bg, #fff);
  transition: background 0.45s;
  padding: 96px 76px;
  margin: 0;
  position: relative;
}

.section-features>.section-inner {
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-img-wrap {
  position: relative;
  padding-top: 44px;
  margin-bottom: 24px;
  overflow: visible;
}

.feature-num {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 108px;
  font-weight: 200;
  color: #00AEEF;
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 1.2px;
  z-index: 2;
}

.feature-img {
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  overflow: hidden;
}

.feature-img,
.biz-card-img,
.lookfor-card-img,
.people-card-img {
  height: auto;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(0, 60, 116);
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.feature-body {
  font-size: 16px;
  line-height: 1.95;
  color: rgb(0, 60, 116);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1080px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-features {
    padding-top: 48px;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .features-display-label {
    overflow: visible;
  }

  .features-ja-label {
    width: auto;
  }
}

@media (min-width: 1025px) {
  .hero picture {
    display: block;
    width: 100%;
  }

  .hero #mv-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: calc(100vw * 500 / 768);
    overflow: hidden;
  }

  .hero picture {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
  }

  .hero #mv-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    min-width: 100%;
    max-width: none;
    margin-left: 0;
    object-fit: cover;
    object-position: right top;
  }

  .hero-overlay {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    align-items: flex-start;
  }

  .hero-overlay .hero-copy-img {
    width: calc(297 / 768 * 100vw);
    max-width: none;
    margin-left: calc(21 / 768 * 100vw);
    margin-top: calc(95 / 768 * 100vw);
  }

  .hero-overlay .hero-entry-btn {
    position: absolute;
    left: 50%;
    top: calc(379 / 768 * 100vw);
    transform: translateX(-50%);
    width: calc(260 / 768 * 100vw);
    height: calc(72 / 768 * 100vw);
    margin-top: 0;
    font-size: calc(24 / 768 * 100vw);
    align-self: auto;
  }

  .hero-overlay .hero-entry-btn:focus-visible {
    transform: translateX(-50%) translateY(-3px);
  }

  @media (hover: hover) {
    .hero-overlay .hero-entry-btn:hover {
      transform: translateX(-50%) translateY(-3px);
    }
  }

  .mv-wave-separator {
    margin-top: calc(100vw * 450 / 768 - 100vw * 500 / 768);
    margin-bottom: calc(100vw * 572 / 768 - 100vw * 450 / 768 - 100vw * 222 / 768);
  }
}

/* ── 767px: モバイルレイアウト ── */
@media (max-width: 767px) {
  :root {
    --header-h: 60px;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 16px;
    gap: 8px;
  }

  .logo-main img {
    height: 30px;
  }

  .logo-recruit {
    font-size: 13px;
    margin-left: 8px;
  }

  .logo-year {
    font-size: 14px;
  }

  .section-wrap {
    padding: 64px 24px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .people-grid,
  .business-grid,
  .numbers-grid,
  .lookfor-grid,
  .faq-list,
  .flow-steps {
    margin-top: 28px;
  }

  .req-table {
    grid-template-columns: 110px 1fr;
  }

  .req-row dt {
    white-space: normal;
    line-height: 1.5;
  }

  .footer-cta {
    background: linear-gradient(90deg, #00AEEF 0%, #016AC4 25%, #016AC4 75%, #00AEEF 100%);
    padding: 40px 24px 0;
  }

  .footer-cta-title {
    font-size: 21px;
    margin: 0 0 20px;
  }

  .footer-cta-title-sub {
    font-size: 16px;
    margin-top: 8px;
  }

  .btn-entry-footer {
    width: 230px;
    height: 58px;
    font-size: 16px;
    padding: 12px 24px;
  }

  .footer-city>div {
    height: 57px;
  }

  .footer-copyright {
    text-align: center;
  }

  .br-sp {
    display: inline;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-features {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-num {
    font-size: 72px;
    left: -12px;
  }

  .faq-q-label {
    width: 64px;
    margin-right: 12px;
  }

  .faq-a-wrap {
    padding-left: 92px;
  }
}

@media (max-width: 767px) {
  .hero {
    aspect-ratio: 375 / 557;
    height: auto;
    overflow: hidden;
  }

  .hero picture {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
  }

  .hero #mv-img {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% * 563 / 557);
    top: -3.39%;
    margin-left: 0;
    object-fit: cover;
    object-position: center top;
  }

  .hero-overlay {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    align-items: flex-start;
  }

  .hero-overlay .hero-copy-img {
    width: calc(306 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(78 / 375 * 100vw);
  }

  .hero-overlay .hero-entry-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(481 / 375 * 100vw);
    width: calc(196 / 375 * 100vw);
    height: calc(54 / 375 * 100vw);
    margin-top: 0;
    font-size: calc(19 / 375 * 100vw);
    align-self: auto;
  }

  .hero-overlay .hero-entry-btn:focus-visible {
    transform: translateX(-50%) translateY(-3px);
  }

  @media (hover: hover) {
    .hero-overlay .hero-entry-btn:hover {
      transform: translateX(-50%) translateY(-3px);
    }
  }

  .mv-wave-separator {
    margin-top: calc(100vw * 489 / 375 - 100vw * 557 / 375);
    margin-bottom: calc(100vw * 548.39 / 375 - 100vw * 489 / 375 - 100vw * 217 / 750);
  }
}

/* ── 480px: 小型端末 ── */
@media (max-width: 480px) {
  .section-wrap {
    padding: 56px 20px;
  }

  .section-features {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-num {
    left: 0;
  }

  .people-card-img {
    aspect-ratio: 1 / 1;
  }

  .people-card-body {
    padding: 12px 12px 10px;
    gap: 5px;
  }

  .people-card-meta {
    line-height: 1.45;
  }

  .features-ja-label {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .section-title {
    line-height: 1.5;
  }

  .section-title.section-title-lead {
    font-size: 21px;
    letter-spacing: 0.5px;
  }

  .people-card-quote {
    font-size: 15px;
  }

  .people-card-dept {
    font-size: 13px;
  }

  .biz-card-title,
  .lookfor-card-title {
    font-size: 18px;
  }

  .biz-card-body {
    font-size: 14px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-desc {
    width: auto;
    font-size: 13px;
  }

  .flow-step-title {
    font-size: 18px;
  }

  .faq-q-text {
    font-size: 15px;
  }

  .faq-q-label {
    font-size: 32px;
    width: 44px;
    margin-right: 4px;
  }

  .faq-a-wrap {
    padding-left: 64px;
  }

  .number-value {
    font-size: clamp(38px, 12vw, 54px);
    min-height: 58px;
    align-items: baseline;
    white-space: nowrap;
  }

  .number-value .number-suffix {
    white-space: nowrap;
  }
}

/* ── Global focus style ─────────────────── */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

@media (min-width: 1081px) and (max-width: 1250px) {
  .header-inner {
    padding: 0 16px 0 24px;
  }

  .logo-main img {
    height: 30px;
  }

  .logo-recruit {
    font-size: 14px;
    margin-left: 8px;
  }

  .logo-year {
    font-size: 15px;
  }

  .nav-list li a {
    padding: 6px clamp(3px, 0.4vw, 8px);
  }

  .nav-list li a::after {
    left: clamp(3px, 0.4vw, 8px);
    right: clamp(3px, 0.4vw, 8px);
  }
}

/* ══════════════════════════════════════════
    モーション軽減（prefers-reduced-motion: reduce）
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  /* スクロール出現（reveal）・文字分解・日本語ラベルは最終表示状態で固定 */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .features-display-label .char {
    transform: none !important;
  }

  .features-ja-label {
    opacity: 1 !important;
    transform: none !important;
  }
}