:root {
  --font-scale: 1.18;
  --navy: #171c60;
  --navy-2: #1e2470;
  --ink: #1a2050;
  --muted: #667085;
  --line: #dfe5ee;
  --paper: #f7f8fb;
  --white: #ffffff;
  --gold: #c79a42;
  --gold-2: #e0bd70;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.8;
  /* 対応ブラウザ(Chrome/Edge)では日本語を文節単位で改行する */
  word-break: auto-phrase;
}

/* 複合語(サービス名等)の途中で改行させない */
.nb {
  display: inline-block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-bottom: none;
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--white);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 25px 0 23px;
}

.global-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  font-size: calc(13px * var(--font-scale));
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}

.nav-dropdown-menu a.active {
  color: var(--gold);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-button {
  padding: 10px 18px !important;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-button::after {
  display: none;
}

.nav-button:hover,
.nav-button:focus-visible {
  color: var(--navy);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent);
}

.hero-bg-1 {
  background-image: url("assets/top-tokyo-night.png");
  animation: heroFade 10s ease-in-out infinite;
}

.hero-bg-2 {
  background-image: url("assets/top-city-day.jpg");
  animation: heroFade 10s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes heroFade {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(76px, 10vw, 128px) clamp(24px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(36px * var(--font-scale)), calc(4.4vw * var(--font-scale)), calc(58px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero-lead,
.page-lead {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: clamp(calc(15px * var(--font-scale)), calc(1.5vw * var(--font-scale)), calc(18px * var(--font-scale)));
  line-height: 2.1;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-actions.is-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #d9ad52, #b9852e);
  border-color: transparent;
}

.button.dark {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

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

.button:hover,
.button:focus-visible {
  color: var(--navy);
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 10px 26px rgba(23, 28, 96, 0.16);
  transform: translateY(-2px);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--navy);
  background: linear-gradient(135deg, #f1d58d, #d4a13f);
  border-color: transparent;
}

.button.dark:hover,
.button.dark:focus-visible,
.button.navy:hover,
.button.navy:focus-visible {
  color: var(--navy);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  background: transparent;
  animation: hero-image-reveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  will-change: clip-path, transform, opacity;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.hero-visual::after {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 470px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero > *,
.page-hero > * {
  min-width: 0;
}

.page-hero .hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 28, 96, 0.88), rgba(23, 28, 96, 0.14)),
    linear-gradient(135deg, #2a3578, #d9e5ef 58%, #617a95);
}

.page-hero .scene {
  animation: hero-image-reveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  will-change: clip-path, transform, opacity;
}

@keyframes hero-image-reveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0.72;
    transform: translateX(-34px);
  }

  to {
    clip-path: inset(0);
    opacity: 1;
    transform: translateX(0);
  }
}

.scene::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: 18%;
  height: 42%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.18)),
    repeating-linear-gradient(90deg, rgba(23,28,96,0.16) 0 2px, transparent 2px 70px);
  transform: perspective(620px) rotateX(56deg);
  box-shadow: 0 26px 70px rgba(0,0,0,0.24);
}

.scene::after {
  content: "";
  position: absolute;
  inset: 18% 13% auto auto;
  width: 260px;
  height: 160px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.24), rgba(255,255,255,0.05)),
    linear-gradient(90deg, transparent 10%, rgba(199,154,66,0.8) 10% 22%, transparent 22% 30%, rgba(255,255,255,0.62) 30% 45%, transparent 45%);
}

.scene.cxo {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/cxo-executive-talent.png") center / cover no-repeat;
}

.scene.it {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/it-project-support.png") center / cover no-repeat;
}

.scene.ai {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/ai-solution-city-innovation.png") center / cover no-repeat;
}

.scene.about {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/about-company-hero.png") center / cover no-repeat;
}

.scene.case {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/case-study-hero.png") center / cover no-repeat;
}

.scene.recruit {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/cxo-candidate-support.png") center / cover no-repeat;
}

.scene.contact {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/top-tokyo-night.png") center / cover no-repeat;
}

.scene.news {
  background:
    linear-gradient(90deg, var(--navy) 30%, rgba(23, 28, 96, 0.55) 60%, rgba(23, 28, 96, 0.15) 85%, transparent),
    url("assets/top-tokyo-night.png") center / cover no-repeat;
}

.scene.cxo::before,
.scene.cxo::after,
.scene.it::before,
.scene.it::after,
.scene.ai::before,
.scene.ai::after,
.scene.about::before,
.scene.about::after,
.scene.case::before,
.scene.case::after,
.scene.recruit::before,
.scene.recruit::after,
.scene.contact::before,
.scene.contact::after,
.scene.news::before,
.scene.news::after {
  display: none;
}

.section {
  padding: clamp(66px, 8vw, 96px) clamp(20px, 6vw, 72px);
}

#services {
  scroll-margin-top: 96px;
}

.section.paper {
  background: var(--paper);
}

.section.navy {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(28px * var(--font-scale)), calc(3vw * var(--font-scale)), calc(40px * var(--font-scale)));
  font-weight: 600;
}

.navy .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
}

.navy .section-head p {
  color: rgba(255,255,255,0.72);
}

.why-directors {
  padding-top: clamp(92px, 10vw, 136px);
  padding-bottom: clamp(92px, 10vw, 136px);
  background: var(--white);
}

.why-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.why-head {
  margin: 0 0 52px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0 32px;
  align-items: end;
  text-align: left;
}

.why-head .eyebrow {
  margin: 0;
  color: var(--gold);
}

