:root {
  --navy: #232e56;
  --navy-deep: #17203f;
  --gold: #9c8859;
  --gold-light: #c8b98f;
  --cream: #f2efe7;
  --paper: #faf9f5;
  --white: #ffffff;
  --ink: #232e56;
  --muted: #6b6f7b;
  --line: rgba(35, 46, 86, 0.2);
  --max: 1260px;
  --header-height: 88px;
  --wide-scale: 1;
  --scroll-offset: 96px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
  background: var(--navy);
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
    system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

.site-canvas {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  container-type: inline-size;
  background: var(--paper);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gold);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: -90px;
  left: 20px;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 200;
  top: 20px;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: top 0.35s var(--ease);
}

.site-header.is-scrolled {
  top: 0;
}

.header-inner {
  width: min(1452px, calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 12px 0 24px;
  border: 1px solid rgba(35, 46, 86, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(23, 32, 63, 0.12);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition:
    width 0.35s var(--ease),
    min-height 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-header.is-scrolled .header-inner {
  width: 100%;
  min-height: 76px;
  border-inline: 0;
  border-top: 0;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  display: block;
  width: clamp(154px, 13cqw, 190px);
  height: auto;
}

.brand-page {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding-left: 17px;
  border-left: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8cqw, 30px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.global-nav a:not(.header-entry) {
  position: relative;
  padding: 12px 0;
}

.global-nav a:not(.header-entry)::after {
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right 0.3s var(--ease);
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  right: 0;
}

.header-entry,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 6px 6px 0 var(--gold);
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.header-entry:hover,
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--gold);
}

.button.ghost {
  border-color: currentColor;
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

main {
  display: block;
}

.hero {
  position: relative;
  min-height: max(800px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--navy);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(98px, 8cqw, 136px) clamp(44px, 5.4cqw, 82px)
    clamp(70px, 7cqw, 108px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(156, 136, 89, 0.12), transparent 48%),
    var(--navy);
  color: var(--white);
}

.hero-copy::before {
  position: absolute;
  top: 8%;
  left: -0.08em;
  color: transparent;
  content: "RECRUIT";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(6.8rem, 12.6cqw, 11.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  opacity: 0.18;
  -webkit-text-stroke: 1px var(--white);
  pointer-events: none;
  transform: rotate(-8deg);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(3.5rem, 5.6cqw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.hero h1 .marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--white);
  white-space: nowrap;
}

.hero h1 .marker::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.04em;
  left: -0.04em;
  height: 0.27em;
  background: var(--gold);
  content: "";
  transform: skewX(-10deg);
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.18cqw, 1.12rem);
  font-weight: 600;
  line-height: 2;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-copy .button {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 6px 6px 0 var(--white);
}

.hero-copy .button:hover {
  box-shadow: 3px 3px 0 var(--white);
}

.hero-copy .button.ghost {
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
  box-shadow: none;
}

.hero-note {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}

.hero-photo-main {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  filter: saturate(0.72) contrast(1.1);
  transform: scale(1.025);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-photo-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 32, 63, 0.08) 0%, rgba(23, 32, 63, 0.78) 100%),
    linear-gradient(90deg, rgba(35, 46, 86, 0.38), transparent 55%);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.hero-year-badge {
  position: absolute;
  z-index: 2;
  top: clamp(45px, 5cqw, 74px);
  right: clamp(38px, 5cqw, 72px);
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(35, 46, 86, 0.74);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-year-badge span,
.hero-year-badge small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-year-badge strong {
  color: var(--gold-light);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.55rem;
  line-height: 1.15;
}

.hero-year-badge small {
  margin-top: 5px;
  font-size: 0.5rem;
}

.hero-story {
  position: absolute;
  z-index: 2;
  right: clamp(38px, 5.5cqw, 82px);
  bottom: clamp(48px, 7cqw, 105px);
  left: clamp(38px, 5.5cqw, 82px);
  color: var(--white);
}

.hero-story p {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-story strong {
  display: block;
  max-width: 620px;
  padding-left: 22px;
  border-left: 5px solid var(--gold);
  font-size: clamp(2rem, 3.5cqw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.36;
}

.hero-story span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.visual-word {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.02em;
  color: transparent;
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(7rem, 14cqw, 13rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.74;
  opacity: 0.2;
  -webkit-text-stroke: 1px var(--white);
  pointer-events: none;
}

@keyframes heroDrift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1%, -0.7%, 0); }
}

.craft-marquee {
  position: relative;
  z-index: 8;
  width: 104%;
  margin: -24px 0 -18px -2%;
  overflow: hidden;
  border-block: 2px solid var(--navy);
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-1.3deg);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 15px 0 12px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(2.5rem, 5.4cqw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
  animation: marqueeMove 24s linear infinite;
}

.marquee-track i {
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: clamp(108px, 10.6cqw, 162px) 0;
  overflow: hidden;
  background: var(--cream);
}

.section.white { background: var(--paper); }
.section.dark { background: var(--navy); color: var(--white); }
.section.accent { background: var(--gold); color: var(--navy); }

.container {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 112px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(42px, 7cqw, 110px);
  align-items: end;
  margin-bottom: clamp(66px, 8cqw, 120px);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.section-index::before {
  width: 10px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.accent .section-index::before { background: var(--navy); }

.section-title {
  margin: 0;
  max-inline-size: 100%;
  font-size: clamp(2.75rem, 4.8cqw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.18;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.section-title small {
  display: block;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.6;
  opacity: 0.62;
  text-wrap: pretty;
}

#about {
  padding-top: clamp(150px, 13cqw, 198px);
  background: var(--paper);
}

#about::before {
  position: absolute;
  top: 1.4%;
  right: -0.04em;
  color: transparent;
  content: "CRAFT";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(9rem, 21cqw, 19rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  opacity: 0.09;
  -webkit-text-stroke: 2px var(--navy);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(70px, 9cqw, 138px);
  align-items: start;
}

.intro-copy h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2cqw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.intro-copy > p {
  max-width: 610px;
  margin: 34px 0 0;
  color: #4e556e;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.15;
}

.history-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 48px 0 0;
  overflow: hidden;
  background: var(--navy);
}

.history-visual::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.history-visual img,
.wire-image img,
.person-photo img,
.schedule-photo img,
.workplace-placeholder img,
.culture-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-visual img {
  object-position: center 45%;
  filter: saturate(0.72) contrast(1.08);
}

.history-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.75rem;
  font-weight: 800;
}

.history-visual figcaption b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.13em;
}

.fact-stack {
  padding-top: 40px;
  border-top: 2px solid var(--navy);
}

.fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.fact-row span {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

#work {
  background: var(--navy);
  color: var(--white);
}

#work::before {
  position: absolute;
  top: 2%;
  left: -0.06em;
  color: transparent;
  content: "WORK";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(10rem, 23cqw, 22rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  opacity: 0.1;
  -webkit-text-stroke: 2px var(--white);
}

.wire-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: var(--gold);
}

.wire-card {
  position: relative;
  min-height: clamp(500px, 47cqw, 705px);
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.wire-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 32, 63, 0.03) 20%, rgba(23, 32, 63, 0.93) 100%);
  content: "";
}

