/* ===================================================
   AICE Recruitment Site — Style
   Color: White × Navy × Accent Blue
   Tone: Clean × Professional × Intellectual × Ambitious
   =================================================== */

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

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --bg-dark: #1a1a2e;
  --navy: #1A1C4F;
  --navy-light: #2a2c6f;
  --text: #111111;
  --text-secondary: #333333;
  --text-muted: #777777;
  --border: #e2e4ea;
  --border-light: #f0f1f4;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-dark: #1d4ed8;
  --accent-bg: rgba(37, 99, 235, 0.06);
  --accent-bg-strong: rgba(37, 99, 235, 0.10);
  --red: #e35050;
  --red-dark: #c73e3e;
  --gold: #b8860b;
  --gold-light: #d4a017;

  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Inter', sans-serif;

  --section-py: 120px;
  --container-max: 1200px;
  --container-px: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-ja);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.text-accent { color: var(--red); }
.text-accent-blue { color: var(--accent); }
.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- Section Common ---------- */
.section-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--text);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm { font-size: 13px; padding: 8px 20px; }
.btn--lg { font-size: 15px; padding: 14px 36px; }
.btn--xl { font-size: 16px; padding: 18px 48px; }
.btn--full { width: 100%; font-size: 15px; padding: 14px 24px; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 80, 80, 0.3);
}

/* CTA buttons — red for emphasis */
.cta .btn--primary,
.header__actions .btn--primary,
.mobile-menu__actions .btn--primary {
  background: var(--red);
  border-color: var(--red);
}
.cta .btn--primary:hover,
.header__actions .btn--primary:hover,
.mobile-menu__actions .btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(227, 80, 80, 0.3);
}
/* Header outline button on white bg */
.header__actions .btn--outline {
  color: var(--text);
  border-color: var(--border);
}
.header__actions .btn--outline:hover {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--text-muted);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--navy);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  padding: 16px 48px;
  font-size: 15px;
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn--dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  background: #fff;
  transition: box-shadow 0.3s;
}
.header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
/* 共通: 白背景にダークテキスト */
.header .header__nav-list a { color: var(--text-secondary); }
.header .header__nav-list a:hover { color: var(--text); }
.header .header__hamburger span { background: var(--text); }

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.header__logo-sub {
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

.header__nav-list {
  display: flex;
  gap: 28px;
}
.header__nav-list a {
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.header__actions { display: flex; gap: 10px; }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  transition: all 0.3s var(--ease);
}
.header__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s var(--ease);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu__nav ul { text-align: center; }
.mobile-menu__nav ul li { margin-bottom: 24px; }
.mobile-menu__nav ul a { font-size: 20px; font-weight: 700; color: var(--text); }
.mobile-menu__actions { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #1e2040;
  overflow: hidden;
}
/* Floating gradient orbs */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 700px 600px at 15% 40%, rgba(37, 99, 235, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(227, 80, 80, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 600px 500px at 50% 85%, rgba(60, 100, 235, 0.3) 0%, transparent 55%);
  animation: heroFloat 20s ease-in-out infinite;
}
/* Secondary glow layer */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 35%, rgba(227, 80, 80, 0.08) 0%, transparent 35%);
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.03); }
  66% { transform: translate(-2%, 3%) scale(0.97); }
}
/* Particle canvas layer */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Rotating ring (center) */
.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  animation: heroRing 40s linear infinite;
}
.hero__ring::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 50%;
}
.hero__ring::after {
  content: '';
  position: absolute;
  inset: -60px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
@keyframes heroRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Small dots on the ring */
.hero__ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(37, 99, 235, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}
.hero__ring-dot:nth-child(1) { top: -3px; left: 50%; }
.hero__ring-dot:nth-child(2) { bottom: -3px; left: 50%; }
.hero__ring-dot:nth-child(3) { top: 50%; right: -3px; }
.hero__ring-dot:nth-child(4) { top: 50%; left: -3px; background: rgba(227, 80, 80, 0.5); box-shadow: 0 0 8px rgba(227, 80, 80, 0.4); }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero__label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  line-height: 1.9;
}

.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ========== PAGE HERO (Sub pages) ========== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 10% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 90% 30%, rgba(227, 80, 80, 0.08) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--red), var(--accent));
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fff;
}
.page-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.9;
}

/* ========== NUMBERS ========== */
.numbers {
  padding: 72px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.numbers__value {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.numbers__unit {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-left: 2px;
}
.numbers__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ========== MISSION ========== */
.mission { padding: var(--section-py) 0; }

.mission__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}

.mission__heading {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mission__text-large {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text);
}

.mission__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
}

