/* ═══════════════════════════════════════════════════════════════
   C-Connect Rich Static — style.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue:         #009fe8;
  --green:        #79bc2a;
  --navy:         #0b308e;
  --lime:         #007635;
  --brand-blue:   #0d68b2;
  --brand-green:  #68b334;
  --brand-green-dark: #4f8f2e;
  --brand-yellow: #f2cf00;
  --deep:         #0c1118;
  --text:         #111319;
  --muted:        #5d6572;
  --line:         #e4e9ef;
  --pale:         #f5f8fb;
  --yellow:       #ffdf00;
  --accent-dark:  #111722;
  --soft-ink:     #eef1f4;
  --radius:       24px;
  --shadow:       0 20px 60px rgba(15,28,52,.11);
  --ease:         cubic-bezier(.16,1,.3,1);
  --motion-scale: 1;
}

/* ─── Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .015em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff;
  background: #0b308e;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.skip-target {
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: 100px;
}
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #0d68b2;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #fff;
}
.sp-break { display: none; }
.pc-break { display: block; }
.symbol-source {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ─── Shell ───────────────────────────────────────────────────── */
.site-shell {
  overflow: hidden;
  background: radial-gradient(circle at 28% 0%, #fff 0%, #fff 36%, #f6faff 100%);
}

/* ─── Header ──────────────────────────────────────────────────── */
.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 64px);
  padding: 0 clamp(24px, 4vw, 72px);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228,233,239,.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 190px;
}
.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}

/* Nav */
.global-nav {
  display: flex;
  gap: clamp(22px, 3vw, 40px);
  margin-left: clamp(8px, 2vw, 32px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.global-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .25s;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.global-nav a:hover::after { transform: scaleX(1); }

/* Buttons */
.header-contact, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  transition: transform .3s var(--ease), box-shadow .3s;
  cursor: pointer;
}
.header-contact {
  margin-left: auto;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green-dark) 100%);
  box-shadow: 0 16px 34px rgba(13,104,178,.2);
}
.header-contact:hover { transform: translateY(-2px); }
.header-contact span { color: #fff; }
.button span,
.news-pill i, .news-head span, .news-row i {
  color: currentColor;
  font-size: 21px;
  line-height: 1;
}

.external-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: currentColor;
  font-style: normal;
  line-height: 1;
}

.external-arrow::before {
  content: "\2197";
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9em;
  font-weight: 900;
  line-height: 1;
}

.button-dark {
  background:
    linear-gradient(135deg, #050608 0%, #101722 58%, #10283a 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.button-dark:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(13,54,86,.22), 0 0 0 1px rgba(255,255,255,.1) inset; }

.button-light, .button-outline {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(13,104,178,.18);
  box-shadow: 0 10px 24px rgba(13,54,86,.07);
}
.button-light:hover, .button-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(104,179,52,.34);
  box-shadow: 0 16px 34px rgba(13,54,86,.11);
}

.button-white {
  background: #fff;
  color: #111;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.button-white:hover { transform: translateY(-3px); }

.menu-button {
  position: relative;
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 4px;
}
.menu-button span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: #111;
  margin: 0;
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.menu-button span:first-child {
  transform: translateY(-5px);
}
.menu-button span:last-child {
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
}

/* ─── Sections ────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px clamp(24px, 5vw, 80px);
}
.section-full {
  position: relative;
  min-height: 900px;
  padding: 152px clamp(24px, 5vw, 80px) 80px;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  overflow: hidden;
  background: linear-gradient(125deg, #fff 0%, #fff 52%, #f6fbff 100%);
}

/* Orbit decorations — CSS animations from motion prototype */
.orbit {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(12,50,100,.07));
}
.orbit-a {
  width: 540px; height: 540px;
  border-width: 98px;
  border-right-color: var(--green);
  border-top-color: var(--green);
  right: -60px; top: 170px;
  animation: orbit-drift-a 30s ease-in-out infinite alternate;
}
.orbit-b {
  width: 330px; height: 330px;
  border-width: 70px;
  border-left-color: var(--navy);
  border-bottom-color: var(--green);
  left: -100px; bottom: 34px;
  transform: rotate(18deg);
  animation: orbit-drift-b 24s ease-in-out infinite alternate;
}
.orbit-c {
  width: 240px; height: 240px;
  border-width: 58px;
  border-top-color: #111722;
  left: 268px; top: 124px;
  transform: rotate(10deg);
  animation: orbit-drift-c 20s ease-in-out infinite alternate;
}

@keyframes orbit-drift-a {
  0%   { transform: rotate(-5deg) scale(1); }
  50%  { transform: rotate(4deg) scale(1.018); }
  100% { transform: rotate(10deg) scale(.994); }
}
@keyframes orbit-drift-b {
  0%   { transform: rotate(14deg); }
  100% { transform: rotate(26deg) translate(12px, -8px); }
}
@keyframes orbit-drift-c {
  0%   { transform: rotate(6deg); }
  100% { transform: rotate(20deg) translate(-8px, 14px); }
}

/* Hero layout */
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 54px;
}
.vertical-line {
  position: absolute;
  left: 0; top: 42px;
  width: 3px; height: 155px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-green) 58%, #111 100%);
  border-radius: 2px;
}
.eyebrow-jp {
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: .03em;
  color: #252c35;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: 1.22;
  letter-spacing: 0;
  margin: 0 0 28px;
  font-weight: 900;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero-small-no {
  display: inline !important;
  font-size: .62em;
  vertical-align: .08em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 700;
  color: #262d37;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero visual — restored */
.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(520px, 40vw);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* News pill */
.news-pill {
  position: absolute;
  right: 0; bottom: 52px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-width: min(580px, 48vw);
  padding: 17px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(13,54,86,.12);
  border: 1px solid rgba(13,104,178,.16);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
}
.news-pill b { color: var(--brand-blue); font-size: 17px; }
.news-pill time { color: var(--muted); font-size: 12px; white-space: nowrap; }
.news-pill span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #353b44; }

/* ─── About ───────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.section-kicker {
  color: var(--brand-blue);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.strength-card span,
.vision-pillar-list article span,
.foundation-grid span,
.recruit-culture-grid span,
.interview-link-grid span,
.service-process-grid span,
.recruit-number-grid strong {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.38;
  margin: 0 0 26px;
  letter-spacing: 0;
  font-weight: 900;
}
.copy-block p:not(.section-kicker), .section-heading p {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 700;
  color: #37404a;
}
.copy-block p + p { margin-top: 14px; }
.copy-block .button { margin-top: 26px; }

.about .copy-block h2 {
  font-size: clamp(30px, 3.1vw, 42px);
  word-break: keep-all;
  overflow-wrap: normal;
}

.photo-panel { position: relative; }
.photo-panel::before {
  content: "";
  position: absolute;
  inset: -60px -76px -60px 100px;
  background:
    linear-gradient(135deg, rgba(13,104,178,.1), rgba(104,179,52,.1));
  clip-path: polygon(18% 0, 100% 0, 100% 80%, 72% 100%, 0 100%, 0 26%);
  z-index: 0;
}
.photo-mask {
  position: relative;
  z-index: 1;
  min-height: 400px;
  border-radius: 0 34px 0 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
/* Office photo placeholder — clean tinted slate */
.office-image {
  background: linear-gradient(145deg, #c4d4e4 0%, #aec0d2 50%, #94adc2 100%);
}
.office-image img,
.service-image img,
.people-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.office-image img {
  min-height: 400px;
}

/* ─── Strength ────────────────────────────────────────────────── */
.section-tint {
  background:
    radial-gradient(circle at 12% 10%, rgba(0,159,232,.08), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(121,188,42,.1), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.section-heading.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.strength {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(13,104,178,.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(104,179,52,.1), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #fff 72%);
  border-top: 1px solid rgba(220,228,237,.72);
}
.strength::before,
.strength::after {
  content: none;
}
.strength::before {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -120px;
  border-width: 86px;
  border-left-color: rgba(121,188,42,.16);
  border-bottom-color: rgba(17,23,34,.12);
  transform: rotate(-16deg);
}
.strength::after {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -140px;
  border-width: 62px;
  border-top-color: rgba(11,48,142,.1);
  border-right-color: rgba(0,118,53,.1);
  transform: rotate(28deg);
}
.strength .section-inner {
  z-index: 1;
}
.strength .section-heading.center {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: end;
  max-width: none;
  text-align: left;
  margin: 0 0 70px;
}
.strength .section-heading.center .section-kicker {
  grid-column: 1;
  grid-row: 1;
}
.strength .section-heading.center h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}
.strength .section-heading.center p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 600px;
  margin: 0 0 8px auto;
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  counter-reset: strength;
  border-top: 1px solid rgba(14,43,80,.16);
  border-left: 1px solid rgba(14,43,80,.16);
  background: rgba(255,255,255,.72);
}
.feature-card {
  counter-increment: strength;
  position: relative;
  min-height: 238px;
  padding: 46px 40px 48px 132px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,251,255,.88));
  border: 0;
  border-right: 1px solid rgba(14,43,80,.16);
  border-bottom: 1px solid rgba(14,43,80,.16);
  border-radius: 0;
  box-shadow: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.feature-card::before {
  content: "0" counter(strength);
  position: absolute;
  left: 38px;
  top: 48px;
  color: #111722;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.feature-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, #fff 0%, #f4fbff 54%, #eef8ff 100%);
  box-shadow: none;
}
.feature-icon {
  position: absolute;
  right: 18px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  margin: 0;
  border-radius: 0;
  z-index: 0;
}
.feature-icon i {
  display: block;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 68% 100%, 0 100%);
}
.feature-card:nth-child(1) .feature-icon i { background: linear-gradient(135deg, rgba(17,23,34,.16), rgba(17,23,34,.04)); }
.feature-card:nth-child(2) .feature-icon i { background: linear-gradient(135deg, rgba(121,188,42,.18), rgba(121,188,42,.04)); }
.feature-card:nth-child(3) .feature-icon i { background: linear-gradient(135deg, rgba(11,48,142,.15), rgba(11,48,142,.04)); }
.feature-card:nth-child(4) .feature-icon i { background: linear-gradient(135deg, rgba(0,118,53,.16), rgba(0,118,53,.04)); }
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}
.feature-card h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: #101722;
  letter-spacing: 0;
  font-weight: 900;
}
.feature-card p {
  max-width: 360px;
  margin: 0;
  color: #33404d;
  line-height: 1.95;
  font-weight: 600;
  font-size: 14px;
}

.strength-system {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
}
.system-overview {
  position: relative;
  min-height: 520px;
  padding: clamp(34px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 16%, rgba(13,104,178,.28), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(104,179,52,.2), transparent 32%),
    linear-gradient(145deg, rgba(8,14,22,.99), rgba(18,29,42,.97));
  color: #fff;
  overflow: hidden;
}
.system-overview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.system-overview::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green), var(--brand-yellow));
}
.system-overview > * {
  position: relative;
  z-index: 1;
}
.system-overview .section-kicker {
  color: rgba(255,255,255,.68);
}
.system-overview h3 {
  max-width: 420px;
  margin: 0 0 24px;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 900;
}
.system-overview p:not(.section-kicker) {
  max-width: 420px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
}
.system-stat {
  position: absolute;
  left: clamp(34px, 4vw, 56px);
  right: clamp(34px, 4vw, 56px);
  bottom: clamp(30px, 4vw, 50px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.system-stat span {
  font-size: clamp(68px, 8vw, 112px);
  line-height: .82;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff 0%, #d7f0ff 44%, #dff3d1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.system-stat p {
  max-width: 190px;
  margin: 0 0 4px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 800;
}
.system-layers {
  position: relative;
  display: grid;
  align-content: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.96));
  border-top: 1px solid rgba(13,104,178,.16);
}
.system-layers::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 38px;
  bottom: 38px;
  width: 1px;
  background: linear-gradient(180deg, rgba(13,104,178,.4), rgba(104,179,52,.28), rgba(242,207,0,.26));
}
.system-layer {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  min-height: 130px;
  padding: 30px 36px 30px 0;
  border-bottom: 1px solid rgba(13,104,178,.13);
  background:
    linear-gradient(90deg, rgba(247,251,255,.92), rgba(255,255,255,.98));
}
.system-layer span {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 2px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.system-layer:nth-child(2) span { background: var(--brand-green-dark); }
.system-layer:nth-child(3) span { background: var(--navy); }
.system-layer:nth-child(4) span { background: #b69b00; }
.system-layer h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 900;
}
.system-layer p {
  max-width: 560px;
  margin: 0;
  color: #44505d;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

.strength-board {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: stretch;
}

.strength-lead-card {
  position: relative;
  min-height: 430px;
  padding: clamp(36px, 4.6vw, 62px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(13,104,178,.36), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(104,179,52,.26), transparent 34%),
    linear-gradient(145deg, #080d14 0%, #101a25 58%, #152219 100%);
  box-shadow: 0 28px 76px rgba(13,54,86,.16);
  overflow: hidden;
}

.strength-lead-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.14);
}

.strength-lead-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green), var(--brand-yellow));
}