.wire-image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.wire-image img {
  filter: saturate(0.62) contrast(1.1);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.wire-card:hover .wire-image img {
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.055);
}

.wire-card-number {
  position: absolute;
  top: 32px;
  left: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(35, 46, 86, 0.62);
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.wire-card h3 {
  position: absolute;
  right: 38px;
  bottom: 112px;
  left: 38px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5cqw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wire-card p {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.7;
}

#why { background: var(--gold); }

#why::before {
  position: absolute;
  top: 0;
  right: -0.07em;
  color: rgba(255, 255, 255, 0.12);
  content: "WHY?";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(12rem, 28cqw, 26rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.8;
  transform: rotate(7deg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
  border-top: 2px solid var(--navy);
}

.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 44px 12px 48px 0;
  border-bottom: 1px solid rgba(35, 46, 86, 0.5);
}

.benefit-card b {
  position: static;
  display: block;
  width: fit-content;
  margin: 0 0 24px;
  color: transparent;
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(2.65rem, 3.6cqw, 3.5rem);
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--navy);
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5cqw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.benefit-card p {
  max-width: 470px;
  margin: 24px 0 0;
  font-weight: 650;
  line-height: 1.95;
}

#people { background: var(--paper); }

.people-grid {
  display: grid;
  gap: 44px;
}

.person-card {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.person-card:nth-child(even) {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
}

.person-card:nth-child(even) .person-photo { order: 2; }

.person-photo {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.person-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(35, 46, 86, 0.34));
  content: "";
  pointer-events: none;
}

.person-card:nth-child(even) .person-photo::after {
  background: linear-gradient(-90deg, transparent 60%, rgba(35, 46, 86, 0.34));
}

.person-photo img {
  object-position: center;
  filter: saturate(0.68) contrast(1.08);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.person-card:nth-child(1) .person-photo img { object-position: 55% center; }
.person-card:nth-child(2) .person-photo img { object-position: center 34%; }
.person-card:nth-child(3) .person-photo img { object-position: center 36%; }

.person-card:hover .person-photo img {
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.04);
}

.person-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.4cqw, 82px);
  overflow: hidden;
}

