/* ============================================
   株式会社セキ土建 採用サイト
   White / Red #FF0100 / Navy #00408B
   Complete stylesheet — all pages covered
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --light:      #EEF0F5;
  --border:     #DEE1E8;
  --border-lt:  #ECEEF3;
  --text:       #1A1C21;
  --text-mid:   #4A4E5A;
  --text-muted: #8A8F9E;
  --red:        #FF0100;
  --red-dk:     #CC0000;
  --red-lt:     #FF3333;
  --red-pale:   #FFF0F0;
  --navy:       #00408B;
  --navy-dk:    #002D63;
  --navy-lt:    #1557B0;
  --navy-pale:  #EEF3FA;
  --font-jp:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en:    'Plus Jakarta Sans', sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --max:        1440px;
  --container:  1200px;
  --gutter:     clamp(20px, 5vw, 72px);
  --nav-h:      80px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-jp); background: var(--white); color: var(--text); line-height: 1.8; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.noise-overlay { display: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
.en { font-family: var(--font-en); }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
ul { list-style: none; }
.text-red   { color: var(--red); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.desktop-only { display: inline-flex; }
.mobile-only  { display: none; }

/* ===================================
   LAYOUT
   =================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }

/* ===================================
   SCROLL PROGRESS
   =================================== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--red); width: 0%; z-index: 1001; transition: width 0.1s linear; }

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter); height: 100%;
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; }
.nav__logo img { height: 40px; width: auto; display: block; }
.nav__logo-badge {
  font-family: var(--font-en); font-size: 8px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 3px 8px; border-radius: 2px; flex-shrink: 0; line-height: 1.6;
}
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-mid); transition: color 0.25s;
  position: relative; padding-bottom: 4px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 11px 22px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; border-radius: 3px;
  transition: background 0.25s, transform 0.25s; white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dk); transform: translateY(-1px); }
.nav__cta::after { display: none !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.35s; }
.hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed; inset: 0; background: var(--white); z-index: 999;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter); transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile__links { list-style: none; display: flex; flex-direction: column; }
.nav-mobile__links li { border-bottom: 1px solid var(--border-lt); }
.nav-mobile__links a {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; font-size: clamp(18px, 4vw, 28px); font-weight: 700;
  color: var(--text); transition: color 0.25s, padding-left 0.35s var(--ease-out);
}
.nav-mobile__links a:hover { color: var(--red); padding-left: 8px; }
.nav-mobile__num { font-family: var(--font-en); font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: 0.15em; }
.nav-mobile__cta { margin-top: 40px; }

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-en); font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 32px; }
.breadcrumb__item { color: var(--text-muted); }
.breadcrumb__item--current { color: var(--text-mid); }
.breadcrumb__sep { opacity: 0.5; }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; border-radius: 3px;
  transition: all 0.25s var(--ease-out); cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 4px 16px rgba(255,1,0,0.3); }
.btn--primary:hover { background: var(--red-dk); box-shadow: 0 6px 20px rgba(255,1,0,0.35); }
.btn--navy { background: var(--navy); color: var(--white); box-shadow: 0 4px 16px rgba(0,64,139,0.25); }
.btn--navy:hover { background: var(--navy-dk); }
.btn--outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { border: 2px solid rgba(255,255,255,0.6); color: var(--white); background: transparent; }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--ghost { color: var(--navy); padding-left: 0; padding-right: 0; font-weight: 700; }
.btn--ghost:hover { color: var(--red); transform: none; }

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header--center { text-align: center; }
.section-eyebrow {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-eyebrow::before { display: none; }
.section-title { font-size: clamp(26px, 3.5vw, 48px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.2; color: var(--navy); margin-bottom: 20px; }
.section--navy .section-title, .section--red .section-title { color: var(--white); }
.section-title em { font-style: normal; color: var(--red); }
.section--navy .section-title em { color: rgba(255,255,255,0.7); }
.section-lead { font-size: clamp(14px, 1.2vw, 16px); color: var(--text-mid); line-height: 1.9; max-width: 560px; }
.section-header--center .section-lead { margin: 0 auto; }
.section--navy .section-lead { color: rgba(255,255,255,0.75); }

/* ===================================
   HERO (index.html)
   =================================== */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; background: var(--navy-dk); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 6s ease; }