/* ========== MOVIE ========== */
.movie {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.movie__wrapper { margin-top: 40px; margin-bottom: 64px; }

.movie__placeholder {
  aspect-ratio: 16 / 9;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.movie__placeholder:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}

.movie__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.movie__play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.movie__placeholder:hover .movie__play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37,99,235,0.25);
}

.movie__placeholder-text { font-size: 14px; color: var(--text-muted); }

.movie__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.movie__feature { text-align: center; }
.movie__feature-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--accent); }
.movie__feature-icon svg { width: 100%; height: 100%; }
.movie__feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.movie__feature p { font-size: 14px; color: var(--text-secondary); }

/* ========== BUSINESS ========== */
.business { padding: var(--section-py) 0; }

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

.business__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.business__card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.business__card-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}

.business__card-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.business__card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }

.business__card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.business__card-tags li {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 500;
}

/* ========== JOBS ========== */
.jobs {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.jobs__card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.jobs__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.jobs__card-icon { width: 120px; height: 80px; margin-bottom: 20px; }
.jobs__card-icon svg, .jobs__card-icon img { width: 100%; height: 100%; object-fit: contain; }
.jobs__card-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.jobs__card-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.jobs__card-salary {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 6px;
}
.jobs__card-arrow {
  position: absolute;
  top: 36px;
  right: 28px;
  font-size: 20px;
  color: var(--border);
  transition: color 0.3s, transform 0.3s;
}
.jobs__card:hover .jobs__card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.jobs__highlight {
  background: var(--accent-bg);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  padding: 40px 48px;
  position: relative;
}
.jobs__highlight-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 4px;
  text-transform: uppercase;
}
.jobs__highlight h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--accent-dark); }
.jobs__highlight p { font-size: 15px; color: var(--text-secondary); line-height: 1.9; max-width: 720px; }

/* ========== JOBS DETAIL (jobs.html) ========== */
.job-detail { padding: var(--section-py) 0; }
.job-detail + .job-detail { padding-top: 0; }

.job-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.job-detail__inner--reverse { direction: rtl; }
.job-detail__inner--reverse > * { direction: ltr; }

.job-detail__content {}
.job-detail__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.job-detail__title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
}
.job-detail__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 24px;
}

.job-detail__list { margin-bottom: 24px; }
.job-detail__list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.job-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.job-detail__visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

.job-detail__quote {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 24px;
}
.job-detail__quote p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-style: italic;
}
.job-detail__quote-attr {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: normal;
}

/* Day schedule */
.day-schedule { padding: var(--section-py) 0; background: var(--bg-alt); }
.day-schedule__timeline { max-width: 700px; margin: 48px auto 0; }
.day-schedule__item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.day-schedule__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.day-schedule__time {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  min-width: 56px;
  padding-top: 4px;
}
.day-schedule__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.day-schedule__text h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.day-schedule__text p { font-size: 14px; color: var(--text-secondary); }

/* ========== PEOPLE ========== */
.people { padding: var(--section-py) 0; }

.people__slider { position: relative; overflow: hidden; margin-top: 16px; }
.people__track { display: flex; gap: 28px; transition: transform 0.5s var(--ease); }