.strength-lead-card > * {
  position: relative;
  z-index: 1;
}

.strength-lead-card .section-kicker {
  color: rgba(255,255,255,.66);
}

.strength-lead-card h2 {
  max-width: 540px;
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.strength-lead-card h2 span {
  display: block;
  white-space: nowrap;
}

.strength-subcopy {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.55;
}

.strength-description {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.strength-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(13,104,178,.16);
  background: #fff;
  box-shadow: 0 18px 56px rgba(13,54,86,.06);
}

.strength-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(150px, .46fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 122px;
  padding: 28px 32px;
  border: 1px solid rgba(13,104,178,.14);
  border-top: 0;
  background: rgba(255,255,255,.98);
  overflow: hidden;
}

.strength-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--brand-blue);
}

.strength-card:nth-child(2)::before { background: var(--brand-green-dark); }
.strength-card:nth-child(3)::before { background: var(--navy); }
.strength-card:nth-child(4)::before { background: var(--brand-yellow); }

.strength-card span {
  display: block;
  margin: 0;
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .14em;
}

.strength-card:nth-child(2) span { color: var(--brand-green-dark); }
.strength-card:nth-child(3) span { color: var(--navy); }
.strength-card:nth-child(4) span { color: #b69b00; }

.strength-card h3 {
  margin: 0;
  color: #111319;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.32;
  font-weight: 900;
}

.strength-card p {
  margin: 0;
  color: #3b4652;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.85;
}

/* ─── Service ─────────────────────────────────────────────────── */
.service {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.service::before, .news::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border: 62px solid rgba(17,23,34,.065);
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  left: -160px; bottom: -90px;
  transform: rotate(28deg);
}
.service::before,
.news::before { content: none; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dde6f0;
  box-shadow: 0 18px 52px rgba(18,34,60,.09);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 66px rgba(18,34,60,.14);
}
.service-image { height: 200px; position: relative; overflow: hidden; }
.cartridges,
.femcare,
.printer { background: linear-gradient(138deg, #f0f4f8, #fff); }
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(7,18,32,.18));
  pointer-events: none;
}
.service-card .service-image {
  display: grid;
  place-items: center;
  padding: 32px;
}

.service-card .service-image::after {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(7,18,32,.06));
}

.service-card .service-image img {
  width: min(76%, 260px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
}
.service-body { padding: 30px 32px; }
.service-body h3 {
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: 0;
  font-weight: 900;
}
.ink h3    { color: #4eb316; }
.nunona h3 { color: #ef6da5; }
.print h3  { color: #0076d6; }
.service-body p {
  font-weight: 700;
  line-height: 1.88;
  color: #2f3942;
  margin: 0 0 22px;
  font-size: 14px;
}
.service-body a {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
}
.service-body a span { color: #111722; font-size: 20px; float: right; }
.service-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(13,104,178,.16);
  border-left: 1px solid rgba(13,104,178,.12);
  border-right: 1px solid rgba(13,104,178,.12);
  box-shadow: 0 18px 52px rgba(13,54,86,.06);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 150px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,104,178,.13);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.service-row:hover {
  background: #fff;
  transform: translateX(4px);
}
.service-row-media {
  position: relative;
  min-height: 194px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #edf3f8, #f8fbff);
}
.service-row-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.78);
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.38) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,0));
  background-size: 28px 28px, 28px 28px, auto;
}
.service-row-media::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 42%;
  height: 46%;
  border-radius: 8px 8px 0 8px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 40px rgba(13,54,86,.12);
  transform: skewX(-8deg);
}
.service-row.ink .service-row-media {
  background:
    radial-gradient(circle at 20% 28%, rgba(104,179,52,.2), transparent 30%),
    linear-gradient(135deg, rgba(13,104,178,.08), rgba(255,255,255,.24)),
    #eef5f2;
}
.service-row.nunona .service-row-media {
  background:
    radial-gradient(circle at 18% 26%, rgba(242,207,0,.16), transparent 30%),
    linear-gradient(135deg, rgba(84,72,88,.08), rgba(255,255,255,.22)),
    #f4f1ee;
}
.service-row.print .service-row-media {
  background:
    radial-gradient(circle at 22% 30%, rgba(13,104,178,.2), transparent 30%),
    linear-gradient(135deg, rgba(11,48,142,.1), rgba(255,255,255,.22)),
    #eef3f8;
}
.service-row-body {
  display: grid;
  grid-template-columns: minmax(190px, .62fr) minmax(0, 1.35fr) auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 34px clamp(24px, 4vw, 54px);
}
.service-row-body h3,
.service-logo {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 900;
  color: #111722;
  word-break: keep-all;
}

.service-logo {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.service-logo img {
  width: auto;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
}

.service-row.ink .service-logo img {
  max-width: 250px;
}

.service-row.print .service-logo img {
  max-width: 230px;
}
.service-row-body p {
  max-width: 560px;
  margin: 0;
  color: #3d4752;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.9;
  font-weight: 700;
}
.service-row-body a {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  color: #162231;
}
.service-row-body a span {
  color: currentColor;
  font-size: 20px;
  margin-left: 10px;
}
.action-row { margin-top: 44px; }
.center { text-align: center; }

/* ─── Recruit ─────────────────────────────────────────────────── */
.recruit {
  background:
    radial-gradient(circle at 86% 10%, rgba(0,159,232,.28), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(104,179,52,.2), transparent 34%),
    radial-gradient(circle at 72% 78%, rgba(242,207,0,.09), transparent 24%),
    linear-gradient(138deg, #05080d 0%, #0d131c 56%, #121a18 100%);
  color: #fff;
  overflow: hidden;
}
.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 48%, rgba(0,159,232,.18) 48% 48.4%, transparent 48.4% 100%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}
.recruit-inner {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.inverse .section-kicker { color: rgba(255,255,255,.62); }
.recruit .section-kicker { color: rgba(242,207,0,.82); }
.inverse h2 { color: #fff; letter-spacing: 0; }
.inverse p:not(.section-kicker) {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.95;
}
.arc {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}
.arc-left {
  width: 200px; height: 200px;
  border-width: 42px;
  border-left-color: var(--green);
  border-bottom-color: var(--green);
  left: -52px; bottom: -70px;
  opacity: .55;
}
.arc-right {
  width: 158px; height: 158px;
  border-width: 36px;
  border-top-color: rgba(121,188,42,.5);
  border-right-color: rgba(121,188,42,.5);
  right: 28px; top: 28px;
  transform: rotate(18deg);
}

/* People mosaic — clean photo slot placeholders */
.people-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 10px;
}
.people-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.meeting {
  grid-column: 1 / 3;
  background: linear-gradient(148deg, #192436, #22303f);
}
.logistics {
  background: linear-gradient(148deg, #1c2220, #293028);
}
.support {
  background: linear-gradient(148deg, #1a2130, #1d2d48);
}
.recruit-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 220px;
  gap: 20px;
  align-items: stretch;
}
.recruit-proof::before {
  content: "";
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.recruit-photo-space {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}
.recruit-photo-space div {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    linear-gradient(135deg, #202c38, #131b24);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
}
.recruit-photo-space div::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.16);
}
.recruit-photo-space div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 5px;
  background: linear-gradient(90deg, rgba(13,104,178,.74), rgba(104,179,52,.74));
}
.recruit-photo-space div:nth-child(1) {
  grid-row: 1 / 3;
}
.recruit-photo-space div:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04)),
    linear-gradient(135deg, #1a2632, #101820);
}
.recruit-photo-space div:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(121,188,42,.16), rgba(255,255,255,.04)),
    linear-gradient(135deg, #1a2422, #111820);
}
.recruit-cues {
  display: grid;
  align-content: stretch;
  border-top: 1px solid rgba(255,255,255,.16);
}
.recruit-cues span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  padding: 0 0 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.recruit-cues span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.recruit-cues span:nth-child(1)::before { background: var(--brand-blue); }
.recruit-cues span:nth-child(2)::before { background: var(--brand-green); }
.recruit-cues span:nth-child(3)::before { background: var(--brand-yellow); }

.recruit-visual {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 34px 0 34px;
  box-shadow: 0 34px 84px rgba(0,0,0,.26);
}

.recruit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,9,14,.46), rgba(5,9,14,.08) 52%, rgba(5,9,14,.28)),
    linear-gradient(180deg, rgba(5,9,14,0), rgba(5,9,14,.38));
}

.recruit-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.recruit-visual figcaption {
  position: absolute;
  left: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 46px);
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 520px;
  color: #fff;
}

.recruit-visual figcaption span {
  color: var(--brand-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.recruit-visual figcaption b {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  font-weight: 900;
}

/* ─── News ────────────────────────────────────────────────────── */
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.news-head a {
  color: #162231;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
}
.news-list {
  border-top: 1px solid rgba(13,104,178,.18);
}
.news-row {
  display: grid;
  grid-template-columns: 132px 96px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(13,104,178,.12);
  font-weight: 800;
  transition: background .2s, padding .2s var(--ease);
  padding: 0 18px;
}
.news-row:hover {
  background: linear-gradient(90deg, rgba(13,104,178,.05), rgba(104,179,52,.04));
  padding-left: 24px;
}
.news-row time { font-size: 13px; color: var(--muted); }
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
}
.tag.blue  { background: #006eb6; }
.tag.green { background: var(--brand-green-dark); }
.news-row b { font-size: 14px; color: #17202b; }
.news-row i { font-style: normal; color: var(--brand-blue); font-size: 19px; }

/* ─── Contact ─────────────────────────────────────────────────── */
.contact {
  padding-top: 40px;
  background:
    radial-gradient(circle at 18% 12%, rgba(0,159,232,.08), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(121,188,42,.1), transparent 32%),
    linear-gradient(180deg, #fff, #f4f8fc);
}
.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 60px 72px;
  border-radius: 22px;
  border: 1px solid rgba(13,104,178,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(248,252,255,.95) 64%, rgba(248,255,241,.92) 100%);
  box-shadow: 0 22px 62px rgba(13,54,86,.1);
  overflow: hidden;
}
.contact-orbit {
  display: none;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.95), rgba(229,246,255,.95) 48%, rgba(235,248,222,.92));
  box-shadow: inset 0 0 0 1px rgba(13,104,178,.12), 0 14px 30px rgba(13,104,178,.1);
  flex-shrink: 0;
}
.contact-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: 0;
}
.contact-panel p:not(.section-kicker) {
  font-weight: 700;
  color: #3e4852;
  line-height: 1.85;
  margin: 0;
  font-size: 15px;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 72px clamp(24px, 5vw, 80px) 32px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 72px;
}
.footer-brand p {
  font-weight: 700;
  line-height: 1.75;
  color: #424b55;
  margin: 18px 0 0;
  font-size: 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .9fr) minmax(0, .9fr) minmax(260px, 1.35fr);
  gap: clamp(28px, 3.5vw, 48px);
}
.footer-links h4 {
  font-size: 11px;
  margin: 0 0 18px;
  letter-spacing: .12em;
  color: var(--text);
}
.footer-links a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #404a54;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-links a:hover { color: #111722; }
.footer-bottom {
  max-width: 1240px;
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  align-items: center;
  color: #68717d;
  font-size: 12px;
  font-weight: 700;
}
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: #111722; }
.footer-bottom small { margin-left: auto; }

/* ─── Review refinements 2026-07-07 ───────────────────────────── */
.strength-board--simple {
  grid-template-columns: 1fr;
  gap: 28px;
}

.strength-lead-card--wide {
  min-height: auto;
  padding: clamp(34px, 4vw, 54px);
}

.strength-lead-card--wide h2 {
  display: flex;
  flex-wrap: wrap;
  gap: .28em;
  max-width: none;
  margin-bottom: 18px;
}

.strength-lead-card--wide h2 span {
  display: inline;
}

.strength-lead-card--wide .strength-subcopy,
.strength-lead-card--wide .strength-description {
  max-width: 760px;
}

.strength-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 18px 56px rgba(13,54,86,.06);
}

.strength-card {
  display: block;
  min-height: 230px;
  padding: 30px 28px 34px;
  border-top: 1px solid rgba(13,104,178,.14);
  border-left: 0;
}

.strength-card:first-child {
  border-left: 1px solid rgba(13,104,178,.14);
}

.strength-card::before {
  left: 28px;
  right: auto;
  top: 28px;
  bottom: auto;
  width: 42px;
  height: 4px;
  border-radius: 999px;
}

.strength-card span {
  margin: 28px 0 52px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.strength-card h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 28px);
}

