:root {
  --red: #e60012;
  --red-soft: #fff0f1;
  --black: #111111;
  --ink: #202020;
  --muted: #686868;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --soft-2: #fafafa;
  --wide: 1440px;
  --max: 1180px;
  --section: 1180px;
  --text: 760px;
  --article: 920px;
  --radius: 12px;
  --type-h2: clamp(30px, 3vw, 42px);
  --type-h3: clamp(21px, 1.8vw, 26px);
  --type-h4: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 82px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16.5px;
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 158px;
  height: 40px;
  color: var(--red);
  background: url("../images/logo.png") left center / contain no-repeat;
  text-decoration: none;
  font-weight: 800;
}

.logo-mark {
  display: none;
  gap: 5px;
  width: 34px;
}

.logo-mark span {
  display: block;
  height: 7px;
  background: var(--red);
}

.logo-text {
  display: none;
  font-size: 20px;
  letter-spacing: 0;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding-block: 8px;
  text-decoration: none;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.global-nav a[aria-current="page"]::after,
.global-nav a:hover::after {
  transform: scaleX(1);
}

.header-entry,
.mobile-entry,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.header-entry {
  min-width: 148px;
  min-height: 50px;
  padding-inline: 26px;
  white-space: nowrap;
}

.button:hover,
.header-entry:hover,
.mobile-entry:hover {
  transform: translateY(-1px);
  background: var(--black);
  border-color: var(--black);
}

.button--secondary {
  color: var(--black);
  background: #fff;
  border-color: var(--black);
}

.button--secondary:hover {
  color: #fff;
  background: var(--black);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.article-link-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  width: 100%;
  margin: 34px 0 0;
}

.article-link-row--single {
  max-width: 380px;
}

.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 16px 18px 16px 22px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, .045);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.article-link > span:first-child {
  min-width: 0;
}

.article-link-arrow {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 18px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

.article-link:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 0, 18, .42);
  box-shadow: 0 18px 42px rgba(17, 17, 17, .08);
}

.article-link:hover .article-link-arrow {
  transform: translateX(2px);
  background: var(--black);
}

.article-link--secondary {
  background: var(--soft-2);
}

.social-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
  margin: 34px 0 0;
}

.social-account-card {
  display: grid;
  overflow: hidden;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, .055);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.social-account-card:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 0, 18, .42);
  box-shadow: 0 24px 52px rgba(17, 17, 17, .09);
}

.social-account-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.social-account-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.social-account-card-body span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-account-card-body strong {
  color: var(--black);
  font-size: 22px;
  line-height: 1.35;
}

.social-account-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.9;
}

.social-account-card-body em {
  color: var(--red);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.person-social-block {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.person-social-profile {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.person-social-profile img {
  width: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.person-social-profile span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.person-social-profile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.35;
}

.person-social-profile p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.person-social-block .social-account-grid {
  margin-top: 0;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero--home {
  position: relative;
  display: grid;
  place-items: center;
  width: min(var(--wide), calc(100% - 64px));
  min-height: clamp(560px, 45vw, 690px);
  margin: 28px auto 72px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--black);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(920px, calc(100% - 48px));
  padding: clamp(72px, 8vw, 120px) 24px;
  color: #fff;
  text-align: center;
}

.page-label,
.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 840px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .34);
}

.hero-title-desktop,
.hero-title-mobile,
.hero-title-desktop span,
.hero-title-mobile span {
  display: block;
}

.hero-title-mobile {
  display: none;
}

.page-hero h1 {
  font-size: clamp(38px, 4.2vw, 56px);
}

.hero p {
  max-width: 620px;
  margin: 0;
  font-size: 19px;
  line-height: 1.9;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .42);
}

.hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) saturate(.9) contrast(1.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .42), rgba(17, 17, 17, .62)),
    radial-gradient(circle at 50% 50%, rgba(17, 17, 17, .26), transparent 52%);
}

.hero--home .page-label {
  color: #fff;
  letter-spacing: .18em;
}

.hero--home .button-row {
  justify-content: center;
}

.article,
.related-section,
.entry-section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.related-section h2,
.entry-section h2 {
  max-width: 820px;
  margin: 12px auto 36px;
  color: var(--black);
  font-size: var(--type-h2);
  line-height: 1.25;
  text-wrap: balance;
}

.related-grid {
  display: grid;
  gap: 18px;
  text-align: left;
}

.related-grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-card {
  display: block;
  min-height: 220px;
  padding: 28px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
}