.people__card {
  min-width: calc(50% - 14px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.people__card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.people__card-img {
  width: 200px;
  min-height: 260px;
  flex-shrink: 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.people__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
a.people__card {
  text-decoration: none;
  color: inherit;
}
.people__card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--text-muted);
}

.people__card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.people__card-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.people__card-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.people__card-prev { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.people__card-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.people__nav { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.people__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.people__nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.people__nav-btn svg { width: 20px; height: 20px; }

/* Executive Row (people.html) */
.exec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.exec-member {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.exec-member:hover { border-color: var(--accent); }
.exec-member__img {
  height: 240px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  overflow: hidden;
}
.exec-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.exec-member__img img[alt="佐藤 匠"] {
  object-fit: cover;
  object-position: center 15%;
}
.exec-member__body { padding: 24px; }
.exec-member__position {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.exec-member__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.exec-member__career {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.exec-member__summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Executive Card (click-to-expand) ---------- */
.exec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.exec-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.exec-card__photo {
  height: 240px;
  background: var(--bg-alt);
  overflow: hidden;
}
.exec-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.exec-card__photo img[alt="佐藤 匠"] {
  object-fit: cover;
  object-position: center 15%;
}
.exec-card__photo img[alt="高橋 将生"] {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.25) translateY(4%);
}
/* 星田さんの写真枠にグレー背景 */
.exec-card__photo:has(img[alt="星田 大輝"]) {
  background: #e5e7eb;
}
.exec-card__photo img[alt="星田 大輝"] {
  object-position: center 25%;
}
.exec-card__position {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 4px;
}
.exec-card__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2px;
}
.exec-card__name-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.exec-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.exec-card__toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s;
}
.exec-card:hover .exec-card__toggle span {
  border-color: var(--accent);
  color: var(--accent);
}
.exec-card.is-open .exec-card__toggle span {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}
/* ---------- Executive Modal ---------- */
.exec-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.exec-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.exec-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.exec-modal__content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.exec-modal.is-open .exec-modal__content {
  transform: translateY(0);
}
.exec-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--accent);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  z-index: 10;
}
.exec-modal__close:hover { opacity: 0.8; }
.exec-modal__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.exec-modal__left {
  flex: 1;
}
.exec-modal__name-en {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.exec-modal__name {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.exec-modal__position {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.exec-modal__right {
  flex-shrink: 0;
}
.exec-modal__photo {
  width: 240px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}
.exec-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.exec-modal__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}
.exec-modal__bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
}

@media (max-width: 768px) {
  .exec-modal__content { padding: 32px 24px; }
  .exec-modal__inner { flex-direction: column-reverse; gap: 20px; }
  .exec-modal__photo { width: 100%; height: 240px; }
  .exec-modal__name-en { font-size: 28px; }
  .exec-modal__name { font-size: 20px; }
}

/* Interview Grid (people.html - Wantedly style) */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.interview-card {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.interview-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.interview-card__img {
  width: 160px;
  flex-shrink: 0;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.interview-card__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.interview-card__role {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.interview-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.interview-card__prev {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.interview-card__quote {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

/* Interview card image */
.interview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Interview Modal */
.interview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.interview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.interview-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.interview-modal__content {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.interview-modal.is-open .interview-modal__content {
  transform: translateY(0);
}
.interview-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.interview-modal__close:hover { color: var(--text); }

.interview-modal__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.interview-modal__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.interview-modal__name {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.interview-modal__title {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.interview-modal__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.interview-modal__body h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.interview-modal__body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 14px;
}
.interview-modal__body strong {
  color: var(--text);
  font-weight: 600;
}

/* People grid (people.html) */
.people-grid { padding: var(--section-py) 0; }
.people-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.people-grid__card {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.people-grid__card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.people-grid__img {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
.people-grid__body { padding: 32px; }
.people-grid__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}
.people-grid__name { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.people-grid__prev { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.people-grid__quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

/* Executive */
.executives { padding: var(--section-py) 0; background: var(--bg-alt); }
.executives__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.exec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.exec-card__img {
  height: 280px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
.exec-card__body { padding: 32px; }
.exec-card__position { font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.exec-card__name { font-size: 24px; font-weight: 900; margin-bottom: 16px; color: var(--text); }
.exec-card__bio { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.exec-card__career { margin-top: 16px; }
.exec-card__career dt {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}
.exec-card__career dd {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

/* ========== CULTURE ========== */
.culture { padding: var(--section-py) 0; background: var(--bg-alt); }

.culture__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.culture__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.culture__card:hover { border-color: var(--accent); transform: translateY(-4px); }

.culture__card-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 20px; }
.culture__card-icon svg { width: 100%; height: 100%; }
.culture__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.culture__card p { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }

/* ========== NEWS ========== */
.news { padding: var(--section-py) 0; }

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.news__card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.news__card:hover { border-color: var(--accent); transform: translateY(-4px); }

.news__card-img {
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
}
.news__card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.news__card-img-placeholder svg { width: 40px; height: 40px; }
.news__card-body { padding: 24px; }
.news__card-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.news__card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.news__card-body p { font-size: 13px; color: var(--text-muted); }

/* ========== Interview Card Initial Avatar ========== */
.interview-card__initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.interview-card__initial--outline {
  background: var(--white) !important;
  font-weight: 800;
}
.interview-card__initial--large {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  font-size: 48px;
}

/* ========== Interview Detail Page ========== */
.interview-detail {
  padding-top: 120px;
  padding-bottom: 80px;
}
.interview-detail__back {
  display: inline-block;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.2s;
}
.interview-detail__back:hover {
  opacity: 0.7;
}
.interview-detail__hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.interview-detail__photo {
  flex-shrink: 0;
}
.interview-detail__photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}
.interview-detail__role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.interview-detail__name {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}
.interview-detail__profile {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 56px;
}
.interview-detail__profile h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.interview-detail__profile p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
}
.interview-detail__body {
  margin-bottom: 64px;
}
.interview-detail__section {
  margin-bottom: 48px;
}
.interview-detail__section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.interview-detail__qa {
  margin-bottom: 32px;
}
.interview-detail__q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  line-height: 1.6;
}
.interview-detail__a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  padding-left: 16px;
}
.interview-detail__cta-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .interview-detail__hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .interview-detail__photo img,
  .interview-card__initial--large {
    width: 140px;
    height: 140px;
    font-size: 40px;
  }
  .interview-detail__name {
    font-size: 24px;
  }
  .interview-detail__section h2 {
    font-size: 18px;
  }
  .interview-detail__cta-inline {
    flex-direction: column;
  }
}

/* ========== CTA ========== */
.cta { padding: var(--section-py) 0; }

.cta__inner {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-dark);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(42,44,111,0.4), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(227,80,80,0.12), transparent 60%);
}

.cta__title { position: relative; font-size: 36px; font-weight: 900; line-height: 1.4; margin-bottom: 20px; }
.cta__desc { position: relative; font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.9; margin-bottom: 40px; }
.cta__buttons { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== ABOUT (about.html) ========== */
.about-section { padding: var(--section-py) 0; }
.about-section--alt { background: var(--bg-alt); }

/* About Lead */
.about-lead {
  max-width: 800px;
}
.about-lead p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 12px;
}

/* ---------- AGI Roadmap ---------- */
.roadmap {
  margin-top: 64px;
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
}
.roadmap__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.roadmap__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.6;
}
.roadmap__timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
.roadmap__line {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.15);
  overflow: visible;
}
/* Animated traveling dot — pauses at each year (5 stops) */
.roadmap__line::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(227, 80, 80, 0.6), 0 0 32px rgba(227, 80, 80, 0.3);
  animation: roadmapTravel 15s ease-in-out infinite;
}
@keyframes roadmapTravel {
  0%   { left: 0%;   opacity: 0; }
  2%   { left: 0%;   opacity: 1; }
  /* stop 1: 2026 (10%) */
  8%   { left: 10%;  }
  14%  { left: 10%;  }
  /* stop 2: 2027 (30%) */
  22%  { left: 30%;  }
  28%  { left: 30%;  }
  /* stop 3: 2028 (50%) */
  36%  { left: 50%;  }
  42%  { left: 50%;  }
  /* stop 4: 2029 (70%) */
  50%  { left: 70%;  }
  56%  { left: 70%;  }
  /* stop 5: 2030 (90%) */
  64%  { left: 90%;  }
  72%  { left: 90%;  opacity: 1; }
  76%  { left: 90%;  opacity: 0; }
  100% { left: 90%;  opacity: 0; }
}
.roadmap__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.roadmap__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.roadmap__step:hover .roadmap__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}
.roadmap__year {
  font-family: var(--font-en);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 12px;
}
.roadmap__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.roadmap__card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap__card-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.7);
}
.roadmap__step:hover .roadmap__card-icon svg {
  stroke: var(--accent);
}
.roadmap__card strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .roadmap { padding: 32px 20px; }
  .roadmap__timeline { flex-direction: column; align-items: flex-start; gap: 24px; }
  .roadmap__line { top: 0; bottom: 0; left: 5px; right: auto; width: 2px; height: auto; }
  .roadmap__step { flex-direction: row; gap: 16px; text-align: left; }
  .roadmap__dot { margin-bottom: 0; }
  .roadmap__card { flex-direction: row; }
}

/* MVV Row (horizontal layout) */
.mvv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px 0 40px;
}
.mvv-row__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.mvv-row__text {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.35;
}
.mvv-row__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
}