.person-body::before {
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  color: transparent;
  content: "人";
  font-size: 15rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.1;
  -webkit-text-stroke: 1px var(--white);
}

.person-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.person-body h3 {
  position: relative;
  z-index: 1;
  margin: 36px 0 0;
  font-size: clamp(2rem, 3.35cqw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.person-body p {
  position: relative;
  z-index: 1;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.9;
}

.photo-credit {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

#growth {
  background:
    linear-gradient(135deg, rgba(156, 136, 89, 0.11), transparent 40%),
    var(--navy-deep);
}

#growth::before {
  position: absolute;
  top: 0.2em;
  left: -0.08em;
  color: transparent;
  content: "GROW";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(11rem, 25cqw, 23rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.82;
  opacity: 0.08;
  -webkit-text-stroke: 2px var(--white);
}

.growth-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(70px, 9cqw, 130px);
  align-items: start;
}

.growth-message {
  position: sticky;
  top: 130px;
}

.growth-message h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(2.4rem, 4.15cqw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.growth-message p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-weight: 600;
  line-height: 2.05;
}

.growth-steps {
  counter-reset: growth;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.growth-step {
  counter-increment: growth;
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  min-height: 154px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.growth-step::before {
  color: var(--gold-light);
  content: "0" counter(growth);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.growth-step h4 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.growth-step p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

#evaluation { background: var(--gold); }

.new-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.new-tag::before {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.evaluation-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(60px, 10cqw, 150px);
  align-items: end;
}

.evaluation-lead h3,
.career-intro h3 {
  margin: 0;
  max-inline-size: 100%;
  font-size: clamp(2.8rem, 4.2cqw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.28;
  white-space: nowrap;
}

.evaluation-lead p,
.career-intro p {
  margin: 0;
  font-weight: 650;
  line-height: 2.05;
}

.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 86px;
  background: var(--navy);
  border: 2px solid var(--navy);
}

.evaluation-card {
  min-height: 300px;
  padding: 34px 28px 30px;
  background: var(--paper);
}

.evaluation-card b {
  display: block;
  color: transparent;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 3.8rem;
  letter-spacing: -0.08em;
  line-height: 1;
  -webkit-text-stroke: 1px var(--navy);
}

.evaluation-card h4 {
  margin: 35px 0 0;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.45;
}

.evaluation-card p {
  margin: 18px 0 0;
  color: #545a6e;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.85;
}

.evaluation-cycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--navy);
}

.cycle-step {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--navy);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 900;
}

.cycle-step:last-child { border-right: 0; }

.cycle-step span {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, sans-serif;
}

#career {
  background:
    linear-gradient(150deg, rgba(156, 136, 89, 0.1), transparent 38%),
    var(--navy);
}

