/* 01. Tokens */
:root {
  --ink: #07182f;
  --navy: #0d3558;
  --deep: #08243d;
  --blue: #1f5f8c;
  --gold: #b9903f;
  --red: #df1f35;
  --cyan: #7ee7ff;
  --pale: #f4f8fb;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #5d6b7c;
  --line: #d8e2ea;
  --shadow: 0 24px 80px rgba(7, 24, 47, 0.14);
}

/* 02. Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: var(--white);
  font-weight: 500;
  line-height: 1.85;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
article,
div {
  min-width: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

/* 03. Header */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(7, 24, 47, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 128px;
  height: 42px;
  object-fit: contain;
}

.brand-logo + .brand-mark {
  display: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand small,
.eyebrow {
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  font-size: 11px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.footer-youtube {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-youtube span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 9px;
  line-height: 1;
}

.header-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* 04. Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 24, 47, 0.96) 0%,
      rgba(7, 24, 47, 0.92) 18%,
      rgba(7, 24, 47, 0.82) 36%,
      rgba(7, 24, 47, 0.56) 56%,
      rgba(7, 24, 47, 0.22) 76%,
      rgba(7, 24, 47, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 24, 47, 0.3) 0%,
      rgba(7, 24, 47, 0.18) 40%,
      rgba(7, 24, 47, 0.42) 100%
    ),
    url("./assets/images/background.webp") 68% center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  right: clamp(16px, 6vw, 90px);
  bottom: 36px;
  width: min(36vw, 420px);
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red) !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero h1,
.section h2,
.entry h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 48px);
  letter-spacing: 0;
  line-height: 1.16;
  overflow-wrap: normal;
  text-wrap: auto;
  word-break: normal;
}

.entry-heading-line {
  display: block;
  white-space: nowrap;
}

.sp-break {
  display: none;
}

.pc-break {
  display: inline;
}

.mid-break {
  display: none;
}