.mvv-values {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.mvv-values__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.mvv-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mvv-values__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.mvv-values__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.mvv-values__card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.mvv-values__card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Message Cards */
.msg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.msg-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.msg-card__img {
  height: 280px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.msg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.msg-card__img img[alt="佐藤 匠"] {
  object-fit: cover;
  object-position: center 15%;
}
.msg-card__img img[alt="高橋 将生"] {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.25) translateY(4%);
}
.msg-card__body {
  padding: 28px;
}
.msg-card__position {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.msg-card__name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.msg-card__name-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-left: 8px;
}
.msg-card__career {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.msg-card__quote p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
}

/* About Merit (different from culture merits) */
.about-merit-list {
  margin-top: 48px;
}
.about-merit {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.about-merit:first-child { padding-top: 0; }
.about-merit:last-child { border-bottom: none; }

.about-merit__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}
.about-merit__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-merit__lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 28px;
  max-width: 800px;
}
.about-merit__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-merit__detail {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.about-merit__detail h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.about-merit__detail p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* About Future */
.about-future {
  max-width: 800px;
}
.about-future p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 12px;
}

.about-timeline { max-width: 700px; margin: 48px auto 0; }
.about-timeline__item {
  display: flex;
  gap: 24px;
  padding-bottom: 28px;
  position: relative;
}
.about-timeline__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.about-timeline__year {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 56px;
  padding-top: 2px;
}
.about-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
  z-index: 1;
}
.about-timeline__text h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.about-timeline__text p { font-size: 14px; color: var(--text-secondary); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.about-stat {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
}
.about-stat__value {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}
.about-stat__label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }

