/* ===== RETHEME blue (§3-3b・2026-07-03 batch) — 原本はサーバ .bak & _server_mirror/css ===== */
@charset "UTF-8";
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #1F6FD0;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #1F6FD0;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #1F6FD0;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #1F6FD0;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1F6FD0, #7896bb);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #1F6FD0;
  }
  .footer__summary:hover::after {
    background-color: #1F6FD0;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

:root {
  --color-ink: #161a20;
  --color-muted: #5f646a;
  --color-primary: #2e507a;
  --color-primary-dark: #17293f;
  --color-olive: #4a5a24;
  --color-olive-dark: #182638;
  --color-soft: #eff2f6;
  --color-white: #ffffff;
  --color-gold: #f5b500;
  --color-border: #dcdfe3;
  --shadow-card: 0 24px 70px rgb(18 40 27 / 12%);
  --radius-large: 28px;
  --radius-medium: 18px;
  --inner: min(1180px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: #16283f;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.inner {
  width: var(--inner);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section--soft {
  background: var(--color-soft);
}

.section--olive {
  color: var(--color-white);
  background: var(--color-olive-dark);
}

.section--dark {
  color: var(--color-white);
  background: #11151a;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--light {
  color: var(--color-white);
}

.section-heading__label,
.final-cta__label,
.land-hero__eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.section-heading__label--light,
.section-heading--light .section-heading__label,
.final-cta__label,
.land-hero__eyebrow {
  color: #c7d5e7;
}

.section-heading__title,
.diagnosis__title,
.risk-guide__title,
.faq__title,
.final-cta__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.section-heading__lead,
.diagnosis__lead,
.risk-guide__text,
.faq__lead,
.final-cta__lead {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 2;
}

.section-heading--light .section-heading__lead,
.diagnosis__lead,
.final-cta__lead {
  color: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 62px;
  padding: 0 24px 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button--gold {
  color: #1b1f23;
  background: var(--color-gold);
  box-shadow: 0 12px 28px rgba(245, 181, 0, 0.28);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.button--wide {
  min-width: 290px;
}

.button__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link--dark {
  color: var(--color-olive-dark);
}

.breadcrumb {
  width: var(--inner);
  margin: 0 auto;
  padding: 18px 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #747980;
  font-size: 12px;
}

.breadcrumb__item + .breadcrumb__item::before {
  margin-right: 8px;
  content: "/";
}

.breadcrumb__link {
  text-decoration: none;
}

.button:focus-visible,
.text-link:focus-visible,
.related-card:focus-visible,
.faq__question:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.sp-menu {
  display: none;
}

.land-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #242e3a;
}

.land-hero__media,
.land-hero__shade {
  position: absolute;
  inset: 0;
}

.land-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.land-hero__shade {
  background: linear-gradient(90deg, rgba(10, 19, 30, 0.86) 0%, rgba(10, 19, 30, 0.62) 46%, rgba(10, 19, 30, 0.18) 72%, transparent 100%);
}

.land-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--inner);
  min-height: 760px;
  margin: 0 auto;
  padding: 120px 0 84px;
  flex-direction: column;
  justify-content: center;
}

.land-hero__title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.land-hero__lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.land-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.land-hero__meta-item {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.land-hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.land-hero__note,
.final-cta__note {
  max-width: 770px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.route-choice {
  overflow: hidden;
}

.route-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.route-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.route-card__image {
  display: block;
  height: 330px;
  overflow: hidden;
}

.route-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card__body {
  padding: 38px 40px 42px;
}

.route-card__number {
  margin: 0 0 16px;
  color: var(--color-primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.route-card__title {
  margin: 0;
  font-size: 29px;
  line-height: 1.4;
}

.route-card__text {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.route-card__points {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.route-card__point {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
}

.route-card__point::before {
  position: absolute;
  top: 0.58em;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  content: "";
  transform: rotate(-45deg);
}

.diagnosis__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 74px;
}

.diagnosis__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 38px;
}

.diagnosis__check {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.diagnosis__check-number {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #182330;
  background: #dfe8c3;
  font-size: 11px;
}

.diagnosis__image {
  display: block;
  height: 620px;
  overflow: hidden;
  border-radius: 160px 24px 24px 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.26);
}

.diagnosis__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 70px;
}

.decision__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.decision__item {
  display: flex;
  gap: 16px;
  min-height: 168px;
  padding: 28px 28px 26px 0;
  border-bottom: 1px solid var(--color-border);
}

.decision__item:nth-child(odd) {
  padding-right: 28px;
}

.decision__item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--color-border);
}

.decision__index {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.decision__item-title {
  margin: 0;
  font-size: 18px;
}

.decision__item-text {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.decision__image {
  display: block;
  height: 590px;
  overflow: hidden;
  border-radius: 24px;
}

.decision__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__flow::before {
  position: absolute;
  top: 76px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #b5bbc2;
  content: "";
}

.process__step {
  position: relative;
  z-index: 1;
  padding: 28px 26px 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(24, 33, 45, 0.08);
  text-align: center;
}

.process__number {
  display: block;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process__icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid #ccd1d8;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: var(--color-soft);
  font-size: 24px;
  font-weight: 700;
}

.process__title {
  margin: 0;
  font-size: 20px;
}

.process__text {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.process__note {
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  text-align: center;
}

.risk-guide__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
}

.risk-guide__image {
  display: block;
  height: 620px;
  overflow: hidden;
  border-radius: 24px 150px 24px 24px;
}

.risk-guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.risk-guide__alert {
  display: grid;
  gap: 7px;
  margin: 30px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--color-gold);
  background: #f6f4e8;
}

.risk-guide__alert strong {
  font-size: 14px;
}

.risk-guide__alert span {
  color: var(--color-muted);
  font-size: 13px;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 30px 78px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.related-card__label {
  color: #99aabe;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.related-card__title {
  align-self: end;
  margin-top: 24px;
  font-size: 23px;
}

.related-card__text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.related-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.faq__inner {
  display: grid;
  align-items: start;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 86px;
}

.faq__header {
  position: sticky;
  top: 40px;
}

.faq__list {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 24px 58px 24px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::before,
.faq__question::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 2px;
  background: var(--color-primary-dark);
  content: "";
}

.faq__question::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(0deg);
}

.faq__mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.faq__mark--answer {
  color: var(--color-primary-dark);
  background: #dfe3e9;
}

.faq__answer {
  display: flex;
  gap: 18px;
  padding: 4px 44px 28px 0;
}

.faq__answer p {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #1e2733;
}

.final-cta__media,
.final-cta__shade {
  position: absolute;
  inset: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__shade {
  background: linear-gradient(90deg, rgba(11, 18, 26, 0.92) 0%, rgba(11, 18, 26, 0.74) 52%, rgba(11, 18, 26, 0.26) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--inner);
  min-height: 620px;
  margin: 0 auto;
  padding: 100px 0;
  flex-direction: column;
  justify-content: center;
}

.final-cta__title {
  max-width: 790px;
}

.mobile-sticky-cta {
  display: none;
}

.sp-only {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .related-card:hover {
    transform: translateY(-3px);
  }
  .button--gold:hover {
    box-shadow: 0 18px 34px rgba(245, 181, 0, 0.36);
  }
  .route-card:hover .route-card__image img {
    transform: scale(1.035);
  }
  .related-card:hover {
    background: rgba(255, 255, 255, 0.09);
  }
}
@media (max-width: 1024px) {
  :root {
    --inner: min(100% - 48px, 920px);
  }
  .section {
    padding: 96px 0;
  }
  .diagnosis__inner,
  .decision__layout,
  .risk-guide__inner {
    gap: 44px;
  }
  .diagnosis__image,
  .decision__image,
  .risk-guide__image {
    height: 520px;
  }
  .process__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__flow::before {
    display: none;
  }
}
@media (max-width: 850px) {
  :root {
    --inner: calc(100% - 40px);
  }
  body {
    padding-bottom: 72px;
  }
  .sp-menu {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 9px 10px 7px;
    border: 0;
    border-radius: 50%;
    place-content: center;
    gap: 4px;
    color: #fff;
    background: #17293f;
    cursor: pointer;
  }
  .sp-menu__button-line {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu__button-label {
    margin-top: 1px;
    font-size: 7px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .sp-menu.is-open .sp-menu__button-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__button-line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__button-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 96px 24px 32px;
    visibility: hidden;
    background: #f4f6f8;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    flex-direction: column;
    overflow-y: auto;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .sp-menu__nav {
    display: grid;
  }
  .sp-menu__link {
    padding: 17px 4px;
    border-bottom: 1px solid #d9dcdf;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }
  .sp-menu__action {
    display: flex;
    min-height: 54px;
    border: 1px solid #17293f;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__action--primary {
    color: #1c2127;
    border-color: #f5b500;
    background: #f5b500;
  }
  .breadcrumb {
    padding: 12px 0;
  }
  .land-hero,
  .land-hero__inner {
    min-height: 690px;
  }
  .land-hero__media img {
    object-position: 64% center;
  }
  .land-hero__shade {
    background: linear-gradient(180deg, rgba(9, 16, 25, 0.54) 0%, rgba(9, 16, 25, 0.8) 48%, rgba(9, 16, 25, 0.94) 100%);
  }
  .land-hero__inner {
    justify-content: flex-end;
    padding: 120px 0 48px;
  }
  .land-hero__title {
    font-size: clamp(38px, 10vw, 54px);
  }
  .land-hero__lead {
    font-size: 15px;
  }
  .route-choice__grid,
  .diagnosis__inner,
  .decision__layout,
  .risk-guide__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }
  .route-card__image {
    height: 280px;
  }
  .diagnosis__image,
  .decision__image,
  .risk-guide__image {
    height: 460px;
  }
  .diagnosis__image {
    order: -1;
    border-radius: 80px 18px 18px 18px;
  }
  .risk-guide__image {
    border-radius: 18px 80px 18px 18px;
  }
  .decision__list {
    order: 2;
  }
  .decision__image {
    order: 1;
  }
  .related__grid {
    grid-template-columns: 1fr;
  }
  .faq__header {
    position: static;
  }
  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 250;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -8px 30px rgba(20, 29, 40, 0.12);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky-cta__link {
    display: flex;
    min-height: 50px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: #1c2025;
    background: #f5b500;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
}
@media (max-width: 568px) {
  :root {
    --inner: calc(100% - 32px);
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading__title,
  .diagnosis__title,
  .risk-guide__title,
  .faq__title,
  .final-cta__title {
    font-size: 32px;
  }
  .section-heading__lead,
  .diagnosis__lead,
  .risk-guide__text,
  .faq__lead,
  .final-cta__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .sp-only {
    display: inline;
  }
  .breadcrumb {
    display: none;
  }
  .land-hero,
  .land-hero__inner {
    min-height: 720px;
  }
  .land-hero__inner {
    padding: 100px 0 36px;
  }
  .land-hero__title {
    font-size: 39px;
    line-height: 1.28;
  }
  .land-hero__lead br {
    display: none;
  }
  .land-hero__meta {
    gap: 7px;
  }
  .land-hero__meta-item {
    padding: 6px 10px;
    font-size: 11px;
  }
  .land-hero__actions,
  .final-cta__actions {
    display: grid;
  }
  .button,
  .button--wide {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
  .route-choice__grid {
    gap: 18px;
  }
  .route-card__image {
    height: 230px;
  }
  .route-card__body {
    padding: 28px 24px 32px;
  }
  .route-card__title {
    font-size: 24px;
  }
  .diagnosis__inner,
  .decision__layout,
  .risk-guide__inner {
    gap: 32px;
  }
  .diagnosis__checks {
    grid-template-columns: 1fr;
  }
  .diagnosis__image,
  .decision__image,
  .risk-guide__image {
    height: 330px;
  }
  .decision__list {
    grid-template-columns: 1fr;
  }
  .decision__item,
  .decision__item:nth-child(odd),
  .decision__item:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }
  .process__flow {
    grid-template-columns: 1fr;
  }
  .process__step {
    display: grid;
    min-height: 0;
    padding: 22px;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    text-align: left;
  }
  .process__number {
    grid-column: 2;
    margin: 0 0 5px;
  }
  .process__icon {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1/4;
    font-size: 18px;
  }
  .process__title,
  .process__text {
    grid-column: 2;
  }
  .process__title {
    font-size: 18px;
  }
  .process__text {
    margin-top: 5px;
  }
  .related-card {
    min-height: 190px;
    padding: 26px 64px 26px 24px;
  }
  .related-card__title {
    font-size: 20px;
  }
  .faq__question {
    min-height: 82px;
    padding: 20px 42px 20px 0;
    gap: 12px;
    font-size: 15px;
  }
  .faq__answer {
    padding-right: 8px;
    gap: 12px;
  }
  .faq__mark {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .final-cta,
  .final-cta__inner {
    min-height: 650px;
  }
  .final-cta__media img {
    object-position: 60% center;
  }
  .final-cta__shade {
    background: linear-gradient(180deg, rgba(10, 16, 24, 0.52) 0%, rgba(10, 16, 24, 0.88) 54%, rgba(10, 16, 24, 0.96) 100%);
  }
  .final-cta__inner {
    justify-content: flex-end;
    padding: 82px 0 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  color: #282d33;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
}

body {
  min-width: 320px;
  color: #282d33;
  background: #fff;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: #184276;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #1F6FD0;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #1F6FD0;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #1F6FD0;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #1F6FD0;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #1F6FD0;
    box-shadow: 0 10px 30px rgba(16, 21, 27, 0.07);
    cursor: pointer;
  }
  .sp-menu__line {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    visibility: hidden;
    padding: 104px 24px 40px;
    background: rgba(16, 26, 38, 0.98);
    opacity: 0;
    overflow-y: auto;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu__nav {
    display: grid;
    gap: 8px;
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link::after {
    content: "→";
  }
  .sp-menu__link--cta {
    justify-content: center;
    margin-top: 20px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #1F6FD0;
  }
  .sp-menu__link--cta::after {
    display: none;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1F6FD0 0%, #729fd7 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #1F6FD0;
  }
  .footer__summary:hover::after {
    background-color: #1F6FD0;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

/* ===== PHOTO HARMONY + POSTER GRAMMAR（§5-5/§8・2026-07-03） ===== */
main img { filter: saturate(0.78); }
main figure { position: relative; }
main figure::after { content:""; position:absolute; inset:0; background:#1F6FD0; opacity:0.14; mix-blend-mode:color; pointer-events:none; }
main h1, main h2, main h3, main [class*="__title"] { font-family:'Yu Mincho','Hiragino Mincho ProN','MS Mincho',serif; font-weight:700; letter-spacing:0.03em; }
main [class*="__eyebrow"], main [class*="__en"], main [class*="__label"] { font-family:'Barlow',Arial,sans-serif; font-weight:700; letter-spacing:0.28em; text-transform:uppercase; }
main [class*="__eyebrow"]::after, main [class*="__label"]::after { content:""; display:inline-block; vertical-align:middle; width:34px; height:2px; margin-left:14px; background:#1F6FD0; }
main [class*="__number"] { font-family:'Barlow',Arial,sans-serif; letter-spacing:0.02em; }
@media (hover:hover) and (pointer:fine) { main [class*="card"]:hover { transform:translateY(-4px); transition:transform .25s ease; } }
@media (prefers-reduced-motion:reduce) { main [class*="card"]:hover { transform:none; } main img { transition:none; } }


/* ===== BATCHC LP図解表示型オーバーライド（image-design-system v1.1 §7-2）2026-07-03 =====
   図解スロット限定（:has/src指定）: contain・height:auto・原寸比率契約・写真調和フィルタ/ベール解除・caption下置き。
   写真スロット（ヒーロー/CTA帯/背景型/記事サムネ）は不変更。 ===== */
body#land-top img[src][src$="/img/contents/bess-land/land-sell.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1400/900}
body#land-top :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/land-sell.jpg"]),body#land-top :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/land-sell.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-top picture:has(> img[src$="/img/contents/bess-land/land-sell.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-top img[src][src$="/img/contents/bess-land/land-lease.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1400/900}
body#land-top :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/land-lease.jpg"]),body#land-top :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/land-lease.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-top picture:has(> img[src$="/img/contents/bess-land/land-lease.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-top img[src][src$="/img/contents/bess-land/site-survey.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1400/900}
body#land-top :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/site-survey.jpg"]),body#land-top :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/site-survey.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-top picture:has(> img[src$="/img/contents/bess-land/site-survey.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-top img[src][src$="/img/contents/bess-land/document-review.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1400/900}
body#land-top :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/document-review.jpg"]),body#land-top :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/document-review.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-top picture:has(> img[src$="/img/contents/bess-land/document-review.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-top img[src][src$="/img/contents/bess-land/land-risk.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:1400/900}
body#land-top :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/land-risk.jpg"]),body#land-top :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/land-risk.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-top picture:has(> img[src$="/img/contents/bess-land/land-risk.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/bess-land/land-sell.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/land-lease.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/site-survey.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/document-review.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/land-risk.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/bess-land/land-sell.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/land-lease.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/site-survey.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/document-review.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/land-risk.jpg"]) figcaption{position:static;margin:12px 0 0;padding:0;color:#5A6270;background:none;font-size:12px;right:auto;bottom:auto;left:auto;top:auto;width:auto}

/* ===== UPLIFT batch1 land blue (uplift_20260704) — 下層格上げ指示書 2026-07-04 ===== */
:root {
  --u-theme: #1F6FD0;
  --u-deep: #0C2A4D;
  --u-tint: #F2F6FB;
  --u-gold: #F5B500;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- セクション余白リズム（96px） ---- */
body#land-top .section { padding: 96px 0; }
body#land-top .section-heading { margin-bottom: 48px; }
body#land-top .section--soft { background: var(--u-tint); }
body#land-top .section--olive { background: var(--u-deep); }
body#land-top .section--dark { background: var(--u-deep); }

/* ---- ヒーロー（--u-deepグラデ＋白明朝31px＋eyebrowアニメ） ---- */
body#land-top .land-hero { min-height: 620px; background: var(--u-deep); }
body#land-top .land-hero__inner { min-height: 620px; }
body#land-top .land-hero__shade { background: linear-gradient(100deg, rgba(12, 42, 77, 0.96) 0%, rgba(12, 42, 77, 0.82) 45%, rgba(31, 111, 208, 0.25) 100%); }
body#land-top .land-hero__eyebrow { display: block; margin: 0 0 16px; color: #93BEF0; font-size: 13px; letter-spacing: 0.28em; }
body#land-top .land-hero__eyebrow::before { content: ""; display: block; width: 40px; height: 2px; margin-bottom: 14px; background: var(--u-theme); }
body#land-top .land-hero__eyebrow::after { content: none; }
body#land-top .land-hero__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-top .land-hero__lead { color: #DCE6F2; font-size: 18px; line-height: 1.9; }
body#land-top .land-hero__meta-item { border-color: rgba(147, 190, 240, 0.45); border-radius: 999px; background: rgba(12, 42, 77, 0.45); font-size: 13px; }
body#land-top .land-hero__note { color: rgba(255, 255, 255, 0.66); }
@keyframes u38-fade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
body#land-top .land-hero__eyebrow,
body#land-top .land-hero__title,
body#land-top .land-hero__lead,
body#land-top .land-hero__meta,
body#land-top .land-hero__actions,
body#land-top .land-hero__note { animation: u38-fade 0.6s ease both; }
body#land-top .land-hero__title { animation-delay: 0.12s; }
body#land-top .land-hero__lead { animation-delay: 0.24s; }
body#land-top .land-hero__meta { animation-delay: 0.36s; }
body#land-top .land-hero__actions { animation-delay: 0.48s; }
body#land-top .land-hero__note { animation-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
  body#land-top .land-hero__eyebrow,
  body#land-top .land-hero__title,
  body#land-top .land-hero__lead,
  body#land-top .land-hero__meta,
  body#land-top .land-hero__actions,
  body#land-top .land-hero__note { animation: none; }
}

/* ---- ボタン（金CTA・radius999・padding 16/32級） ---- */
body#land-top .button { min-height: 56px; padding: 0 32px; border-radius: 999px; font-size: 16px; }
body#land-top .button--gold { color: var(--u-ink); background: var(--u-gold); }
body#land-top .button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  body#land-top .button--gold:hover { background: var(--u-gold); box-shadow: 0 18px 34px rgba(245, 181, 0, 0.36); filter: brightness(0.92); }
}

/* ---- セクション見出し（eyebrow=テーマ色・h2=25px明朝） ---- */
body#land-top .section-heading__label { color: var(--u-theme); font-size: 13px; }
body#land-top .section-heading__label--light,
body#land-top .section-heading--light .section-heading__label,
body#land-top .final-cta__label { color: #93BEF0; font-size: 13px; }
body#land-top .section-heading__title,
body#land-top .diagnosis__title,
body#land-top .risk-guide__title,
body#land-top .faq__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-top .final-cta__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-top .section-heading__lead,
body#land-top .risk-guide__text,
body#land-top .faq__lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#land-top .diagnosis__lead,
body#land-top .final-cta__lead,
body#land-top .section-heading--light .section-heading__lead { color: rgba(255, 255, 255, 0.8); font-size: 18px; line-height: 1.9; }

/* ---- 分岐カード（radius12・図解スロットはp側のみ調整） ---- */
body#land-top .route-card { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 12px 32px rgba(12, 42, 77, 0.08); }
body#land-top .route-card__image { height: auto; }
body#land-top .route-card__number { color: var(--u-theme); }
body#land-top .route-card__title { font-size: 20px; }
body#land-top .route-card__text { color: var(--u-sub); }
body#land-top .route-card__point::before { border-bottom-color: var(--u-theme); border-left-color: var(--u-theme); }
body#land-top .text-link { color: var(--u-theme); }
body#land-top .text-link--dark { color: var(--u-theme); }
body#land-top .text-link:focus-visible { outline: 2px solid var(--u-deep); outline-offset: 3px; }

/* ---- 診断（濃色バンド1） ---- */
body#land-top .diagnosis__check { border-color: rgba(255, 255, 255, 0.18); border-radius: 12px; }
body#land-top .diagnosis__check-number { color: var(--u-deep); background: #DCE9F8; font-family: "Barlow", Arial, sans-serif; }
body#land-top .diagnosis__image { height: auto; border-radius: 12px; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22); }

/* ---- 判断基準 ---- */
body#land-top .decision__index { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; font-size: 13px; }
body#land-top .decision__image { height: auto; border-radius: 12px; }

/* ---- 流れ（番号=Barlowテーマ色・カードradius12） ---- */
body#land-top .process__step { border-radius: 12px; }
body#land-top .process__number { color: var(--u-theme); font-size: 12px; }
body#land-top .process__icon { border-color: #C9D8EA; color: var(--u-deep); background: #fff; }

/* ---- リスクガイド ---- */
body#land-top .risk-guide__image { height: auto; border-radius: 12px; }
body#land-top .risk-guide__alert { border-left-color: var(--u-theme); border-radius: 6px; background: var(--u-tint); }

/* ---- 関連（濃色バンド上のカード） ---- */
body#land-top .related-card { border-radius: 12px; }
body#land-top .related-card__label { color: #93BEF0; }
body#land-top .related-card__title { font-size: 20px; }

/* ---- FAQ ---- */
body#land-top .faq__question { font-size: 16px; }
body#land-top .faq__question::before,
body#land-top .faq__question::after { background: var(--u-deep); }
body#land-top .faq__mark { background: var(--u-deep); }
body#land-top .faq__mark--answer { color: var(--u-deep); background: #DCE9F8; }
body#land-top .faq__question:focus-visible { outline: 2px solid var(--u-deep); outline-offset: 3px; }

/* ---- 最終CTA（濃色締めバンド×金CTA） ---- */
body#land-top .final-cta { background: var(--u-deep); }
body#land-top .final-cta__shade { background: linear-gradient(100deg, rgba(12, 42, 77, 0.95) 0%, rgba(12, 42, 77, 0.8) 52%, rgba(31, 111, 208, 0.3) 100%); }

/* ---- 〜900px：セクション48px ---- */
@media (max-width: 900px) {
  body#land-top .section { padding: 48px 0; }
  body#land-top .section-heading { margin-bottom: 32px; }
  body#land-top .land-hero,
  body#land-top .land-hero__inner { min-height: 520px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   land-top は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#land-top .header__actions { background: #1E8A58; }
body#land-top .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#land-top .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#land-top .header__lang-link.is-current { background: #EDF6F1; }
body#land-top .header__lang-button:focus-visible,
body#land-top .header__lang-link:focus-visible,
body#land-top .header__action-link:focus-visible,
body#land-top .header__nav-link:focus-visible,
body#land-top .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#land-top .header__lang-button:hover { border-color: #1E8A58; }
  body#land-top .header__lang-link:hover { background: #EDF6F1; }
  body#land-top .header__nav-link:hover { color: #1E8A58; }
}