.service-logo {
  justify-self: start;
  transform: translateX(-10px);
}

.service-logo img {
  max-width: 190px;
}

.service-row.ink .service-logo img {
  max-width: 218px;
}

.service-row.print .service-logo img {
  max-width: 198px;
}

.service-detail-body::after,
.service-detail-card.ink .service-detail-body::after,
.service-detail-card.nunona .service-detail-body::after,
.service-detail-card.print .service-detail-body::after {
  content: none;
}

.service-process-grid h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.access-card--pending {
  display: block;
}

.vision-pillar-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision-pillar-list h3 {
  font-size: clamp(26px, 2.7vw, 42px);
}

.vision-pillar-list b {
  display: block;
  margin-bottom: 28px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
  letter-spacing: .08em;
  color: var(--brand-blue);
}

.recruit-number-grid article {
  display: flex;
  flex-direction: column;
}

.recruit-number-grid article > span {
  order: -1;
  margin-bottom: 18px;
}

.recruit-number-grid article > strong {
  margin-bottom: 16px;
}

.footer-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.footer-links h4 {
  display: none;
}

.news-category-list a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dce6f0;
  border-radius: 999px;
  color: #17202b;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.news-category-list a.is-active {
  color: #fff;
  border-color: transparent;
  background: #111722;
}

.news-category-link--news {
  color: #006eb6;
  border-color: rgba(0,110,182,.28);
  background: rgba(0,110,182,.06);
}

.news-category-link--press-release {
  color: #3f8f2f;
  border-color: rgba(63,143,47,.3);
  background: rgba(63,143,47,.07);
}

.news-category-link--news.is-active {
  color: #fff;
  background: #006eb6;
}

.news-category-link--press-release.is-active {
  color: #fff;
  background: #3f8f2f;
}

@media (max-width: 1100px) {
  .strength-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-pillar-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .strength-lead-card--wide h2 {
    display: block;
  }

  .strength-card-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .strength-card,
  .strength-card:first-child {
    border-left: 1px solid rgba(13,104,178,.14);
  }

  .service-logo {
    transform: none;
  }

  .footer-links {
    gap: 10px;
  }
}

/* ─── Vision page ─────────────────────────────────────────────── */
.vision-page {
  background: #fff;
}

.vision-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(104,179,52,.16), transparent 34%),
    radial-gradient(circle at 18% 4%, rgba(13,104,178,.12), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f7fbff 58%, #f8fff3 100%);
}

.vision-statement {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}

.vision-statement h2 {
  margin-bottom: 0;
}

.vision-statement__body {
  padding-top: 8px;
}

.vision-statement__body p {
  margin: 0;
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.vision-statement__body p + p {
  margin-top: 18px;
}

.vision-statement h2 span {
  display: block;
}

.vision-core-section {
  overflow: hidden;
}

.vision-core-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.vision-pillar-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
}

.vision-pillar-list article {
  position: relative;
  min-height: 240px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(13,104,178,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
  box-shadow: 0 18px 48px rgba(13,54,86,.06);
  overflow: hidden;
}

.vision-pillar-list article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  width: auto;
  border-radius: 0;
  background: var(--brand-blue);
}

.vision-pillar-list article:nth-child(2)::before {
  background: var(--brand-green-dark);
}

.vision-pillar-list article:nth-child(3)::before {
  background: var(--brand-yellow);
}

.vision-pillar-list article span {
  position: static;
  display: block;
  margin-bottom: 42px;
  color: #111722;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.vision-pillar-list h3 {
  margin: 0 0 10px;
  color: #111319;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.vision-pillar-list p {
  max-width: 620px;
  margin: 0;
  color: #3d4752;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.vision-origin-grid {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.vision-origin-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(13,104,178,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.95));
  box-shadow: 0 20px 58px rgba(13,54,86,.07);
}

.vision-origin-card p {
  margin: 0;
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.origin-symbol {
  position: relative;
  width: 136px;
  height: 136px;
}

.origin-symbol span,
.origin-symbol i {
  position: absolute;
  display: block;
}

.origin-symbol span {
  width: 64px;
  height: 64px;
  border: 20px solid transparent;
  border-radius: 50%;
}

.origin-symbol span:nth-child(1) {
  left: 0;
  top: 0;
  border-top-color: var(--brand-blue);
  border-left-color: var(--brand-blue);
}

.origin-symbol span:nth-child(2) {
  right: 0;
  top: 0;
  border-top-color: var(--brand-green);
  border-right-color: var(--brand-green);
}

.origin-symbol span:nth-child(3) {
  left: 0;
  bottom: 0;
  border-left-color: var(--navy);
  border-bottom-color: var(--navy);
}

.origin-symbol span:nth-child(4) {
  right: 0;
  bottom: 0;
  border-right-color: var(--brand-green-dark);
  border-bottom-color: var(--brand-green-dark);
}

.origin-symbol i {
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-yellow);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 12px #fff;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .global-header { height: 72px; gap: 10px; padding: 0 18px; }
  .global-nav, .header-contact { display: none; }
  .menu-button {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open .menu-button span:first-child {
    transform: rotate(32deg);
  }
  body.is-menu-open .menu-button span:last-child {
    transform: rotate(-32deg);
  }
  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: block;
    overflow-y: auto;
    padding: 22px 22px 40px;
    background:
      radial-gradient(420px 320px at 96% 100%, rgba(121,188,42,.07), transparent 70%),
      radial-gradient(380px 300px at 2% 86%, rgba(0,159,232,.06), transparent 70%),
      #fff;
    border-bottom: 1px solid rgba(13,104,178,.12);
    box-shadow: 0 24px 60px rgba(18,34,60,.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
  }
  body.is-menu-open .mobile-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-nav__links {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(13,104,178,.12);
  }
  .mobile-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    border-bottom: 1px solid rgba(13,104,178,.12);
    color: #111722;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
  }
  .mobile-nav__links a::after {
    content: "›";
    color: var(--brand-blue);
    font-size: 20px;
    line-height: 1;
  }
  .mobile-nav__links .mobile-nav__contact {
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green-dark));
    box-shadow: 0 14px 30px rgba(13,104,178,.18);
  }
  .mobile-nav__links .mobile-nav__contact::after {
    display: none;
  }
  .brand,
  .brand-logo {
    width: 154px;
    min-width: 154px;
  }

  .section-full { min-height: auto; padding: 112px 22px 56px; }
  .section { padding: 72px 22px; }

  .hero-grid, .split, .recruit-inner, .footer-inner { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; padding: 36px 24px; gap: 20px; }

  .hero-copy { padding-left: 22px; }
  .vertical-line { height: 124px; top: 32px; }
  .eyebrow-jp { font-size: 15px; }
  .hero h1 { font-size: 40px; letter-spacing: 0; }
  .hero-lead { font-size: 14px; }
  .hero-visual { display: none; }
  .orbit-a { width: 330px; height: 330px; border-width: 62px; right: -180px; top: 138px; }
  .orbit-b { width: 210px; height: 210px; border-width: 46px; left: -130px; bottom: 160px; }
  .orbit-c { width: 170px; height: 170px; border-width: 40px; left: 100px; top: 82px; }

  .news-pill {
    position: relative;
    right: auto; bottom: auto;
    min-width: 0;
    margin-top: 40px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .news-pill time { display: none; }

  .hero-actions { gap: 12px; }
  .button { width: 100%; min-height: 52px; }

  .section-heading.center { text-align: left; }
  .strength .section-heading.center {
    display: block;
    margin-bottom: 42px;
  }
  .strength .section-heading.center p:not(.section-kicker) {
    margin: 0;
  }
  .strength-grid, .service-grid { grid-template-columns: 1fr; }
  .strength-system {
    grid-template-columns: 1fr;
  }
  .strength-board {
    grid-template-columns: 1fr;
  }
  .strength-lead-card {
    min-height: 360px;
    padding: 34px 26px;
  }
  .strength-card-grid {
    grid-template-columns: 1fr;
  }
  .strength-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 24px;
  }
  .system-overview {
    min-height: 420px;
    padding: 34px 26px;
  }
  .system-overview::before {
    inset: 14px;
  }
  .system-stat {
    left: 26px;
    right: 26px;
  }
  .system-layers::before {
    left: 32px;
  }
  .system-layer {
    grid-template-columns: 64px 1fr;
    min-height: auto;
    padding: 24px 22px 24px 0;
  }
  .system-layer span {
    width: 34px;
    height: 34px;
  }
  .service-list {
    gap: 0;
  }
  .service-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .service-row:hover {
    transform: none;
  }
  .service-row-media {
    min-height: 180px;
  }
  .service-row-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 22px 30px;
  }
  .service-row-body a {
    justify-self: start;
    margin-top: 4px;
  }
  .feature-card {
    min-height: auto;
    padding: 36px 24px 38px 86px;
  }
  .feature-card::before {
    left: 24px;
    top: 39px;
  }
  .feature-icon {
    width: 132px;
    height: 132px;
    right: -10px;
    bottom: -42px;
  }
  .photo-mask { min-height: 260px; }
  .photo-panel::before { inset: -28px -38px -28px 62px; }

  .people-mosaic { grid-auto-rows: 150px; }
  .recruit-proof {
    grid-template-columns: 1fr;
  }
  .recruit-visual {
    min-height: 320px;
    border-radius: 18px;
  }
  .recruit-visual img {
    min-height: 320px;
  }
  .recruit-visual figcaption {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .recruit-photo-space {
    grid-template-rows: 140px 140px;
  }
  .recruit-cues {
    grid-template-columns: 1fr;
  }
  .recruit-cues span {
    min-height: 56px;
    padding-left: 0;
  }

  .news-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 16px 0;
    min-height: auto;
  }
  .news-row time, .news-row .tag { grid-row: 1; }
  .news-row b { grid-column: 1 / 3; font-size: 13px; }

  .contact-icon { display: none; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom small { margin-left: 0; }

  .vision-statement,
  .vision-core-layout {
    grid-template-columns: 1fr;
  }

  .vision-pillar-list {
    grid-template-columns: 1fr;
  }

  .vision-pillar-list article {
    min-height: auto;
    padding: 28px 24px;
  }

  .vision-pillar-list article::before {
    left: 0;
  }

  .vision-pillar-list article span {
    margin-bottom: 24px;
  }
}

/* ─── Accessibility ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 900px) {
  html,
  body,
  .site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-inner,
  .hero-grid,
  .hero-copy,
  .split,
  .copy-block,
  .strength-board,
  .strength-lead-card,
  .strength-card-grid,
  .strength-card,
  .service-list,
  .service-row,
  .service-row-body {
    min-width: 0;
    max-width: 100%;
  }

  .section-inner,
  .hero-grid,
  .split,
  .strength-board,
  .service-list {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
  }

  .hero-copy,
  .copy-block,
  .photo-panel,
  .photo-mask,
  .strength-board,
  .strength-lead-card,
  .strength-card-grid,
  .strength-card,
  .service-list,
  .service-row,
  .service-row-body {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .hero-actions,
  .hero-lead {
    max-width: calc(100vw - 88px) !important;
  }

  .hero-actions {
    width: calc(100vw - 88px) !important;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead,
  .copy-block p:not(.section-kicker),
  .section-heading p,
  .strength-description,
  .strength-card p,
  .service-row-body p {
    max-width: calc(100vw - 44px);
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .strength-lead-card h2 span,
  .service-lead-grid h2 span,
  .recruit-page-hero h1 span,
  .culture-deck-copy h3 {
    white-space: normal;
  }

  body.is-three-fallback .hero::before {
    opacity: .72;
  }

  body.is-three-fallback .hero::after {
    left: -44px;
    top: 150px;
    width: 230px;
    opacity: .82;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Motion system — ported from c-connect-hero-motion-prototype
   ═══════════════════════════════════════════════════════════════ */

/* ─── Motion layer container ──────────────────────────────────── */
.motion-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

/* Base shape — JS will write --mx --my --sx --sy per element */
.shape {
  will-change: transform, opacity;
}

/* ─── Orbit animation durations — now scale with --motion-scale ── */
.orbit-a { animation-duration: calc(30s / var(--motion-scale)); }
.orbit-b { animation-duration: calc(24s / var(--motion-scale)); }
.orbit-c { animation-duration: calc(20s / var(--motion-scale)); }

/* ─── New arc shapes (hero only) ─────────────────────────────── */
.arc-green-small {
  width: 210px; height: 210px;
  border-width: 54px;
  border-bottom-color: var(--green);
  left: 55%; top: 34px;
  animation: float-b calc(16s / var(--motion-scale)) ease-in-out infinite alternate;
}
.arc-deep {
  width: 210px; height: 210px;
  border-width: 48px;
  border-left-color: var(--lime);
  right: 34%; bottom: 120px;
  transform: rotate(-18deg);
  animation: float-c calc(18s / var(--motion-scale)) ease-in-out infinite alternate;
}
.arc-yellow {
  width: 210px; height: 210px;
  border-width: 50px;
  border-top-color: var(--yellow);
  right: -28px; top: 350px;
  transform: rotate(90deg);
  animation: float-d calc(13s / var(--motion-scale)) ease-in-out infinite alternate;
}