/* ========== FOOTER ========== */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  color: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer__brand {
  min-width: 240px;
}

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__logo {
  display: block;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.footer__mission {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer__address {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.footer__links { display: flex; gap: 48px; }
.footer__col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a { font-size: 13px; color: rgba(255,255,255,0.75); transition: color 0.3s; }
.footer__col ul a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer__bottom-links a:hover { color: #fff; }
.footer__bottom p { font-family: var(--font-en); font-size: 12px; color: rgba(255,255,255,0.5); }

/* ========== FIXED CTA BAR ========== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.fixed-cta.is-visible { transform: translateY(0); }
.fixed-cta .btn { flex: 1; max-width: 200px; }

/* ========== ANIMATIONS ========== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ========== VALUES (Home) ========== */
.values { padding: var(--section-py) 0; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.values__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.values__card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.values__card-number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}
.values__card-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.values__card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }

/* ========== BIZ HOME (Home business section) ========== */
.biz-home { padding: var(--section-py) 0; background: var(--bg-alt); }

.biz-home__matrix {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 48px;
}
.biz-home__matrix-header {
  margin-bottom: 12px;
}
.biz-home__matrix-header span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.biz-home__matrix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.biz-home__matrix-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.biz-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
}
.biz-tag--industry {
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(37,99,235,0.15);
}
.biz-tag--tech {
  background: rgba(16,185,129,0.06);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.15);
}

/* BIZ HOME - Service Cards */
.biz-home__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.biz-home__service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.biz-home__service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.biz-home__service-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.biz-home__service-icon svg { width: 100%; height: 100%; }
.biz-home__service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.biz-home__service-card ul {
  list-style: none;
}
.biz-home__service-card li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 5px 0 5px 18px;
  position: relative;
}
.biz-home__service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

/* BIZ HOME - Flow */
.biz-home__flow {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 40px;
}
.biz-home__flow-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.biz-home__flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.biz-home__flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-bg);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 10px;
  padding: 14px 22px;
  flex: 1;
  justify-content: center;
}
.biz-home__flow-step-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.biz-home__flow-step span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.biz-home__flow-arrow {
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* BIZ HOME - Tech section */
.biz-home__tech {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 40px;
}

.biz-home__case-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.biz-home__cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.biz-home__case {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s;
}
.biz-home__case:hover { border-color: var(--accent); }

.biz-home__case-industry {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.biz-home__case-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.biz-home__case-summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.biz-home__case-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.biz-home__link { text-align: center; }

/* ========== BIZ VALUE (business.html) ========== */
.biz-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  margin-bottom: 64px;
  align-items: center;
}
.biz-value__text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.biz-value__text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
}
.biz-value__visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 24px;
}

/* ---------- Positioning Map ---------- */
.positioning-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
/* Y軸 */
.positioning-map__y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 36px;
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.positioning-map__y-axis .positioning-map__axis-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
}
.positioning-map__y-axis .positioning-map__axis-end {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  position: absolute;
  top: 4px;
  right: 4px;
}
.positioning-map__y-line {
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--text-muted);
}
.positioning-map__y-line::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--text-muted);
}
/* X軸 */
.positioning-map__x-axis {
  position: absolute;
  left: 48px;
  right: 0;
  bottom: 16px;
  height: 28px;
  display: flex;
  align-items: center;
}
.positioning-map__x-line {
  flex: 1;
  height: 2px;
  background: var(--text-muted);
  position: relative;
}
.positioning-map__x-line::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--text-muted);
}
.positioning-map__x-axis .positioning-map__axis-end {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-left: 12px;
}
.positioning-map__x-axis .positioning-map__axis-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-left: 8px;
  white-space: nowrap;
}
/* プロット領域 */
.positioning-map__plot {
  position: absolute;
  left: 56px;
  right: 8px;
  top: 8px;
  bottom: 44px;
}
.positioning-map__item {
  position: absolute;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  line-height: 1.3;
  transform: translate(-50%, 0);
}
.positioning-map__item--aice {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transform: translate(-50%, 0);
}
.positioning-map__item--aice strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.positioning-map__item--aice span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}
.positioning-map__note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
}