.why-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(28px * var(--font-scale)), calc(3vw * var(--font-scale)), calc(40px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.34;
}

.why-head .why-lead {
  grid-column: 2;
  max-width: 660px;
  margin: 20px 0 0;
  color: #5f6b7d;
  font-size: calc(16px * var(--font-scale));
  line-height: 2;
}

.why-contrast {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 28, 96, 0.22);
  border-bottom: 1px solid rgba(23, 28, 96, 0.22);
}

.why-contrast-item {
  margin: 0;
  padding: 26px 28px;
  color: var(--muted);
  font-size: clamp(calc(15px * var(--font-scale)), calc(1.4vw * var(--font-scale)), calc(17px * var(--font-scale)));
  font-weight: 700;
  line-height: 1.7;
}

.why-contrast-item b {
  color: var(--navy);
  font-weight: 800;
}

.why-contrast-item + .why-contrast-item {
  border-left: 1px solid rgba(23, 28, 96, 0.12);
}

.why-formula {
  margin-top: 40px;
}

.why-capability-head {
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.why-capability-head .eyebrow {
  margin: 0;
  color: var(--gold);
}

.why-capability-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(calc(19px * var(--font-scale)), calc(1.8vw * var(--font-scale)), calc(24px * var(--font-scale)));
  font-weight: 800;
  line-height: 1.4;
}

.why-factors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(23, 28, 96, 0.16);
}

.why-factor {
  position: relative;
  padding: 30px 28px 34px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.why-factor + .why-factor {
  border-left: 1px solid rgba(23, 28, 96, 0.12);
}

.why-factor + .why-factor::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--gold);
  font-size: calc(15px * var(--font-scale));
  font-weight: 700;
}

.why-factor-name {
  color: var(--navy);
  font-size: clamp(calc(20px * var(--font-scale)), calc(1.9vw * var(--font-scale)), calc(25px * var(--font-scale)));
  font-weight: 800;
  line-height: 1.3;
}

.why-factor-desc {
  color: #5f6b7d;
  font-size: calc(12.5px * var(--font-scale));
  font-weight: 600;
  line-height: 1.7;
}

.why-outcome {
  margin-top: 26px;
  padding: clamp(32px, 4vw, 46px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.why-outcome-lead {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.why-outcome h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(24px * var(--font-scale)), calc(2.6vw * var(--font-scale)), calc(34px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.4;
}

.why-outcome p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(15px * var(--font-scale));
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  padding: 34px 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(23,28,96,0.45), rgba(23,28,96,0.96)),
    linear-gradient(135deg, #3a4590, #171c60);
  background-size: cover;
  background-position: center;
  box-shadow: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 36%, rgba(23,28,96,0.16));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card:hover {
  box-shadow: none;
}

.service-card.cxo-card {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.45), rgba(23,28,96,0.96)),
    url("assets/cxo-executive-talent.png") center / cover no-repeat;
}

.service-card.it-card {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.45), rgba(23,28,96,0.96)),
    url("assets/it-project-support.png") center / cover no-repeat;
}