.wide-break {
  display: inline;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts span {
  min-height: 146px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.hero-facts strong span {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.hero-facts em {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.hero-facts small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

@media (min-height: 900px) {
  .hero {
    min-height: 820px;
  }
}

/* 05. Shared Sections */
.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0;
}

.intro {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.section-heading h2,
.entry h2 {
  font-weight: 900;
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: #425268;
  font-size: 17px;
  font-weight: 600;
}

.section-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: #425268;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.card-copy {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.entry .section-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.section-heading.narrow {
  max-width: 820px;
}

.lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.intro .lead {
  max-width: 780px;
  color: #425268;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.industry {
  width: min(1180px, calc(100% - 36px));
}

.industry .section-heading {
  max-width: 900px;
}

/* 06. Cargo Flow */
.trade-map,
.trade-diagram {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(21, 91, 149, 0.08), rgba(123, 208, 228, 0.08)),
    var(--pale);
  box-shadow: var(--shadow);
}

.trade-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(21, 91, 149, 0.18);
}

.trade-map-head span,
.nkkk-panel span,
.judgement-row span,
.video-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-map-head span {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.14em;
}

.trade-map-head .pc-break {
  display: inline;
}

.trade-map-head .sp-break {
  display: none;
}

.trade-map-head strong {
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
}

.trade-map-head strong .pc-break,
.trade-map-head strong .sp-break {
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.trade-flow,
.trade-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trade-flow article,
.trade-step-card {
  position: relative;
  min-height: auto;
  padding: 0;
  border: 1px solid rgba(21, 91, 149, 0.18);
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.1);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.trade-step-card.is-open {
  border-color: var(--red);
  box-shadow: 0 18px 42px rgba(223, 31, 53, 0.18);
}

.trade-accordion-toggle {
  display: block;
  width: 100%;
  min-height: 138px;
  padding: 20px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.trade-accordion-toggle::after {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.trade-step-card.is-open .trade-accordion-toggle::after {
  transform: rotate(225deg);
}

.trade-accordion-toggle:focus-visible {
  outline: 3px solid rgba(126, 231, 255, 0.65);
  outline-offset: -3px;
}

.trade-flow article:not(:last-child)::after {
  display: none;
}

.trade-step-number {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(126, 231, 255, 0.22);
}

.trade-step-label {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.trade-flow strong,
.nkkk-panel strong,
.judgement-row strong,
.video-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.trade-step-card strong {
  font-size: 14px;
}

.trade-step-panel {
  padding: 0 20px 22px;
  animation: tradePanelOpen 180ms ease;
}

.trade-flow p,
.nkkk-panel p,
.judgement-row p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.trade-step-panel p {
  margin-top: 0;
}

.trade-step-panel dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.trade-step-panel dt {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.trade-step-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.trade-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.trade-step-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 7px;
  border: 1px solid rgba(126, 231, 255, 0.4);
  color: var(--cyan);
  background: rgba(126, 231, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.trade-term-note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 91, 149, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.trade-term-note summary {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.trade-term-note ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.trade-term-note li {
  display: grid;
  grid-template-columns: minmax(10.5em, 38%) minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  color: var(--muted);
  line-height: 1.7;
}

.trade-term-note .term-name {
  color: var(--ink);
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.trade-term-note .term-desc {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nkkk-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 22px;
  border-top: 1px dashed rgba(21, 91, 149, 0.34);
}

.nkkk-panel {
  padding: 24px;
  border: 1px solid rgba(223, 31, 53, 0.2);
  border-top: 5px solid var(--red);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.1);
}

.nkkk-panel > span {
  color: var(--red);
}

.nkkk-panel strong {
  color: var(--ink);
  font-size: 18px;
}

.nkkk-panel p {
  color: #425268;
}

.proof-list,
.trade-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li,
.trade-check-card {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(21, 91, 149, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

@keyframes tradePanelOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.proof-list li > span,
.trade-check-card > span {
  display: block;
  margin-top: 10px;
  color: #536275;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.judgement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.judgement-row article {
  min-height: 124px;
  padding: 22px;
  color: var(--white);
  background: var(--blue);
}

.judgement-row span {
  color: var(--cyan);
}

.incident-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(223, 31, 53, 0.26);
  background:
    linear-gradient(135deg, rgba(223, 31, 53, 0.1), rgba(21, 91, 149, 0.08)),
    var(--white);
  box-shadow: 0 16px 40px rgba(7, 24, 47, 0.08);
}

.incident-card > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.incident-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
}

.incident-card p {
  max-width: 820px;
  margin: 12px 0 0;
  color: #425268;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.damage-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.damage-step {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(223, 31, 53, 0.2);
  color: #425268;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(7, 24, 47, 0.05);
}

.damage-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.damage-step > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.damage-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.damage-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.damage-step-featured {
  border-color: var(--red);
  border-top: 5px solid var(--red);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(223, 31, 53, 0.18);
  transform: translateY(-4px);
}

.damage-step-featured > span {
  color: var(--red);
}

.damage-step-featured h3 {
  color: var(--ink);
}

.damage-step-featured p {
  color: #425268;
}

.nowrap-term {
  white-space: nowrap;
}

.incident-tags {
  justify-content: flex-start;
  min-width: 0;
  margin-top: 0;
}

.incident-tags span {
  margin-bottom: 0;
  border-color: rgba(223, 31, 53, 0.28);
  color: var(--red);
  background: rgba(223, 31, 53, 0.08);
  letter-spacing: 0;
  text-transform: none;
}

/* 07. Players */
.players {
  width: 100%;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(13, 53, 88, 0.3), rgba(8, 36, 61, 0.12)),
    var(--deep);
  color: var(--white);
}

.players .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.player-grid,
.role-cards,
.risk-grid,
.fit-grid,
.video-grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.player-section .player-grid,
.player-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.player-grid article,
.player-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.player-grid span {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
}

.player-grid h3,
.role-cards h3,
.job-timeline h3,
.fit-grid h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.35;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.player-grid p,
.role-cards p,
.risk-grid p,
.job-timeline p,
.fit-grid li,
.entry p {
  color: var(--muted);
  font-weight: 500;
}

.player-grid p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.player-connector {
  position: relative;
  display: grid;
  place-items: start center;
  min-height: 112px;
  margin: 24px auto 18px;
  padding-bottom: 34px;
  width: min(760px, 100%);
  text-align: center;
}

.player-connector-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 48px;
  border-right: 2px dashed rgba(126, 231, 255, 0.62);
  border-bottom: 2px dashed rgba(126, 231, 255, 0.62);
  border-left: 2px dashed rgba(126, 231, 255, 0.62);
}

.player-connector::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.player-connector-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 560px;
  padding: 12px 22px;
  color: var(--white);
  background: rgba(8, 36, 61, 0.94);
  border: 1px solid rgba(126, 231, 255, 0.3);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}

.player-nkkk-card {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 30px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.player-nkkk-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 900;
}

.player-nkkk-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.player-nkkk-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.85;
}

/* 08. Role Cards and Details */
.role-band {
  width: 100%;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  background: var(--paper);
}

.role-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.role-cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7, 24, 47, 0.08);
}

.role-cards h3,
.role-cards p {
  padding: 0 24px;
}

.role-cards p {
  margin: 0 0 26px;
}

.role-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: auto 24px 26px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.role-toggle:hover,
.role-card.is-active .role-toggle {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.role-toggle:hover {
  transform: translateY(-1px);
}

.role-card.is-active {
  outline: 3px solid rgba(223, 31, 53, 0.18);
  outline-offset: -3px;
}

.role-detail-panels {
  margin-top: 22px;
}

.role-detail {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7, 24, 47, 0.08);
}

.role-detail h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.role-detail > p {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.role-detail > .role-detail-note {
  max-width: 880px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--red);
  background: rgba(223, 31, 53, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.role-detail-group + .role-detail-group {
  margin-top: 26px;
}

.role-detail-group h4 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.role-detail-group-copy {
  max-width: 920px;
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.role-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.role-detail-item {
  padding: 18px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.role-detail-item.has-media {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.role-detail-media {
  grid-row: 1 / span 2;
  width: 150px;
  height: 110px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.role-detail-image,
.role-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-detail-item-wide {
  grid-column: 1 / -1;
}

.role-detail-item dt {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.role-detail-item dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.role-detail-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.role-detail-close:hover {
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-1px);
}

.role-term-note {
  margin-top: 22px;
}

.term-tip {
  position: relative;
  display: inline;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: help;
}

.term-tip::after {
  display: none;
  content: none;
}

.term-tip::before {
  display: none;
  content: none;
}

.term-tip:focus {
  outline: 2px solid rgba(21, 91, 149, 0.35);
  outline-offset: 3px;
}

.term-tip.is-active {
  color: var(--red);
}

.term-tooltip-layer {
  position: fixed;
  z-index: 999;
  width: min(520px, calc(100vw - 28px));
  padding: 12px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  text-align: left;
  background: rgba(7, 24, 47, 0.96);
  box-shadow: 0 16px 40px rgba(7, 24, 47, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.term-tooltip-layer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo {
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.photo.survey {
  background-image:
    linear-gradient(rgba(7, 24, 47, 0.08), rgba(7, 24, 47, 0.08)),
    url("./assets/images/survey.webp");
}

.photo.measure {
  background-image:
    linear-gradient(rgba(7, 24, 47, 0.08), rgba(7, 24, 47, 0.08)),
    url("./assets/images/measurement.webp");
}

.photo.lab {
  background-image:
    linear-gradient(rgba(7, 24, 47, 0.08), rgba(7, 24, 47, 0.08)),
    url("./assets/images/analysis.webp");
}

/* 09. Risk */
.risk {
  border-bottom: 1px solid var(--line);
}

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

.risk-grid div {
  padding: 28px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.risk-grid strong {
  display: block;
  font-size: 22px;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.job-timeline {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-timeline article {
  overflow: hidden;
  padding: 0;
  border-top: 0;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7, 24, 47, 0.08);
}

.job-image {
  display: block;
  width: 100%;
  height: 250px;
  margin: 0 0 24px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #e9f0f6;
  filter: saturate(0.95) contrast(1.03);
}

.job-timeline article > span,
.job-timeline article > h3,
.job-timeline article > p {
  display: block;
  padding-right: 24px;
  padding-left: 24px;
}

.job-timeline article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.job-timeline article > p {
  margin: 0 0 26px;
}

/* 10. Jobs, Growth, Target, Videos, Fit */
.videos {
  width: 100%;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

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

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  color: var(--white);
  background: #000;
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-card::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
}

.video-card::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
  content: "";
  transform: translate(-36%, -50%);
}

.video-card span,
.video-card strong {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
}

.video-card span {
  bottom: 72px;
  color: var(--cyan);
}

.video-card strong {
  bottom: 28px;
  font-size: 24px;
}

.video-card:hover img {
  opacity: 0.78;
  transform: scale(1.04);
}

.training {
  border-top: 1px solid var(--line);
}

.target-grid article,
.training-grid article {
  padding: 28px;
}

.target-card-image {
  display: block;
  width: 100%;
  height: 250px;
  margin: 0 0 20px;
  object-fit: contain;
  object-position: center;
  background: #e9f0f6;
}

.target-grid h3,
.target-grid p,
.training-grid h3,
.training-grid p {
  padding-right: 0;
  padding-left: 0;
}

.target-grid h3,
.training-grid h3 {
  overflow-wrap: anywhere;
  text-wrap: auto;
  word-break: normal;
  line-break: strict;
}

.target-grid p,
.training-grid p {
  margin-bottom: 0;
}

.target-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.target-card .job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid currentColor;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.job-tag-survey {
  color: #05768a;
  background: rgba(126, 231, 255, 0.14);
}

.job-tag-measure {
  color: #176d3a;
  background: rgba(54, 174, 105, 0.12);
}

.job-tag-lab {
  color: var(--red);
  background: rgba(223, 31, 53, 0.1);
}

.target-card .job-tag-note {
  margin: 0;
  padding-left: 6px;
  border-left: 1px solid currentColor;
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.02em;
}

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

.fit-grid article {
  padding: 34px;
  border: 1px solid var(--line);
}

.fit-grid article:first-child {
  border-top: 5px solid var(--red);
}

.fit-grid article:last-child {
  border-top: 5px solid var(--muted);
}

.fit-grid ul {
  padding-left: 1.2em;
  margin: 18px 0 0;
}

.fit-grid li + li {
  margin-top: 10px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 24, 47, 0.06);
}

.faq-toggle {
  position: relative;
  display: block;
  width: 100%;
  min-height: 64px;
  padding: 18px 58px 18px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.faq-toggle::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  content: "";
  transform: translateY(-60%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-toggle::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-toggle:focus-visible {
  outline: 3px solid rgba(223, 31, 53, 0.22);
  outline-offset: -3px;
}

.faq-panel {
  padding: 0 22px 22px;
  animation: tradePanelOpen 180ms ease;
}

.faq-panel p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.interview {
  border-top: 1px solid var(--line);
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.interview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7, 24, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.interview-card:hover {
  box-shadow: 0 24px 64px rgba(7, 24, 47, 0.14);
  transform: translateY(-3px);
}

.interview-photo {
  width: 100%;
  height: 220px;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  background: #edf3f8;
}

.interview-body {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 18px 20px;
}

.interview-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.interview-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.interview-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* 11. Entry and Share */
.entry {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) max(18px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: linear-gradient(90deg, rgba(7, 24, 47, 0.96), rgba(7, 24, 47, 0.78));
}

.entry p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.entry-cta {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  justify-items: start;
}

.entry-visual {
  display: block;
  width: min(100%, 440px);
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.34));
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

.entry-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  justify-content: flex-start;
  margin-top: 0;
}

.entry-actions .button {
  width: 100%;
}

.share-section {
  padding: clamp(52px, 7vw, 82px) max(18px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.share-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.share-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}

.share-section p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.sns-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sns-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.sns-action:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.sns-copy {
  border-color: var(--red);
  color: var(--red);
}

.sns-copy:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.share-message {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1380px) and (min-width: 921px) {
  .entry {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
  }

  .entry-cta {
    grid-template-columns: minmax(200px, 300px) minmax(200px, 1fr);
    justify-items: stretch;
  }

  .entry-visual {
    width: min(100%, 300px);
  }
}

@media (max-width: 1120px) and (min-width: 621px) {
  .interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .entry-cta {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .entry-actions {
    width: min(100%, 360px);
  }
}

/* 12. Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(18px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: #030b16;
  font-size: 12px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* 13. Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 14. Responsive */
/*
  Maintenance note:
  Removed unused selectors after checking index.html, script.js, glossary.js, and data/faq.js:
  .nav-youtube, .button.ghost-dark, .button.entry-sub, .faq-grid.
  Dynamic state classes such as .is-open, .is-visible, .is-scrolled, .is-active, and role-detail styles are intentionally kept.
*/
@media (max-width: 920px) {
  .hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(7, 24, 47, 0.96) 0%,
        rgba(7, 24, 47, 0.9) 42%,
        rgba(7, 24, 47, 0.72) 68%,
        rgba(7, 24, 47, 0.3) 100%
      ),
      linear-gradient(
        180deg,
        rgba(7, 24, 47, 0.38) 0%,
        rgba(7, 24, 47, 0.22) 42%,
        rgba(7, 24, 47, 0.48) 100%
      ),
      url("./assets/images/background.webp") 72% center / cover no-repeat;
  }

  .site-header {
    gap: 16px;
    padding: 14px 18px;
    justify-content: flex-start;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-height: min(72vh, 560px);
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(216, 226, 234, 0.9);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 50px rgba(7, 24, 47, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
  }

  .site-header.is-nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(216, 226, 234, 0.72);
    font-size: 12px;
    font-weight: 800;
  }

  .nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-cta {
    min-width: 78px;
  }

  .intro,
  .entry {
    grid-template-columns: 1fr;
  }

  .entry-cta {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .share-inner {
    grid-template-columns: 1fr;
  }

  .sns-actions {
    justify-content: flex-start;
  }

  .entry-visual {
    width: min(100%, 360px);
    max-height: 230px;
  }

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

  .trade-flow article:not(:last-child)::after {
    display: none;
  }

  .nkkk-band,
  .judgement-row,
  .incident-card {
    grid-template-columns: 1fr;
  }

  .damage-steps {
    grid-template-columns: 1fr;
  }

  .damage-step-featured {
    transform: none;
  }

  .damage-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .incident-tags {
    justify-content: flex-start;
    min-width: 0;
  }

  .trade-term-note ul {
    grid-template-columns: 1fr;
  }

  .trade-term-note li {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }

  .trade-term-note .term-name {
    display: block;
    white-space: normal;
  }

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

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

  .role-cards,
  .job-timeline {
    grid-template-columns: 1fr;
  }

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

  .role-toggle {
    width: calc(100% - 48px);
  }

  .role-detail {
    margin: 0 0 18px;
  }

  .role-detail-close {
    width: 100%;
  }

  .video-grid,
  .fit-grid,
  .risk-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) and (max-width: 1020px) {
  .wide-break {
    display: none;
  }

  .mid-break {
    display: inline;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
    overflow: visible;
  }

  .nav {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-width: 64px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
    padding: 112px 18px 48px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .pc-break {
    display: none;
  }

  .sp-break {
    display: inline;
  }

  .trade-map-head .pc-break {
    display: none;
  }

  .trade-map-head .sp-break {
    display: inline;
  }

  .section-heading h2,
  .job-timeline h3,
  .fit-grid h3 {
    line-height: 1.2;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions,
  .entry-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    gap: 12px;
  }

  .hero-actions .button,
  .entry-actions .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 12px 16px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .share-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .sns-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sns-action {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-facts {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .section {
    width: calc(100% - 32px);
  }

  .entry-heading-line {
    white-space: normal;
  }

  .entry h2,
  .section-heading h2 {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .trade-map {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    overflow: hidden;
  }

  .job-image {
    height: 250px;
  }

  .trade-map-head {
    display: block;
  }

  .trade-flow,
  .proof-list,
  .player-grid,
  .role-cards,
  .role-detail-list,
  .risk-grid,
  .job-timeline,
  .video-grid,
  .fit-grid,
  .interview-grid,
  .target-grid,
  .training-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trade-flow article,
  .trade-flow > *,
  .proof-list > *,
  .player-grid > *,
  .role-cards > *,
  .role-detail-list > *,
  .risk-grid > *,
  .job-timeline > *,
  .video-grid > *,
  .fit-grid > *,
  .interview-grid > *,
  .target-grid > *,
  .training-grid > *,
  .proof-list li,
  .judgement-row article {
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .trade-flow article::after,
  .trade-step-card:not(:last-child)::after {
    display: none !important;
  }

  .player-section .player-grid,
  .player-grid {
    grid-template-columns: 1fr;
  }

  .player-card {
    position: relative;
    min-height: auto;
  }

  .player-card:not(:last-child)::after {
    position: absolute;
    right: 50%;
    bottom: -26px;
    width: 16px;
    height: 16px;
    border-right: 3px solid var(--cyan);
    border-bottom: 3px solid var(--cyan);
    content: "";
    transform: translateX(50%) rotate(45deg);
  }

  .player-section .player-grid {
    gap: 42px;
  }

  .player-connector {
    min-height: 138px;
    margin-top: 12px;
    margin-bottom: 18px;
    padding-bottom: 42px;
  }

  .player-connector-line {
    display: none;
  }

  .player-connector-label {
    font-size: 14px;
  }

  .player-connector::after {
    bottom: 4px;
    background: var(--deep);
  }

  .player-nkkk-card {
    padding: 24px;
    margin-top: 0;
  }

  .brand-logo {
    flex-shrink: 1;
    max-width: 86px;
    height: 30px;
  }

  .role-detail {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    overflow: hidden;
  }

  .role-detail-item {
    min-width: 0;
  }

  .role-detail-item.has-media {
    grid-template-columns: 1fr;
  }

  .role-detail-media {
    grid-row: auto;
    width: 150px;
    height: 110px;
  }

  .role-detail-item dt,
  .role-detail-item dd {
    overflow-wrap: anywhere;
  }

  .role-toggle {
    width: calc(100% - 48px);
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .interview-card {
    grid-template-columns: 1fr;
  }

  .interview-photo {
    height: 220px;
  }

  .interview-actions .button {
    width: 100%;
  }

  .footer {
    display: block;
  }

  .footer-links {
    display: grid;
    justify-content: start;
    gap: 10px;
    margin-top: 12px;
  }

  .footer a {
    display: inline-block;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand-logo {
    max-width: 76px;
    height: 28px;
  }

  .brand strong {
    font-size: 13px;
  }

  .header-cta {
    min-width: 58px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 10px;
  }
}