/* ─── Pulse dots ──────────────────────────────────────────────── */
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #111722;
  box-shadow: 0 0 0 8px rgba(17,23,34,.10), 0 0 40px rgba(17,23,34,.5);
  opacity: .8;
}
.dot-a {
  left: 49%; bottom: 106px;
  animation: pulse calc(2.8s / var(--motion-scale)) ease-in-out infinite;
}
.dot-b {
  right: 22%; top: 180px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(121,188,42,.1), 0 0 40px rgba(121,188,42,.45);
  animation: pulse calc(3.2s / var(--motion-scale)) ease-in-out infinite;
}

/* ─── SVG flow lines ──────────────────────────────────────────── */
.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .28;
  mix-blend-mode: multiply;
}
.flow {
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 8 18;
  animation: flow calc(18s / var(--motion-scale)) linear infinite;
}
.flow-1 { stroke: rgba(17,23,34,.45); }
.flow-2 { stroke: rgba(121,188,42,.42); animation-duration: calc(22s / var(--motion-scale)); }

/* ─── Motion control panel ───────────────────────────────────── */
.control-panel {
  position: absolute;
  z-index: 6;
  right: 28px; bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(224,231,238,.9);
  box-shadow: 0 18px 40px rgba(17,32,60,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.control-panel button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.control-panel button.is-active { background: #101319; color: #fff; }

/* ─── Motion modes (set by JS on body) ───────────────────────── */
body.motion-rich { --motion-scale: 1.45; }
body.motion-calm { --motion-scale: .78; }
body.motion-off .shape,
body.motion-off .flow,
body.motion-off .news-pill {
  animation: none !important;
}
body.motion-off .shape { transform: none !important; }

/* ─── Updated keyframes — include translate3d CSS vars for parallax */
@keyframes orbit-drift-a {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(-5deg) scale(1); }
  50%  { transform: translate3d(calc(var(--mx,0px) - 18px), calc(var(--my,0px) + 10px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(4deg) scale(1.018); }
  100% { transform: translate3d(calc(var(--mx,0px) + 12px), calc(var(--my,0px) - 14px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(10deg) scale(.994); }
}
@keyframes orbit-drift-b {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(14deg); }
  100% { transform: translate3d(calc(var(--mx,0px) + 20px), calc(var(--my,0px) - 12px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(26deg); }
}
@keyframes orbit-drift-c {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(6deg); }
  100% { transform: translate3d(calc(var(--mx,0px) - 12px), calc(var(--my,0px) + 20px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(20deg); }
}
@keyframes float-b {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(28deg); }
  100% { transform: translate3d(calc(var(--mx,0px) + 16px), calc(var(--my,0px) + 24px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(12deg); }
}
@keyframes float-c {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(-20deg); }
  100% { transform: translate3d(calc(var(--mx,0px) + 12px), calc(var(--my,0px) - 18px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(-4deg); }
}
@keyframes float-d {
  0%   { transform: translate3d(var(--mx,0px), var(--my,0px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(90deg); }
  100% { transform: translate3d(calc(var(--mx,0px) - 10px), calc(var(--my,0px) + 18px), 0) translate3d(var(--sx,0px), var(--sy,0px), 0) rotate(102deg); }
}
@keyframes pulse {
  0%, 100% { transform: translate3d(var(--mx,0px), var(--my,0px), 0) scale(.82); opacity: .46; }
  50%       { transform: translate3d(var(--mx,0px), var(--my,0px), 0) scale(1.16); opacity: 1; }
}
@keyframes flow { to { stroke-dashoffset: -520; } }
/* ─── Motion responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .arc-green-small { width: 160px; height: 160px; border-width: 40px; left: 62%; top: 54px; }
  .arc-deep         { display: none; }
  .arc-yellow       { width: 140px; height: 140px; border-width: 34px; right: -72px; top: 320px; }
  .dot-a            { left: 60%; bottom: 80px; }
  .dot-b            { right: 14%; top: 120px; }
  .flow-lines       { opacity: .17; }
  .control-panel    { right: 16px; bottom: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   Final hero motion — 04-A Balanced Haze
   ═══════════════════════════════════════════════════════════════ */
.hero {
  isolation: isolate;
  perspective: 1150px;
  perspective-origin: 70% 48%;
  background:
    radial-gradient(900px 560px at 8% 10%, rgba(0, 159, 232, .14), transparent 72%),
    radial-gradient(980px 700px at 88% 72%, rgba(121, 188, 42, .13), transparent 74%),
    radial-gradient(900px 620px at 48% 54%, rgba(223, 242, 248, .46), transparent 78%),
    linear-gradient(180deg, #fff 0%, #fbfefd 100%);
}

/* Ambient light blooms — barely-there colour bleeding into the space */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1180px 760px at 58% 4%, rgba(229, 245, 255, .58), transparent 70%),
    radial-gradient(1040px 740px at 86% 62%, rgba(121, 188, 42, .11), transparent 76%),
    radial-gradient(860px 620px at 12% 22%, rgba(0, 159, 232, .12), transparent 74%),
    radial-gradient(760px 560px at 54% 74%, rgba(203, 235, 221, .18), transparent 78%),
    radial-gradient(150% 130% at 50% 46%, transparent 58%, rgba(11, 38, 70, .04) 100%);
  filter: blur(20px);
  transform: scale(1.04);
}

/* Grain now lives on the 3D pieces themselves (object-space grain
   injected in three-hero.js) — the background stays clean by design. */

.hero-depth-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body.is-three-fallback .hero-depth-canvas {
  display: none;
}

body.is-three-fallback .hero::before,
body.is-three-fallback .hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 1;
  pointer-events: none;
  background-image: none;
  mix-blend-mode: normal;
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 45%, #000 46% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 45%, #000 46% 70%, transparent 71%);
}

body.is-three-fallback .hero::before {
  right: -230px;
  bottom: 46px;
  width: min(720px, 50vw);
  aspect-ratio: 1;
  background: conic-gradient(from 182deg, transparent 0 8deg, var(--brand-green) 8deg 104deg, transparent 104deg 360deg);
  filter: blur(1px) drop-shadow(0 22px 46px rgba(40, 112, 60, .16));
  opacity: .98;
}

body.is-three-fallback .hero::after {
  left: 5vw;
  top: 130px;
  width: min(300px, 24vw);
  aspect-ratio: 1;
  background: conic-gradient(from 190deg, transparent 0 8deg, var(--brand-blue) 8deg 108deg, transparent 108deg 360deg);
  filter: blur(.5px) drop-shadow(0 16px 34px rgba(0, 124, 188, .14));
  opacity: .95;
  transform: rotate(-14deg);
}

.hero-grid {
  z-index: 3;
  grid-template-columns: minmax(0, 760px) 1fr;
}

.hero-copy {
  grid-column: 1;
  z-index: 3;
}

.motion-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.motion-layer::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0,160,233,.34) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(121,189,43,.26) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(11,49,143,.2) 0 1px, transparent 1.5px);
  background-position: 0 0, 52px 38px, 90px 124px;
  background-size: 220px 220px, 300px 300px, 380px 380px;
  opacity: .09;
  transform: translateZ(-430px);
  animation: hero-space-dust 112s linear infinite;
}

.depth-space {
  position: absolute;
  inset: -10% -8%;
  z-index: 1;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform .35s ease-out;
}

.hero-piece {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--w);
  aspect-ratio: var(--piece-ratio);
  opacity: 1;
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), var(--tz, 0px)) rotate(var(--rot, 0deg)) scale(var(--scale, 1));
  transform-style: preserve-3d;
  filter:
    blur(var(--blur, 0px))
    brightness(var(--brightness, 1))
    contrast(var(--contrast, 1))
    saturate(var(--saturate, 1))
    drop-shadow(0 34px 48px rgba(9,26,50,.2))
    drop-shadow(0 8px 14px rgba(9,26,50,.1));
  will-change: transform;
}

.hero-piece svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateZ(14px);
}

.piece-blue,
.piece-navy { --piece-ratio: 1 / 1.02; }
.piece-green,
.piece-deep { --piece-ratio: 1.18 / 1; }

.far,
.far-soft {
  filter:
    blur(var(--blur, 0px))
    brightness(var(--brightness, 1))
    contrast(var(--contrast, 1))
    saturate(var(--saturate, 1))
    drop-shadow(0 18px 32px rgba(9,26,50,.12))
    drop-shadow(0 4px 9px rgba(9,26,50,.06));
}

.news-pill {
  right: clamp(0px, 2vw, 28px);
  bottom: 54px;
  z-index: 5;
  animation: none;
}

@media (min-width: 901px) and (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .38fr);
    column-gap: clamp(22px, 3vw, 42px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 76px);
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-actions {
    max-width: 560px;
  }

  .news-pill {
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(34px, 5vw, 54px);
    width: clamp(430px, 48vw, 560px);
    min-width: 0;
    max-width: calc(100vw - 68px);
    gap: 18px;
    padding: 16px 22px;
  }

  .news-pill span {
    min-width: 0;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .news-pill {
    grid-template-columns: auto 1fr auto;
    width: min(500px, 46vw);
    gap: 14px;
  }

  .news-pill time {
    display: none;
  }
}

@keyframes hero-space-dust {
  0% { transform: translate3d(0, 0, -430px); }
  100% { transform: translate3d(-180px, 120px, -430px); }
}

@media (max-width: 900px) {
  .hero::before {
    content: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-height: 620px;
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 1.24;
    letter-spacing: 0;
  }

  .hero-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
  }

  .news-pill {
    width: 100%;
    max-width: 100%;
    padding: 15px 18px;
  }

  .hero-piece {
    width: min(var(--w), 58vw);
  }

  .hero-piece.very-large {
    left: 54% !important;
    top: 54% !important;
    width: min(var(--w), 74vw);
  }

  .hero-piece.large {
    left: 20% !important;
    top: 7% !important;
    width: min(var(--w), 46vw);
  }

  .hero-piece.medium {
    width: min(var(--w), 42vw);
  }

  .hero-piece.far,
  .hero-piece.far-soft {
    width: min(var(--w), 30vw);
  }
}

/* ═══════════════════════════════════════════════════════════════
   About page
   ═══════════════════════════════════════════════════════════════ */
.about-page {
  background: #fff;
}

.page-hero {
  position: relative;
  min-height: 560px;
  padding: 170px clamp(24px, 5vw, 80px) 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(121,188,42,.2), transparent 34%),
    radial-gradient(circle at 16% 2%, rgba(0,159,232,.13), transparent 30%),
    radial-gradient(circle at 72% 92%, rgba(242,207,0,.1), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7fbff 54%, #f8fff1 100%);
}

.page-hero__inner {
  z-index: 1;
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0 0 30px;
  font-size: clamp(44px, 5.1vw, 68px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 900;
  word-break: auto-phrase;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: #303945;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.page-hero__ornament {
  display: none;
}

.page-hero.sub-page-hero {
  min-height: 380px;
  padding-top: 136px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(13,104,178,.1);
}

.page-hero.sub-page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.18;
}

.page-hero.sub-page-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.9;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: 72px;
  align-items: center;
}

.message-copy {
  position: relative;
  padding-left: 30px;
}

.message-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 132px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green));
}

.message-copy p:not(.section-kicker) {
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.message-sign {
  margin-top: 28px;
  color: #111319;
  font-weight: 900 !important;
}

.message-photo {
  position: relative;
  min-height: 430px;
  border-radius: 0 34px 0 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.message-photo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.message-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(6,14,24,.24));
  pointer-events: none;
}

.message-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.vision-panel {
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(0,159,232,.24), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(121,188,42,.18), transparent 34%),
    linear-gradient(135deg, #0c1118 0%, #10243a 56%, #103326 100%);
  overflow: hidden;
}

.vision-panel::after {
  content: none;
}

.vision-panel__inner {
  z-index: 1;
  max-width: 960px;
}

.vision-panel .section-kicker {
  color: var(--brand-yellow);
}

.vision-panel h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
}

.vision-panel p {
  max-width: 780px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(90deg, rgba(13,104,178,.22), rgba(104,179,52,.22));
  border: 1px solid rgba(13,104,178,.16);
}

.foundation-grid article {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  background: linear-gradient(145deg, #fff 0%, #f8fbff 58%, #f8fff2 100%);
  overflow: hidden;
}

.foundation-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--brand-blue);
}

.foundation-grid article:nth-child(2)::before {
  background: var(--brand-green);
}