/* BIZ FLOW */
.biz-flow__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}
.biz-flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.biz-flow__step {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.biz-flow__step-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.biz-flow__step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.biz-flow__step p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.biz-flow__who {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-bg);
  border-radius: 4px;
}
.biz-flow__arrow {
  font-size: 24px;
  color: var(--text-muted);
  padding-top: 48px;
  flex-shrink: 0;
}

/* SERVICE DETAIL */
.service-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-detail {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.3s;
}
.service-detail:hover { border-color: var(--accent); }

.service-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-detail__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
}
.service-detail__icon svg { width: 100%; height: 100%; }
.service-detail__num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}

.service-detail__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.service-detail__lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-detail__body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 12px;
}
.service-detail__body p:last-child { margin-bottom: 0; }

.service-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-detail__tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent-bg);
  color: var(--accent);
}

/* INDUSTRY GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.industry-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.industry-card__icon {
  width: 100%;
  height: 100px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card__icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.industry-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.industry-card__title { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.industry-card__challenge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.industry-card__approach {
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  letter-spacing: 0.05em;
  margin-top: 14px;
  margin-bottom: 4px;
}
.industry-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* TECH GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s;
}
.tech-card:hover { border-color: var(--accent); }
.tech-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.tech-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* CASE LIST */
.case-list { display: flex; flex-direction: column; gap: 32px; }
.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.case-card__industry {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.case-card__meta {
  font-size: 12px;
  color: var(--text-muted);
}
.case-card__title {
  font-size: 20px;
  font-weight: 700;
  padding: 24px 28px 0;
  color: var(--text);
}
.case-card__body { padding: 20px 28px 28px; }
.case-card__section { margin-bottom: 20px; }
.case-card__section:last-child { margin-bottom: 0; }
.case-card__section h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.case-card__section p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.case-card__section--highlight {
  background: var(--accent-bg);
  border-radius: 8px;
  padding: 16px 20px;
}
.case-card__section--highlight h4 { color: var(--accent-dark); }
.case-card__section--highlight p { color: var(--text); }

/* ========== POSITIONS (positions.html) ========== */
/* ---------- Position Filter (large, centered) ---------- */
.pos-filter--center {
  text-align: center;
  margin-bottom: 48px;
}
.pos-filter__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pos-filter__tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pos-filter__tab {
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.pos-filter__tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pos-filter__tab--active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* ---------- Position List ---------- */
.pos-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Position Card (box with divider) ---------- */
.pos-card {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pos-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pos-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--text);
  border-radius: 4px;
  padding: 4px 10px;
  margin-right: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.pos-card__title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.pos-card__arrow {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 300;
  transition: transform 0.2s;
}
.pos-card:hover .pos-card__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

@media (max-width: 768px) {
  .pos-filter__tab { font-size: 13px; padding: 10px 18px; }
  .pos-card { flex-wrap: wrap; padding: 18px 20px; }
  .pos-card__tag { margin-bottom: 8px; }
  .pos-card__title { font-size: 14px; width: 100%; }
}

/* ========== JOB LIST (jobs.html) ========== */
.job-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.job-list-card {
  display: flex;
  height: 180px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.job-list-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.job-list-card__img {
  width: 200px;
  flex-shrink: 0;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.job-list-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.job-list-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.job-list-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.job-list-card__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.job-list-card__salary {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  align-self: flex-start;
}
.job-list-card__arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 20px;
  color: var(--border);
  transition: color 0.3s, transform 0.3s;
}
.job-list-card:hover .job-list-card__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ========== JOB PAGE DETAIL ========== */
.job-page__role {
  max-width: 800px;
}
.job-page__role p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 2;
}

.job-page__work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.job-page__work-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.job-page__work-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.job-page__work-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.job-page__skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.job-page__skill {
  background: var(--accent-bg);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 28px;
}
.job-page__skill h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.job-page__skill p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Fit Text (こんな方に向いています) ---------- */
.job-page__fit-text {
  margin-top: 32px;
}
.job-page__fit-text ul {
  list-style: none;
  padding: 0;
}
.job-page__fit-text li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-secondary);
}
.job-page__fit-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.job-page__fit-text li + li {
  margin-top: 12px;
}
.job-page__fit-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Job Flow Steps ---------- */
.job-page__flow {
  margin-bottom: 64px;
}
.job-page__flow h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}
.job-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.job-flow-step {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.job-flow-step__num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.job-flow-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.job-flow-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .job-flow-steps { grid-template-columns: 1fr 1fr; }
}