.service-card.ai-card {
  background-image:
    linear-gradient(180deg, rgba(23,28,96,0.45), rgba(23,28,96,0.96)),
    url("assets/ai-solution-city-innovation.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.service-card small {
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: calc(12px * var(--font-scale));
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 6px 0 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(20px, 2.3vw, 33px);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .service-card h3 {
    font-size: calc(24px * var(--font-scale));
    white-space: normal;
  }
}

.service-card p {
  margin: 0;
  flex: 1;
}

.service-card .card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: calc(16px * var(--font-scale));
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.service-card:hover .card-arrow {
  background: rgba(199,154,66,0.2);
  border-color: var(--gold-2);
  transform: translate(3px, -3px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  min-height: 74px;
  align-items: center;
  align-content: flex-end;
}

/* CEO〜CTOの5タグを3+2の2段に折り返し、他カードとタグ欄の段数を揃える */
.service-card.cxo-card .tags {
  max-width: 250px;
}

.tag {
  padding: 6px 12px;
  border: 1px solid rgba(224, 189, 112, 0.72);
  border-radius: 3px;
  color: var(--gold-2);
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.view-detail {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-self: flex-end;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.view-detail::after {
  content: ">";
  margin-left: 18px;
  color: var(--gold-2);
  font-family: Arial, sans-serif;
  transition: transform 0.3s ease;
}

.service-card small,
.service-card h3,
.service-card p,
.service-card .tags,
.service-card .view-detail {
  transition: transform 0.42s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover small,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .tags,
.service-card:hover .view-detail {
  transform: translateY(-4px);
}

.service-card:hover .view-detail::after {
  transform: translateX(5px);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.service-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  .hero-visual,
  .page-hero .scene,
  .service-card *,
  .service-card::before,
  .card-arrow,
  .view-detail::after {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
  }
}

.feature-grid,
.card-grid,
.target-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  max-width: 780px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

a.product-link {
  display: block;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

a.product-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(23, 28, 96, .10);
}

.product-badge {
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: 10px;
  font-size: calc(.7rem * var(--font-scale));
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px;
}

.product-badge.coming-soon {
  background: var(--muted);
}

.product-logo {
  display: inline-block;
  height: 64px;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
  /* ロゴ画像の薄い背景色を白カードに馴染ませる */
  mix-blend-mode: multiply;
}

.external-icon {
  margin-left: 6px;
  font-size: .85em;
  opacity: .5;
}

.product-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: calc(.82rem * var(--font-scale));
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

a.product-link:hover .product-cta {
  text-decoration: underline;
}

.target-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature,
.info-card,
.target {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature {
  text-align: center;
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(199, 154, 66, 0.36);
  border-radius: 50%;
  font-size: calc(22px * var(--font-scale));
  font-weight: 700;
}

.feature h3,
.info-card h3,
.target h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: calc(18px * var(--font-scale));
  line-height: 1.55;
}

.feature p,
.info-card p,
.target p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
}

.strength-list {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.strength-item {
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.strength-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: calc(24px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.04em;
}

.strength-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(calc(19px * var(--font-scale)), calc(1.8vw * var(--font-scale)), calc(24px * var(--font-scale)));
  line-height: 1.55;
}

.strength-item p {
  margin: 0;
  color: var(--muted);
  font-size: calc(15px * var(--font-scale));
  line-height: 1.9;
}

.strengths-editorial {
  padding-top: clamp(92px, 10vw, 136px);
  padding-bottom: clamp(92px, 10vw, 136px);
  background: var(--white);
}

.strengths-editorial .section-head {
  max-width: 1120px;
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  text-align: left;
}

.strengths-editorial .section-head .eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
}

.strengths-editorial .section-head h2 {
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(28px * var(--font-scale)), calc(3vw * var(--font-scale)), calc(40px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.35;
}

.strengths-editorial .section-head .strengths-lead {
  grid-column: 2;
  max-width: 660px;
  margin: 14px 0 0;
  color: #5f6b7d;
  font-size: calc(16px * var(--font-scale));
  line-height: 2;
}

.strengths-editorial .strength-list {
  border-top-color: rgba(23, 28, 96, 0.34);
}

.strengths-editorial .strength-item {
  grid-template-columns: 86px minmax(460px, 1.25fr) minmax(0, 0.85fr);
  gap: 32px;
  padding: 38px 0;
  border-bottom-color: rgba(23, 28, 96, 0.18);
}

.strengths-editorial .strength-number {
  color: var(--gold);
  font-size: clamp(calc(36px * var(--font-scale)), calc(4vw * var(--font-scale)), calc(58px * var(--font-scale)));
  line-height: 1;
}

.strengths-editorial .strength-item h3 {
  color: var(--navy);
  font-size: clamp(calc(24px * var(--font-scale)), calc(2vw * var(--font-scale)), calc(30px * var(--font-scale)));
  font-weight: 800;
  line-height: 1.34;
}

.strengths-editorial .strength-item p {
  max-width: 460px;
  color: #5f6b7d;
  font-size: calc(15px * var(--font-scale));
  line-height: 2;
}

.strength-axis {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strength-axis span {
  padding: 2px 14px;
  border: 1px solid rgba(199, 154, 66, 0.6);
  border-radius: 999px;
  color: var(--navy);
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  line-height: 1.7;
}

.visual-card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23,28,96,0.12), rgba(23,28,96,0.94)),
    linear-gradient(135deg, #3a4590, #171c60);
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 42px rgba(23, 28, 96, 0.14);
}

.visual-card h3 {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(24px * var(--font-scale));
  font-weight: 600;
}

.visual-card p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: calc(14px * var(--font-scale));
}

.visual-card.cxo-intro {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.1), rgba(23,28,96,0.94)),
    url("assets/cxo-executive-support.png") center / cover no-repeat;
}

.visual-card.cxo-pmi {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.12), rgba(23,28,96,0.94)),
    url("assets/cxo-pmi-silhouette.png") center / cover no-repeat;
}

.visual-card.cxo-candidate {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.1), rgba(23,28,96,0.94)),
    url("assets/cxo-candidate-support.png") center / cover no-repeat;
}

.visual-card.cio-advisory {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.1), rgba(23,28,96,0.94)),
    url("assets/cio-advisory-meeting.png") center / cover no-repeat;
}

.visual-card.it-investment {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.1), rgba(23,28,96,0.94)),
    url("assets/IT_investment.png") center / cover no-repeat;
}

.visual-card.pm-pmo {
  background:
    linear-gradient(180deg, rgba(23,28,96,0.1), rgba(23,28,96,0.94)),
    url("assets/Pm_PMO.png") center / cover no-repeat;
}

.service-nav-grid {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-nav-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #2a3178, #141a4e);
  box-shadow: 0 12px 30px rgba(23, 28, 96, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.service-nav-card:hover,
.service-nav-card:focus-visible {
  box-shadow: 0 18px 44px rgba(23, 28, 96, 0.14);
  transform: translateY(-4px);
}

.service-nav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.service-nav-card:hover::before {
  transform: scale(1.05);
}

.service-nav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(20, 25, 75, 0.08) 0%,
    rgba(20, 25, 75, 0.40) 40%,
    rgba(16, 20, 66, 0.92) 100%
  );
}

.service-nav-card.is-cio::before {
  background-image: url("assets/cio-advisory-meeting.png");
}

.service-nav-card.is-investment::before {
  background-image: url("assets/IT_investment.png");
}

.service-nav-card.is-pmo::before {
  background-image: url("assets/Pm_PMO.png");
}

.service-nav-card.is-cxo-intro::before {
  background-image: url("assets/cxo-executive-talent.png");
}

.service-nav-card.is-cxo-pmi::before {
  background-image: url("assets/cxo-pmi-silhouette.png");
}

.service-nav-card.is-cxo-candidate::before {
  background-image: url("assets/cxo-candidate-support.png");
}