.foundation-grid article:nth-child(3)::before {
  background: var(--navy);
}

.foundation-grid article:nth-child(4)::before {
  background: var(--brand-yellow);
}

.foundation-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .16em;
}

.foundation-grid article:nth-child(2) span { color: var(--brand-green); }
.foundation-grid article:nth-child(3) span { color: var(--navy); }
.foundation-grid article:nth-child(4) span { color: #b69b00; }

.foundation-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 900;
}

.foundation-grid p {
  margin: 0;
  color: #33404d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.philosophy-block {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(0, .98fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(13,104,178,.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,159,232,.12), transparent 32%),
    linear-gradient(145deg, #fff, #f6fafc);
  box-shadow: 0 22px 62px rgba(18,34,60,.08);
}

.philosophy-visuals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.philosophy-block figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.philosophy-block img {
  width: min(100%, 520px);
  margin-inline: auto;
}

.philosophy-logotype img {
  width: min(100%, 560px);
}

.philosophy-copy h3 {
  margin: 0 0 22px;
  color: #111319;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: 0;
}

.philosophy-copy h3 span {
  display: block;
}

.philosophy-copy p {
  margin: 0 0 16px;
  color: #33404d;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.profile-list {
  margin: 0;
  border-top: 1px solid rgba(13,104,178,.18);
}

.profile-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(13,104,178,.16);
}

.profile-list dt {
  color: #111319;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.profile-list dd {
  margin: 0;
  color: #17202b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.history-list {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-top: 0;
}

.history-heading img {
  width: 58px;
  height: auto;
  margin: 0 auto 12px;
}

.history-list::before {
  content: "";
  position: absolute;
  left: 154px;
  top: 38px;
  bottom: 38px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green), var(--brand-yellow));
}

.history-list article {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  padding: 30px 0 30px 40px;
  border-bottom: 1px solid rgba(13,104,178,.12);
}

.history-list article::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 39px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  box-shadow: 0 0 0 6px rgba(13,104,178,.08);
  transform: translateX(-2px);
}

.history-list time {
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.history-list time span,
.history-list time b {
  display: block;
}

.history-list time b {
  margin-top: 4px;
  color: #111722;
  font-size: 13px;
  letter-spacing: .14em;
}

.history-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 900;
}

.history-list p {
  margin: 0;
  color: #39434f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.access-card {
  position: relative;
  min-height: 300px;
  padding: 38px;
  border: 1px solid rgba(13,104,178,.18);
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(13,104,178,.24), rgba(104,179,52,.2)) border-box;
  box-shadow: 0 18px 52px rgba(18,58,80,.08);
  overflow: hidden;
}

.access-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green), var(--brand-yellow));
}

.access-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 900;
}

.access-card p,
.access-card li {
  color: #33404d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.access-card ul {
  margin: 18px 0 0;
  padding-left: 1.2em;
}

.access-map-card {
  padding: 0;
}

.access-map-card h3,
.access-map-card p,
.access-map-card ul {
  margin-left: 28px;
  margin-right: 28px;
}

.access-map-card h3 {
  margin-top: 28px;
}

.access-map-card ul {
  margin-bottom: 28px;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #dce5ee;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .sp-break { display: block; }
  .pc-break { display: none; }

  .page-hero {
    min-height: auto;
    padding: 126px 22px 72px;
  }

  .page-hero.sub-page-hero {
    min-height: auto;
    padding: 112px 22px 46px;
  }

  .page-hero__inner {
    max-width: 100%;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .page-hero p:not(.section-kicker) {
    max-width: 100%;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .page-hero__ornament {
    right: -190px;
    bottom: -210px;
    width: 380px;
    height: 380px;
    border-width: 70px;
    opacity: .62;
  }

  .message-grid,
  .profile-grid,
  .philosophy-block,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .message-photo,
  .message-photo img {
    min-height: 280px;
  }

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

  .foundation-grid article {
    min-height: auto;
  }

  .foundation-grid span {
    margin-bottom: 26px;
  }

  .profile-list div,
  .history-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .history-list::before {
    left: 7px;
    top: 32px;
    bottom: 32px;
  }

  .history-list article {
    padding-left: 34px;
  }

  .history-list article::before {
    left: 1px;
    top: 34px;
  }

  .history-list h3 {
    font-size: 18px;
  }

  .access-card {
    padding: 30px 24px;
  }

  .access-map-card {
    padding: 0;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .about-page .section-inner {
    max-width: min(100%, 346px);
    margin-left: 0;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Service page
   ═══════════════════════════════════════════════════════════════ */
.service-page {
  background: #fff;
}

.service-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(121,188,42,.16), transparent 35%),
    radial-gradient(circle at 20% 0%, rgba(17,23,34,.16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

.service-lead-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.service-lead-grid {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.service-lead-grid::after {
  content: none;
}

.service-lead-grid h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.service-lead-grid h2 span {
  display: block;
  white-space: nowrap;
}

.service-lead-copy p {
  max-width: 1120px;
  margin: 0 0 42px;
  color: #263240;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 750;
  line-height: 1.9;
}

.service-lead-copy ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-lead-copy li {
  position: relative;
  min-height: 176px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(13,104,178,.1);
  background: rgba(255,255,255,.78);
  color: #1b2634;
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 850;
  line-height: 1.78;
  box-shadow: 0 18px 42px rgba(18,34,60,.055);
}

.service-lead-copy li::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.service-lead-copy li:nth-child(2)::before { background: var(--brand-green-dark); }
.service-lead-copy li:nth-child(3)::before { background: var(--brand-yellow); }
.service-lead-copy li:nth-child(4)::before { background: #111722; }

.service-detail-list {
  display: grid;
  gap: 34px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #d8e2ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18,34,60,.1);
}

.service-detail-card:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #edf3f8;
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(7,18,32,.18));
  pointer-events: none;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-logo-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(145deg, #eef5fb, #ffffff);
}

.service-logo-media::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(17,23,34,0), rgba(17,23,34,.05));
}

.service-logo-media img {
  position: relative;
  z-index: 1;
  width: min(72%, 430px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(18,34,60,.12));
}

.service-detail-card.ink .service-logo-media {
  background:
    radial-gradient(circle at 18% 22%, rgba(104,179,52,.14), transparent 32%),
    linear-gradient(145deg, #eef7f1, #fff);
}

.service-detail-card.nunona .service-logo-media {
  background:
    radial-gradient(circle at 18% 22%, rgba(239,109,165,.14), transparent 32%),
    linear-gradient(145deg, #fbf1f6, #fff);
}

.service-detail-card.print .service-logo-media {
  background:
    radial-gradient(circle at 18% 22%, rgba(13,104,178,.14), transparent 32%),
    linear-gradient(145deg, #eef5fb, #fff);
}

.service-detail-body {
  position: relative;
  padding: clamp(36px, 4vw, 58px);
}

.service-detail-body::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 42px solid transparent;
  opacity: .16;
  transform: rotate(-18deg);
  pointer-events: none;
}

.service-detail-card.ink .service-detail-body::after {
  border-left-color: var(--green);
  border-bottom-color: var(--green);
}

.service-detail-card.nunona .service-detail-body::after {
  border-top-color: #ef6da5;
  border-right-color: #ef6da5;
}

.service-detail-card.print .service-detail-body::after {
  border-left-color: #111722;
  border-top-color: #111722;
}

.service-label {
  margin: 0 0 18px;
  color: #111722;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.service-detail-body h3 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.service-since {
  margin: 0 0 18px;
  color: #687584;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-detail-body h4 {
  margin: 0 0 22px;
  color: #111722;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0;
}

.service-detail-body > p:not(.service-label):not(.service-since) {
  margin: 0 0 18px;
  color: #303945;
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 700;
  line-height: 1.95;
}

.service-detail-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-detail-body li {
  position: relative;
  padding-left: 20px;
  color: #33404d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.service-detail-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111722;
}

.service-detail-body a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.service-detail-body a span {
  color: #111722;
  font-size: 20px;
}

.service-process-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(13,104,178,.22), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(104,179,52,.16), transparent 32%),
    linear-gradient(135deg, #080d14 0%, #111923 62%, #151d19 100%);
  color: #fff;
}

.service-process-section .section-heading h2,
.service-process-section .section-heading p:not(.section-kicker) {
  color: #fff;
}

.service-process-section .section-kicker {
  color: #fff;
}

.service-process-section .section-heading p:not(.section-kicker) {
  color: rgba(255,255,255,.76);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-process-grid article {
  position: relative;
  min-height: 270px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  overflow: hidden;
}

.service-process-grid article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 5px;
  background: var(--brand-blue);
}

.service-process-grid article:nth-child(2)::after { background: var(--brand-green); }
.service-process-grid article:nth-child(3)::after { background: var(--brand-yellow); }
.service-process-grid article:nth-child(4)::after { background: #fff; opacity: .7; }
.service-process-grid article:nth-child(5)::after { background: linear-gradient(90deg, var(--brand-blue), var(--brand-green)); }

.service-process-grid span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255,255,255,.58);
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .04em;
}

.service-process-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 900;
}

.service-process-grid p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .service-lead-copy ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-lead-grid,
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-detail-card:nth-child(even) .service-detail-media {
    order: 0;
  }

  .service-lead-copy ul {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: auto;
  }

  .service-detail-media {
    min-height: 240px;
  }

  .service-logo-media img {
    width: min(78%, 360px);
    max-height: 112px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-process-grid article {
    min-height: auto;
  }

  .service-process-grid span {
    margin-bottom: 26px;
  }
}

@media (max-width: 600px) {
  .service-page .section-inner {
    max-width: min(100%, 346px);
    margin-left: 0;
    margin-right: auto;
  }

  .service-lead-grid h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .service-detail-card {
    border-radius: 18px;
  }

  .service-detail-body {
    padding: 30px 24px 34px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Recruit page
   ═══════════════════════════════════════════════════════════════ */
.recruit-page {
  background: #fff;
}

.recruit-page-hero {
  position: relative;
  min-height: 780px;
  padding: 160px clamp(24px, 5vw, 80px) 92px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,159,232,.3), transparent 32%),
    radial-gradient(circle at 17% 88%, rgba(121,188,42,.22), transparent 30%),
    radial-gradient(circle at 72% 78%, rgba(242,207,0,.1), transparent 22%),
    linear-gradient(135deg, #05080d 0%, #0d141d 58%, #121a18 100%);
}

.recruit-page-hero::before,
.recruit-page-hero::after {
  content: none;
}

.recruit-page-hero::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(122deg, transparent 0 48%, rgba(0,159,232,.2) 48% 48.34%, transparent 48.34% 100%);
  background-size: 104px 104px, 104px 104px, 100% 100%;
  opacity: .9;
  transform: none;
  pointer-events: none;
}

.recruit-page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  left: auto;
  width: 460px;
  height: 460px;
  border: 74px solid transparent;
  border-left-color: rgba(0,159,232,.18);
  border-bottom-color: rgba(104,179,52,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.recruit-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.02fr);
  gap: 72px;
  align-items: center;
}

.recruit-page-hero .section-kicker {
  color: var(--brand-yellow);
}

.recruit-page-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.recruit-page-hero h1 span {
  display: block;
  white-space: nowrap;
}

.recruit-page-hero__copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.recruit-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
}

.recruit-hero-actions .button {
  width: auto;
  min-width: 164px;
  white-space: nowrap;
}

.recruit-outline {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
}

.recruit-hero-photos {
  position: relative;
  min-height: 520px;
}

.recruit-hero-photos figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.recruit-hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-photo-large {
  right: 72px;
  top: 58px;
  width: min(72%, 470px);
  height: 340px;
}

.recruit-photo-small {
  width: 250px;
  height: 178px;
}

.recruit-photo-small--top {
  left: 18px;
  top: 0;
}

.recruit-photo-small--bottom {
  right: 0;
  bottom: 10px;
}

.recruit-message-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.recruit-message-grid h2,
.recruit-work-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.recruit-message-copy p,
.recruit-work-copy p {
  margin: 0 0 22px;
  color: #303945;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.recruit-message-copy p:last-child,
.recruit-work-copy p:last-child {
  margin-bottom: 0;
}

.recruit-culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(13,104,178,.14);
  background: #fff;
  box-shadow: 0 20px 58px rgba(13,54,86,.07);
}

.recruit-culture-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(180px, .42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 132px;
  padding: 30px 36px;
  border-bottom: 1px solid rgba(13,104,178,.12);
  background: rgba(255,255,255,.98);
  overflow: hidden;
}

.recruit-culture-grid article:last-child {
  border-bottom: 0;
}

.recruit-culture-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--brand-blue);
}

.recruit-culture-grid article:nth-child(2)::before { background: var(--brand-green-dark); }
.recruit-culture-grid article:nth-child(3)::before { background: var(--navy); }
.recruit-culture-grid article:nth-child(4)::before { background: var(--brand-yellow); }