.job-page__voices {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.job-page__voices > * {
  width: calc(50% - 12px);
}
@media (max-width: 768px) {
  .job-page__voices > * {
    width: 100%;
  }
}
.job-page__voice {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.job-page__voice-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.job-page__voice-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  flex-shrink: 0;
}
.job-page__voice-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.job-page__voice-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}
.job-page__voice-prev {
  font-size: 12px;
  color: var(--text-muted);
}
.job-page__voice-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  margin: 0;
  font-style: normal;
}
.job-page__voice-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
a.job-page__voice:hover {
  background: var(--accent-bg);
}
a.job-page__voice:hover .job-page__voice-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ========== MERIT DETAIL (culture.html - 7 merits) ========== */
.merit-detail-list {
  margin-top: 48px;
}

.merit-detail {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.merit-detail:first-child { padding-top: 0; }
.merit-detail:last-child { border-bottom: none; }

.merit-detail__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.merit-detail__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}

.merit-detail__body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
}
.merit-detail__body p:last-child { margin-bottom: 0; }

/* ========== MERIT (culture.html) ========== */
.merit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.merit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.merit-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.merit-card--featured {
  grid-column: 1 / -1;
  background: var(--accent-bg);
  border-color: rgba(37,99,235,0.2);
  position: relative;
}
.merit-card__badge {
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: #fff;
  padding: 3px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}
.merit-card__title { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.merit-card--featured .merit-card__title { font-size: 22px; color: var(--accent-dark); }
.merit-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }

/* WORKSTYLE */
.workstyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.workstyle-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s;
}
.workstyle-item:hover { border-color: var(--accent); }
.workstyle-item__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.workstyle-item__icon svg { width: 100%; height: 100%; }
.workstyle-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.workstyle-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s;
}
.benefit-item:hover { border-color: var(--accent); }
.benefit-item__icon { font-size: 28px; margin-bottom: 12px; }
.benefit-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.benefit-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* VALUES DETAIL */
.values-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.value-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s;
}
.value-detail-card:hover { border-color: var(--accent); }
.value-detail-card__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.value-detail-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 14px; color: var(--text); }
.value-detail-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }

/* DATA */
.data-category {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--navy);
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 16px;
}
.data-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.data-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.data-card--sm {
  padding: 22px 16px;
}
.data-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.data-card__big-number {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 10px;
}
.data-card--sm .data-card__big-number {
  font-size: 32px;
}
.data-card__big-number span {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
#data .data-card__big-number {
  color: var(--navy);
}
.data-card__chart { margin-bottom: 12px; }
.data-card__pie { display: flex; flex-direction: column; align-items: center; }
.data-card__pie-large {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}
.data-card__pie-label { font-size: 13px; color: var(--text-muted); }
/* Data card structured layout: label (top) → visual (middle) → desc (bottom) */
.data-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.data-card__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.data-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.data-card--wide {
  grid-column: span 2;
}
.data-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.data-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ---------- Donut Chart ---------- */
.donut-chart {
  display: flex;
  align-items: center;
  gap: 24px;
}
.donut-chart--compact {
  flex-direction: column;
  gap: 14px;
}
.donut-chart__ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.donut-chart__ring--sm {
  width: 120px;
  height: 120px;
}
.donut-chart__center {
  position: absolute;
  inset: 20%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-chart__center-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.donut-chart__center-value {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.donut-chart__center-value--sm {
  font-size: 22px;
}
.donut-chart__center-value small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.donut-chart__legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.donut-chart__legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.donut-chart__legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ---------- Pie Charts (CSS conic-gradient) ---------- */
.pie-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pie-chart--inline {
  flex-direction: row;
  margin-bottom: 0;
}
.pie-chart__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pie-chart__circle--sm {
  width: 80px;
  height: 80px;
}
.pie-chart__legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pie-chart__legend--row {
  flex-direction: column;
  gap: 6px;
}
.pie-chart__legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.pie-chart__legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---------- Bar Chart (従業員数推移) ---------- */
.bar-chart {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.bar-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 140px;
  padding-bottom: 4px;
}
.bar-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.bar-chart__bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  min-height: 8px;
  transition: height 0.6s var(--ease);
}
.bar-chart__label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
  white-space: nowrap;
}
.bar-chart__arrow {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  pointer-events: none;
}
.bar-chart__arrow svg {
  width: 100%;
  height: auto;
}

