/* ==========================================================
   明星パトロール株式会社 — Global Styles
   Design: Novasell-inspired (DESIGN.md)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@700&family=Roboto:wght@700;800;900&display=swap');

/* ── Variables ── */
:root {
  --green: #FFD100;
  --black: #060f28;
  --white: #fff;
  --near-black: #101112;
  --dark-grey: #222426;
  --grey: #7e8085;
  --silver: #cdcfd4;
  --light-grey: #f1f5f9;
  --ease: cubic-bezier(0.32, 0.48, 0, 1);
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Roboto", sans-serif;
  --section-pad: clamp(80px, 10vw, 140px);
  --content-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ── */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: #333; }
.btn--green { background: var(--green); color: var(--black); }
.btn--green:hover { filter: brightness(0.9); }
.btn--outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--green); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--white); }
.btn--lg { padding: 18px 44px; font-size: 14px; }

/* ── Section label & EN display ── */
.section-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(64px, 9.5vw, 148px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--black);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  margin-bottom: 8px;
}
.section-en--light { color: var(--white); opacity: 0.06; }
.section-en--green { color: var(--green); opacity: 1; font-size: clamp(40px, 7vw, 100px); letter-spacing: -0.03em; }

.section-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label--dark { color: rgba(0,0,0,0.4); }

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-title--light { color: var(--white); }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,15,40,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s;
}
#header.scrolled {
  background: rgba(6,15,40,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
}

.nav__logo a {
  display: flex;
  align-items: center;
}
.nav__logo a img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--green); }

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

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  padding: 32px clamp(20px, 4vw, 60px);
  flex-direction: column;
  z-index: 99;
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav__drawer a:hover { color: var(--green); }
.nav__drawer .btn {
  margin-top: 28px;
  align-self: flex-start;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px clamp(20px, 4vw, 60px) 80px;
}

.hero__bg-text {
  position: absolute;
  bottom: -0.1em;
  left: -0.03em;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 460px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 100px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--green);
}

.hero__sub {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 28px;
}

.hero__body {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 2;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 52px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 14px 0;
  border-top: none;
}
.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--black);
  white-space: nowrap;
}
.ticker__item::after {
  content: '—';
  color: rgba(0,0,0,0.3);
  font-weight: 400;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}
.services__header {
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.service-card {
  padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 56px);
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--green);
  transition: width 0.4s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-card:last-child { border-right: none; }
.service-card:hover {
  background: var(--black);
}
.service-card:hover .service-card__num,
.service-card:hover .service-card__title { color: var(--green); }
.service-card:hover .service-card__body { color: rgba(255,255,255,0.6); }
.service-card:hover .service-card__link { color: var(--white); }

.service-card__num {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 36px;
  transition: color 0.35s;
}
.service-card__title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 18px;
  transition: color 0.35s;
}
.service-card__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 36px;
  transition: color 0.35s;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  transition: color 0.35s, gap 0.25s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* =========================================================
   STRENGTHS
   ========================================================= */
.strengths {
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
}
.strengths__header {
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 64px;
}
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.strength-item {
  background: var(--black);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  transition: background 0.3s;
}
.strength-item:hover { background: #0d1b3e; }
.strength-item__num {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 20px;
}
.strength-item__title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.strength-item__body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--green);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  overflow: hidden;
  position: relative;
}
.stats__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
  opacity: 0.06;
  pointer-events: none;
  white-space: nowrap;
}
.stats__items {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  flex-wrap: wrap;
  max-width: var(--content-width);
  margin: 0 auto;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
}
.stat__unit { font-size: 0.45em; vertical-align: super; letter-spacing: 0; }
.stat__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
}

/* =========================================================
   FLOW
   ========================================================= */
.flow {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}
.flow__header {
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 64px;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--silver);
  padding: 0 clamp(20px, 4vw, 60px);
}
.flow-step {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--silver);
  padding-right: 28px;
}
.flow-step:last-child { border-right: none; padding-right: 0; }
.flow-step:first-child { padding-left: 0; }
.flow-step { padding-left: 28px; }
.flow-step:first-child { padding-left: 0; }

.flow-step__num {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 20px;
}
.flow-step__title {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.flow-step__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--grey);
}
.flow__cta {
  text-align: center;
  margin-top: 64px;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* =========================================================
   EDUCATION BRIEF (Homepage)
   ========================================================= */
.education-brief {
  background: var(--light-grey);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}
.education-brief__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.education-brief__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 12px;
}
.education-brief__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.education-brief__body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--dark-grey);
  margin-bottom: 32px;
}
.education-brief__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.education-brief__item {
  padding: 18px 22px;
  background: var(--white);
  border-left: 3px solid var(--green);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.education-brief__item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.education-brief__item span {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* =========================================================
   RECRUIT (Homepage section)
   ========================================================= */
.recruit-section {
  position: relative;
  background: var(--black);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  overflow: hidden;
  min-height: 56vh;
  display: flex;
  align-items: center;
}
.recruit-section__bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.03em;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(120px, 20vw, 320px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.recruit-section__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}
.recruit-section__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 14px;
}
.recruit-section__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.recruit-section__body {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 32px;
}
.recruit-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.recruit-section__tag {
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* =========================================================
   NEWS (Homepage section)
   ========================================================= */
.news-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.news-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 40px;
}
.news-section__heading { position: relative; }
.news-section__more {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
  white-space: nowrap;
  margin-bottom: 4px;
}
.news-section__more:hover { color: var(--green); }

.news-list { border-top: 1px solid var(--silver); }
.news-item {
  display: grid;
  grid-template-columns: 110px 72px 1fr 20px;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid var(--silver);
  transition: background 0.2s;
  cursor: pointer;
}
.news-item:hover { background: var(--light-grey); }
.news-item__date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.news-item__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--green);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  text-align: center;
}
.news-item__cat--recruit { background: var(--black); color: var(--white); }
.news-item__cat--info { background: var(--silver); color: var(--dark-grey); }
.news-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.news-item__arrow { color: var(--silver); font-size: 14px; }

