/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --cream:      #faf8f3;
  --warm-white: #f5f2eb;
  --orange:     #e8602c;
  --orange-lt:  #f0845a;
  --yellow:     #f5c842;
  --yellow-lt:  #fad96a;
  --navy:       #1a2035;
  --navy-lt:    #2a3250;
  --green:      #2d5a3d;
  --green-lt:   #3d7a52;
  --mid:        #6b6358;
  --light:      #d4cfc6;
  --black:      #111010;

  --r-big:  32px;
  --r-card: 24px;
  --r-pill: 100px;

  --font-disp: 'Syne', sans-serif;
  --font-jp:   'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-jp);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, width 0.25s, height 0.25s, opacity 0.2s;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,248,243,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,32,53,0.08);
  transition: box-shadow 0.3s;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-badge {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-sub {
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.12em;
  font-weight: 500;
  font-family: var(--font-disp);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
nav a:hover { background: var(--warm-white); }
nav a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { opacity: 0.9 !important; }

/* ═══════════════════════════════════════
   FLOATING ENTRY BUTTON
═══════════════════════════════════════ */
.float-entry-b {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.float-entry-b.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn-main-b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: white;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(232,96,44,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn-main-b:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,96,44,0.55);
}

.float-btn-sub-b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  background: white;
  border: 2px solid rgba(232,96,44,0.25);
  color: var(--orange);
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26,32,53,0.1);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.float-btn-sub-b:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,32,53,0.14);
}

/* ═══════════════════════════════════════
   COMMON COMPONENTS
═══════════════════════════════════════ */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.sec-tag-orange { background: rgba(232,96,44,0.1); color: var(--orange); }
.sec-tag-navy   { background: rgba(26,32,53,0.08); color: var(--navy); }
.sec-tag-green  { background: rgba(45,90,61,0.1);  color: var(--green); }
.sec-tag-yellow { background: rgba(245,200,66,0.12); color: #c49a00; }

.sec-title {
  font-family: var(--font-jp);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.sec-title .hl { color: var(--orange); }

.sec-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--mid);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Contextual overrides for dark sections */
.biz-text .sec-title,
.bz-text .sec-title,
.phi-header .sec-title,
.iz-text .sec-title { color: white; }

.biz-text .sec-title  { font-size: clamp(22px, 2.8vw, 34px); }
.bz-text .sec-title   { font-size: clamp(22px, 3vw, 32px); }
.biz-text-alt .sec-title { font-size: clamp(22px, 2.8vw, 34px); }
.bz-text-alt .sec-title  { font-size: clamp(22px, 3vw, 32px); }

.biz-text .sec-body { color: rgba(255,255,255,0.62); margin-bottom: 24px; }
.bz-text .sec-body  { color: rgba(255,255,255,0.62); }
.biz-text-alt .sec-body { margin-bottom: 24px; }

/* Centered tags for section headers */
.biz-intro .sec-tag,
.welfare-head .sec-tag,
.edu-head .sec-tag,
.numbers-head .sec-tag,
.flow-head .sec-tag,
.culture-intro .sec-tag,
.culture-head .sec-tag,
.access-head .sec-tag { margin: 0 auto 16px; }

/* Buttons */
.btn-prominent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--r-pill);
  border: 2.5px solid var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-prominent:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,32,53,0.2);
}

.btn-prominent-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--r-pill);
  border: 2.5px solid var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-prominent-orange:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,96,44,0.3);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--r-pill);
  border: 2.5px solid var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-navy:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.btn-corp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 2px solid var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-corp:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* Text utilities */
.text-note {
  font-size: 12px;
  color: var(--mid);
  display: block;
  margin-top: 2px;
}
.text-xs {
  font-size: 11px;
  color: var(--mid);
}
.text-gold {
  color: var(--yellow);
}

/* ═══════════════════════════════════════
   PAGE HERO (sub-pages shared)
═══════════════════════════════════════ */
.page-hero {
  padding-top: 68px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-bg-text {
  position: absolute;
  bottom: -0.12em; left: -0.04em;
  font-family: var(--font-disp);
  font-size: clamp(120px, 16vw, 260px);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.page-hero-content {
  padding: 80px 60px 72px;
  position: relative;
  z-index: 1;
}
.page-hero-eyebrow {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-jp);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.95;
  max-width: 520px;
}
.page-hero-deco {
  position: absolute;
  top: 40px; right: 60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 60px solid rgba(232,96,44,0.08);
  pointer-events: none;
}
.page-hero-deco2 {
  position: absolute;
  bottom: -40px; right: 220px;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 28px solid rgba(245,200,66,0.06);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
  background: var(--warm-white);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(26,32,53,0.06);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li { font-size: 12px; color: var(--mid); }
.breadcrumb li a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.breadcrumb li a:hover { color: var(--orange); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--light); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════
   TOP PAGE — HERO
═══════════════════════════════════════ */
#hero {
  padding-top: 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
#hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.hero-bg-word {
  position: absolute;
  bottom: -0.18em; left: -0.04em;
  font-family: var(--font-disp);
  font-size: clamp(220px, 28vw, 420px);
  line-height: 1;
  color: rgba(17,17,17,0.04);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  padding: 0 40px 80px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #f7f6f4;
  margin-bottom: 40px;
  animation: heroUp 1s ease 0.1s forwards;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  color: #f7f6f4;
  animation: heroUp 1s ease 0.25s forwards;
  opacity: 0;
}
.hero-title .italic { font-style: italic; font-weight: 300; }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  animation: heroUp 1s ease 0.4s forwards;
  opacity: 0;
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: #f7f6f4;
  line-height: 2;
  max-width: 360px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.hero-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 21px 42px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: white;
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 36px rgba(232,96,44,0.55);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.hero-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232,96,44,0.65);
  opacity: 0.92;
}
.hero-btn-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-btn-sub:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  right: 40px; bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}
.hero-scroll span {
  font-family: var(--font-disp);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--mid);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 64px;
  background: var(--mid);
  transform-origin: top;
  animation: lineGrow 1.5s ease 1.4s both;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════
   TOP PAGE — ABOUT