/* Stacked layout for tech guild card */
.data-card__stacked {
  text-align: center;
}
.data-card__stacked .data-card__big-number {
  font-family: var(--font-ja);
  font-size: 24px;
  margin-bottom: 4px;
}
.data-card__big-number--sub {
  font-size: 18px !important;
}
.data-card__stacked .data-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Workstyle wide item (for dress code chart) */
.workstyle-item--wide {
  grid-column: span 2;
}
.workstyle-dress {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .pie-chart__circle { width: 100px; height: 100px; }
  .workstyle-item--wide { grid-column: span 1; }
  .workstyle-dress { flex-direction: column; }
  .data-card--wide { grid-column: span 1; }
  .donut-chart { flex-direction: column; gap: 14px; }
  .donut-chart__ring { width: 130px; height: 130px; }
  .donut-chart__ring--sm { width: 110px; height: 110px; }
  .donut-chart__center-value { font-size: 22px; }
  .donut-chart__center-value--sm { font-size: 18px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }
  .mission__content { grid-template-columns: 1fr; gap: 48px; }
  .business__grid { grid-template-columns: 1fr; }
  .jobs__grid { grid-template-columns: 1fr; }
  .people__card { min-width: 100%; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .job-detail__inner { grid-template-columns: 1fr; gap: 40px; }
  .job-detail__inner--reverse { direction: ltr; }
  .people-grid__list { grid-template-columns: 1fr; }
  .people-grid__card { flex-direction: column; }
  .people-grid__img { width: 100%; height: 200px; }
  .executives__grid { grid-template-columns: 1fr; }
  .exec-row { grid-template-columns: 1fr; }
  .interview-grid { grid-template-columns: 1fr; }
  .interview-card { flex-direction: column; }
  .interview-card__img { width: 100%; height: 160px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .mvv-row { grid-template-columns: 1fr; gap: 40px; }
  .mvv-values__grid { grid-template-columns: repeat(2, 1fr); }
  .msg-grid { grid-template-columns: 1fr; }
  .about-merit__details { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .biz-home__cases { grid-template-columns: 1fr; }
  .biz-home__services { grid-template-columns: 1fr; }
  .job-list-grid { grid-template-columns: 1fr; }
  .job-list-card { flex-direction: column; }
  .job-list-card__img { width: 100%; height: 180px; }
  .job-page__work-grid { grid-template-columns: 1fr; }
  .job-page__skills { grid-template-columns: 1fr; }
  .biz-home__flow-steps { flex-direction: column; }
  .biz-home__flow-arrow { transform: rotate(90deg); }
  .biz-home__flow-step { width: 100%; }
  .biz-home__flow { padding: 24px 20px; }
  .biz-home__tech { padding: 24px 20px; }
  .biz-value { grid-template-columns: 1fr; }
  .biz-flow { flex-direction: column; }
  .biz-flow__arrow { padding-top: 0; text-align: center; transform: rotate(90deg); }
  .industry-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .merit-grid { grid-template-columns: 1fr; }
  .workstyle-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .values-detail-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .data-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .data-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 15px; }
  .section-title { font-size: 28px; }
  .page-hero__title { font-size: 30px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .numbers__value { font-size: 36px; }
  .mission__text-large { font-size: 24px; }
  .movie__features { grid-template-columns: 1fr; gap: 28px; }
  .people__card { flex-direction: column; }
  .people__card-img { width: 100%; min-height: 200px; }
  .culture__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .cta__title { font-size: 24px; }
  .cta__inner { padding: 48px 24px; }
  .jobs__highlight { padding: 28px 20px; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-wrap: wrap; gap: 24px; }
  .btn--xl { width: 100%; padding: 16px 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .mvv-row__text { font-size: 24px; }
  .mvv-values__grid { grid-template-columns: 1fr; }
  .about-merit__title { font-size: 20px; }
  .about-merit__details { grid-template-columns: 1fr; }
  .about-merit { padding: 36px 0; }
  .job-detail__title { font-size: 24px; }
  .tech-grid { grid-template-columns: 1fr; }
  .biz-home__matrix { padding: 24px; }
  .case-card__header { flex-direction: column; gap: 4px; align-items: flex-start; }
  .workstyle-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .data-grid--4col { grid-template-columns: 1fr 1fr; }
  .data-card__big-number { font-size: 32px; }
  .data-card--sm .data-card__big-number { font-size: 26px; }
  .data-card__big-number { font-size: 36px; }
  .merit-detail__title { font-size: 20px; }
  .merit-detail { padding: 36px 0; }
}