.related-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.related-card strong {
  display: block;
  margin-top: 18px;
  font-size: var(--type-h4);
  line-height: 1.4;
}

.related-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.home-section {
  width: 100%;
  padding: 112px 24px;
  border-top: 1px solid var(--line);
}

.home-section:nth-of-type(even) {
  background: var(--soft-2);
}

.home-section-head,
.home-lead-inner,
.home-section-inner,
.home-team-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.home-section-head {
  max-width: none;
  margin-bottom: 46px;
  text-align: left;
}

.home-section-head h2,
.home-lead-inner h2,
.home-section-copy h2 {
  margin: 12px 0 24px;
  color: var(--black);
  font-size: var(--type-h2);
  line-height: 1.32;
  text-wrap: balance;
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: normal;
}

.home-section-head p,
.home-lead-inner p {
  max-width: none;
  margin: 0 0 20px;
  color: var(--ink);
  text-align: left;
}

.home-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 680px);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}

.home-editorial-head .home-section-heading {
  min-width: 0;
}

.home-editorial-head .home-section-body {
  min-width: 0;
  padding-left: clamp(24px, 3vw, 36px);
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  line-height: 2.05;
}

.home-editorial-head .home-section-body p:last-child {
  margin-bottom: 0;
}

.home-section--lead {
  padding-block: 104px;
  text-align: left;
  background: #fff;
}

.home-lead-inner {
  max-width: none;
}

.home-section-inner,
.home-team-grid {
  display: grid;
  gap: clamp(44px, 5vw, 60px);
  align-items: start;
}

.home-section-inner {
  grid-template-columns: minmax(0, 540px) minmax(0, 580px);
}

.home-section--split-reverse .home-section-inner,
.home-section--entry .home-section-inner,
.home-team-grid {
  grid-template-columns: minmax(0, 580px) minmax(0, 540px);
}

.home-section-inner--wide {
  grid-template-columns: minmax(0, 560px) minmax(0, 560px);
}

.home-section--split-reverse .home-section-copy {
  order: 1;
}

.home-section--split-reverse .home-section-media {
  order: 2;
}

.home-section-copy {
  min-width: 0;
}

.home-section-copy p {
  max-width: none;
  margin: 0 0 22px;
  font-size: 16.5px;
  line-height: 2;
}

.home-value-grid,
.home-job-card-grid,
.home-faq-grid {
  display: grid;
  gap: 18px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.home-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-point-list {
  display: grid;
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 72px auto 0;
}

.home-point-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 132px;
  padding: 26px 30px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.home-point-item:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 18, .36);
  box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
}

.home-point-item span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--red);
  background: var(--soft);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-point-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--type-h4);
  line-height: 1.45;
}

.home-point-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.85;
}

.home-point-item em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.home-point-item em::after {
  content: "→";
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.home-card,
.home-job-card {
  display: block;
  min-height: 100%;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  overflow: hidden;
  padding: 34px 34px 28px;
}

.home-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
  transform: scaleX(.18);
  transform-origin: left center;
  transition: transform .18s ease;
}

.home-card:hover,
.home-job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 18, .36);
  box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
}

.home-card:hover::before {
  transform: scaleX(1);
}

.home-card span,
.home-job-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-card strong,
.home-job-card h3 {
  display: block;
  margin: 0 0 14px;
  color: var(--black);
  font-size: var(--type-h3);
  line-height: 1.38;
}

.home-card p,
.home-job-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.home-card em {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.home-card em::after {
  content: "→";
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.home-section-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, .07);
}

.home-section-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-section-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.home-job-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-job-card {
  overflow: hidden;
}

.home-job-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-job-card > div {
  padding: 28px 28px 30px;
}

.home-section-note {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  color: var(--ink);
}

.home-section-note p {
  margin: 0 0 18px;
}

.home-section-note .button-row {
  justify-content: flex-start;
}

.home-team-photos {
  display: grid;
  gap: 16px;
}

.home-faq-list {
  display: grid;
  gap: 12px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.home-faq-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1.1fr) minmax(260px, .9fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.home-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 0, 18, .36);
  box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
}

.home-faq-item span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-faq-item strong {
  font-size: 20px;
  line-height: 1.45;
}