═══════════════════════════════════════ */
#about {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-main-card {
  border-radius: var(--r-big);
  overflow: hidden;
}
.about-main-card img { width: 100%; }
.about-text { padding-left: 20px; }
.about-text .sec-title { margin-bottom: 24px; }
.about-text .sec-body  { margin-bottom: 36px; max-width: 440px; }

/* ═══════════════════════════════════════
   TOP PAGE — PHILOSOPHY
═══════════════════════════════════════ */
#philosophy {
  background: var(--navy);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.phi-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-disp);
  font-size: 170px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.phi-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.phi-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  font-weight: 400;
  padding-top: 6px;
  border-top: 2px solid rgba(232,96,44,0.4);
}
.phi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.phi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  padding: 40px 36px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.phi-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  border-color: rgba(232,96,44,0.4);
}
.phi-num {
  font-family: var(--font-jp);
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
}
.phi-card h3 {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.phi-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.95;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   TOP PAGE — WORK (会社情報)
═══════════════════════════════════════ */
#work {
  background: var(--cream);
  padding: 100px 60px;
}
.work-header-b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.company-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.company-photo-area {
  margin-bottom: 50px;
  margin-right: -30px;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--r-card);
}
.company-photo-area img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(15%);
}
.company-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,32,53,0.55) 0%, transparent 60%);
  z-index: 1;
}
.company-info-card {
  margin-top: 50px;
  margin-left: -30px;
  background: white;
  border-radius: var(--r-card);
  padding: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,32,53,0.1);
}
.company-info-table { width: 100%; border-collapse: collapse; }
.company-info-table tr { border-bottom: 1px solid rgba(26,32,53,0.07); }
.company-info-table tr:last-child { border-bottom: none; }
.company-info-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-align: left;
  padding: 14px 16px 14px 0;
  width: 32%;
  vertical-align: top;
  border-right: 2px solid rgba(232,96,44,0.2);
}
.company-info-table td {
  font-size: 13.5px;
  color: var(--navy);
  padding: 14px 0 14px 20px;
  line-height: 1.75;
}
.company-info-table a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,96,44,0.3);
}

/* ═══════════════════════════════════════
   TOP PAGE — INTERVIEW
═══════════════════════════════════════ */
#interview {
  background: var(--warm-white);
  padding: 100px 60px;
}
#interview > .sec-body { margin-bottom: 48px; max-width: 560px; }
.interview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.icard {
  border-radius: var(--r-card);
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(26,32,53,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.icard:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(26,32,53,0.12); }
.icard-photo { position: relative; overflow: hidden; }
.icard-photo img { width: 100%; display: block; }
.icard-body { padding: 22px 24px 24px; }
.icard-year { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 8px; }
.icard-name { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.icard-quote { font-size: 13px; color: var(--mid); line-height: 1.85; }
.icard-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26,32,53,0.07);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   TOP PAGE — CULTURE
═══════════════════════════════════════ */
#culture {
  background: var(--cream);
  padding: 100px 60px 0;
}
.culture-head {
  text-align: center;
  margin-bottom: 60px;
}

/* BENEFIT-Z layout (TOP & Culture page shared) */
.benefit-z {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 420px;
}
.benefit-z:nth-child(even) { direction: rtl; }
.benefit-z:nth-child(even) > * { direction: ltr; }

.bz-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: var(--navy-lt);
}
.bz-img img { width: 100%; height: 100%; object-fit: cover; }

.bz-text {
  background: var(--navy);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.bz-text-alt {
  background: var(--warm-white);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.bz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.bz-footer-link {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
}
.bz-footer-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.bz-text:hover .bz-footer-arrow { background: var(--orange); transform: translateX(4px); }

.bz-footer-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,32,53,0.1);
}
.bz-footer-alt-link {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(26,32,53,0.4);
  letter-spacing: 0.12em;
}
.bz-footer-alt-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(26,32,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.bz-text-alt:hover .bz-footer-alt-arrow { background: var(--orange); color: white; transform: translateX(4px); }

/* Mini stats inside bz-text (TOP page culture section) */
.bz-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.bz-mini-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.bz-mini-stat-num {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.bz-mini-stat-num.lg { font-size: 36px; }
.bz-mini-stat-num em {
  font-style: normal;
  color: var(--yellow);
  font-size: 18px;
}
.bz-mini-stat-num.lg em { font-size: 22px; }
.bz-mini-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.bz-mini-stat-yel { color: var(--yellow); }

/* ═══════════════════════════════════════
   TOP PAGE — RECRUIT
═══════════════════════════════════════ */
#recruit {
  background: var(--cream);
  padding: 100px 60px;
}
.recruit-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.rcard {
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 20px rgba(26,32,53,0.1);
  text-decoration: none;
}
.rcard:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,32,53,0.18); }
.rcard-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.rcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,32,53,0.92) 40%, rgba(26,32,53,0.3) 80%, transparent 100%);
  transition: background 0.3s;
}
.rcard:nth-child(2) .rcard-overlay {
  background: linear-gradient(to top, rgba(45,90,61,0.92) 40%, rgba(45,90,61,0.3) 80%, transparent 100%);
}
.rcard:nth-child(3) .rcard-overlay {
  background: linear-gradient(to top, rgba(42,37,32,0.92) 40%, rgba(42,37,32,0.3) 80%, transparent 100%);
}
.rcard-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}
.rcard-num {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.rcard h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.rcard p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.9; }
.rcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.rcard-link { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; }
.rcard-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
.rcard:hover .rcard-arrow { background: var(--orange); transform: translateX(4px); }
.recruit-cta { text-align: center; }