.service-menu-number {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: calc(15px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-menu-number::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.service-nav-card h3 {
  margin: 12px 0 0;
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(24px * var(--font-scale));
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(10, 14, 60, 0.45);
}

.service-nav-tagline {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.75;
}

.service-nav-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-nav-more span {
  transition: transform 0.25s ease;
}

.service-nav-card:hover .service-nav-more span {
  transform: translateY(3px);
}

.service-detail-list {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  margin: 56px auto 0;
  display: grid;
  gap: 28px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: 32px 56px;
  padding: 44px 48px;
  background: var(--white);
  border: 1px solid rgba(23, 28, 96, 0.12);
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(23, 28, 96, 0.06);
  scroll-margin-top: 100px;
}

.service-detail-intro h3 {
  margin: 14px 0 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(26px * var(--font-scale));
  font-weight: 600;
  line-height: 1.5;
}

.service-detail-intro p {
  margin: 16px 0 0;
  color: #59617a;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.9;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  align-items: start;
}

.service-menu-block {
  min-width: 0;
}

.service-menu-block h4 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: calc(16px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-menu-block ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.service-menu-block li {
  position: relative;
  overflow-wrap: anywhere;
  padding-left: 18px;
  color: #59617a;
  font-size: calc(17px * var(--font-scale));
  line-height: 1.72;
}

.service-menu-block.is-challenge li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.74em;
  width: 7px;
  height: 1px;
  background: #aeb6c6;
}

.service-menu-block.is-support h4 {
  color: var(--navy);
}

.service-menu-block.is-support li {
  color: var(--ink);
}

.service-menu-block.is-support li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.56em;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

@media (max-width: 1000px) {
  .service-nav-grid {
    gap: 16px;
  }

  .service-nav-card {
    min-height: 210px;
    padding: 22px;
  }

  .service-nav-card h3 {
    font-size: calc(20px * var(--font-scale));
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 30px;
  }
}

@media (max-width: 860px) {
  .service-nav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-nav-card {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .service-detail-list {
    margin-top: 40px;
    gap: 20px;
  }

  .service-detail {
    padding: 28px 22px;
    scroll-margin-top: 84px;
  }

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

  .service-detail-columns .service-menu-block.is-support {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
}

.proof-panel {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-panel img {
  width: 150px;
  height: auto;
  display: block;
}

.proof-panel h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: calc(22px * var(--font-scale));
}

.proof-panel p {
  margin: 0;
  color: var(--muted);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
}

.article-title {
  color: var(--muted);
  font-size: calc(13px * var(--font-scale));
}

.recruit-vision {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.recruit-vision-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.recruit-vision-header {
  border-left: 3px solid var(--navy);
  padding-left: 32px;
  margin-bottom: 64px;
}

.recruit-vision-eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruit-vision-header h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(28px * var(--font-scale)), calc(3.2vw * var(--font-scale)), calc(42px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.recruit-vision-lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: calc(15px * var(--font-scale));
  line-height: 1.9;
}

.recruit-vision .recruit-point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.recruit-vision .recruit-point {
  padding: 32px 28px 32px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.recruit-vision .recruit-point:nth-child(2) {
  padding-left: 28px;
  padding-right: 28px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.recruit-vision .recruit-point:nth-child(3) {
  padding-left: 28px;
  padding-right: 0;
}

.recruit-vision .recruit-point span {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: calc(13px * var(--font-scale));
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.4;
}

.recruit-vision .recruit-point h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: calc(17px * var(--font-scale));
  font-weight: 700;
  line-height: 1.5;
}

.recruit-vision .recruit-point p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
}

.recruit-table-wrap {
  max-width: 980px;
  margin: 0 auto;
}

#requirements {
  scroll-margin-top: 96px;
}

.recruit-table th {
  width: 180px;
}

.recruit-candidate {
  background: var(--paper);
  padding-top: 80px;
  padding-bottom: 80px;
}

.recruit-candidate-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.recruit-candidate-header {
  border-left: 3px solid var(--navy);
  padding-left: 32px;
  margin-bottom: 48px;
}

.recruit-candidate-eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruit-candidate-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(24px * var(--font-scale)), calc(2.8vw * var(--font-scale)), calc(36px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.5;
}

.recruit-candidate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.recruit-candidate-item {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.recruit-candidate-item:nth-child(4n) {
  border-right: none;
}

.recruit-candidate-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: calc(16px * var(--font-scale));
  font-weight: 700;
  line-height: 1.5;
}

.recruit-candidate-item p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
}

.recruit-candidate-item + .recruit-candidate-item {
  padding-left: 24px;
}

.form-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.form-aside {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.form-aside h2 {
  margin: 0 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(30px * var(--font-scale));
  font-weight: 600;
  line-height: 1.45;
}

.form-aside p {
  color: rgba(255,255,255,0.74);
}

.form-aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.form-aside li {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.form-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 54px rgba(23, 28, 96, 0.08);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.field legend {
  color: var(--navy);
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
}

.required {
  margin-left: 6px;
  color: #b42318;
  font-size: calc(12px * var(--font-scale));
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #cfd7e3;
  border-radius: 4px;
  font: inherit;
  line-height: 1.55;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(199,154,66,0.32);
  border-color: var(--gold);
  background: var(--white);
}

.field-error {
  min-height: 18px;
  color: #b42318;
  font-size: calc(12px * var(--font-scale));
}

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

.choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfe;
  font-weight: 700;
}

.choice input {
  width: auto;
  min-height: auto;
  margin-top: 6px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: calc(14px * var(--font-scale));
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.form-note {
  color: var(--muted);
  font-size: calc(13px * var(--font-scale));
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 16px;
  color: #075e3a;
  background: #e8f7ef;
  border: 1px solid #b7e3c8;
  border-radius: 4px;
  font-weight: 700;
}

.form-status--error {
  color: #8a1c1c;
  background: #fdecec;
  border-color: #f3b7b7;
}

.terms-box {
  max-height: 260px;
  overflow: auto;
  padding: 18px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: calc(13px * var(--font-scale));
}

.terms-box h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: calc(16px * var(--font-scale));
}

.message {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: stretch;
  background: var(--paper);
}

.portrait {
  overflow: hidden;
  background: var(--paper);
  min-height: 360px;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.message-copy {
  padding: 42px 46px 42px 0;
}

.message-bio {
  margin: 20px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: calc(13.5px * var(--font-scale));
  line-height: 1.9;
}

.message-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.career {
  display: inline-flex;
  margin: 20px 0;
  padding: 8px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px;
  font-weight: 700;
}

.cta-band {
  padding: 44px clamp(20px, 6vw, 72px);
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(24px * var(--font-scale)), calc(3vw * var(--font-scale)), calc(34px * var(--font-scale)));
  font-weight: 600;
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 72px) 28px;
  color: rgba(255,255,255,0.72);
  background: var(--navy);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
}

.footer-logo {
  display: none;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: calc(13px * var(--font-scale));
}

.license {
  font-size: calc(13px * var(--font-scale));
}

.copyright {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42);
  font-size: calc(12px * var(--font-scale));
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .global-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: calc(12px * var(--font-scale));
  }

  .global-nav a {
    padding: 0;
  }

  .global-nav a.active::after {
    bottom: -4px;
  }

  .nav-button {
    padding: 6px 10px !important;
  }

  .hero,
  .page-hero,
  .message,
  .cta-band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .recruit-vision .recruit-point,
  .recruit-vision .recruit-point:nth-child(2),
  .recruit-vision .recruit-point:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    border-right: none;
  }

  .recruit-candidate-grid {
    grid-template-columns: 1fr;
  }

  .recruit-candidate-item,
  .recruit-candidate-item + .recruit-candidate-item {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }

  .hero-visual,
  .scene {
    min-height: 300px;
  }

  .service-grid,
  .feature-grid,
  .card-grid,
  .target-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .why-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-factor {
    padding: 26px 24px 28px;
  }

  .why-factor:nth-child(odd) {
    border-left: none;
  }

  .why-factor:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 28, 96, 0.12);
  }

  .why-factor + .why-factor::before {
    display: none;
  }

  .strength-item {
    grid-template-columns: 64px 1fr;
    gap: 10px 22px;
  }

  .strengths-editorial .section-head {
    grid-template-columns: 64px 1fr;
    gap: 22px;
  }

  .strengths-editorial .section-head h2 {
    font-size: clamp(calc(28px * var(--font-scale)), calc(5vw * var(--font-scale)), calc(40px * var(--font-scale)));
  }

  .strengths-editorial .strength-item {
    grid-template-columns: 64px 1fr;
    gap: 12px 22px;
  }

  .strength-item p {
    grid-column: 2;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .candidate-benefit-grid,
  .news-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .candidate-benefit:nth-child(odd),
  .news-theme-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .message-copy {
    padding: 28px;
  }

  .message-cta .button {
    width: 100%;
  }

  .cta-band-inner {
    display: grid;
  }

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

.exec-content {
  max-width: 820px;
  margin: 0 auto;
}

.exec-heading {
  margin: 0 0 28px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(22px * var(--font-scale)), calc(2.6vw * var(--font-scale)), calc(30px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.45;
}

.exec-body p {
  margin: 0 0 22px;
  text-indent: 1em;
  line-height: 2;
}

.exec-cta-text {
  margin-top: 32px;
  text-indent: 0 !important;
  font-weight: 700;
}

.exec-form-table {
  width: 100%;
  border-collapse: collapse;
}

.exec-form-table th,
.exec-form-table td {
  padding: 12px 0;
  vertical-align: middle;
  text-align: left;
}

.exec-form-table th {
  width: 220px;
  color: var(--navy);
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  white-space: nowrap;
}

.exec-form-table td {
  padding-left: 20px;
}

.exec-form-table input {
  max-width: 100%;
}

.name-fields {
  display: flex;
  gap: 12px;
}

.name-fields input {
  flex: 1;
}

.exec-form-agree {
  margin-top: 28px;
  text-align: center;
}

.exec-form-agree label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  cursor: pointer;
}

.exec-form-agree input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.exec-form-submit {
  margin-top: 24px;
  text-align: center;
}

.exec-form-submit button {
  min-width: 200px;
  cursor: pointer;
}

.exec-terms-box {
  max-height: 500px;
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.exec-terms-title {
  margin: 32px 0 18px;
  text-align: center;
  color: var(--navy);
  font-size: calc(18px * var(--font-scale));
  font-weight: 700;
}

.exec-terms-title:first-child {
  margin-top: 0;
}

.exec-terms-body {
  font-size: calc(14px * var(--font-scale));
  line-height: 1.9;
  color: var(--muted);
}

.exec-terms-body p {
  margin: 0 0 14px;
}

.exec-terms-body ul {
  margin: 0 0 14px;
  padding-left: 1.5em;
}

.exec-terms-body li {
  margin-bottom: 6px;
}

.exec-terms-clause {
  margin-top: 22px !important;
  color: var(--navy);
  font-weight: 700;
}

.exec-terms-date {
  margin-top: 28px !important;
  color: var(--navy);
  font-weight: 600;
}

.exec-point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.exec-point-card {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(23, 28, 96, 0.05);
}

.exec-point-card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(19px * var(--font-scale));
  font-weight: 600;
  line-height: 1.5;
}

.exec-point-card p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
}