.hero__slide.active .hero__slide-img { transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,29,80,0.75) 0%, rgba(0,29,80,0.4) 100%); }
.hero__overlay-line { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, transparent 100%); }
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(80px, 12vw, 160px);
  max-width: var(--max); margin: 0 auto;
  left: 50%; transform: translateX(-50%); width: 100%;
}
.hero__eyebrow { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.3em; color: var(--red); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero__title { font-size: clamp(36px, 7vw, 96px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--red); }
.hero__subtitle { font-size: clamp(13px, 1.2vw, 16px); color: rgba(255,255,255,0.8); min-height: 24px; margin-bottom: 40px; max-width: 480px; }
.hero__subtitle::after { content: '|'; animation: blink 1s step-end infinite; margin-left: 1px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__slides-indicator { position: absolute; bottom: clamp(48px, 6vw, 80px); right: var(--gutter); display: flex; flex-direction: column; gap: 8px; }
.hero__dot { display: block; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: background 0.3s, height 0.3s; cursor: pointer; }
.hero__dot.active { background: var(--red); height: 20px; border-radius: 2px; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll-text { font-family: var(--font-en); font-size: 9px; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===================================
   STATS (index.html)
   =================================== */
.stats { background: var(--navy); padding: clamp(40px, 6vw, 80px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px); border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-item__num { font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; display: flex; align-items: baseline; justify-content: center; gap: 4px; font-family: var(--font-en); }
.stat-item__unit { font-family: var(--font-jp); font-size: clamp(14px, 1.5vw, 20px); font-weight: 400; color: rgba(255,255,255,0.7); }
.stat-item__label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.stat-item__sub { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===================================
   ABOUT TOP (index.html)
   =================================== */
.about-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-top__img-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.about-top__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.about-top__img-wrap:hover .about-top__img { transform: scale(1.03); }
.about-top__badge { position: absolute; bottom: -16px; right: -16px; width: 88px; height: 88px; background: var(--red); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.about-top__badge-num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; font-family: var(--font-en); }
.about-top__badge-text { font-family: var(--font-en); font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.15em; }
.about-top__body p { color: var(--text-mid); margin-bottom: 16px; font-size: 15px; line-height: 1.9; }

/* ===================================
   FEATURE CARDS (index.html)
   =================================== */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border-lt); border-radius: 4px; padding: clamp(28px, 3vw, 48px); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.feature-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(255,1,0,0.08); transform: translateY(-4px); }
.feature-card__num { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 16px; }
.feature-card__icon { width: 48px; height: 48px; stroke: var(--navy); margin-bottom: 24px; }
.feature-card__title { font-size: clamp(16px, 1.5vw, 20px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.5; }
.feature-card__body { font-size: 14px; color: var(--text-mid); line-height: 1.9; }

/* ===================================
   JOB PREVIEW CARDS (index.html)
   =================================== */
.jobs-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.job-card { display: block; background: var(--white); border: 1px solid var(--border-lt); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card__img-wrap { overflow: hidden; }
.job-card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.job-card:hover .job-card__img { transform: scale(1.05); }
.job-card__body { padding: 24px; }
.job-card__category { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.job-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.5; }
.job-card__salary { font-size: 15px; font-weight: 700; color: var(--text); font-family: var(--font-en); }

/* ===================================
   CTA BANNER (all pages)
   =================================== */
.cta-banner { background: var(--navy); padding: clamp(72px, 9vw, 128px) 0; position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.cta-banner__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(255,1,0,0.1) 0%, transparent 65%); }
.cta-banner__title { font-size: clamp(32px, 4.5vw, 64px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.2; color: var(--white); margin-bottom: 24px; }
.cta-banner__sub { font-size: clamp(14px, 1.2vw, 16px); color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 40px; line-height: 1.9; text-wrap: balance; }
.cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-banner__line { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.cta-banner__tel { font-family: var(--font-en); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }

/* ===================================
   FOOTER (all pages)
   =================================== */
.footer { background: var(--navy-dk); color: rgba(255,255,255,0.7); padding: clamp(48px, 7vw, 96px) 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 36px; }
.footer__brand-addr { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.5); margin-top: 12px; }
.footer__nav-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__nav-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__nav-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.25s; }
.footer__nav-links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer__copy { font-family: var(--font-en); font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.footer__policy { font-size: 11px; color: rgba(255,255,255,0.35); transition: color 0.25s; }
.footer__policy:hover { color: rgba(255,255,255,0.7); }

/* ===================================
   PAGE HERO (inner pages — no image)
   =================================== */
.page-hero {
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 100px)) 0 clamp(48px, 6vw, 72px);
  background: var(--off-white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.page-hero__eyebrow {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.page-hero__title { font-size: clamp(40px, 6vw, 80px); font-weight: 900; letter-spacing: -0.02em; color: var(--navy); line-height: 1.2; }

/* ===================================
   ENTRY HERO (entry.html)
   =================================== */
.entry-hero { padding: calc(var(--nav-h) + clamp(48px, 8vw, 120px)) 0 clamp(48px, 6vw, 80px); background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.entry-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }

/* ===================================
   DATA TABLE (about.html)
   =================================== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table tr { border-bottom: 1px solid var(--border-lt); }
.data-table th { width: 160px; padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 700; color: var(--navy); background: var(--navy-pale); vertical-align: top; white-space: nowrap; }
.data-table td { padding: 16px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ===================================
   MESSAGE CARD (about.html)
   =================================== */
.message-card { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.message-card__img-wrap { border-radius: 4px; overflow: hidden; }
.message-card__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.message-card__body { font-size: 15px; color: var(--text-mid); line-height: 2; }
.message-card__body p { margin-bottom: 16px; }
.message-card__sig { margin-top: 24px; font-size: 13px; color: var(--text-muted); }

/* ===================================
   HISTORY TIMELINE (about.html)
   =================================== */
.history-timeline { position: relative; padding-left: 40px; max-width: 720px; }
.history-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.history-item { position: relative; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border-lt); }
.history-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.history-item::before { content: ''; position: absolute; left: -44px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--red); }
.history-item__year { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.1em; margin-bottom: 6px; }
.history-item__text { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ===================================
   CAREERS PAGE — JOB DETAIL CARD
   =================================== */
.job-detail-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 48px; }
.job-detail-card__header {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 32px; border-bottom: 1px solid var(--border-lt); background: var(--off-white);
}
.job-detail-card__num { font-family: var(--font-en); font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; flex-shrink: 0; width: 64px; }
.job-detail-card__category { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.job-detail-card__title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: var(--navy); line-height: 1.5; }
.job-detail-card__body { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding: 40px; align-items: start; }
.job-detail-card__desc p { color: var(--text-mid); font-size: 14px; line-height: 1.9; margin-bottom: 12px; }
.job-fit { background: var(--off-white); border-radius: 4px; padding: 28px; }
.job-fit__title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 16px; border-left: 3px solid var(--red); padding-left: 10px; }
.job-fit__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.job-fit__list li { font-size: 13px; color: var(--text-mid); padding-left: 16px; position: relative; line-height: 1.7; }
.job-fit__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

/* ===================================
   CAREERS PAGE — CAREER PATH
   =================================== */
.career-path__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.career-step { background: var(--white); border: 1px solid var(--border-lt); border-radius: 4px; padding: 28px; }
.career-step__num { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 6px; }
.career-step__period { font-family: var(--font-en); font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.career-step__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.career-step__body { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.career-step__qualification { font-size: 12px; color: var(--text-mid); margin-top: 10px; line-height: 1.8; }

/* ===================================
   CAREERS PAGE — SCHEDULE
   =================================== */
.schedule__time { padding: 16px 12px; font-family: var(--font-en); font-size: 15px; font-weight: 700; color: var(--navy); background: var(--navy-pale); display: flex; align-items: flex-start; }
.schedule__content { padding: 16px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* ===================================
   ENVIRONMENT PAGE — BENEFIT GRID
   =================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
  background: var(--white); border: 1px solid var(--border-lt); border-radius: 4px;
  padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.benefit-item:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.benefit-item__icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--navy-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.benefit-item__icon svg { width: 20px; height: 20px; }
.benefit-item__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.benefit-item__body { font-size: 13px; color: var(--text-mid); line-height: 1.9; }

/* DEI table */
.dei-table { width: 100%; border-collapse: collapse; }
.dei-table thead tr { background: var(--navy); }
.dei-table thead th { padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.dei-table tbody tr { border-bottom: 1px solid var(--border-lt); }
.dei-table tbody tr:nth-child(even) { background: var(--off-white); }
.dei-table td { padding: 14px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.dei-table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; width: 200px; }

/* ===================================
   INTERVIEW PAGE
   =================================== */
.interview-nav {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.interview-nav__btn {
  padding: 10px 24px; font-size: 13px; font-weight: 600;
  color: var(--text-mid); border: 1.5px solid var(--border); border-radius: 3px;
  cursor: pointer; transition: all 0.25s; background: var(--white);
  font-family: var(--font-jp);
}
.interview-nav__btn:hover { border-color: var(--navy); color: var(--navy); }
.interview-nav__btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.interview-card { display: none; }
.interview-card.active { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; margin-bottom: 64px; }

.interview-card__visual { position: relative; }
.interview-card__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; }
.interview-card__profile { margin-top: 16px; padding: 16px; background: var(--off-white); border-radius: 4px; }
.interview-card__name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.interview-card__role { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

.interview-card__content {}
.interview-qa { margin-bottom: 32px; }
.interview-qa__q {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.6;
}
.interview-qa__q-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--red);
  font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--red);
  flex-shrink: 0; margin-top: 1px;
}
.interview-qa__a { font-size: 14px; color: var(--text-mid); line-height: 2; padding-left: 38px; }
.interview-qa__a p { margin-bottom: 12px; }
.interview-qa__a p:last-child { margin-bottom: 0; }

/* ===================================
   JOBS PAGE
   =================================== */
.jobs-list { display: flex; flex-direction: column; gap: 0; }
.job-listing { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.job-listing__header { background: var(--navy); padding: 28px 36px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.job-listing__tag {
  display: inline-block; font-family: var(--font-en); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
}
.job-listing__catch { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; line-height: 1.7; }
.job-listing__label { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.job-listing__title { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--white); line-height: 1.3; }
.job-listing__salary-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; text-align: right; }
.job-listing__salary { font-family: var(--font-en); font-size: clamp(18px, 2vw, 24px); font-weight: 800; color: var(--white); white-space: nowrap; text-align: right; line-height: 1.4; }
.job-listing__body { padding: 36px; background: var(--white); display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.job-listing__desc p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 12px; }
.job-listing__desc p:last-child { margin-bottom: 0; }
.job-listing__requirements {}
.job-req-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 12px; border-left: 3px solid var(--red); padding-left: 10px; }
.job-req-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.job-req-list li { font-size: 13px; color: var(--text-mid); padding-left: 16px; position: relative; line-height: 1.7; }
.job-req-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
.job-listing__table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.job-listing__table tr { border-bottom: 1px solid var(--border-lt); }
.job-listing__table th { padding: 14px 16px; font-size: 12px; font-weight: 700; color: var(--navy); background: var(--navy-pale); text-align: left; white-space: nowrap; width: 140px; }
.job-listing__table td { padding: 14px 16px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.job-listing__footer { padding: 24px 36px; background: var(--off-white); display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ===================================
   PROCESS PAGE
   =================================== */
.process__lead {
  font-size: 15px; color: var(--text-mid); line-height: 2;
  background: var(--navy-pale); border-left: 4px solid var(--navy);
  padding: 24px 28px; border-radius: 0 4px 4px 0;
  margin-bottom: 48px;
}
.process__lead strong { color: var(--navy); }
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 28px 32px; border: 1px solid var(--border-lt);
  border-bottom: none; background: var(--white);
}
.process-step:first-child { border-radius: 4px 4px 0 0; }
.process-step:last-child { border-bottom: 1px solid var(--border-lt); border-radius: 0 0 4px 4px; }
.process-step__num { flex-shrink: 0; text-align: center; width: 60px; }
.process-step__num-text { font-family: var(--font-en); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: var(--text-muted); line-height: 1; margin-bottom: 4px; }
.process-step__num-big { font-family: var(--font-en); font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; }
.process-step__content {}
.process-step__phase { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.process-step__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step__body { font-size: 14px; color: var(--text-mid); line-height: 1.9; }

/* ===================================
   FAQ (process.html — faq-item style)
   =================================== */
.faq__group { margin-bottom: 48px; }
.faq__group-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.05em; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--navy);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0; cursor: pointer;
  transition: color 0.25s;
}
.faq-item__q:hover { color: var(--navy); }
.faq-item__q-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--red);
  font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--red);
  flex-shrink: 0;
}
.faq-item__q-text { flex: 1; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.6; }
.faq-item__icon {
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 0 20px 40px; font-size: 14px; color: var(--text-mid); line-height: 1.9; }
.faq-item.open .faq-item__a { display: block; }
.faq-item__a-mark { font-family: var(--font-en); font-weight: 700; color: var(--navy); margin-right: 8px; }

/* ===================================
   FAQ (legacy style — faq-q/faq-a)
   =================================== */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 0; cursor: pointer; font-size: 15px; font-weight: 700;
  color: var(--text); transition: color 0.25s;
}
.faq-q:hover { color: var(--navy); }
.faq-q::before { content: 'Q'; font-family: var(--font-en); font-size: 14px; font-weight: 700; color: var(--red); width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-q__icon { margin-left: auto; width: 20px; height: 20px; flex-shrink: 0; position: relative; color: var(--text-muted); }
.faq-q__icon::before, .faq-q__icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-q__icon::before { width: 14px; height: 2px; }
.faq-q__icon::after  { width: 2px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-q__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { display: none; padding: 0 0 24px 44px; font-size: 14px; color: var(--text-mid); line-height: 1.9; }
.faq-item.open .faq-a { display: block; }

/* ===================================
   ENTRY METHODS (entry.html)
   =================================== */
.entry-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.entry-method { background: var(--white); border: 1px solid var(--border-lt); border-radius: 4px; padding: clamp(28px, 3vw, 48px); }
.entry-method__icon { width: 60px; height: 60px; margin-bottom: 24px; stroke: var(--navy); }
.entry-method__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.entry-method__body { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }

/* ===================================
   ENTRY FORM (entry.html)
   =================================== */
.entry-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: clamp(32px, 4vw, 64px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.form-required { font-size: 10px; font-weight: 700; color: var(--white); background: var(--red); padding: 2px 6px; border-radius: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--font-jp); font-size: 15px; color: var(--text); background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,64,139,0.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--text-muted); }
.form-submit { width: 100%; padding: 18px; background: var(--red); color: var(--white); font-size: 16px; font-weight: 700; letter-spacing: 0.05em; border-radius: 4px; cursor: pointer; transition: background 0.25s, box-shadow 0.25s, transform 0.25s; box-shadow: 0 4px 16px rgba(255,1,0,0.3); }
.form-submit:hover { background: var(--red-dk); box-shadow: 0 6px 24px rgba(255,1,0,0.4); transform: translateY(-2px); }
.has-error .form-input, .has-error .form-select, .has-error .form-textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,1,0,0.1); }

/* ===================================
   THANKS PAGE (thanks.html)
   =================================== */
.thanks-page { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 60px) var(--gutter) 80px; }
.thanks-page__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--white); }
.thanks-page__title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--navy); margin-bottom: 32px; line-height: 1.3; }
.thanks-page__body { font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 40px; }
.thanks-page__body p { margin-bottom: 12px; }
.thanks-page__contact { background: var(--off-white); border-radius: 8px; padding: 28px; margin-bottom: 40px; text-align: left; }

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================
   RESPONSIVE — 1024px
   =================================== */