/* ═══════════════════════════════════════
   ENTRY CTA SECTION (shared)
═══════════════════════════════════════ */
#entry {
  background: var(--orange);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.entry-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 0%);
}
.entry-wave-alt {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(60% 100% at 50% 0%);
}
.entry-wave-b {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--navy);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.entry-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.ebc-1 {
  width: 500px; height: 500px;
  border: 60px solid rgba(255,255,255,0.12);
  top: -100px; left: -100px;
}
.ebc-2 {
  width: 300px; height: 300px;
  border: 40px solid rgba(255,255,255,0.08);
  bottom: -50px; right: 10%;
}
.entry-content { position: relative; z-index: 1; }
.entry-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.entry-title {
  font-family: var(--font-jp);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.entry-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 52px;
  line-height: 2;
}
.entry-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ebtn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: var(--r-pill);
  background: white;
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ebtn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.ebtn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.ebtn-outline:hover { transform: translateY(-3px); background: rgba(255,255,255,0.15); border-color: white; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 72px 60px 40px;
  color: rgba(255,255,255,0.45);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 16px;
}
footer .logo-sub { color: rgba(255,255,255,0.4); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-family: var(--font-disp);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--orange); }

/* ═══════════════════════════════════════
   COMPANY PAGE
═══════════════════════════════════════ */
#overview {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-main-card { border-radius: var(--r-big); overflow: hidden; }
.overview-main-card img { width: 100%; display: block; }
#overview .sec-title { margin-bottom: 32px; }

.overview-table { width: 100%; border-collapse: collapse; }
.overview-table tr { border-bottom: 1px solid rgba(26,32,53,0.07); }
.overview-table tr:last-child { border-bottom: none; }
.overview-table th {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: left;
  padding: 16px 16px 16px 0;
  width: 34%;
  vertical-align: top;
  border-right: 2px solid rgba(232,96,44,0.18);
}
.overview-table td {
  font-size: 14px;
  color: var(--navy);
  padding: 16px 0 16px 20px;
  line-height: 1.8;
  vertical-align: top;
}
.overview-table td small { font-size: 12px; color: var(--mid); display: block; margin-top: 2px; }

#business { background: var(--cream); }
.biz-intro {
  padding: 100px 60px 60px;
  text-align: center;
}
.biz-intro .sec-title { margin-bottom: 20px; }
.biz-intro .sec-body { max-width: 620px; margin: 0 auto; }

.biz-z {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.biz-z.reverse { direction: rtl; }
.biz-z.reverse > * { direction: ltr; }

.biz-photo { position: relative; overflow: hidden; min-height: 460px; }
.biz-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.biz-z:hover .biz-photo img { transform: scale(1.03); }

.biz-text {
  background: var(--navy);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.biz-text-alt {
  background: var(--warm-white);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.biz-text-list { list-style: none; margin-bottom: 28px; }
.biz-text-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.biz-text-list li::before { content: '—'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.biz-text-alt .biz-text-list li { color: var(--mid); border-bottom-color: rgba(26,32,53,0.07); }

.biz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.biz-footer-link {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
}
.biz-footer-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
.biz-text:hover .biz-footer-arrow { background: var(--orange); transform: translateX(4px); }
.biz-alt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(26,32,53,0.1);
}
.biz-alt-footer-link {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(26,32,53,0.4);
  letter-spacing: 0.12em;
}
.biz-alt-footer-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(26,32,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: background 0.2s, transform 0.2s;
}
.biz-text-alt:hover .biz-alt-footer-arrow { background: var(--orange); color: white; transform: translateX(4px); }

#mission {
  background: var(--navy);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.mission-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-disp);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.mission-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.mission-header .sec-title { color: white; }
.mission-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  padding-top: 6px;
  border-top: 2px solid rgba(232,96,44,0.4);
}
.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  padding: 48px 44px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.mission-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); border-color: rgba(232,96,44,0.4); }
.mission-card-eyebrow {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}
.mission-num {
  font-family: var(--font-disp);
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.mission-card-title {
  font-family: var(--font-jp);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.45;
}
.mission-card-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 2; }

#strengths { background: var(--cream); padding: 100px 60px; }
.strengths-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.str-card {
  background: white;
  border-radius: var(--r-card);
  padding: 44px 36px;
  box-shadow: 0 4px 24px rgba(26,32,53,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.str-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,32,53,0.12); }