.exec-flow {
  display: flex;
  justify-content: center;
  gap: 34px;
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.exec-flow li {
  position: relative;
  flex: 1;
  max-width: 300px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--navy);
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  text-align: center;
}

.exec-flow li + li::before {
  content: "→";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
}

.exec-flow-step {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: calc(11px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.16em;
}

#register {
  scroll-margin-top: 96px;
}

@media (max-width: 960px) {
  .exec-form-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
  }

  .exec-form-table td {
    display: block;
    padding-left: 0;
    padding-bottom: 12px;
  }

  .name-fields {
    flex-direction: column;
  }

  .exec-point-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .exec-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 480px;
  }

  .exec-flow li {
    max-width: none;
  }

  .exec-flow li + li::before {
    content: none;
  }
}

@media (max-width: 620px) {
  .logo {
    width: 136px;
  }

  .global-nav {
    display: none;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero h1 .line {
    white-space: normal;
  }

  .why-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-head .why-lead {
    grid-column: 1;
    margin-top: 4px;
  }

  .why-contrast {
    grid-template-columns: 1fr;
  }

  .why-contrast-item + .why-contrast-item {
    border-top: 1px solid rgba(23, 28, 96, 0.12);
    border-left: none;
  }

  .why-capability-head {
    flex-direction: column;
    gap: 6px;
  }

  .why-outcome {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strengths-editorial .section-head .strengths-lead {
    grid-column: 1;
  }

  .strength-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .strengths-editorial .section-head,
  .strengths-editorial .strength-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .strengths-editorial .section-head h2 {
    font-size: clamp(calc(28px * var(--font-scale)), calc(9vw * var(--font-scale)), calc(38px * var(--font-scale)));
  }

  .strengths-editorial .strength-item {
    padding: 30px 0;
  }

  .strengths-editorial .strength-item h3 {
    font-size: calc(24px * var(--font-scale));
  }

  .strength-item p {
    grid-column: auto;
  }
}

.company-table-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: calc(15px * var(--font-scale));
  line-height: 1.9;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: 2px solid var(--navy);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 2px solid var(--navy);
}

.company-table th {
  width: 200px;
  color: var(--navy);
  font-weight: 700;
  background: var(--paper);
  white-space: nowrap;
}

.company-table td {
  color: var(--ink);
}

.access-info {
  max-width: 820px;
  margin: 0 auto;
}

.access-address {
  margin: 0 0 24px;
  text-align: center;
  font-size: calc(16px * var(--font-scale));
  font-weight: 600;
  color: var(--navy);
}

.access-map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 28, 96, 0.1);
}