.recruit-culture-grid span {
  display: block;
  margin: 0;
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .16em;
}

.recruit-culture-grid article:nth-child(2) span { color: var(--brand-green-dark); }
.recruit-culture-grid article:nth-child(3) span { color: var(--navy); }
.recruit-culture-grid article:nth-child(4) span { color: #b69b00; }

.recruit-culture-grid h3 {
  margin: 0;
  color: #111319;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.recruit-culture-grid p {
  margin: 0;
  color: #33404d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.culture-deck {
  display: grid;
  grid-template-columns: minmax(320px, .38fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 86px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(13,104,178,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(18,34,60,.08);
}

.culture-deck-copy h3 {
  margin: 0 0 16px;
  color: #111319;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.culture-deck-copy p:not(.section-kicker) {
  margin: 0;
  color: #33404d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.culture-deck-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 1280 / 749;
  overflow: hidden;
  border-radius: 16px;
  background: #e6edf4;
}

.culture-deck-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.recruit-interview-section {
  background: linear-gradient(180deg, #fff, #f7fafc);
}

.interview-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.interview-link-grid a {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 0 0 30px;
  border: 1px solid rgba(13,104,178,.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,34,60,.07);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.interview-link-grid a::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 246px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.interview-link-grid a:nth-child(2)::before { background: var(--brand-green-dark); }
.interview-link-grid a:nth-child(3)::before { background: var(--navy); }
.interview-link-grid a:nth-child(4)::before { background: #b69b00; }

.interview-link-grid figure {
  margin: 0 0 28px;
  height: 190px;
  overflow: hidden;
  background: #e8eef4;
}

.interview-link-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-link-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(13,104,178,.28);
  box-shadow: 0 26px 62px rgba(18,34,60,.12);
}

.interview-link-grid span {
  display: block;
  margin: 0 26px 34px;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .16em;
}

.interview-link-grid a:nth-child(2) span { color: var(--brand-green-dark); }
.interview-link-grid a:nth-child(3) span { color: var(--navy); }
.interview-link-grid a:nth-child(4) span { color: #b69b00; }

.interview-link-grid h3 {
  margin: 0 26px 14px;
  color: #111319;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}

.interview-link-grid p {
  margin: 0 26px 28px;
  color: #33404d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.interview-link-grid b {
  margin: auto 26px 0;
  color: #111722;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.interview-link-grid i {
  margin-left: 8px;
  font-style: normal;
  font-size: 18px;
}

.recruit-work-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.recruit-work-list {
  display: grid;
  gap: 18px;
}

.recruit-work-list article {
  position: relative;
  padding: 30px 34px;
  border: 1px solid #d8e2ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18,34,60,.07);
  overflow: hidden;
}

.recruit-work-list article::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -88px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 32px solid transparent;
  border-top-color: rgba(17,23,34,.12);
  border-left-color: rgba(17,23,34,.08);
  transform: rotate(-20deg);
}

.recruit-work-list h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.recruit-work-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #33404d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.recruit-numbers-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(13,104,178,.24), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(104,179,52,.18), transparent 34%),
    linear-gradient(135deg, #0c1118 0%, #101722 60%, #0f2730 100%);
}

.recruit-number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  background: transparent;
  border: 0;
}

.recruit-number-grid article {
  position: relative;
  min-height: 188px;
  padding: 34px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  overflow: hidden;
}

.recruit-number-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.recruit-number-grid article:nth-child(2)::after { background: var(--brand-green); }
.recruit-number-grid article:nth-child(3)::after { background: var(--brand-yellow); }
.recruit-number-grid article:nth-child(4)::after { background: #fff; opacity: .7; }

.recruit-number-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.recruit-number-grid article:nth-child(n+3) strong {
  font-size: clamp(48px, 5vw, 72px);
}

.recruit-number-grid .number-unit {
  display: inline-block;
  margin-left: .04em;
  font-size: .48em;
  line-height: 1;
  vertical-align: .16em;
}

.recruit-number-grid span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.recruit-gallery {
  display: grid;
  grid-template-columns: 1.15fr .86fr .99fr;
  gap: 18px;
  align-items: stretch;
}

.recruit-gallery figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(18,34,60,.08);
}

.recruit-gallery figure:nth-child(2) {
  margin-top: 58px;
}

.recruit-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-entry-section {
  padding-top: 40px;
  background: linear-gradient(180deg, #fff, #f4f8fc);
}

.recruit-entry-panel {
  position: relative;
  overflow: hidden;
  padding: 70px 76px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(121,188,42,.42), transparent 32%),
    linear-gradient(135deg, #111820 0%, #151e2a 70%, #0f2a36 100%);
  box-shadow: var(--shadow);
}

.recruit-entry-panel::after {
  content: none;
}

.recruit-entry-panel > * {
  position: relative;
  z-index: 1;
}

.recruit-entry-panel .section-kicker {
  color: var(--brand-yellow);
}

.recruit-entry-panel h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.recruit-entry-panel p {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

@media (max-width: 1100px) {
  .recruit-page-hero__inner,
  .recruit-message-grid,
  .recruit-work-grid {
    grid-template-columns: 1fr;
  }

  .interview-link-grid,
  .recruit-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .recruit-page-hero {
    min-height: auto;
    padding: 126px 22px 76px;
  }

  .recruit-page-hero__inner {
    gap: 42px;
  }

  .recruit-page-hero h1 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.14;
    letter-spacing: 0;
  }

  .recruit-page-hero__copy p:not(.section-kicker) {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .recruit-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .recruit-hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 10px;
    gap: 8px;
    font-size: 11px;
  }

  .recruit-hero-actions .button span {
    font-size: 17px;
  }

  .recruit-hero-actions .recruit-note-cta {
    display: none;
  }

  .recruit-hero-photos {
    min-height: 440px;
  }

  .recruit-photo-large {
    right: 0;
    top: 72px;
    width: 84%;
    height: 270px;
  }

  .recruit-photo-small {
    width: 188px;
    height: 136px;
  }

  .recruit-photo-small--top {
    left: 0;
    top: 0;
  }

  .recruit-photo-small--bottom {
    right: 18px;
    bottom: 0;
  }

  .recruit-culture-grid,
  .culture-deck,
  .interview-link-grid,
  .recruit-number-grid,
  .recruit-gallery {
    grid-template-columns: 1fr;
  }

  .culture-deck {
    margin-top: 46px;
  }

  .culture-deck-frame {
    min-height: 0;
  }

  .recruit-culture-grid article,
  .interview-link-grid a,
  .recruit-number-grid article {
    min-height: auto;
  }

  .recruit-culture-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 24px;
  }

  .recruit-culture-grid span {
    margin-bottom: 0;
  }

  .interview-link-grid span {
    margin-bottom: 28px;
  }

  .recruit-gallery figure,
  .recruit-gallery figure:nth-child(2) {
    min-height: 260px;
    margin-top: 0;
  }

  .recruit-entry-panel {
    padding: 44px 26px;
  }
}

@media (max-width: 600px) {
  .recruit-page .section-inner {
    max-width: min(100%, 346px);
    margin-left: 0;
    margin-right: auto;
  }

  .recruit-message-grid h2,
  .recruit-work-copy h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .recruit-work-list article {
    padding: 28px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   News / Press pages
   ═══════════════════════════════════════════════════════════════ */
.news-page,
.news-detail-page {
  background: #fff;
}

.news-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(17,23,34,.13), transparent 32%),
    radial-gradient(circle at 18% 4%, rgba(121,188,42,.13), transparent 32%),
    #fff;
}

.news-archive-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.news-archive-section {
  padding-top: 72px;
}

.news-side-panel {
  position: sticky;
  top: 112px;
  padding: 32px;
  border: 1px solid #d8e2ed;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 52px rgba(18,34,60,.08);
}

.news-category-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.news-category-list span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dce6f0;
  border-radius: 999px;
  color: #17202b;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.news-category-list span:first-child {
  color: #fff;
  border-color: transparent;
  background: #111722;
}

.news-side-panel p:not(.section-kicker) {
  margin: 0;
  color: #5a6470;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.news-archive-head {
  margin-bottom: 28px;
}

.news-archive-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.news-archive-list {
  border-top: 1px solid var(--line);
}

.news-card-row {
  display: grid;
  grid-template-columns: 132px 116px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 0 6px;
  border-bottom: 1px solid var(--line);
  transition: background .2s, transform .2s;
}

.news-card-row:hover {
  background: #f7f8fa;
}

.news-card-row time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-card-row b {
  color: #111319;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.news-card-row i {
  color: #111722;
  font-size: 16px;
  font-style: normal;
}

.tag.press { background: #3f8f2f; }
.tag.gray { background: #6d7480; }

.news-pagination {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d8e2ed;
  border-radius: 50%;
  background: #fff;
  color: #111319;
  font-size: 13px;
  font-weight: 900;
}

.news-pagination .is-current,
.news-pagination .current {
  color: #fff;
  border-color: transparent;
  background: #111319;
}

.news-article-header {
  padding: 142px clamp(24px, 5vw, 80px) 58px;
  background:
    radial-gradient(circle at 84% 20%, rgba(121,188,42,.14), transparent 30%),
    radial-gradient(circle at 16% 8%, rgba(17,23,34,.08), transparent 30%),
    #fff;
}

.news-article-header__inner {
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.news-back-link {
  display: inline-flex;
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #111722;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.news-article-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  align-self: start;
  margin-bottom: 0;
  padding-top: 0;
}

.news-article-meta time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.news-article-header h1 {
  max-width: 760px;
  margin: 0;
  color: #111319;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: 0;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 0;
  padding-top: 58px;
  padding-bottom: 60px;
}

.news-article-body {
  max-width: 860px;
  padding-top: 8px;
}

.news-article-body p {
  margin: 0 0 28px;
  color: #303945;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
}

.news-article-body h2 {
  margin: 54px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #111319;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}

.external-news-panel {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(13,104,178,.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(104,179,52,.1), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 22px 62px rgba(18,34,60,.08);
}

.external-news-panel h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.external-news-panel p:not(.section-kicker) {
  margin: 0;
}

.external-news-panel .button {
  width: fit-content;
  margin-top: 10px;
}

.external-news-link {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #dce5ee;
}

.news-article-side {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 30px;
  border: 1px solid #d8e2ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(18,34,60,.08);
}

.news-article-side a {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.news-article-side time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-article-side span {
  color: #17202b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
}

.news-article-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 110px;
}

.news-article-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid #d8e2ed;
  border-radius: 999px;
  background: #fff;
  color: #111319;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .news-archive-layout,
  .news-article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-side-panel,
  .news-article-side {
    position: relative;
    top: auto;
  }

  .news-card-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px 14px;
    min-height: 104px;
    padding: 18px 0;
  }

  .news-card-row time,
  .news-card-row .tag {
    grid-row: 1;
  }

  .news-card-row b {
    grid-column: 1 / 3;
    font-size: 14px;
  }

  .news-article-header {
    padding: 126px 22px 64px;
  }

  .news-article-header__inner {
    display: block;
  }

  .news-article-meta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 22px;
    margin-bottom: 0;
    padding-top: 0;
  }

  .news-article-layout {
    padding-top: 58px;
  }

  .news-article-nav {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }
}

@media (max-width: 600px) {
  .news-page .section-inner,
  .news-detail-page .section-inner {
    max-width: min(100%, 346px);
    margin-left: 0;
    margin-right: auto;
  }

  .news-archive-head h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .news-article-header h1 {
    font-size: clamp(22px, 6.5vw, 29px);
    line-height: 1.42;
    letter-spacing: 0;
  }

  .news-article-body p {
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Contact / Legal / Sitemap pages
   ═══════════════════════════════════════════════════════════════ */
.contact-hero,
.legal-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(121,188,42,.13), transparent 32%),
    radial-gradient(circle at 18% 2%, rgba(17,23,34,.14), transparent 32%),
    #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
  gap: 22px;
}

.contact-form-side {
  max-width: 760px;
}

.contact-form-side .section-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .08em;
}

.contact-form-side h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-form-side p {
  margin: 0;
  color: #303945;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #d8e2ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18,34,60,.1);
}

.contact-form--cf7 {
  display: block;
}

.contact-form--cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contact-form--cf7 .wpcf7-form p {
  margin: 0;
}

.contact-form--cf7 .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-placeholder {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: center;
  border: 1px dashed #bcc9d8;
  border-radius: 16px;
  background: #f8fbfe;
  padding: 32px;
}

.contact-form-placeholder p {
  margin: 0;
  color: #303945;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.contact-form label {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  gap: 10px 8px;
  align-items: center;
  color: #17202b;
  font-size: 13px;
  font-weight: 900;
}

.contact-form label br {
  display: none;
}

.contact-form label span {
  color: inherit;
  font: inherit;
}

.contact-form em {
  display: inline-flex;
  justify-self: start;
  width: auto;
  margin-left: 0;
  padding: 2px 7px;
  border-radius: 999px;
  color: #fff;
  background: #111722;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e2ed;
  border-radius: 10px;
  background: #f8fbfe;
  color: #111319;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form input {
  height: 56px;
  padding: 0 18px;
}

.contact-form textarea {
  resize: vertical;
  padding: 16px 18px;
  line-height: 1.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111722;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17,23,34,.10);
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form--cf7 .wpcf7-form-control-wrap {
  grid-column: 1 / -1;
  width: 100%;
}

.contact-agree {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px;
}

.contact-agree .wpcf7-list-item {
  margin: 0;
}

.contact-agree label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.contact-agree input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-agree .wpcf7-list-item-label {
  color: #17202b;
  font-size: 14px;
  font-weight: 800;
}

.contact-agree a {
  color: #111722;
}

.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
  height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #05070a;
  color: #fff;
  box-shadow: 0 14px 34px rgba(5, 7, 10, .18);
  cursor: pointer;
}

.contact-form .wpcf7-submit:hover {
  transform: translateY(-1px);
}

.contact-form .wpcf7-spinner {
  margin-left: 14px;
  vertical-align: middle;
}

.contact-form .wpcf7-not-valid-tip,
.contact-form .wpcf7-response-output {
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.contact-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0 !important;
  padding: 14px 16px !important;
  border-radius: 10px;
}

.legal-section,
.sitemap-section {
  padding-top: 80px;
}

.legal-body {
  max-width: 900px;
}

.legal-body p {
  margin: 0 0 28px;
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.legal-body ol {
  margin: 0 0 30px;
  padding-left: 1.6em;
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.legal-body li + li {
  margin-top: 8px;
}

.legal-body dl {
  margin: 42px 0 0;
}

.legal-body dt {
  margin: 42px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #111319;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.legal-body dd {
  margin: 0;
  color: #303945;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.legal-right {
  text-align: right;
}

.legal-contact {
  margin-top: 34px !important;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
}

.legal-statement-list {
  margin: 8px 0 30px;
}

.legal-statement-list p {
  margin-bottom: 14px;
}

.legal-body h2 {
  margin: 48px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #111319;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid rgba(14,43,80,.16);
  background: rgba(14,43,80,.16);
}

.sitemap-grid > div {
  min-height: 260px;
  padding: 34px 28px;
  background: #fff;
}

.sitemap-grid h2 {
  margin: 0 0 24px;
  color: #111319;
  font-size: 22px;
  font-weight: 900;
}

.sitemap-grid a {
  display: block;
  margin-bottom: 12px;
  color: #33404d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.sitemap-grid a:hover {
  color: #111722;
}

@media (max-width: 1100px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-form-grid {
    gap: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form--cf7 .wpcf7-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .contact-page .section-inner,
  .legal-page .section-inner,
  .sitemap-page .section-inner {
    max-width: min(100%, 346px);
    margin-left: 0;
    margin-right: auto;
  }

  .contact-form-side h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Tone Alt — Quiet Advanced TOP
   ═══════════════════════════════════════════════════════════════ */
.tone-alt {
  --tone-line: rgba(19, 28, 39, .14);
  --tone-line-soft: rgba(19, 28, 39, .08);
  --tone-ink: #0d1117;
  --tone-sub: #3f4752;
  --tone-green: #557f31;
  --tone-blue: #173c6b;
}

.tone-alt .site-shell {
  background:
    linear-gradient(90deg, rgba(13,17,23,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,17,23,.028) 1px, transparent 1px),
    #fff;
  background-size: 96px 96px;
}

.tone-alt .global-header {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(13,17,23,.1);
  box-shadow: none;
}

.tone-alt .global-nav a::after {
  background: #111722;
}

.tone-alt .header-contact {
  background: #111722;
  box-shadow: 0 12px 28px rgba(17,23,34,.18);
}

.tone-alt .section {
  padding-top: 136px;
  padding-bottom: 136px;
}

.tone-alt .section-kicker {
  color: var(--tone-green);
  letter-spacing: .2em;
}

.tone-alt h2 {
  color: var(--tone-ink);
  letter-spacing: 0;
}

.tone-alt .copy-block p:not(.section-kicker),
.tone-alt .section-heading p {
  color: var(--tone-sub);
  font-weight: 650;
}

.tone-alt .button-light,
.tone-alt .button-outline {
  background: #fff;
  border-color: rgba(17,23,34,.2);
  box-shadow: none;
}

.tone-alt .button-light:hover,
.tone-alt .button-outline:hover {
  border-color: rgba(17,23,34,.44);
  box-shadow: none;
}

.tone-alt .news-pill {
  border-color: rgba(17,23,34,.16);
  box-shadow: 0 18px 42px rgba(17,23,34,.1);
}

.tone-alt .news-pill b {
  color: var(--tone-ink);
}

.tone-alt .about {
  background: #fff;
  border-top: 1px solid var(--tone-line-soft);
}

.tone-alt .about .split {
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr);
  gap: clamp(52px, 7vw, 104px);
}

.tone-alt .about .copy-block {
  padding: 8px 0 8px 34px;
  border-left: 2px solid var(--tone-ink);
}

.tone-alt .photo-panel::before {
  content: none;
}

.tone-alt .photo-mask {
  min-height: 480px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--tone-line);
}

.tone-alt .office-image img {
  min-height: 480px;
  filter: saturate(.82) contrast(1.04);
}

.tone-alt .strength {
  background: #f7f8f8;
  border-top: 1px solid var(--tone-line);
  border-bottom: 1px solid var(--tone-line);
}

.tone-alt .strength .section-heading.center {
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  margin-bottom: 56px;
}

.tone-alt .strength-board {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: 0;
  border: 1px solid var(--tone-line);
  background: #fff;
}

.tone-alt .strength-lead-card {
  min-height: 520px;
  padding: clamp(38px, 4.6vw, 64px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #10151d;
  background-size: 42px 42px;
  box-shadow: none;
}

.tone-alt .strength-lead-card::before {
  inset: 24px;
  border-color: rgba(255,255,255,.1);
}

.tone-alt .strength-lead-card::after {
  height: 4px;
  background: var(--tone-green);
}

.tone-alt .strength-lead-card h3 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.tone-alt .strength-card-grid {
  gap: 0;
  border-left: 1px solid var(--tone-line);
  background: var(--tone-line);
}

.tone-alt .strength-card {
  min-height: 260px;
  padding: 38px 34px 34px;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.tone-alt .strength-card::before {
  width: 1px;
  height: auto;
  top: 34px;
  bottom: 34px;
  left: 34px;
  background: rgba(17,23,34,.22);
}

.tone-alt .strength-card span {
  margin-left: 26px;
  margin-bottom: 34px;
  color: var(--tone-ink);
  font-size: 20px;
}

.tone-alt .strength-card h3,
.tone-alt .strength-card p {
  margin-left: 26px;
}

.tone-alt .strength-card h3 {
  font-size: clamp(25px, 2.2vw, 32px);
}

.tone-alt .service {
  background: #fff;
  border-bottom: 1px solid var(--tone-line-soft);
}

.tone-alt .service-list {
  border-color: var(--tone-line);
  box-shadow: none;
}

.tone-alt .service-row {
  background: #fff;
  border-bottom-color: var(--tone-line);
}

.tone-alt .service-row:hover {
  background: #f8f9f9;
  transform: none;
}

.tone-alt .service-row-body {
  grid-template-columns: minmax(260px, .72fr) minmax(360px, 1.28fr) auto;
  padding-top: 42px;
  padding-bottom: 42px;
}

.tone-alt .service-row-body h3,
.tone-alt .service-logo {
  color: var(--tone-ink);
}

.tone-alt .ink h3,
.tone-alt .nunona h3,
.tone-alt .print h3 {
  color: var(--tone-ink);
}

.tone-alt .service-row-body a {
  color: var(--tone-ink);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(17,23,34,.32);
}

.tone-alt .recruit {
  padding-top: 144px;
  padding-bottom: 144px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0d1117;
  background-size: 96px 96px;
}

.tone-alt .recruit::before {
  content: none;
}

.tone-alt .recruit-inner {
  grid-template-columns: minmax(320px, .62fr) minmax(0, 1.38fr);
  gap: clamp(46px, 6vw, 90px);
}

.tone-alt .recruit .section-kicker {
  color: rgba(255,255,255,.62);
}

.tone-alt .recruit-visual {
  min-height: 560px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.16);
}

.tone-alt .recruit-visual img {
  min-height: 560px;
  filter: saturate(.82) contrast(1.06);
}

.tone-alt .recruit-visual figcaption {
  max-width: 620px;
  left: clamp(34px, 5vw, 70px);
  bottom: clamp(30px, 5vw, 64px);
}

.tone-alt .recruit-visual figcaption span {
  color: rgba(255,255,255,.62);
}

.tone-alt .news {
  background: #fff;
}

.tone-alt .news-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tone-line);
}

.tone-alt .news-list {
  border-top: 0;
}

.tone-alt .news-row {
  min-height: 88px;
  padding-left: 0;
  padding-right: 0;
  border-bottom-color: var(--tone-line-soft);
}

.tone-alt .news-row:hover {
  background: transparent;
  padding-left: 0;
}

.tone-alt .tag {
  color: var(--tone-ink);
  background: transparent !important;
  border: 1px solid rgba(17,23,34,.24);
  border-radius: 0;
}

.tone-alt .news-row i,
.tone-alt .news-head a {
  color: var(--tone-ink);
}

.tone-alt .contact {
  padding-top: 0;
  background: #fff;
}

.tone-alt .contact-panel {
  grid-template-columns: 1fr auto;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(54px, 6vw, 82px);
  border-radius: 0;
  border-color: var(--tone-line);
  background: #f7f8f8;
  box-shadow: none;
}

.tone-alt .contact-icon {
  display: none;
}

.tone-alt .footer {
  background: #0d1117;
  color: #fff;
  border-top: 0;
}

.tone-alt .footer-brand p,
.tone-alt .footer-links a,
.tone-alt .footer-bottom {
  color: rgba(255,255,255,.66);
}

.tone-alt .footer-links h4 {
  color: #fff;
}

.tone-alt .footer-links a:hover {
  color: #fff;
}

.tone-alt .footer-bottom {
  border-top-color: rgba(255,255,255,.12);
}

@media (max-width: 900px) {
  .tone-alt .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .tone-alt .about .split,
  .tone-alt .strength-board,
  .tone-alt .service-row-body,
  .tone-alt .recruit-inner,
  .tone-alt .contact-panel {
    grid-template-columns: 1fr;
  }

  .tone-alt .about .copy-block {
    padding-left: 22px;
  }

  .tone-alt .photo-mask,
  .tone-alt .office-image img,
  .tone-alt .recruit-visual,
  .tone-alt .recruit-visual img {
    min-height: 340px;
  }

  .tone-alt .strength-card-grid {
    border-left: 0;
  }

  .tone-alt .strength-card {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  html,
  body,
  .site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-inner,
  .hero-grid,
  .hero-copy,
  .hero-actions,
  .split,
  .copy-block,
  .section-heading,
  .contact-panel,
  .strength-board,
  .strength-lead-card,
  .strength-card-grid,
  .strength-card,
  .service-list,
  .service-row,
  .service-row-body,
  .recruit-inner,
  .recruit-page-hero__inner,
  .culture-deck,
  .service-lead-grid {
    min-width: 0;
    max-width: 100%;
  }

  .section-inner,
  .hero-grid,
  .split,
  .strength-board,
  .service-list,
  .service-lead-grid,
  .recruit-inner,
  .recruit-page-hero__inner,
  .culture-deck,
  .contact-panel {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
  }

  .hero-copy,
  .hero-actions,
  .copy-block,
  .section-heading,
  .photo-panel,
  .photo-mask,
  .strength-board,
  .strength-lead-card,
  .strength-card-grid,
  .strength-card,
  .service-list,
  .service-row,
  .service-row-body,
  .recruit-page-hero__copy,
  .culture-deck-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .hero-actions,
  .hero-lead {
    max-width: calc(100vw - 88px) !important;
  }

  .hero-actions {
    width: calc(100vw - 88px) !important;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead,
  .copy-block p:not(.section-kicker),
  .section-heading p,
  .contact-panel p,
  .strength-description,
  .strength-card p,
  .service-row-body p,
  .service-lead-copy p,
  .service-lead-copy li,
  .recruit-page-hero__copy p:not(.section-kicker),
  .culture-deck-copy p:not(.section-kicker) {
    max-width: calc(100vw - 44px);
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .strength-lead-card h2 span,
  .service-lead-grid h2 span,
  .recruit-page-hero h1 span,
  .culture-deck-copy h3 {
    white-space: normal;
  }
}

/* ─── Representative feedback refinements ────────────────────── */
.about-page .page-hero {
  min-height: 430px;
  background:
    radial-gradient(circle at 84% 16%, rgba(13,104,178,.12), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f6fbff 100%);
}

.about-page .profile-section {
  padding-top: 96px;
}

.about-page .profile-grid {
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 86px);
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(13,104,178,.14);
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 64px rgba(13,54,86,.07);
}

.about-page .history-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.about-page .history-list {
  max-width: 1040px;
}

.about-page .history-list article:last-child {
  margin-top: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(13,104,178,.18);
}

.about-page .history-list article:last-child h3::after {
  content: "NEW";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-left: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green-dark));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  vertical-align: .18em;
}

.about-page .access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.about-page .access-card {
  border-radius: 8px;
}

.access-card--pending {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
}

.access-pending-visual {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.34) 1px, transparent 1px),
    radial-gradient(circle at 28% 28%, rgba(13,104,178,.25), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(104,179,52,.22), transparent 36%),
    linear-gradient(145deg, #eef5fb, #f9fcff);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
}

.access-pending-visual::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(13,104,178,.16);
  border-right-color: rgba(104,179,52,.18);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.access-pending-visual span {
  position: relative;
  z-index: 1;
  color: rgba(17,23,34,.82);
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: .03em;
}

.vision-core-section .section-heading {
  max-width: 780px;
}

.vision-pillar-list {
  position: relative;
  gap: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(13,104,178,.12);
  background:
    radial-gradient(circle at 18% 8%, rgba(13,104,178,.08), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(104,179,52,.1), transparent 34%),
    #fff;
  box-shadow: 0 22px 64px rgba(13,54,86,.07);
}

.vision-pillar-list::before {
  content: "";
  position: absolute;
  left: calc(16.66% + 34px);
  right: calc(16.66% + 34px);
  top: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(13,104,178,.26), rgba(104,179,52,.28), rgba(242,207,0,.3));
}

.vision-pillar-list article {
  min-height: 320px;
  padding: clamp(30px, 3vw, 44px);
  border: 0;
  border-right: 1px solid rgba(13,104,178,.12);
  background: transparent;
  box-shadow: none;
}

.vision-pillar-list article:last-child {
  border-right: 0;
}

.vision-pillar-list article::before {
  left: clamp(30px, 3vw, 44px);
  top: 58px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(13,104,178,.07);
}

.vision-pillar-list article:nth-child(2)::before {
  box-shadow: 0 0 0 8px rgba(104,179,52,.08);
}

.vision-pillar-list article:nth-child(3)::before {
  box-shadow: 0 0 0 8px rgba(242,207,0,.12);
}

.vision-pillar-list article span {
  margin-bottom: 76px;
  color: #111722;
}

.vision-pillar-list h3 {
  margin-bottom: 8px;
}

.vision-pillar-list b {
  display: block;
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.vision-pillar-list article:nth-child(2) b { color: var(--brand-green-dark); }
.vision-pillar-list article:nth-child(3) b { color: #a98f00; }

.recruit-interview-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(13,104,178,.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.recruit-interview-section .section-heading {
  max-width: 760px;
}

.interview-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.interview-link-grid a {
  min-height: 410px;
  border-radius: 8px;
}

.interview-link-grid .note-card--main {
  min-height: 410px;
}

.interview-link-grid .note-card--main figure {
  height: 210px;
}

.interview-link-grid a::before {
  top: auto;
  bottom: 30px;
}

.interview-link-grid figure {
  height: 210px;
}

.interview-link-grid span {
  margin-bottom: 24px;
}

.interview-link-grid h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.32;
}

.interview-link-grid p {
  min-height: 4.8em;
}

.recruit-gallery-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(13,104,178,.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.recruit-gallery-section .culture-deck {
  margin-top: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
}

.recruit-gallery-section .culture-deck-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-gallery-section .culture-deck-copy h3 {
  white-space: normal;
}

.recruit-gallery-section .culture-deck-frame {
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(13,104,178,.12);
}

@media (max-width: 1100px) {
  .about-page .access-grid,
  .vision-pillar-list,
  .interview-link-grid {
    grid-template-columns: 1fr;
  }

  .vision-pillar-list {
    --pillar-marker-x: 48px;
    --pillar-marker-y: 42px;
  }

  .vision-pillar-list::before {
    left: var(--pillar-marker-x);
    right: auto;
    top: var(--pillar-marker-y);
    bottom: 42px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(13,104,178,.3), rgba(104,179,52,.3), rgba(242,207,0,.34));
  }

  .vision-pillar-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(13,104,178,.12);
    padding-left: 80px;
  }

  .vision-pillar-list article:last-child {
    border-bottom: 0;
  }

  .vision-pillar-list article::before {
    top: calc(var(--pillar-marker-y) - (var(--pillar-marker-size) / 2));
    left: calc(var(--pillar-marker-x) - (var(--pillar-marker-size) / 2));
  }

  .vision-pillar-list article span {
    top: calc(var(--pillar-marker-y) - 25px);
    left: var(--pillar-marker-x);
  }

  .vision-pillar-list h3 {
    margin-top: 72px;
  }
}

@media (max-width: 700px) {
  .about-page .profile-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-pending-visual {
    min-height: 176px;
  }

  .vision-pillar-list {
    padding: 12px;
    --pillar-marker-x: 35px;
    --pillar-marker-y: 36px;
  }

  .vision-pillar-list article {
    padding: 28px 20px 28px 62px;
  }

  .vision-pillar-list::before {
    left: var(--pillar-marker-x);
  }

  .vision-pillar-list article::before {
    left: calc(var(--pillar-marker-x) - (var(--pillar-marker-size) / 2));
    top: calc(var(--pillar-marker-y) - (var(--pillar-marker-size) / 2));
  }

  .vision-pillar-list article span {
    top: calc(var(--pillar-marker-y) - 24px);
    left: var(--pillar-marker-x);
  }

  .vision-pillar-list h3 {
    margin-top: 58px;
  }
}

@media (max-width: 900px) {
  .hero.section-full {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero .hero-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px !important;
    padding-right: 0 !important;
  }

  .hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, calc(100vw - 88px)) !important;
    max-width: calc(100vw - 88px) !important;
  }

  .hero .hero-actions .button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    gap: 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero .hero-actions .button span {
    font-size: 17px;
  }
}

/* ─── Final review overrides 2026-07-07 ───────────────────────── */
.strength-board--simple {
  grid-template-columns: 1fr !important;
  gap: 28px;
}

.strength-lead-card--wide {
  min-height: auto;
  padding: clamp(34px, 4vw, 54px);
}

.strength-lead-card--wide h2 {
  display: flex;
  flex-wrap: wrap;
  gap: .28em;
  max-width: none;
  margin-bottom: 18px;
}

.strength-lead-card--wide h2 span {
  display: inline;
}

.strength-lead-card--wide .strength-subcopy,
.strength-lead-card--wide .strength-description {
  max-width: 760px;
}

.strength-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.strength-card {
  display: block;
  min-height: 230px;
  padding: 30px 28px 34px;
  border-top: 1px solid rgba(13,104,178,.14);
  border-left: 0;
}

.strength-card:first-child {
  border-left: 1px solid rgba(13,104,178,.14);
}

.strength-card::before {
  left: 28px;
  right: auto;
  top: 28px;
  bottom: auto;
  width: 42px;
  height: 4px;
  border-radius: 999px;
}

.strength-card span {
  margin: 28px 0 52px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.strength-card h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 28px);
}

.service-logo {
  justify-self: start;
  transform: translateX(-10px);
}

.service-logo img {
  max-width: 190px;
}

.service-row.ink .service-logo img {
  max-width: 218px;
}

.service-row.print .service-logo img {
  max-width: 198px;
}

.service-detail-body::after {
  content: none !important;
}

.service-process-grid h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.access-card--pending {
  display: block;
}

.vision-pillar-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  --pillar-marker-x: 68px;
  --pillar-marker-y: 78px;
  --pillar-marker-size: 14px;
}