.str-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.str-num { font-family: var(--font-disp); font-size: 52px; font-weight: 800; color: var(--orange); opacity: 0.15; line-height: 1; margin-bottom: 20px; }
.str-icon { font-size: 32px; margin-bottom: 18px; display: block; }
.str-card h3 { font-family: var(--font-jp); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.str-card p { font-size: 13.5px; color: var(--mid); line-height: 1.9; }

#access { background: var(--warm-white); padding: 100px 60px; }
.access-head { text-align: center; margin-bottom: 52px; }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.access-map { border-radius: var(--r-card); overflow: hidden; }
.access-map iframe { width: 100%; height: 360px; border: none; display: block; filter: grayscale(20%); }
.access-info { padding-top: 8px; }
.access-address { font-size: 15px; color: var(--navy); line-height: 2; margin-bottom: 28px; }
.access-address strong { display: block; font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.access-tel { font-family: var(--font-disp); font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px; }
.access-tel a { color: var(--navy); text-decoration: none; }
.access-tel-note { font-size: 12px; color: var(--mid); margin-bottom: 28px; }
.access-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.access-tag {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: rgba(232,96,44,0.1);
  color: var(--orange);
}

/* ═══════════════════════════════════════
   INTERVIEW PAGE
═══════════════════════════════════════ */
#interview-list { padding: 80px 0 0; }
.interview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  padding: 0 60px;
}
.interview-count { font-size: 13px; color: var(--mid); font-weight: 500; padding: 0 60px 48px; }

.interview-z {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.interview-z:nth-child(even) { direction: rtl; }
.interview-z:nth-child(even) > * { direction: ltr; }

.iz-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--warm-white);
}
.iz-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.interview-z:hover .iz-photo img { transform: scale(1.03); }
.iz-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: white;
  font-family: var(--font-disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.iz-text {
  background: var(--navy);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.iz-text:hover { background: var(--navy-lt); }
.iz-text-alt {
  background: var(--warm-white);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.iz-text-alt:hover { background: #ece9e1; }

.iz-dept { font-family: var(--font-disp); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--orange); margin-bottom: 6px; }
.iz-year { font-family: var(--font-disp); font-size: 11px; letter-spacing: 0.08em; margin-bottom: 20px; }
.iz-text .iz-year { color: rgba(255,255,255,0.4); }
.iz-text-alt .iz-year { color: var(--mid); }
.iz-name { font-family: var(--font-jp); font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 20px; }
.iz-text .iz-name { color: white; }
.iz-text-alt .iz-name { color: var(--navy); }
.iz-quote { font-size: 14px; line-height: 2; font-weight: 400; margin-bottom: 32px; }
.iz-text .iz-quote { color: rgba(255,255,255,0.62); }
.iz-text-alt .iz-quote { color: var(--mid); }
.iz-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; }
.iz-text .iz-footer { border-top: 1px solid rgba(255,255,255,0.12); }
.iz-text-alt .iz-footer { border-top: 1px solid rgba(26,32,53,0.1); }
.iz-link { font-family: var(--font-disp); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }
.iz-text .iz-link { color: rgba(255,255,255,0.45); }
.iz-text-alt .iz-link { color: rgba(26,32,53,0.4); }
.iz-arrow { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.2s, transform 0.2s; }
.iz-text .iz-arrow { background: rgba(255,255,255,0.1); color: white; }
.iz-text-alt .iz-arrow { background: rgba(26,32,53,0.08); color: var(--navy); }
.iz-text:hover .iz-arrow, .iz-text-alt:hover .iz-arrow { background: var(--orange); color: white; transform: translateX(4px); }

/* ═══════════════════════════════════════
   INTERVIEW MEMBER PAGE
═══════════════════════════════════════ */
.interview-hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.interview-hero-img {
  position: relative;
  background: var(--navy-lt);
  display: flex; align-items: center; justify-content: center;
}
.interview-hero-img img { width: 100%; }
.interview-hero-tag {
  position: absolute; top: 32px; left: 32px;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  padding: 7px 16px; border-radius: var(--r-pill);
}
.interview-hero-text {
  padding: 72px 72px 72px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.interview-hero-dept { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 8px; }
.interview-hero-year { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.interview-hero-name { font-size: clamp(36px,4vw,56px); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 28px; }
.interview-hero-name span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.4); display: block; margin-top: 6px; letter-spacing: 0.1em; }
.interview-hero-quote {
  font-size: 18px; font-weight: 700; color: white; line-height: 1.8;
  padding-left: 20px; border-left: 3px solid var(--orange); margin-bottom: 36px;
}
.interview-hero-bg-text {
  position: absolute; bottom: -0.1em; right: -0.04em;
  font-family: var(--font-disp); font-size: 200px; font-weight: 800;
  color: rgba(255,255,255,0.02); pointer-events: none; user-select: none;
}

.profile-strip {
  background: white; padding: 36px 60px;
  display: flex; gap: 48px; align-items: center;
  border-bottom: 1px solid rgba(26,32,53,0.06); flex-wrap: wrap;
}
.profile-item { display: flex; flex-direction: column; gap: 4px; }
.profile-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); }
.profile-value { font-size: 15px; font-weight: 700; color: var(--navy); }

.article-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 60px 120px; }

.qa-block {
  display: flex; flex-wrap: wrap; align-items: stretch;
  gap: 48px; margin-bottom: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(26,32,53,0.07);
}
.qa-block:last-child { border-bottom: none; margin-bottom: 0; }
.qa-block:nth-child(odd) { flex-direction: row; }
.qa-block:nth-child(even) { flex-direction: row-reverse; }