.bio-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(23, 28, 96, 0.06);
}

.bio-name {
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: calc(22px * var(--font-scale));
  font-weight: 600;
}

.bio-body p {
  margin: 0 0 22px;
  font-size: calc(15px * var(--font-scale));
  line-height: 2;
  color: var(--ink);
}

.bio-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .company-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .company-table td {
    display: block;
    padding-top: 0;
  }

  .bio-content {
    padding: 24px 20px;
  }
}

.thanks-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thanks-body {
  font-size: calc(16px * var(--font-scale));
  line-height: 2;
  color: var(--muted);
}

.thanks-body p {
  margin: 0 0 32px;
}

.case-page .page-hero {
  min-height: 430px;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.08fr);
}

.case-page .page-lead {
  max-width: 620px;
}

.case-page .section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--white);
}

.case-page .section.paper {
  background: var(--paper);
}

.case-page .section-head {
  max-width: 1080px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: block;
  text-align: left;
  border-bottom: none;
  border-left: 3px solid var(--navy);
  padding-left: 32px;
  margin-bottom: 48px;
}

.case-page .section-head .eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-page .section-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(24px * var(--font-scale)), calc(2.8vw * var(--font-scale)), calc(36px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.5;
}

.case-list {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.case-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-item:first-child {
  border-top: 0;
}

.case-item:last-child {
  border-bottom: 1px solid var(--line);
}

.paper .case-item:first-child {
  border-top-color: transparent;
}

.paper .case-item:last-child {
  border-bottom-color: var(--line);
}

.case-number {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: calc(13px * var(--font-scale));
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
  opacity: 0.4;
}

.case-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(220px, 1fr) max-content;
  gap: 8px 36px;
  align-items: baseline;
}

.case-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: calc(16px * var(--font-scale));
  font-weight: 700;
  line-height: 1.65;
}

.case-detail {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
}