.vision-pillar-list::before {
  content: none;
}

.vision-pillar-list article::before {
  top: calc(var(--pillar-marker-y) - (var(--pillar-marker-size) / 2));
  left: calc(var(--pillar-marker-x) - (var(--pillar-marker-size) / 2));
  width: var(--pillar-marker-size);
  height: var(--pillar-marker-size);
  z-index: 2;
}

.vision-pillar-list article {
  overflow: visible;
}

.vision-pillar-list article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: var(--pillar-marker-x);
  top: var(--pillar-marker-y);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(13,104,178,.26), rgba(104,179,52,.28));
  pointer-events: none;
  z-index: 1;
}

.vision-pillar-list article:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(104,179,52,.28), rgba(242,207,0,.3));
}

.vision-pillar-list article span {
  position: absolute;
  top: calc(var(--pillar-marker-y) - 25px);
  left: var(--pillar-marker-x);
  width: 42px;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1;
  z-index: 3;
}

.vision-pillar-list h3 {
  margin-top: 128px;
  font-size: clamp(26px, 2.7vw, 42px);
}

.vision-pillar-list b {
  display: block;
  margin-bottom: 28px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
  letter-spacing: .08em;
  color: var(--brand-blue);
}

.recruit-number-grid article {
  display: flex;
  flex-direction: column;
}