.home-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.home-faq-item em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.home-faq-item em::after {
  content: "→";
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.home-guide-panel {
  display: grid;
  gap: 20px;
}

.home-guide-links {
  display: grid;
  gap: 10px;
}

.home-guide-links .home-card {
  min-height: 0;
  padding: 18px 20px;
}

.home-guide-links .home-card span {
  margin-bottom: 8px;
}

.home-guide-links .home-card strong {
  font-size: 18px;
  margin-bottom: 6px;
}

.home-guide-links .home-card p {
  font-size: 13px;
}

.home-section--entry {
  background: #fff;
}

.content-section {
  width: 100%;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.content-section:nth-of-type(even) {
  background: var(--soft-2);
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, var(--text));
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  width: min(var(--section), calc(100% - 48px));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--text)) minmax(300px, 420px);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  width: min(var(--section), calc(100% - 48px));
  margin-inline: auto;
}

.section--reverse .section-grid {
  grid-template-columns: minmax(300px, 420px) minmax(0, var(--text));
}

.section--reverse .article-copy {
  order: 2;
}

.article-copy h2,
.section-heading h2,
.article-section h2 {
  margin: 12px 0 30px;
  color: var(--black);
  font-size: var(--type-h2);
  line-height: 1.35;
  text-wrap: balance;
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: normal;
}

.section-heading h2 {
  margin-bottom: 0;
}

.article-copy p,
.article-body p {
  margin: 0 0 22px;
  max-width: none;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 1.2em;
}

.article-body li {
  padding-left: 0.2em;
  line-height: 1.9;
}

.article-copy h3,
.article-body h3 {
  margin: 52px 0 18px;
  color: var(--black);
  font-size: var(--type-h3);
  line-height: 1.45;
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: normal;
}

.section-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
}

.section-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.subpage-hero {
  position: relative;
  min-height: 430px;
  padding: clamp(92px, 11vw, 148px) 24px 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(230, 0, 18, .08) 0 1px, transparent 1px 100%) 0 0 / 22px 22px,
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  border-bottom: 1px solid var(--line);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 112px);
  bottom: -92px;
  width: clamp(190px, 26vw, 360px);
  aspect-ratio: 1;
  border: 36px solid rgba(230, 0, 18, .09);
  border-radius: 50%;
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.subpage-hero .page-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.subpage-hero .page-label::before {
  content: "";
  width: 72px;
  height: 5px;
  background: var(--red);
}

.subpage-hero h1 {
  max-width: 980px;
  margin: 28px 0 24px;
  color: var(--black);
  font-size: clamp(44px, 6.2vw, 86px);
  font-weight: 900;
  line-height: 1.08;
}

.subpage-hero p {
  max-width: 820px;
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.subpage-guide {
  width: min(var(--max), calc(100% - 48px));
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}

.subpage-guide-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .07);
}

.guide-panel {
  padding: 34px 38px;
}

.guide-panel + .guide-panel {
  border-left: 1px solid var(--line);
}

.guide-panel h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
}

.guide-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.guide-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.page-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-index a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.page-index a:hover {
  color: var(--red);
  border-color: var(--red);
}

.article {
  width: min(var(--article), calc(100% - 48px));
  max-width: none;
  padding: 100px 0 40px;
}

.article-section {
  padding: 0 0 96px;
}

.article-section + .article-section {
  padding-top: 96px;
  border-top: 1px solid var(--line);
}

.article-section:last-child {
  padding-bottom: 56px;
}

.article-body {
  font-size: 17px;
}

.article-section-photo {
  width: 100%;
  margin: 28px 0 34px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, .08);
}

.article-section-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.article-section-photo figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.article-section-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 34px;
}

.article-section-photo-grid .article-section-photo {
  margin: 0;
}

.article-section-photo-grid .article-section-photo img {
  aspect-ratio: 4 / 3;
}

.leader-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 10px;
}

.leader-profile-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, .055);
}

.leader-profile-card img {
  width: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.leader-profile-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.leader-profile-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.35;
}

.leader-profile-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.text-marker {
  display: inline;
  padding: 0 .18em .08em;
  background: linear-gradient(transparent 45%, #fff176 45%);
  font-weight: 800;
}

.article-support {
  display: grid;
  gap: 30px;
  width: 100%;
  margin: 52px 0 8px;
}

.article-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.article-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.article-table-block h3 {
  margin: 0 0 14px;
  font-size: var(--type-h4);
  line-height: 1.5;
}

.article-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  line-height: 1.75;
}

.article-table th,
.article-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--line);
}

.article-table tr:first-child th,
.article-table tr:first-child td {
  border-top: 0;
}

.article-table th {
  width: 32%;
  color: var(--black);
  background: var(--soft-2);
  font-weight: 800;
}