.case-tag {
  justify-self: end;
  margin: 0;
  padding: 3px 10px;
  color: var(--muted);
  background: rgba(23, 28, 96, 0.06);
  border: 0;
  border-radius: 3px;
  font-size: calc(12px * var(--font-scale));
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* マネジメント支援：クラス別グループ */
.case-group {
  max-width: 1080px;
  margin: 0 auto;
}

.case-group + .case-group {
  margin-top: 44px;
}

.case-group-title {
  margin: 0;
  color: var(--navy);
  font-size: calc(15px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.06em;
}

.case-group-title span {
  margin-left: 12px;
  color: var(--muted);
  font-size: calc(12.5px * var(--font-scale));
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* 業種 | 売上規模 | ポジション | 備考 を行幅いっぱいに均等配置（全列固定で縦を揃える） */
.case-group .case-body {
  grid-template-columns: 180px 104px 210px 120px;
  justify-content: space-between;
  gap: 8px 22px;
}

.case-scale {
  color: var(--navy);
  font-weight: 700;
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
  white-space: nowrap;
}

.case-group .case-tag {
  justify-self: start;
}

.case-industries {
  max-width: 1080px;
  margin: 48px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.case-industries-title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.04em;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags span {
  padding: 6px 14px;
  color: var(--muted);
  background: rgba(23, 28, 96, 0.06);
  border-radius: 3px;
  font-size: calc(12.5px * var(--font-scale));
  font-weight: 600;
  letter-spacing: 0.03em;
}

.case-note {
  max-width: 1080px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: calc(12.5px * var(--font-scale));
  line-height: 1.7;
}

@media (max-width: 960px) {
  .case-group .case-body {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-scale {
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .case-page .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .case-page .section-head {
    display: block;
  }

  .case-body {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-tag {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .case-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .case-number {
    font-size: calc(12px * var(--font-scale));
  }
}

/* ===== Position Overview ===== */
.position-section { padding-bottom: 88px; }

.position-overview {
  position: relative;
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  margin: 52px auto 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 28, 96, 0.11);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(11, 22, 84, 0.08);
  text-align: left;
}

.position-overview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
}

.position-overview-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 64px 76px 56px;
}

.position-overview-copy {
  max-width: none;
  min-width: 0;
  margin: 0;
  text-align: left;
}

.position-overview-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.position-overview-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: calc(34px * var(--font-scale));
  line-height: 1.62;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

.position-overview-copy h3::after {
  display: none;
}

.position-overview-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: calc(16.5px * var(--font-scale));
  line-height: 2;
}

.position-role-area {
  min-width: 0;
}

.position-role-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: left;
}

.position-role-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 13px;
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.position-role-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid rgba(23, 28, 96, 0.14);
  border-radius: 999px;
  background: #f5f7fb;
  color: var(--navy);
  font-size: calc(15.5px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.position-role-list span:hover {
  background: #f5f7fb;
  border-color: rgba(23, 28, 96, 0.14);
  color: var(--navy);
  transform: none;
}

.position-focus-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 28, 96, 0.1);
  border-top: 1px solid rgba(23, 28, 96, 0.1);
}

.position-focus-item {
  position: relative;
  min-width: 0;
  min-height: 218px;
  padding: 44px 42px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  transition: background-color .25s ease;
}

.position-focus-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.position-focus-item:hover {
  background: var(--paper);
}

.position-focus-item:hover::before {
  width: 34px;
}

.position-focus-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: calc(13px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.position-focus-item h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: calc(20px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.position-focus-item p {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: calc(15.5px * var(--font-scale));
  line-height: 1.9;
}

@media (max-width: 900px) {
  .position-overview-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 40px 42px;
  }

  .position-overview-copy p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .position-overview {
    margin-top: 30px;
    border-radius: 4px;
  }

  .position-overview-top {
    padding: 38px 24px 34px;
  }

  .position-overview-copy h3 {
    font-size: calc(23px * var(--font-scale));
    line-height: 1.65;
  }

  .position-overview-copy p {
    font-size: calc(16px * var(--font-scale));
  }

  .position-role-label {
    margin-bottom: 13px;
  }

  .position-role-list {
    gap: 8px;
  }

  .position-role-list span {
    min-height: 36px;
    padding: 8px 14px;
    font-size: calc(12.5px * var(--font-scale));
  }

  .position-focus-grid {
    grid-template-columns: 1fr;
  }

  .position-focus-item {
    min-height: auto;
    padding: 30px 24px 32px;
  }

  .position-focus-item::before {
    left: 24px;
  }
}
/* ===== Blockquote Strengths ===== */
.blockquote-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.bq-item {
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.bq-item:last-child {
  border-bottom: none;
}

.bq-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: calc(18px * var(--font-scale));
  font-weight: 700;
  line-height: 1.55;
}

.bq-item p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.8;
}

.candidate-benefits {
  background: var(--white);
}

.candidate-benefits .section-head p:last-child {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.candidate-benefit-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 28, 96, 0.22);
}

.candidate-cta {
  justify-content: center;
}

.candidate-benefit {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.candidate-benefit:first-child {
  border-left: 1px solid var(--line);
}

.benefit-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: calc(15px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.candidate-benefit h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: calc(18px * var(--font-scale));
  line-height: 1.55;
}

.candidate-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  line-height: 1.85;
}

/* ===== News & Blog ===== */
.news-editorial-head {
  margin-bottom: 32px;
}

.news-theme-grid {
  max-width: 1120px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 28, 96, 0.22);
}

.news-theme-card {
  min-height: 220px;
  padding: 24px 20px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-theme-card:first-child {
  border-left: 1px solid var(--line);
}

.news-theme-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-theme-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: calc(17px * var(--font-scale));
  line-height: 1.5;
}

.news-theme-card p {
  margin: 0;
  color: var(--muted);
  font-size: calc(13.5px * var(--font-scale));
  line-height: 1.8;
}

.news-filter {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--muted);
  text-decoration: none;
  font-size: calc(14px * var(--font-scale));
  font-weight: 600;
  transition: all .2s;
}

.filter-btn:hover {
  background: var(--paper);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.news-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow .25s, transform .25s;
}

.news-card:hover {
  box-shadow: 0 12px 36px rgba(23, 28, 96, 0.12);
  transform: translateY(-3px);
}

.news-card-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--paper);
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.04);
}

.news-card-thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  color: rgba(255,255,255,0.3);
  font-size: calc(14px * var(--font-scale));
  font-weight: 700;
  letter-spacing: .12em;
}