.recruit-number-grid article > span {
  order: -1;
  margin-bottom: 18px;
}

.recruit-number-grid article > strong {
  margin-bottom: 16px;
}

/* Final heading tracking */
h1,
h2,
h3,
.hero h1,
.section-heading h2,
.feature-card h3,
.system-overview h3,
.service-body h3,
.inverse h2,
.page-hero h1,
.page-hero h2,
.service-detail-body h3,
.news-article-header h1,
.contact-lead h2,
.recruit-note-card h3,
.recruit-page-hero h1 {
  letter-spacing: 1px;
}

/* 404 */
.not-found-section {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(88px, 11vw, 160px);
  background: #fff;
}

.not-found-inner {
  max-width: 780px;
  text-align: center;
}

.not-found-code {
  margin: 0 0 20px;
  color: var(--brand-blue);
  font-family: "Oswald", sans-serif;
  font-size: clamp(64px, 9vw, 116px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.not-found-inner h2 {
  margin: 0;
  color: #111319;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
  letter-spacing: 1px;
}

.not-found-inner > p:not(.not-found-code) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-actions .button {
    width: 100%;
  }
}

.footer-links {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 3vw, 42px);
}

.footer-links h4 {
  display: none;
}

.news-category-list a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dce6f0;
  border-radius: 999px;
  color: #17202b;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.news-category-list a.is-active {
  color: #fff;
  border-color: transparent;
  background: #111722;
}

@media (max-width: 1100px) {
  .strength-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .vision-pillar-list {
    grid-template-columns: 1fr !important;
    --pillar-list-padding: clamp(20px, 3vw, 34px);
    --pillar-marker-x: 48px;
    --pillar-marker-y: 42px;
  }

  .vision-pillar-list::before {
    content: "";
    left: calc(var(--pillar-list-padding) + var(--pillar-marker-x));
    right: auto;
    top: var(--pillar-marker-y);
    bottom: 42px;
    width: 1px;
    height: auto;
  }

  .vision-pillar-list article::before {
    left: calc(var(--pillar-marker-x) - (var(--pillar-marker-size) / 2));
    top: calc(var(--pillar-marker-y) - (var(--pillar-marker-size) / 2));
  }

  .vision-pillar-list article::after {
    content: none !important;
  }

  .vision-pillar-list article span {
    left: var(--pillar-marker-x);
    top: calc(var(--pillar-marker-y) - 25px);
  }

  .vision-pillar-list h3 {
    margin-top: 72px;
  }
}

@media (max-width: 900px) {
  .strength-lead-card--wide h2 {
    display: block;
    font-size: 30px;
    line-height: 1.3;
  }

  .strength-card-grid,
  .footer-links {
    grid-template-columns: 1fr !important;
  }

  .strength-card,
  .strength-card:first-child {
    border-left: 1px solid rgba(13,104,178,.14);
  }

  .service-logo {
    transform: none;
  }

  .footer-links {
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .vision-pillar-list {
    --pillar-list-padding: 12px;
    --pillar-marker-x: 35px;
    --pillar-marker-y: 36px;
  }

  .vision-pillar-list::before {
    left: calc(var(--pillar-list-padding) + var(--pillar-marker-x));
  }

  .vision-pillar-list h3 {
    margin-top: 58px;
  }
}

@media (max-width: 900px) {
  .news-card-row .tag {
    width: max-content;
    max-width: 100%;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .recruit-message-grid h2 {
    font-size: 28px;
    line-height: 1.38;
  }
}