.career-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: clamp(60px, 10cqw, 150px);
  align-items: end;
}

.career-intro p { color: rgba(255, 255, 255, 0.66); }

.career-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 84px;
}

.career-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.career-card-head {
  min-height: 280px;
  padding: 36px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(145deg, rgba(156, 136, 89, 0.2), transparent 66%);
}

.career-card-head b {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.career-card-head h4 {
  margin: 34px 0 0;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.42;
}

.career-card-head p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.career-timeline { padding: 10px 30px 28px; }

.career-stage {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.career-stage:last-child { border-bottom: 0; }

.career-stage > b {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.career-stage h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.career-stage p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.7;
}

.annotation {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.dark .annotation { color: rgba(255, 255, 255, 0.48); }
#day { background: var(--paper); }

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 8cqw, 120px);
  align-items: start;
}

.schedule-photo {
  position: sticky;
  top: 112px;
  height: min(720px, calc(100vh - 144px));
  min-height: 590px;
  overflow: hidden;
  background: var(--navy);
}

.schedule-photo::before {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.schedule-photo::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: var(--white);
  content: "ONE DAY";
  font-family: Arial Black, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  opacity: 0.8;
}

.schedule-photo img {
  object-position: center 45%;
  filter: saturate(0.7) contrast(1.07);
}

.timeline { border-top: 2px solid var(--navy); }

.time-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.time-row time {
  color: var(--gold);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.time-row h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.time-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

#environment { background: var(--cream); }

.workplace-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
}

.workplace-card { grid-column: span 7; }
.workplace-card:nth-child(2) { grid-column: span 5; margin-top: 130px; }
.workplace-card:nth-child(3) { grid-column: span 5; }
.workplace-card:nth-child(4) { grid-column: span 7; margin-top: 90px; }

.workplace-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.workplace-card:nth-child(4) .workplace-placeholder { aspect-ratio: 16 / 9; }

.workplace-placeholder img {
  filter: saturate(0.72) contrast(1.08);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.workplace-card:hover img {
  filter: saturate(0.94) contrast(1.06);
  transform: scale(1.04);
}

.workplace-caption { padding: 25px 0 0; }

.workplace-caption b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.workplace-caption h3 {
  margin: 9px 0 0;
  font-size: clamp(1.6rem, 2.45cqw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.workplace-caption p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.9;
}

#data { background: var(--gold); }

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--navy);
  border-left: 1px solid var(--navy);
}

.data-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px 24px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: rgba(255, 255, 255, 0.08);
}

.data-card > span {
  max-width: 180px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.6;
}

.data-value {
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(3.2rem, 5.2cqw, 5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.data-value small {
  margin-left: 5px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
}

#culture { background: var(--paper); }

.culture-list { border-top: 2px solid var(--navy); }

.culture-item {
  display: grid;
  grid-template-columns: 90px minmax(280px, 0.72fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
  min-height: 138px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.culture-item:hover {
  padding-inline: 32px 8px;
  background: var(--gold);
}

.culture-item b {
  color: transparent;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.8rem;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px var(--gold);
}

.culture-item:hover b { -webkit-text-stroke-color: var(--navy); }

.culture-item h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.culture-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.culture-item:hover p { color: var(--navy); }

.company-culture-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  margin-top: 100px;
}

.culture-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.culture-photo.secondary {
  min-height: 470px;
  margin-top: 100px;
}

.culture-photo img {
  filter: saturate(0.72) contrast(1.08);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.culture-photo.secondary img { object-position: center 42%; }

.culture-photo:hover img {
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.04);
}

.culture-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.94);
}

.culture-photo figcaption b {
  display: block;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.culture-photo figcaption span {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 900;
}

.philosophy {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  padding: 120px 56px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(23, 32, 63, 0.93), rgba(35, 46, 86, 0.66)),
    url("./image/philosophy-workshop.jpg") center 48% / cover no-repeat;
  color: var(--white);
}

.philosophy::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 185, 143, 0.5);
  content: "";
}