@media (max-width: 1024px) {
  .features__grid        { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .jobs-preview__grid    { grid-template-columns: 1fr 1fr; }
  .footer__inner         { grid-template-columns: 1fr 1fr; }
  .about-top             { grid-template-columns: 1fr; }
  .about-top__badge      { right: 8px; bottom: 8px; }
  .interview-card.active { grid-template-columns: 1fr; }
  .message-card          { grid-template-columns: 1fr; }
  .message-card__img     { aspect-ratio: 16/9; }
  .job-detail-card__body { grid-template-columns: 1fr; }
  .job-listing__body     { grid-template-columns: 1fr; }
  .entry-methods         { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .career-path__steps    { grid-template-columns: 1fr 1fr; }
  .benefit-grid          { grid-template-columns: 1fr; }
}

/* ===================================
   RESPONSIVE — 768px
   =================================== */
@media (max-width: 768px) {
  .nav__links            { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__hamburger        { display: flex; }
  .desktop-only          { display: none !important; }
  .mobile-only           { display: flex !important; }
  .stats__grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item             { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .jobs-preview__grid    { grid-template-columns: 1fr; }
  .footer__inner         { grid-template-columns: 1fr; gap: 32px; }
  .features__grid        { grid-template-columns: 1fr; }
  .career-path__steps    { grid-template-columns: 1fr; }
  .benefit-grid          { grid-template-columns: 1fr; }
  .entry-methods         { grid-template-columns: 1fr; }
  .form-grid             { grid-template-columns: 1fr; }
  .job-listing__header   { flex-direction: column; }
  .job-listing__body     { padding: 24px; }
  .job-listing__footer   { padding: 20px 24px; flex-direction: column; }
  .cta-banner__actions   { flex-direction: column; align-items: center; }
  .interview-nav         { gap: 8px; }
  .interview-nav__btn    { padding: 8px 16px; font-size: 12px; }
  .process-step          { padding: 20px 24px; gap: 20px; }
  .dei-table td:first-child { white-space: normal; }
  .benefit-item          { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .job-detail-card__header { flex-direction: column; gap: 12px; }
  .job-detail-card__body { padding: 24px; }
  .job-listing__body { padding: 20px; }
  .process-step__num-big { font-size: 28px; }
}