.news-card-body {
  padding: 1.25rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.news-card-meta time {
  font-size: calc(13px * var(--font-scale));
  color: var(--muted);
}

.news-tag {
  display: inline-block;
  padding: .125rem .5rem;
  border-radius: 3px;
  font-size: calc(12px * var(--font-scale));
  font-weight: 700;
  letter-spacing: .06em;
}

.news-tag-news {
  background: #dbeafe;
  color: #1d4ed8;
}

.news-tag-blog {
  background: #fef3c7;
  color: #b45309;
}

.news-tag-note {
  background: #dcfce7;
  color: #15803d;
}

.news-card-title {
  margin: 0 0 .5rem;
  font-size: calc(16px * var(--font-scale));
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
}

.news-card-excerpt {
  margin: 0;
  font-size: calc(13.5px * var(--font-scale));
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: calc(16px * var(--font-scale));
}

/* ===== Article Detail ===== */
.article-detail {
  max-width: 820px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  margin: .75rem 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(calc(24px * var(--font-scale)), calc(3vw * var(--font-scale)), calc(34px * var(--font-scale)));
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.article-hero-image {
  margin-bottom: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: calc(16px * var(--font-scale));
  line-height: 2;
  color: var(--ink);
}

.article-body p {
  margin: 0 0 1.5rem;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  font-size: calc(22px * var(--font-scale));
  color: var(--navy);
}

.article-body h3 {
  margin: 2rem 0 .75rem;
  font-size: calc(18px * var(--font-scale));
  color: var(--navy);
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5em;
}

.article-body li {
  margin-bottom: .5rem;
}

.article-body blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  font-style: italic;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* ===== Newsroom (press-release cards) ===== */
.nr-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nr-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 1.85rem 1.75rem 1.5rem;
  color: var(--ink);
  transition: box-shadow .25s ease, transform .25s ease;
}

.nr-card:hover {
  box-shadow: 0 14px 34px rgba(23, 28, 96, 0.12);
  transform: translateY(-3px);
}

.nr-card-title {
  margin: 0;
  font-size: calc(19px * var(--font-scale));
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  transition: color .2s ease;
}

.nr-card:hover .nr-card-title { color: var(--navy); }

.nr-card-excerpt {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: calc(14.5px * var(--font-scale));
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nr-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.75rem;
}

.nr-more {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: calc(15px * var(--font-scale));
  color: var(--navy);
}

.nr-arrow {
  font-size: 1.15em;
  line-height: 1;
  transition: transform .2s ease;
}

.nr-card:hover .nr-arrow { transform: translateX(5px); }

.nr-card-date {
  flex-shrink: 0;
  font-weight: 700;
  font-size: calc(13px * var(--font-scale));
  letter-spacing: .03em;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .nr-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .news-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .candidate-benefit-grid,
  .news-theme-grid {
    grid-template-columns: 1fr;
  }

  .candidate-benefit,
  .news-theme-card {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .news-card-thumb {
    height: 180px;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .page-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
  }

  .hero-copy,
  .page-hero .hero-copy {
    width: 100%;
    padding: 58px 28px 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(calc(31px * var(--font-scale)), calc(9.2vw * var(--font-scale)), calc(38px * var(--font-scale)));
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .hero-lead,
  .page-lead {
    max-width: 100%;
    margin-top: 20px;
    font-size: calc(15px * var(--font-scale));
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    gap: 12px;
    padding: 10px 18px;
    white-space: normal;
    line-height: 1.55;
  }

  .button span {
    flex: 0 0 auto;
  }

  .hero-visual,
  .scene {
    min-height: 250px;
  }

  .section {
    padding: 56px 24px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .form-aside h2 {
    font-size: clamp(calc(24px * var(--font-scale)), calc(7.4vw * var(--font-scale)), calc(30px * var(--font-scale)));
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .proof-panel,
  .form-aside,
  .form-panel,
  .feature,
  .info-card,
  .target {
    padding: 24px 22px;
  }

  .proof-panel img {
    width: 120px;
  }

  .bq-item {
    padding: 22px 0 22px 18px;
  }

  .bq-item h3 {
    font-size: calc(17px * var(--font-scale));
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .tag {
    white-space: normal;
  }

  .position-section {
    padding-bottom: 60px;
  }

  body {
    padding-bottom: 64px;
  }
}

/* ===== Hamburger & Mobile Nav ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 25;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sp-show { display: none; }

.mobile-cta-bar {
  display: none;
}

@media (max-width: 620px) {
  .hamburger {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .global-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 68px 0 80px;
    background: rgba(23, 28, 96, 0.98);
    z-index: 21;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    white-space: normal;
    font-size: calc(15px * var(--font-scale));
  }

  body.nav-open .global-nav a {
    padding: 15px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  body.nav-open .global-nav a.active::after {
    display: none;
  }

  body.nav-open .global-nav .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  body.nav-open .global-nav .nav-dropdown-menu a {
    padding-left: 48px !important;
    font-size: calc(14px * var(--font-scale));
  }

  body.nav-open .global-nav .nav-button {
    margin: 20px 28px 0;
    padding: 15px 18px !important;
    text-align: center;
    border-radius: 4px;
    border-bottom: none;
  }

  .sp-hide { display: none !important; }
  .sp-show { display: inline !important; }

  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 19;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(23, 28, 96, 0.96);
    border-top: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
  }

  .mobile-cta-button {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, #d9ad52, #b9852e);
    border-radius: 4px;
    font-size: calc(15px * var(--font-scale));
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}