.article-section--faq h2 {
  margin-bottom: 38px;
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-item {
  scroll-margin-top: 110px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(17, 17, 17, .055);
}

.faq-question {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 26px 30px;
  color: var(--black);
  background: var(--soft-2);
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
}

.faq-mark,
.faq-answer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-mark {
  color: #fff;
  background: var(--red);
}

.faq-answer {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 30px 30px;
}

.faq-answer-mark {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(230, 0, 18, .22);
}

.faq-answer-body p {
  max-width: 100%;
}

.faq-answer-body p:last-child,
.faq-answer-body .article-link-row:last-child {
  margin-bottom: 0;
}

.related-section {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-contact-cta {
  position: relative;
  margin-top: 0;
  padding: 116px 24px 96px;
  color: var(--black);
  background: linear-gradient(180deg, var(--soft-2) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-contact-cta::before {
  content: none;
}

.footer-contact-inner {
  width: min(900px, 100%);
  margin-inline: auto;
}

.footer-contact-cta h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 900;
  line-height: 1.28;
}

.footer-contact-cta p {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.9;
}

.footer-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.footer-contact-button--primary {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 18px 34px rgba(230, 0, 18, .18);
}

.footer-contact-button--secondary {
  color: var(--black);
  background: #fff;
  border: 1px solid #dedede;
}

.corporate-footer {
  position: relative;
  min-height: 560px;
  padding: 96px 24px 34px;
  color: #fff;
  background: #070707;
}

.corporate-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(56px, 14vw, 260px);
  width: min(1190px, 100%);
  margin-inline: auto;
}

.corporate-footer-info {
  padding-top: 6px;
}

.footer-logo {
  width: 162px;
  height: 40px;
  color: var(--red);
}

.footer-logo .logo-mark {
  width: 42px;
  gap: 6px;
}

.footer-logo .logo-mark span {
  height: 8px;
  background: var(--red);
}

.footer-logo .logo-text {
  font-size: 20px;
}

.corporate-footer-info p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.corporate-footer-nav {
  display: grid;
  gap: 18px;
}

.corporate-footer-nav a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.corporate-footer-nav a:hover {
  color: #fff;
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: max-content;
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .72s cubic-bezier(.22, .61, .36, 1),
    transform .72s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    width: 100%;
    max-width: none;
    min-height: 72px;
    gap: 12px;
    padding: 14px 18px;
    overflow: visible;
  }

  .logo {
    gap: 9px;
    width: 150px;
    height: 38px;
  }

  .logo-mark {
    width: 30px;
    gap: 4px;
  }

  .logo-mark span {
    height: 6px;
  }

  .logo-text {
    font-size: 18px;
  }

  .global-nav {
    display: none;
  }

  .header-entry {
    display: none;
  }

  .menu-button {
    position: static;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    min-height: 44px;
    width: 44px;
    padding: 0;
    color: #fff;
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 999px;
    font-weight: 800;
    font-size: 0;
  }

  .menu-button::before {
    content: "";
    display: block;
    width: 17px;
    height: 12px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: linear-gradient(#fff, #fff) center / 17px 2px no-repeat;
  }

  .mobile-nav {
    position: fixed;
    inset: 72px 18px auto;
    z-index: 90;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 70px rgba(17, 17, 17, .16);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 12px;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-entry {
    margin-top: 8px;
  }

  .hero--home {
    width: calc(100% - 32px);
    min-height: 520px;
    margin: 16px auto 54px;
    border-radius: 18px;
  }

  .hero--home .hero-copy {
    width: min(100%, calc(100vw - 56px));
    padding: 56px 12px;
  }

  .subpage-hero {
    min-height: 0;
    padding: 74px 22px 52px;
  }

  .subpage-hero::before {
    right: -76px;
    bottom: -92px;
    width: 220px;
    border-width: 28px;
  }

  .subpage-hero .page-label::before {
    width: 46px;
    height: 4px;
  }

  .subpage-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 1.12;
  }

  .subpage-hero p {
    font-size: 16px;
  }

  .hero h1 {
    max-width: 100%;
    width: auto;
    font-size: clamp(31px, 9vw, 44px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-visual img {
    object-position: center center;
  }

  .hero p {
    font-size: 16.5px;
  }

  .content-section,
  .article,
  .related-section,
  .footer-contact-cta,
  .corporate-footer {
    width: min(100% - 40px, var(--max));
  }

  .footer-contact-cta,
  .corporate-footer {
    width: 100%;
  }

  .home-section,
  .content-section {
    padding-block: 72px;
  }

  .related-section {
    padding-block: 52px 60px;
  }

  .home-section {
    width: 100%;
    padding-inline: 20px;
  }

  .related-grid,
  .home-section-inner,
  .home-value-grid,
  .home-job-card-grid,
  .home-faq-grid,
  .home-point-item,
  .home-faq-item,
  .home-team-grid,
  .home-team-photos,
  .article-section-photo-grid,
  .section-layout,
  .section-grid,
  .corporate-footer-inner {
    grid-template-columns: 1fr;
  }

  .home-section-inner,
  .home-team-grid,
  .home-section-head,
  .home-lead-inner,
  .home-editorial-head,
  .section-layout,
  .section-grid {
    width: 100%;
    gap: 28px;
  }

  .home-section--split-reverse .home-section-inner,
  .home-section--entry .home-section-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-section--split-reverse .home-section-copy,
  .home-section--split-reverse .home-section-media,
  .home-section--entry .home-section-copy,
  .home-section--entry .home-section-media {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .home-editorial-head {
    grid-template-columns: 1fr;
  }

  .home-editorial-head .home-section-body {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    font-size: 16.5px;
  }

  .home-section--split-reverse .home-section-media,
  .home-section--split-reverse .home-section-copy,
  .home-section--entry .home-section-media,
  .home-section--entry .home-section-copy {
    order: initial;
  }

  .home-section-head {
    margin-bottom: 28px;
  }

  .home-card,
  .home-job-card > div {
    padding: 22px;
  }

  .home-card {
    min-height: 0;
  }

  .home-point-list {
    margin-top: 40px;
  }

  .home-point-item,
  .home-faq-item {
    gap: 14px;
  }

  .home-point-item {
    min-height: 0;
    padding: 22px;
  }

  .home-faq-item {
    padding: 22px;
  }

  .home-faq-item em {
    justify-self: start;
  }

  .home-section-note {
    margin-top: 28px;
  }

  .section--reverse .article-copy {
    order: 0;
  }

  .related-card {
    min-height: 0;
  }

  .subpage-guide {
    width: calc(100% - 40px);
    margin-top: -28px;
  }

  .subpage-guide-card {
    grid-template-columns: 1fr;
  }

  .guide-panel {
    padding: 24px 22px;
  }

  .guide-panel + .guide-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .page-index {
    grid-template-columns: 1fr;
  }

  .article-table th,
  .article-table td {
    display: block;
    width: 100%;
  }

  .article-table td {
    border-top: 0;
    padding-top: 0;
  }

  .leader-profile-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .leader-profile-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .leader-profile-card img {
    width: 96px;
  }

  .leader-profile-card strong {
    font-size: 20px;
  }

  .leader-profile-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .social-account-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .social-account-card-body {
    padding: 18px;
  }

  .social-account-card-body strong {
    font-size: 20px;
  }

  .social-account-card-body p,
  .social-account-card-body em {
    font-size: 14px;
  }

  .person-social-block {
    margin-top: 30px;
  }

  .person-social-profile {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .person-social-profile img {
    width: 96px;
  }

  .person-social-profile strong {
    font-size: 20px;
  }

  .person-social-profile p {
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-list {
    gap: 16px;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .faq-question {
    padding: 22px 18px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 22px 18px 24px;
  }

  .faq-mark,
  .faq-answer-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .article {
    padding-top: 70px;
  }

  .article-section {
    padding-bottom: 70px;
  }

  .article-section + .article-section {
    padding-top: 70px;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .article-link-row,
  .article-link-row--single {
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 28px;
  }

  .article-link {
    min-height: 58px;
    padding: 15px 16px 15px 18px;
    font-size: 15px;
  }

  .footer-contact-cta {
    margin-top: 0;
    padding: 78px 22px 72px;
  }

  .footer-contact-cta h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .footer-contact-actions {
    flex-direction: column;
  }

  .footer-contact-button {
    width: 100%;
  }

  .corporate-footer {
    min-height: 620px;
    padding: 76px 28px 36px;
  }

  .corporate-footer-inner {
    gap: 56px;
  }

  .copyright {
    left: 28px;
    transform: none;
    width: auto;
    right: 28px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .hero h1 {
    font-size: clamp(29px, 7.6vw, 33px);
    line-height: 1.2;
  }

  .hero--home {
    min-height: 560px;
  }

  .hero-visual img {
    object-position: center center;
  }

  .home-section--split-reverse .home-section-copy h2,
  .home-section--entry .home-section-copy h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.36;
    text-wrap: auto;
  }

  .home-section--split-reverse .home-section-copy p,
  .home-section--entry .home-section-copy p {
    font-size: 16px;
    line-height: 1.9;
  }
}