.qa-content { flex: 6; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.qa-q { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.qa-q-mark {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: white;
  font-family: var(--font-disp); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.qa-q-text { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.55; padding-top: 8px; }
.qa-a { display: flex; flex-direction: column; gap: 20px; }
.qa-a-header { display: flex; gap: 16px; align-items: flex-start; }
.qa-a-mark {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,32,53,0.06); color: var(--navy);
  font-family: var(--font-disp); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.qa-a-text { font-size: 15px; color: var(--mid); line-height: 2; padding-top: 10px; }

.qa-image { flex: 4; min-width: 0; }
.qa-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card); display: block; }
.qa-highlight {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  border-radius: var(--r-card); padding: 40px 48px; text-align: center;
}
.qa-highlight p { font-size: 20px; font-weight: 700; color: white; line-height: 1.75; font-style: italic; }
.qa-highlight p::before { content: '\201C'; color: var(--orange); font-size: 32px; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.qa-highlight p::after  { content: '\201D'; color: var(--orange); font-size: 32px; line-height: 0; vertical-align: -0.3em; margin-left: 4px; }

.qa-block-solo { flex-direction: column !important; max-width: 780px; margin-left: auto; margin-right: auto; }
.qa-block-solo .qa-content { flex: none; width: 100%; }
.qa-block-solo .qa-highlight { width: 100%; margin-top: 0; }

.article-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding: 0 60px 80px; max-width: 1200px; margin: 0 auto;
}
.article-nav-btn {
  display: flex; gap: 16px; align-items: center;
  padding: 28px 32px; background: white; border-radius: var(--r-card);
  text-decoration: none; box-shadow: 0 4px 16px rgba(26,32,53,0.06);
  transition: transform 0.25s, box-shadow 0.25s; color: var(--navy);
}
.article-nav-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,32,53,0.12); }
.article-nav-btn.prev { flex-direction: row-reverse; text-align: right; }
.nav-btn-arrow { font-size: 24px; color: var(--orange); flex-shrink: 0; }
.nav-btn-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--mid); margin-bottom: 6px; }
.nav-btn-name { font-size: 16px; font-weight: 700; color: var(--navy); }

/* ═══════════════════════════════════════
   CULTURE PAGE
═══════════════════════════════════════ */
.culture-intro { padding: 80px 60px 60px; text-align: center; }
.culture-intro .sec-title { margin-bottom: 20px; }
.culture-intro .sec-body { max-width: 600px; margin: 0 auto; margin-top: 20px; }