.philosophy::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.14em;
  color: transparent;
  content: "PRIDE";
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(10rem, 24cqw, 22rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  opacity: 0.14;
  -webkit-text-stroke: 2px var(--white);
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
}

.philosophy h2 {
  margin: 0;
  max-inline-size: 100%;
  font-size: clamp(3.15rem, 5.8cqw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.22;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.philosophy-inner > p:last-child {
  max-width: 700px;
  margin: 42px 0 0 auto;
  padding-left: 28px;
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  line-height: 2.1;
}

#jobs { background: var(--cream); }
.job-list { border-top: 3px solid var(--navy); }
.job-card { border-bottom: 1px solid var(--navy); }

.job-card summary {
  display: grid;
  grid-template-columns: 120px 1fr 54px;
  gap: 28px;
  align-items: center;
  min-height: 144px;
  padding: 30px 24px;
  list-style: none;
  cursor: pointer;
}

.job-card summary::-webkit-details-marker { display: none; }

.job-card summary > b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.job-card summary h3 {
  margin: 0;
  font-size: clamp(2rem, 3.7cqw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.plus {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--navy);
  font-size: 1.7rem;
  font-weight: 300;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.job-card[open] .plus {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.job-body { padding: 0 24px 58px 168px; }

.job-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--navy);
}

.job-table th,
.job-table td {
  padding: 25px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.job-table th {
  width: 180px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.job-table td {
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1.9;
}

.job-body .button { margin-top: 34px; }

#flow {
  background: var(--navy);
  color: var(--white);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.flow-step {
  position: relative;
  min-height: 290px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.flow-step::after {
  position: absolute;
  right: -0.07em;
  bottom: -0.28em;
  color: transparent;
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.1;
  -webkit-text-stroke: 1px var(--white);
}

.flow-step:last-child::after { content: "●"; }

.flow-step b {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.flow-step h3 {
  margin: 56px 0 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.45;
}

.flow-step p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.8;
}

#faq { background: var(--paper); }
.faq-list { border-top: 2px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  padding: 20px 12px;
  list-style: none;
  cursor: pointer;
}

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

.faq-q,
.faq-answer > b {
  color: var(--gold);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.6rem;
}

.faq-item summary > span:nth-child(2) {
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-toggle {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] .faq-toggle {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 0 72px 34px 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.95;
}

#entry {
  background:
    linear-gradient(140deg, rgba(156, 136, 89, 0.14), transparent 42%),
    var(--navy-deep);
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(70px, 9cqw, 130px);
  align-items: start;
}

.entry-message {
  position: sticky;
  top: 120px;
}

.entry-message h2 {
  margin: 0;
  max-inline-size: 100%;
  font-size: clamp(3.2rem, 5.8cqw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.14;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

@supports (word-break: auto-phrase) {
  .section-title,
  .philosophy h2,
  .entry-message h2 {
    word-break: auto-phrase;
  }
}

.entry-message > p {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
}

.entry-points {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.entry-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
}

.entry-points span::before {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
}

.entry-form {
  padding: clamp(36px, 5cqw, 72px);
  background: var(--paper);
  color: var(--navy);
}

.form-intro {
  margin: 0 0 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }

.field > label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.79rem;
  font-weight: 900;
}

.required {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--navy);
  border-radius: 0;
  background: transparent;
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input,
select {
  min-height: 54px;
  padding: 10px 8px;
}

textarea {
  min-height: 150px;
  padding: 15px 8px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--gold);
  background: rgba(156, 136, 89, 0.07);
}

input::placeholder,
textarea::placeholder { color: #9b9dab; }

.interest-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--navy);
  font-size: 0.79rem;
  font-weight: 900;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.radio-card input:checked + span {
  background: var(--navy);
  color: var(--white);
}

.radio-card input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  min-height: 0;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 5px;
  accent-color: var(--navy);
}

.form-submit {
  width: 100%;
  min-height: 76px;
  margin-top: 28px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-submit:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--gold);
}

.form-submit:disabled { cursor: wait; opacity: 0.65; }

.form-status {
  display: none;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #527458;
  background: #edf6ef;
  color: #2b5631;
  font-size: 0.84rem;
  font-weight: 800;
}

.form-status.show { display: block; }

.form-status.error {
  border-color: #a84f4f;
  background: #fff0f0;
  color: #7d2929;
}

.form-caption {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer {
  padding: 74px 56px 66px;
  border-top: 14px solid var(--gold);
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  color: var(--gold-light);
  font-size: 1.45rem;
  font-weight: 900;
}

.footer-meta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-links a:hover { color: var(--gold-light); }
.mobile-entry { display: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* 1500px時点の完成レイアウトを基準に、文字・余白・罫線・画像を同比率で拡大する。 */
html.is-wide-layout,
html.is-wide-layout body {
  overflow-x: clip;
}

html.is-wide-layout .site-canvas {
  width: 1500px;
  max-width: none;
  margin: 0;
  zoom: var(--wide-scale);
}

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .site-header { top: 12px; }
  .site-header.is-scrolled { top: 0; }

  .header-inner {
    width: calc(100% - 24px);
    min-height: var(--header-height);
    padding: 0 12px 0 18px;
  }

  .site-header.is-scrolled .header-inner { min-height: 70px; }
  .menu-button { display: inline-flex; }

  .global-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 110px max(34px, 8vw) 40px;
    background: var(--navy);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
  }

  .global-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 1.1rem;
  }

  .global-nav a::before {
    color: var(--gold-light);
    content: "↗";
    font-family: Arial, sans-serif;
    order: 2;
  }

  .global-nav a:not(.header-entry)::after { display: none; }

  .global-nav .header-entry {
    margin-top: 28px;
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: none;
  }

  .hero { grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr); }
  .hero-copy { padding-inline: 42px; }
  .hero h1 { font-size: clamp(3.2rem, 6.2cqw, 4.5rem); }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-index { max-width: 300px; }

  .evaluation-lead,
  .career-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-grid,
  .growth-wrap,
  .schedule-grid,
  .entry-layout { gap: 64px; }

  .benefit-card { padding-left: 0; }

  .person-card,
  .person-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  }

  .evaluation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evaluation-cycle { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cycle-step:nth-child(2) { border-right: 0; }
  .cycle-step:nth-child(-n + 2) { border-bottom: 1px solid var(--navy); }
  .career-models { grid-template-columns: 1fr; }

  .career-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  }

  .career-card-head {
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 0;
  }

  .data-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }

  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }

  body { padding-bottom: 72px; }

  .site-canvas,
  main,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  .site-canvas {
    position: relative;
    overflow-x: hidden;
  }

  .site-header { top: 8px; }

  .header-inner {
    width: calc(100% - 16px);
    min-height: 68px;
    padding-left: 13px;
  }

  .site-header.is-scrolled .header-inner { min-height: 64px; }
  .brand { gap: 10px; }
  .brand-logo { width: 132px; }

  .brand-page {
    min-height: 27px;
    padding-left: 10px;
    font-size: 0.54rem;
  }

  .menu-button { width: 46px; height: 46px; }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
  }

  .hero-copy {
    min-height: 650px;
    justify-content: flex-end;
    padding: 124px 24px 66px;
  }

  .hero-copy::before {
    top: 14%;
    left: -0.12em;
    font-size: 7.2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 12.4cqw, 4.5rem);
    line-height: 1.12;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .hero-lead br { display: none; }

  .hero-actions {
    display: grid;
    margin-top: 34px;
  }

  .hero-actions .button { width: 100%; }
  .hero-note { font-size: 0.66rem; }
  .hero-visual { min-height: 610px; }
  .hero-visual::after { inset: 12px; }

  .hero-year-badge {
    top: 28px;
    right: 24px;
    width: 118px;
  }

  .hero-year-badge strong { font-size: 2rem; }

  .hero-story {
    right: 26px;
    bottom: 48px;
    left: 26px;
  }

  .hero-story strong { font-size: 2rem; }
  .visual-word { font-size: 7rem; }
  .craft-marquee {
    width: 100%;
    margin: -14px 0 -18px;
    transform: none;
  }

  .marquee-track {
    gap: 16px;
    padding-block: 12px 10px;
    font-size: 2.8rem;
  }

  .section { padding: 92px 0; }
  .container { width: calc(100% - 40px); }
  .section-head { margin-bottom: 58px; }

  .section-index {
    max-width: none;
    font-size: 0.64rem;
  }

  .section-title {
    font-size: clamp(2.1rem, 9.2cqw, 3.2rem);
    line-height: 1.2;
  }

  .section-title small {
    margin-top: 17px;
    font-size: 0.72rem;
  }

  #about { padding-top: 120px; }

  #about::before,
  #work::before,
  #growth::before { font-size: 8.5rem; }

  .intro-grid,
  .growth-wrap,
  .evaluation-lead,
  .career-intro,
  .schedule-grid,
  .entry-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-copy h3 { font-size: 2.55rem; }
  .intro-copy > p { font-size: 0.9rem; }
  .history-visual { aspect-ratio: 4 / 3; }

  .history-visual figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
  }

  .fact-stack { padding-top: 0; }

  .fact-row {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .wire-grid { grid-template-columns: 1fr; }
  .wire-card { min-height: 535px; }

  .wire-card h3 {
    right: 26px;
    bottom: 112px;
    left: 26px;
    font-size: 3.3rem;
  }

  .wire-card p {
    right: 26px;
    bottom: 28px;
    left: 26px;
    font-size: 0.8rem;
  }

  .benefit-grid { grid-template-columns: 1fr; }

  .benefit-card {
    display: block;
    min-height: 0;
    padding: 34px 0 42px;
  }

  .benefit-card b {
    position: static !important;
    inset: auto !important;
    display: block;
    width: fit-content;
    min-height: 0;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    color: transparent;
    font-size: 2.55rem;
    letter-spacing: -0.08em;
    line-height: 1;
    white-space: nowrap;
    -webkit-text-stroke: 1px var(--navy);
  }

  .benefit-card h3 {
    position: static;
    display: block;
    clear: both;
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.45;
  }
  .benefit-card p { font-size: 0.87rem; }

  .person-card,
  .person-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .person-card:nth-child(even) .person-photo { order: 0; }

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

  .person-body {
    min-height: 430px;
    padding: 38px 28px 42px;
  }

  .person-body h3 { font-size: 2rem; }
  .growth-message { position: static; }

  .growth-message h3 {
    display: block;
    max-width: 100%;
    font-size: clamp(0.86rem, 4.25cqw, 1rem);
    letter-spacing: -0.055em;
    line-height: 1.5;
    white-space: nowrap !important;
  }

  .growth-message h3 br { display: none; }

  .growth-step {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    min-height: 132px;
  }

  .growth-step::before { font-size: 2rem; }
  .growth-step h4 { font-size: 1.3rem; }

  .evaluation-lead h3,
  .career-intro h3 {
    font-size: clamp(2rem, 9.5cqw, 2.65rem);
    line-break: strict;
    text-wrap: balance;
    white-space: normal;
    word-break: normal;
  }

  .evaluation-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .evaluation-card { min-height: 230px; }
  .evaluation-cycle { grid-template-columns: 1fr; }

  .cycle-step,
  .cycle-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }

  .cycle-step:last-child { border-bottom: 0; }
  .career-models { margin-top: 58px; }
  .career-card { display: block; }

  .career-card-head {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .schedule-photo {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .time-row {
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .time-row time { font-size: 1.1rem; }

  .workplace-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .workplace-card,
  .workplace-card:nth-child(2),
  .workplace-card:nth-child(3),
  .workplace-card:nth-child(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .workplace-caption h3 { font-size: 1.7rem; }
  .data-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .data-card {
    min-height: 185px;
    padding: 20px 16px;
  }

  .data-card > span { font-size: 0.72rem; }
  .data-value { font-size: 2.9rem; }

  .culture-item {
    grid-template-columns: 58px 1fr;
    gap: 8px 18px;
    padding: 26px 4px;
  }

  .culture-item:hover { padding-inline: 14px 4px; }

  .culture-item b {
    grid-row: 1 / span 2;
    font-size: 2.2rem;
  }

  .culture-item h3 { font-size: 1.32rem; }

  .culture-item p {
    grid-column: 2;
    font-size: 0.8rem;
  }

  .company-culture-gallery {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .culture-photo,
  .culture-photo.secondary {
    min-height: 390px;
    margin-top: 0;
  }

  .culture-photo.secondary { aspect-ratio: 4 / 5; }

  .philosophy {
    min-height: 690px;
    padding: 92px 28px;
  }

  .philosophy::before { inset: 12px; }
  .philosophy h2 { font-size: clamp(2.4rem, 10.4cqw, 3rem); }

  .philosophy-inner > p:last-child {
    margin-top: 34px;
    padding-left: 20px;
    font-size: 0.87rem;
  }

  .job-card summary {
    grid-template-columns: 1fr 46px;
    gap: 16px;
    min-height: 126px;
    padding: 26px 4px;
  }

  .job-card summary > b { grid-column: 1; }

  .job-card summary h3 {
    grid-column: 1;
    font-size: 2.15rem;
  }

  .job-card summary .plus {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .job-body { padding: 0 0 46px; }

  .job-table,
  .job-table tbody,
  .job-table tr,
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
  }

  .job-table tr {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .job-table th,
  .job-table td {
    padding: 0;
    border: 0;
  }

  .job-table td {
    margin-top: 8px;
    font-size: 0.84rem;
  }

  .flow-grid { grid-template-columns: 1fr; }
  .flow-step { min-height: 210px; }
  .flow-step h3 { margin-top: 36px; }

  .faq-item summary {
    grid-template-columns: 36px 1fr 40px;
    gap: 12px;
    min-height: 94px;
    padding-inline: 0;
  }

  .faq-item summary > span:nth-child(2) { font-size: 0.94rem; }

  .faq-answer {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 0 0 28px;
    font-size: 0.84rem;
  }

  .entry-message,
  .schedule-photo { position: static; }

  .entry-message h2 { font-size: clamp(2.5rem, 10.8cqw, 3.2rem); }
  .entry-form { padding: 32px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .interest-options { grid-template-columns: 1fr; }

  .site-footer { padding: 58px 20px 50px; }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links { justify-content: flex-start; }

  .mobile-entry {
    position: fixed;
    z-index: 250;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    background: var(--navy);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--gold);
  }
}

@media (max-width: 420px) {
  .brand-logo { width: 112px; }
  .brand-page { display: none; }
  .hero-copy { min-height: 610px; }
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.05rem; }
  .data-value { font-size: 2.45rem; }
  .philosophy h2 { font-size: 2.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body {
    padding: 0;
    background: var(--white);
  }

  .site-header,
  .scroll-progress,
  .mobile-entry,
  .menu-button,
  .hero-actions,
  .craft-marquee {
    display: none !important;
  }

  .site-canvas {
    width: 100% !important;
    zoom: 1 !important;
  }

  .hero {
    min-height: 700px;
    padding-top: 0;
  }

  .section {
    break-inside: avoid;
    padding-block: 58px;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