/* =========================================================
   CONTACT CTA
   ========================================================= */
.contact-cta {
  position: relative;
  background: var(--black);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  overflow: hidden;
  text-align: center;
}
.contact-cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
  white-space: nowrap;
}
.contact-cta__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}
.contact-cta__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 16px;
}
.contact-cta__title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(36px, 6.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 52px;
}
.contact-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contact-cta__tel {
  font-family: var(--font-en);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.contact-cta__note { font-size: 13px; color: rgba(255,255,255,0.35); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--near-black);
  padding: 80px clamp(20px, 4vw, 60px) 40px;
}
.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__logo {
  margin-bottom: 4px;
}
.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__address,
.footer__tel {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}
.footer__nav { display: flex; gap: 56px; }
.footer__nav-col {}
.footer__nav-title {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__nav-links a:hover { color: var(--green); }
.footer__bottom {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-en);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer__privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__privacy:hover { color: var(--green); }

/* =========================================================
   PAGE HERO (Inner pages)
   ========================================================= */
.page-hero {
  background: var(--black);
  padding: 160px clamp(20px, 4vw, 60px) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg-text {
  position: absolute;
  bottom: -0.1em;
  right: -0.02em;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.page-hero__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 14px;
}
.page-hero__title {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
  background: var(--light-grey);
  padding: 12px clamp(20px, 4vw, 60px);
}
.breadcrumb__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey);
  flex-wrap: wrap;
}
.breadcrumb__inner a { color: var(--grey); transition: color 0.2s; }
.breadcrumb__inner a:hover { color: var(--black); }
.breadcrumb__sep { color: var(--silver); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form-section {
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  background: var(--white);
}
.contact-form-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-label .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  vertical-align: middle;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--light-grey);
  border: 2px solid transparent;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 4px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--white);
  border-color: var(--green);
}
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.form-note {
  font-size: 13px;
  color: var(--grey);
  margin-top: 6px;
}
.form-submit {
  text-align: center;
  margin-top: 44px;
}
.form-privacy {
  font-size: 13px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.8;
}
.form-privacy a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   COMPANY INFO TABLE
   ========================================================= */
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--silver);
}
.info-table th {
  padding: 20px 24px 20px 0;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey);
  white-space: nowrap;
  width: 160px;
  vertical-align: top;
}
.info-table td {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--black);
}

/* =========================================================
   RECRUIT PAGE
   ========================================================= */
.job-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.job-card {
  border: 2px solid rgba(0,0,0,0.08);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.job-card:hover { border-color: var(--green); transform: translateY(-4px); }
.job-card__type {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 12px;
}
.job-card__title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
}
.job-card__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.job-card__detail {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.job-card__detail-key {
  color: var(--grey);
  white-space: nowrap;
  width: 72px;
  flex-shrink: 0;
}

/* =========================================================
   ACHIEVEMENTS PAGE
   ========================================================= */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--silver);
  max-width: var(--content-width);
  margin: 0 auto;
}
.achievement-item {
  background: var(--white);
  padding: 40px 32px;
}
.achievement-item__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.achievement-item__area {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 10px;
}
.achievement-item__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.5;
}
.achievement-item__body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
}

/* =========================================================
   EDUCATION PAGE
   ========================================================= */
.education-steps {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.education-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--silver);
  align-items: start;
}
.education-step:last-child { border-bottom: none; }
.education-step__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
}
.education-step__title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
}
.education-step__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--grey);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card:last-child { border-bottom: none; }
  .strengths__grid { grid-template-columns: 1fr; }
  .education-brief__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { flex-wrap: wrap; gap: 40px; }
  .job-cards { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: 1fr 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--silver); padding-bottom: 32px; padding-left: 0; }
  .flow-step:nth-child(odd) { padding-right: 20px; }
  .flow-step:nth-last-child(-n+2) { border-bottom: none; }

  .news-item { grid-template-columns: 1fr auto; }
  .news-item__date { font-size: 12px; }
  .news-item__arrow { display: none; }

  .contact-cta__actions { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .achievement-grid { grid-template-columns: 1fr; }
  .education-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .education-step__num { font-size: 40px; }
}

@media (max-width: 540px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .stats__items { flex-direction: column; gap: 40px; }
  .flow__steps { grid-template-columns: 1fr; }
  .flow-step { border-bottom: 1px solid var(--silver); }
  .flow-step:last-child { border-bottom: none; }
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .news-item__title { grid-column: 1; }
  .recruit-section__tags { display: none; }
}