#welfare { background: var(--cream); padding: 100px 60px; }
.welfare-head { text-align: center; margin-bottom: 60px; }
.welfare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.welfare-card {
  background: white;
  border-radius: var(--r-card);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(26,32,53,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.welfare-card:hover { transform: translateY(-6px); }
.welfare-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.welfare-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.welfare-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.welfare-card p { font-size: 13px; color: var(--mid); line-height: 1.85; }

#education {
  background: var(--navy);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.edu-bg-text {
  position: absolute;
  bottom: -0.1em; right: -0.04em;
  font-family: var(--font-disp);
  font-size: 200px;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
}
.edu-head { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.edu-head .sec-title { color: white; }
.edu-head .sec-body { color: rgba(255,255,255,0.5); max-width: 560px; margin: 16px auto 0; }
.edu-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.edu-step {
  position: relative;
  padding: 40px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.edu-step:hover { background: rgba(255,255,255,0.06); }
.edu-step::after {
  content: '→';
  position: absolute;
  top: 50%; right: -14px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--orange);
  z-index: 2;
}
.edu-step:last-child::after { display: none; }
.edu-step-num { font-family: var(--font-jp); font-size: 52px; font-weight: 800; color: var(--orange); opacity: 0.18; line-height: 1; margin-bottom: 20px; }
.edu-step h3 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 12px; }
.edu-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.85; }
.edu-step-period {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(232,96,44,0.12);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

#numbers { background: var(--cream); padding: 100px 60px; }
.numbers-head { text-align: center; margin-bottom: 60px; }
.numbers-head .sec-body { margin-top: 16px; }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.num-card {
  background: var(--navy);
  border-radius: var(--r-card);
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.num-card:hover { transform: translateY(-6px); }
.num-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.num-big { font-family: var(--font-jp); font-size: 72px; font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.num-big em { font-style: normal; color: var(--yellow); font-size: 40px; }
.num-label { font-family: var(--font-jp); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.num-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.numbers-grid-sub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.num-sub-card {
  background: white;
  border-radius: var(--r-card);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,32,53,0.06);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.num-sub-card:hover { transform: translateY(-4px); }
.num-sub-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); }
.num-sub-big { font-family: var(--font-jp); font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.num-sub-big em { font-style: normal; color: var(--orange); font-size: 24px; }
.num-sub-label { font-family: var(--font-disp); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--mid); }

/* ═══════════════════════════════════════
   INFO PAGE
═══════════════════════════════════════ */
#recruit-types { background: var(--cream); padding: 80px 0 0; }
.types-head { text-align: center; margin-bottom: 52px; padding: 0 60px; }
.types-head .sec-body { margin-top: 16px; max-width: 540px; margin-left: auto; margin-right: auto; }

.rtype-z {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.rtype-z:nth-child(even) { direction: rtl; }
.rtype-z:nth-child(even) > * { direction: ltr; }

.rtype-photo { position: relative; overflow: hidden; min-height: 520px; background: var(--warm-white); }
.rtype-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.rtype-z:hover .rtype-photo img { transform: scale(1.03); }
.rtype-num-badge {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.rtype-text {
  background: var(--navy);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s;
}
.rtype-text:hover { background: var(--navy-lt); }
.rtype-text-alt {
  background: var(--warm-white);
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s;
}
.rtype-text-alt:hover { background: #ece9e1; }
.rtype-title { font-family: var(--font-jp); font-size: clamp(24px, 3vw, 36px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.rtype-text .rtype-title { color: white; }
.rtype-text-alt .rtype-title { color: var(--navy); }
.rtype-body { font-size: 14px; line-height: 2; margin-bottom: 24px; }
.rtype-text .rtype-body { color: rgba(255,255,255,0.65); }
.rtype-text-alt .rtype-body { color: var(--mid); }
.rtype-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.rtype-tag-item {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: rgba(232,96,44,0.18);
  color: var(--orange);
}
.rtype-checklist { list-style: none; margin-bottom: 28px; }
.rtype-checklist li {
  font-size: 13.5px;
  line-height: 1.8;
  padding: 7px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rtype-checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.rtype-text .rtype-checklist li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.07); }
.rtype-text-alt .rtype-checklist li { color: var(--mid); border-bottom-color: rgba(26,32,53,0.07); }
.rtype-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; }
.rtype-text .rtype-footer { border-top: 1px solid rgba(255,255,255,0.12); }
.rtype-text-alt .rtype-footer { border-top: 1px solid rgba(26,32,53,0.1); }
.rtype-link { font-family: var(--font-disp); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }
.rtype-text .rtype-link { color: rgba(255,255,255,0.45); }
.rtype-text-alt .rtype-link { color: rgba(26,32,53,0.4); }
.rtype-arrow { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.2s, transform 0.2s; }
.rtype-text .rtype-arrow { background: rgba(255,255,255,0.1); color: white; }
.rtype-text-alt .rtype-arrow { background: rgba(26,32,53,0.08); color: var(--navy); }
.rtype-text:hover .rtype-arrow, .rtype-text-alt:hover .rtype-arrow { background: var(--orange); color: white; transform: translateX(4px); }

#job-detail { background: var(--warm-white); padding: 100px 60px; }
.job-detail-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.job-detail-sticky { position: sticky; top: 90px; }
.job-detail-sticky .sec-tag { margin-bottom: 16px; }
.job-detail-sticky h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.job-cta-card {
  background: var(--orange);
  border-radius: var(--r-card);
  padding: 40px 36px;
  margin-top: 32px;
  text-align: center;
}
.job-cta-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 24px; }
.btn-cta {
  display: block;
  padding: 16px 0;
  border-radius: var(--r-pill);
  background: white;
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-cta-outline {
  display: block;
  padding: 14px 0;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.job-contact-box {
  margin-top: 28px;
  background: white;
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(26,32,53,0.06);
}
.job-contact-box h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}
.job-contact-box .contact-tel {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 10px;
}
.job-contact-box .contact-note { font-size: 11px; color: var(--mid); margin-top: 4px; }

.job-table-wrap { background: white; border-radius: var(--r-card); padding: 48px; box-shadow: 0 4px 24px rgba(26,32,53,0.06); margin-top: 36px; }
.job-table { width: 100%; border-collapse: collapse; }
.job-table tr { border-bottom: 1px solid rgba(26,32,53,0.06); }
.job-table tr:last-child { border-bottom: none; }
.job-table th { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange); text-align: left; padding: 20px 20px 20px 0; width: 34%; vertical-align: top; border-right: 2px solid rgba(232,96,44,0.15); }
.job-table td { font-size: 14px; color: var(--navy); padding: 20px 0 20px 24px; line-height: 1.85; vertical-align: top; }
.job-table .tag { display: inline-block; background: rgba(232,96,44,0.1); color: var(--orange); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: var(--r-pill); margin-right: 6px; margin-bottom: 4px; letter-spacing: 0.08em; }
.job-table-note { font-size: 13px; color: var(--mid); }

#flow { background: var(--cream); padding: 100px 60px; }
.flow-head { text-align: center; margin-bottom: 60px; }
.flow-head .sec-body { margin-top: 16px; }
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(232,96,44,0.2) 100%);
  z-index: 0;
}
.flow-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.flow-step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s, border-color 0.3s;
}
.flow-step:hover .flow-step-circle { background: var(--orange); border-color: var(--orange); }
.flow-step-num { font-family: var(--font-jp); font-size: 22px; font-weight: 800; color: white; }
.flow-step h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.flow-step p { font-size: 12px; color: var(--mid); line-height: 1.8; }
.flow-step-period {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(232,96,44,0.1);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   ENTRY FORM PAGE
═══════════════════════════════════════ */
#entry-section { padding: 80px 60px 120px; }
.entry-wrap { max-width: 1100px; margin: 0 auto; }
.form-card {
  background: white;
  border-radius: var(--r-big);
  padding: 60px 56px;
  box-shadow: 0 8px 40px rgba(26,32,53,0.08);
}
.form-head { margin-bottom: 44px; }
.form-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.form-head p { font-size: 14px; color: var(--mid); line-height: 1.9; }
.form-group { margin-bottom: 28px; }
.form-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.02em; }
.form-required { font-size: 10px; font-weight: 700; color: white; background: var(--orange); padding: 2px 8px; border-radius: var(--r-pill); letter-spacing: 0.1em; }
.form-optional { font-size: 10px; font-weight: 700; color: var(--mid); background: rgba(26,32,53,0.07); padding: 2px 8px; border-radius: var(--r-pill); letter-spacing: 0.1em; }
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26,32,53,0.1);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-jp);
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 4px rgba(232,96,44,0.08); }
.form-input::placeholder { color: var(--light); }
textarea.form-input { resize: vertical; min-height: 140px; line-height: 1.8; }
textarea.form-input--sm { min-height: 100px; }
select.form-input { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-radio input { accent-color: var(--orange); width: 16px; height: 16px; cursor: pointer; }
.form-radio span { font-size: 14px; color: var(--navy); }
.form-checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input { accent-color: var(--orange); width: 16px; height: 16px; cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.form-checkbox span { font-size: 13px; color: var(--navy); line-height: 1.7; }
.form-divider { border: none; border-top: 1px solid rgba(26,32,53,0.07); margin: 36px 0; }
.privacy-box { background: var(--warm-white); border-radius: 14px; padding: 24px; font-size: 13px; color: var(--mid); line-height: 1.9; margin-bottom: 28px; }
.privacy-box a { color: var(--orange); text-decoration: underline; }
.form-required-note { color: var(--orange); }
.form-submit {
  width: 100%;
  padding: 20px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: white;
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(232,96,44,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(232,96,44,0.5); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 14px; line-height: 1.8; }
.success-card { display: none; background: white; border-radius: var(--r-big); padding: 80px 60px; text-align: center; box-shadow: 0 8px 40px rgba(26,32,53,0.08); }
.success-card.show { display: block; }
.success-icon { font-size: 64px; margin-bottom: 24px; }
.success-card h3 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.success-card p { font-size: 15px; color: var(--mid); line-height: 2; margin-bottom: 36px; }
.success-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; border-radius: var(--r-pill); background: var(--orange); color: white; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: 0 6px 20px rgba(232,96,44,0.35); transition: transform 0.2s; }
.success-btn:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════
   CONTACT FORM 7 OVERRIDES
═══════════════════════════════════════ */
.wpcf7-form .form-row .wpcf7-form-control-wrap { display: block; }
.wpcf7-form .form-row .wpcf7-form-control-wrap .form-input { width: 100%; }

.form-radio-group .wpcf7-radio { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio-group .wpcf7-radio .wpcf7-list-item { margin: 0; }
.form-radio-group .wpcf7-radio .wpcf7-list-item label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-radio-group .wpcf7-radio .wpcf7-list-item input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }
.form-radio-group .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label { font-size: 14px; color: var(--navy); }

.form-checkbox-group .wpcf7-checkbox { display: flex; flex-direction: column; gap: 10px; }
.form-checkbox-group .wpcf7-checkbox .wpcf7-list-item { margin: 0; }
.form-checkbox-group .wpcf7-checkbox .wpcf7-list-item label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox-group .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-checkbox-group .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label { font-size: 13px; color: var(--navy); line-height: 1.7; }

.wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7-acceptance .wpcf7-list-item label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.wpcf7-acceptance .wpcf7-list-item-label { font-size: 13px; color: var(--navy); line-height: 1.7; }

textarea#question-field.form-input { min-height: 100px; }

.wpcf7-not-valid-tip { color: var(--orange); font-size: 12px; margin-top: 4px; display: block; }
.wpcf7-response-output { display: none !important; }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
  display: block !important;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--orange);
  border: 1px solid rgba(232,96,44,0.3);
  background: rgba(232,96,44,0.06);
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════ */
#privacy-section { padding: 80px 60px 120px; }
.privacy-layout { max-width: 1100px; margin: 0 auto; }
.policy-card { background: white; border-radius: var(--r-big); padding: 60px 56px; box-shadow: 0 8px 40px rgba(26,32,53,0.08); }
.policy-card-head { margin-bottom: 48px; }
.policy-card-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.policy-card-head p { font-size: 14px; color: var(--mid); line-height: 1.9; }
.policy-updated { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--mid); background: var(--warm-white); padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 32px; }
.policy-updated span { color: var(--orange); }
.policy-intro { background: var(--warm-white); border-radius: 16px; padding: 28px; margin-bottom: 48px; font-size: 14px; color: var(--mid); line-height: 1.95; }
.policy-article { margin-bottom: 48px; }
.policy-article:last-child { margin-bottom: 0; }
.article-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid rgba(232,96,44,0.12); }
.article-num { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: white; font-family: var(--font-disp); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.article-title { font-size: 17px; font-weight: 700; color: var(--navy); }
.article-body { font-size: 14px; color: var(--mid); line-height: 2; }
.article-body p { margin-bottom: 14px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body ul { list-style: none; margin: 14px 0; }
.article-body ul li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 14px; line-height: 1.85; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.article-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.article-body table th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.article-body table td { padding: 10px 14px; border-bottom: 1px solid rgba(26,32,53,0.07); color: var(--mid); line-height: 1.7; }
.article-body table tr:hover td { background: var(--warm-white); }
.highlight-box { background: rgba(232,96,44,0.06); border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 16px 0; font-size: 13px; color: var(--navy); line-height: 1.85; }
.contact-box { background: var(--navy); border-radius: 16px; padding: 28px; margin-top: 16px; }
.contact-box h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; letter-spacing: 0.06em; }
.contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.contact-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.contact-text strong { color: white; }

/* ═══════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════ */
.ham-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 201;
  flex-shrink: 0;
}
.ham-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
.mob-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(20px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 24px;
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mob-nav a:hover { color: var(--orange); }
.mob-nav-entry-btn {
  margin-top: 12px;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 16px 40px !important;
  background: var(--orange) !important;
  color: white !important;
  border-radius: var(--r-pill);
  font-size: 16px !important;
  box-shadow: 0 6px 20px rgba(232,96,44,0.4);
}

/* ── タッチデバイスでカーソル非表示 ── */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  header { padding: 0 20px; }
  nav { display: none; }
  .ham-btn { display: flex !important; }

  .float-entry-b { bottom: 20px; right: 16px; gap: 8px; }
  .float-btn-main-b, .float-btn-sub-b { padding: 12px 20px; font-size: 11px; }

  /* TOP page */
  .hero-content { padding: 0 24px 60px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
  .hero-ctas { align-items: flex-start; }
  #about { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .about-text { padding-left: 0; }
  #philosophy { padding: 60px 24px; }
  .phi-header { grid-template-columns: 1fr; gap: 20px; }
  .phi-cards { grid-template-columns: 1fr; }
  #work { padding: 60px 24px; }
  .work-header-b { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
  .company-wrap { grid-template-columns: 1fr; }
  .company-photo-area { min-height: 260px; margin-right: 0; margin-bottom: 0; border-radius: var(--r-card) var(--r-card) 0 0; }
  .company-info-card { margin-left: 0; margin-top: 0; border-radius: 0 0 var(--r-card) var(--r-card); padding: 36px 28px; }
  #interview { padding: 60px 24px; }
  .interview-top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .interview-grid { grid-template-columns: 1fr; }
  #culture { padding: 60px 24px 0; }
  .benefit-z { grid-template-columns: 1fr; min-height: auto; }
  .benefit-z:nth-child(even) { direction: ltr; }
  .benefit-z:nth-child(even) > * { direction: ltr; }
  .bz-img { min-height: 280px; }
  .bz-text, .bz-text-alt { padding: 40px 24px; }
  .bz-mini-stats { grid-template-columns: 1fr !important; }
  #recruit { padding: 60px 24px; }
  .recruit-top { grid-template-columns: 1fr; gap: 20px; }
  .recruit-cards { grid-template-columns: 1fr; }
  #entry { padding: 80px 24px; }
  .entry-btns { flex-direction: column; align-items: center; }

  /* Sub-pages */
  .page-hero-content { padding: 60px 24px 56px; }
  .breadcrumb { padding: 14px 24px; }

  /* Company */
  #overview { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .biz-intro { padding: 60px 24px 40px; }
  .biz-z { grid-template-columns: 1fr; min-height: auto; direction: ltr !important; }
  .biz-z.reverse { direction: ltr !important; }
  .biz-z > * { direction: ltr !important; }
  .biz-photo { min-height: 280px; }
  .biz-text, .biz-text-alt { padding: 48px 24px; }
  #mission { padding: 60px 24px; }
  .mission-header { grid-template-columns: 1fr; gap: 24px; }
  .mission-cards { grid-template-columns: 1fr; }
  #strengths { padding: 60px 24px; }
  .strengths-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .strengths-grid { grid-template-columns: 1fr; }
  #access { padding: 60px 24px; }
  .access-inner { grid-template-columns: 1fr; gap: 36px; }
  .access-tel { font-size: 20px; white-space: nowrap; }
  .access-tel a { color: var(--navy); text-decoration: none; }

  /* Interview list */
  #interview-list { padding: 60px 0 0; }
  .interview-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .interview-count { padding: 0 24px 32px; }
  .interview-z { grid-template-columns: 1fr; min-height: auto; }
  .interview-z:nth-child(even) { direction: ltr; }
  .iz-photo { min-height: 280px; }
  .iz-text, .iz-text-alt { padding: 48px 24px; }

  /* Interview member */
  .interview-hero { grid-template-columns: 1fr; }
  .interview-hero-text { padding: 40px 24px 48px; }
  .profile-strip { padding: 28px 24px; gap: 24px; }
  .article-wrap { padding: 40px 24px 80px; }
  .qa-block { flex-direction: column !important; gap: 24px; padding-bottom: 40px; margin-bottom: 40px; }
  .qa-content, .qa-image { flex: none; width: 100%; }
  .qa-image img { max-height: 300px; }
  .article-nav { grid-template-columns: 1fr; padding: 0 24px 60px; }

  /* Culture */
  .culture-intro { padding: 60px 24px 40px; }
  #welfare { padding: 60px 24px; }
  .welfare-grid { grid-template-columns: 1fr; }
  #education { padding: 60px 24px; }
  .edu-steps { grid-template-columns: 1fr; }
  .edu-step::after { display: none; }
  #numbers { padding: 60px 24px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-grid-sub { grid-template-columns: 1fr 1fr; }

  /* Info */
  #recruit-types { padding: 60px 0 0; }
  .types-head { padding: 0 24px; }
  .rtype-z { grid-template-columns: 1fr; min-height: auto; }
  .rtype-z:nth-child(even) { direction: ltr; }
  .rtype-photo { min-height: 280px; }
  .rtype-text, .rtype-text-alt { padding: 48px 24px; }
  #job-detail { padding: 60px 24px; }
  .job-detail-wrap { grid-template-columns: 1fr; }
  .job-detail-sticky { position: static; }
  .job-table-wrap { padding: 32px 24px; }
  #flow { padding: 60px 24px; }
  .flow-steps { grid-template-columns: 1fr; gap: 32px; }
  .flow-steps::before { display: none; }

  /* Entry form */
  #entry-section { padding: 48px 24px 80px; }
  .form-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Privacy */
  #privacy-section { padding: 48px 24px 80px; }
  .policy-card { padding: 40px 24px; }

  /* Footer */
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
