:root {
  --ink: #171b18;
  --muted: #626963;
  --paper: #f7f7f3;
  --white: #ffffff;
  --forest: #2f725a;
  --forest-dark: #1f4f3f;
  --wood: #d9b333;
  --wood-soft: #f4e6a8;
  --mist: #eaf0eb;
  --line: #d8ddd8;
  --shadow: 0 24px 64px rgba(23, 27, 24, 0.12);
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.28; letter-spacing: 0; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 8px 14px; color: #fff; background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.wrap { width: min(1160px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.section--dark { color: #fff; background: var(--ink); }
.eyebrow { display: block; margin-bottom: 18px; color: var(--forest); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.section--dark .eyebrow { color: var(--wood); }
.heading { margin-bottom: 24px; font-size: clamp(38px, 5vw, 72px); font-weight: 800; }
.heading--small { font-size: clamp(32px, 4vw, 56px); }
.lead { max-width: 720px; color: var(--muted); font-size: 18px; }
.section--dark .lead { color: rgba(255, 255, 255, 0.74); }
.note { color: var(--muted); font-size: 13px; }
.demo-chip { display: inline-flex; align-items: center; min-height: 34px; padding: 5px 12px; border: 1px solid currentColor; color: var(--forest-dark); background: rgba(255, 255, 255, 0.86); font-size: 12px; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 13px 26px; border: 1px solid var(--ink); color: #fff; background: var(--ink); font-weight: 800; transition: color .25s, background .25s, transform .25s; }
.btn::after { content: "→"; margin-left: 18px; }
.btn:hover { color: var(--ink); background: var(--wood); transform: translateY(-2px); }
.btn--green { border-color: var(--forest); background: var(--forest); }
.btn--outline { color: var(--ink); background: transparent; }
.btn--outline:hover { color: #fff; background: var(--forest); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 800; }
.text-link::after { content: "→"; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 92px; transition: background .3s, box-shadow .3s, transform .3s; }
.site-header.is-scrolled { background: rgba(247, 247, 243, .94); box-shadow: 0 1px 0 rgba(23, 27, 24, .1); backdrop-filter: blur(12px); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 34px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 900; line-height: 1.15; }
.brand__mark { position: relative; display: grid; place-items: center; width: 42px; aspect-ratio: 1; color: #fff; background: var(--forest); font-family: Georgia, serif; font-size: 22px; }
.brand__mark::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255, 255, 255, .56); }
.brand__name { display: block; font-size: 17px; }
.brand__en { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 700; }
.header-actions { display: flex; align-items: stretch; height: 54px; }
.header-entry { display: grid; place-items: center; min-width: 148px; padding: 0 22px; color: var(--ink); background: var(--wood); font-size: 14px; font-weight: 900; }
.menu-toggle { position: relative; display: grid; place-items: center; width: 80px; border: 0; border-radius: 0; color: #fff; background: var(--forest); cursor: pointer; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after { display: block; width: 28px; height: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-toggle__lines { position: relative; }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle__lines::before { top: -8px; }
.menu-toggle__lines::after { top: 8px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 0; transform: rotate(-45deg); }

/* Full screen menu */
.menu-panel { position: fixed; z-index: 90; inset: 0; padding: 120px 0 36px; color: var(--ink); background: rgba(247, 247, 243, .985); visibility: hidden; opacity: 0; transform: translateY(-18px); transition: opacity .3s, transform .3s, visibility .3s; overflow-y: auto; }
.menu-panel.is-open { visibility: visible; opacity: 1; transform: none; }
.menu-panel__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; }
.menu-primary { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.menu-primary a { min-height: 112px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s, background .2s; }
.menu-primary small, .menu-people__head small { display: block; margin-bottom: 4px; color: var(--forest); font-size: 11px; font-weight: 800; }
.menu-primary strong { font-size: 20px; }
.menu-primary a:hover { color: #fff; background: var(--forest); }
.menu-primary a:hover small { color: var(--wood-soft); }
.menu-people__head { margin-bottom: 18px; }
.menu-people__head strong { font-size: 24px; }
.menu-people__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.menu-person { display: grid; grid-template-columns: 78px 1fr; gap: 14px; align-items: center; min-height: 88px; padding: 6px; border-bottom: 1px solid var(--line); }
.menu-person img { width: 78px; height: 78px; object-fit: cover; }
.menu-person strong, .menu-person span { display: block; }
.menu-person strong { font-size: 15px; }
.menu-person span { color: var(--muted); font-size: 11px; }
.menu-bottom { display: grid; grid-template-columns: 1fr 1fr; width: min(1160px, calc(100% - 64px)); margin: 34px auto 0; }
.menu-bottom a { display: flex; align-items: center; justify-content: space-between; min-height: 104px; padding: 20px 28px; color: #fff; background: var(--forest); font-size: 21px; font-weight: 800; }
.menu-bottom a:last-child { color: var(--ink); background: var(--wood); }
.menu-bottom a::after { content: "→"; display: grid; place-items: center; width: 42px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; }

/* Hero */
.hero { position: relative; min-height: 900px; height: 100svh; padding-top: 92px; overflow: hidden; background: var(--paper); }
.hero::before, .hero::after { content: ""; position: absolute; width: 260px; height: 1px; background: rgba(47, 114, 90, .13); transform: rotate(34deg); }
.hero::before { left: 4%; bottom: 16%; box-shadow: 0 46px rgba(47, 114, 90, .13), 0 -46px rgba(47, 114, 90, .13); }
.hero::after { right: 4%; top: 29%; box-shadow: 0 46px rgba(47, 114, 90, .13), 0 -46px rgba(47, 114, 90, .13); }
.hero__stage { position: absolute; inset: 92px 0 0; }
.hero-slide { position: absolute; inset: 50% auto auto 50%; width: min(650px, 48vw); aspect-ratio: 1.18; opacity: 0; transform: translate(-50%, -50%) scale(.72); transition: transform 1s cubic-bezier(.2,.75,.2,1), opacity .8s; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.hero-slide.is-active { z-index: 3; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hero-slide.is-prev { z-index: 2; top: 72%; left: 7%; width: 300px; opacity: 1; transform: translate(-38%, -50%) scale(.72); }
.hero-slide.is-next { z-index: 2; top: 19%; left: 93%; width: 300px; opacity: 1; transform: translate(-62%, -50%) scale(.72); }
.hero__tag { position: absolute; z-index: 5; left: 6%; top: 23%; max-height: 380px; writing-mode: vertical-rl; font-size: clamp(17px, 1.5vw, 22px); font-weight: 800; line-height: 1.7; }
.hero__copy { position: absolute; z-index: 5; right: 6%; top: 39%; display: flex; align-items: flex-start; gap: 16px; writing-mode: vertical-rl; }
.hero__copy h1 { margin: 0; font-size: clamp(38px, 4.4vw, 68px); font-weight: 800; line-height: 1.22; }
.hero__copy p { max-height: 340px; margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.hero__badge { position: absolute; z-index: 5; left: 36px; top: 122px; }
.hero__progress { position: absolute; z-index: 6; left: calc(50% - 322px); top: calc(50% + 264px); width: 68px; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(var(--wood) var(--progress, 0deg), var(--forest) 0); }
.hero__progress::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--paper); }
.hero__progress span { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; font-size: 11px; font-weight: 900; }
.hero__entry { display: none; }
.hero__scroll { position: absolute; z-index: 5; left: 36px; bottom: 30px; color: var(--muted); font-size: 10px; writing-mode: vertical-rl; }

/* Home sections */
.message-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 80px; align-items: start; }
.message-vertical { margin: 0; padding-top: 18px; color: var(--forest-dark); font-size: 24px; font-weight: 800; line-height: 1.7; writing-mode: vertical-rl; }
.message-copy h2 { margin-bottom: 30px; font-size: clamp(38px, 5vw, 70px); }
.message-copy p { max-width: 650px; }
.message-copy__promise { margin-top: 34px; padding: 24px; border-left: 4px solid var(--wood); background: var(--white); font-weight: 700; }
.work-visual { position: relative; min-height: 620px; display: grid; align-items: end; color: #fff; overflow: hidden; }
.work-visual__bg { position: absolute; inset: 0; }
.work-visual__bg img { width: 100%; height: 120%; object-fit: cover; transform: translateY(-8%); }
.work-visual__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,35,28,.78), rgba(20,35,28,.12)); }
.work-visual__inner { position: relative; z-index: 2; padding-bottom: 72px; }
.work-visual h2 { max-width: 680px; margin-bottom: 26px; font-size: clamp(52px, 7vw, 96px); }
.work-visual p { max-width: 560px; font-size: 18px; }
.people-head { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person-card { position: relative; display: block; min-width: 0; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.person-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.person-card__photo { aspect-ratio: .83; overflow: hidden; }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.person-card:hover .person-card__photo img { transform: scale(1.035); }
.person-card__body { padding: 22px 20px 24px; }
.person-card__role { display: block; margin-bottom: 8px; color: var(--forest); font-size: 11px; font-weight: 800; }
.person-card h3 { margin-bottom: 8px; font-size: 23px; }
.person-card__quote { min-height: 5.7em; color: var(--muted); font-size: 14px; }
.person-card__more { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.person-card__more::after { content: "→"; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.role-card { min-height: 320px; padding: 30px 24px; background: var(--paper); }
.role-card__number { color: var(--wood); font-family: Georgia, serif; font-size: 42px; }
.role-card h3 { margin: 34px 0 16px; font-size: 26px; }
.role-card p { color: var(--muted); font-size: 14px; }
.culture-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.culture-layout__image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.culture-layout__copy { padding: 70px; color: #fff; background: var(--forest-dark); }
.culture-layout__copy h2 { margin-bottom: 26px; font-size: clamp(38px, 5vw, 64px); }
.culture-points { display: grid; gap: 0; margin: 36px 0; border-top: 1px solid rgba(255,255,255,.25); }
.culture-points div { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.culture-points strong { color: var(--wood); font-family: Georgia, serif; font-size: 28px; }
.number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.number-card { min-height: 190px; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.number-card strong { display: block; margin-bottom: 18px; color: var(--forest); font-family: Georgia, serif; font-size: clamp(40px, 5vw, 66px); line-height: 1; }
.number-card strong small { font-family: var(--font-sans); font-size: .35em; }
.news-list { border-top: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 140px 1fr 30px; gap: 20px; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line); }
.news-list time { color: var(--muted); font-size: 13px; }
.news-list a::after { content: "→"; }

/* Sub pages */
.subhero { min-height: 500px; padding: 180px 0 90px; color: #fff; background: var(--forest-dark); }
.subhero--image { position: relative; display: grid; align-items: end; min-height: 620px; overflow: hidden; }
.subhero--image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,36,29,.82), rgba(18,36,29,.18)); }
.subhero__inner { position: relative; z-index: 1; }
.subhero h1 { max-width: 900px; margin: 0; font-size: clamp(50px, 8vw, 100px); }
.subhero p { max-width: 640px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.65); font-size: 12px; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__image img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.split__copy h2 { margin-bottom: 24px; font-size: clamp(36px, 4.7vw, 64px); }
.statement { padding: 70px; color: #fff; background: var(--forest-dark); }
.statement blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(34px, 5vw, 64px); font-weight: 800; line-height: 1.55; }
.company-table, .requirements-table { width: 100%; border-collapse: collapse; background: var(--white); }
.company-table th, .company-table td, .requirements-table th, .requirements-table td { padding: 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.company-table th, .requirements-table th { width: 25%; color: var(--forest-dark); font-size: 13px; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process article { min-height: 250px; padding: 24px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process span { color: var(--wood); font-family: Georgia, serif; font-size: 38px; }
.process h3 { margin: 28px 0 12px; font-size: 22px; }
.process p { color: var(--muted); font-size: 13px; }
.job-role { display: grid; grid-template-columns: 280px 1fr; gap: 50px; padding: 50px 0; border-top: 1px solid var(--line); }
.job-role:last-child { border-bottom: 1px solid var(--line); }
.job-role h3 { font-size: 30px; }
.job-role__meta { color: var(--forest); font-size: 12px; font-weight: 800; }
.job-role ul { margin: 0; padding-left: 1.25em; }

/* Interview */
.interview-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; padding-top: 92px; background: var(--white); }
.interview-hero__photo img { width: 100%; height: 100%; min-height: 668px; object-fit: cover; }
.interview-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.interview-hero__num { color: var(--wood); font-family: Georgia, serif; font-size: 74px; line-height: 1; }
.interview-hero__role { margin: 28px 0 10px; color: var(--forest); font-size: 12px; font-weight: 800; }
.interview-hero h1 { margin-bottom: 24px; font-size: clamp(38px, 5vw, 66px); }
.interview-hero__name { padding-top: 20px; border-top: 1px solid var(--line); font-weight: 800; }
.interview-hero__name small { margin-left: 12px; color: var(--muted); font-weight: 500; }
.interview-body { width: min(920px, calc(100% - 64px)); margin-inline: auto; }
.interview-lead { margin-bottom: 70px; font-family: var(--font-display); font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; line-height: 1.6; }
.qa { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa__q { color: var(--forest); font-weight: 900; }
.qa h2 { margin-bottom: 14px; font-size: 26px; }
.day-timeline { display: grid; gap: 0; max-width: 850px; margin: 0 auto; border-left: 1px solid var(--forest); }
.day-item { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 0 0 34px 32px; }
.day-item::before { content: ""; position: absolute; left: -7px; top: 11px; width: 13px; aspect-ratio: 1; border-radius: 50%; background: var(--wood); border: 3px solid var(--paper); }
.day-item time { color: var(--forest); font-family: Georgia, serif; font-size: 24px; font-weight: 800; }
.day-item h3 { margin-bottom: 7px; font-size: 21px; }
.day-item p { color: var(--muted); font-size: 14px; }
.next-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.next-person { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: center; min-height: 116px; background: var(--white); border: 1px solid var(--line); }
.next-person img { width: 110px; height: 114px; object-fit: cover; }
.next-person strong, .next-person span { display: block; }
.next-person span { color: var(--muted); font-size: 11px; }

/* Welfare and requirements */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit-card { min-height: 250px; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.benefit-card__icon { display: grid; place-items: center; width: 54px; aspect-ratio: 1; margin-bottom: 34px; color: #fff; background: var(--forest); font-size: 21px; font-weight: 900; }
.benefit-card h3 { margin-bottom: 12px; font-size: 22px; }
.benefit-card p { color: var(--muted); font-size: 14px; }
.career { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.career article { position: relative; min-height: 220px; padding: 26px; background: var(--white); border-top: 5px solid var(--wood); }
.career article + article::before { content: "→"; position: absolute; left: -22px; top: 46%; color: var(--forest); font-size: 26px; font-weight: 900; }
.career span { color: var(--forest); font-size: 12px; font-weight: 800; }
.career h3 { margin: 22px 0 10px; font-size: 24px; }
.career p { color: var(--muted); font-size: 13px; }
.job-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.job-tab { min-height: 48px; padding: 10px 20px; border: 1px solid var(--forest); border-radius: 0; color: var(--forest); background: transparent; font-weight: 800; cursor: pointer; }
.job-tab.is-active { color: #fff; background: var(--forest); }
.job-panel { display: none; }
.job-panel.is-active { display: block; }
.entry-box { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; padding: 50px; background: var(--white); border: 1px solid var(--line); }
.entry-options { display: grid; gap: 10px; margin: 30px 0; }
.entry-options label { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding: 14px; border: 1px solid var(--line); cursor: pointer; }
.entry-options input { margin-top: 6px; accent-color: var(--forest); }
.demo-form { display: grid; gap: 15px; }
.demo-form label span { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 800; }
.demo-form input, .demo-form select, .demo-form textarea { width: 100%; min-height: 50px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 0; background: #fff; }
.demo-form textarea { min-height: 130px; resize: vertical; }
.demo-form button { border-radius: 0; cursor: pointer; }

/* Shared CTA / footer */
.cta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 70px max(32px, calc((100vw - 1160px)/2)); color: #fff; background: var(--forest-dark); }
.cta h2 { margin-bottom: 14px; font-size: clamp(36px, 5vw, 68px); }
.cta p { margin-bottom: 0; color: rgba(255,255,255,.74); }
.cta .btn { color: var(--ink); background: var(--wood); }
.site-footer { padding: 70px 0 28px; color: #fff; background: #111612; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.site-footer .brand__en { color: rgba(255,255,255,.55); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 28px; }
.footer-nav a { padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.54); font-size: 11px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .hero-slide { width: 54vw; }
  .hero-slide.is-prev, .hero-slide.is-next { width: 240px; }
  .hero__copy { right: 3%; }
  .hero__tag { left: 3%; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process article:last-child { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .wrap { width: min(100% - 30px, 600px); }
  .section { padding: 80px 0; }
  .heading { font-size: 40px; }
  .lead { font-size: 16px; }
  .site-header { height: 72px; }
  .site-header__inner { padding: 0 15px; }
  .brand { gap: 9px; }
  .brand__mark { width: 36px; font-size: 18px; }
  .brand__name { font-size: 14px; }
  .brand__en { font-size: 8px; }
  .header-actions { height: 46px; }
  .header-entry { display: none; }
  .menu-toggle { width: 58px; }
  .menu-panel { padding: 92px 0 24px; }
  .menu-panel__inner { grid-template-columns: 1fr; gap: 34px; }
  .menu-primary a { min-height: 92px; padding: 15px; }
  .menu-primary strong { font-size: 17px; }
  .menu-people__grid { grid-template-columns: 1fr; }
  .menu-person { grid-template-columns: 68px 1fr; }
  .menu-person img { width: 68px; height: 68px; }
  .menu-bottom { grid-template-columns: 1fr; width: min(100% - 30px, 600px); margin-top: 24px; }
  .menu-bottom a { min-height: 78px; font-size: 17px; }
  .hero { min-height: 820px; padding-top: 72px; }
  .hero__stage { inset: 72px 0 0; }
  .hero-slide { top: 38%; width: 78vw; aspect-ratio: .92; }
  .hero-slide.is-prev { top: 64%; left: 1%; width: 170px; transform: translate(-55%, -50%) scale(.72); }
  .hero-slide.is-next { top: 14%; left: 99%; width: 170px; transform: translate(-45%, -50%) scale(.72); }
  .hero__tag { left: 19px; top: 21%; max-height: 270px; font-size: 13px; }
  .hero__copy { right: 18px; top: auto; bottom: 104px; gap: 9px; writing-mode: horizontal-tb; }
  .hero__copy h1 { max-width: 330px; font-size: 37px; line-height: 1.3; }
  .hero__copy p { display: none; }
  .hero__badge { left: 15px; top: 92px; }
  .hero__progress { left: 30px; top: auto; bottom: 112px; width: 54px; }
  .hero__entry { position: absolute; z-index: 6; inset: auto 0 0; display: grid; place-items: center; min-height: 72px; color: var(--ink); background: var(--wood); font-size: 16px; font-weight: 900; }
  .hero__scroll { display: none; }
  .message-grid, .people-head, .culture-layout, .split, .entry-box, .footer-grid { grid-template-columns: 1fr; }
  .message-grid { gap: 35px; }
  .message-vertical { max-width: 100%; padding: 0; font-size: 20px; writing-mode: horizontal-tb; }
  .message-copy h2 { font-size: 42px; }
  .work-visual { min-height: 600px; }
  .work-visual__inner { padding-bottom: 48px; }
  .work-visual h2 { font-size: 54px; }
  .people-head { gap: 12px; }
  .people-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .person-card__body { padding: 14px 12px 16px; }
  .person-card h3 { font-size: 18px; }
  .person-card__role { font-size: 9px; }
  .person-card__quote { min-height: 7.2em; font-size: 12px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 0; }
  .culture-layout__image img { min-height: 360px; }
  .culture-layout__copy { padding: 42px 24px; }
  .number-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .number-card { min-height: 150px; padding: 18px; }
  .news-list a { grid-template-columns: 90px 1fr 18px; gap: 10px; }
  .subhero { min-height: 430px; padding: 140px 0 65px; }
  .subhero--image { min-height: 550px; }
  .subhero h1 { font-size: 52px; }
  .split--reverse > :first-child { order: initial; }
  .statement { padding: 40px 24px; }
  .company-table th, .company-table td, .requirements-table th, .requirements-table td { display: block; width: 100%; padding: 14px; }
  .company-table th, .requirements-table th { padding-bottom: 2px; border-bottom: 0; }
  .process { grid-template-columns: 1fr; }
  .process article:last-child { grid-column: auto; }
  .job-role { grid-template-columns: 1fr; gap: 15px; padding: 34px 0; }
  .interview-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 72px; }
  .interview-hero__photo img { min-height: 0; aspect-ratio: .9; }
  .interview-hero__copy { padding: 36px 20px 48px; }
  .interview-hero__num { font-size: 55px; }
  .interview-hero h1 { font-size: 38px; }
  .interview-body { width: min(100% - 30px, 600px); }
  .qa { grid-template-columns: 1fr; gap: 10px; }
  .day-item { grid-template-columns: 78px 1fr; gap: 10px; padding-left: 20px; }
  .day-item time { font-size: 20px; }
  .next-people { grid-template-columns: 1fr; }
  .benefit-grid, .career { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .career article + article::before { content: "↓"; left: 50%; top: -28px; }
  .entry-box { padding: 26px 18px; }
  .cta { grid-template-columns: 1fr; padding: 54px 20px; }
  .cta h2 { font-size: 42px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
