/* ===== 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, #1B5FB0, #1F6FD0);
}
.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: #1B5FB0;
  }
  .footer__summary:hover::after {
    background-color: #1B5FB0;
  }
}
@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 {
  --revix-green: #1B5FB0;
  --revix-deep: #0C2A4D;
  --land-olive: #4a5a24;
  --land-deep: #142131;
  --gold: #f5b500;
  --ink: #16181c;
  --muted: #656a70;
  --line: #d9dde1;
  --surface: #f5f6f8;
  --olive-soft: #eef0e7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button, input, textarea, select {
  font: inherit;
}

.inner {
  width: min(1160px, 100% - 80px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--land-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

#main {
  overflow: hidden;
}

.breadcrumb {
  border-top: 1px solid #edeff1;
  border-bottom: 1px solid #edeff1;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  list-style: none;
  font-size: 12px;
  color: #686d73;
}

.breadcrumb__list li + li::before {
  margin-right: 20px;
  content: "/";
  color: #a0a4aa;
}

.breadcrumb__list a {
  text-decoration: none;
}

.tokusochi-hero {
  position: relative;
  min-height: 720px;
  background: linear-gradient(115deg, #f4f6ef 0 52%, #dce1e8 52% 100%);
}

.tokusochi-hero::before {
  position: absolute;
  inset: auto auto 0 0;
  width: 32%;
  height: 170px;
  content: "";
  background: var(--land-olive);
  clip-path: polygon(0 42%, 100% 0, 88% 100%, 0 100%);
  opacity: 0.12;
}

.tokusochi-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 720px;
  padding-top: 58px;
  padding-bottom: 70px;
}

.tokusochi-hero__content {
  position: relative;
  z-index: 2;
  padding-right: 56px;
}

.tokusochi-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--land-olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.tokusochi-hero__eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: var(--land-olive);
}

.tokusochi-hero__title {
  margin: 0;
  font-size: clamp(48px, 5.1vw, 78px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.tokusochi-hero__lead {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 2;
}

.tokusochi-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--primary {
  color: #fff;
  background: var(--land-olive);
  box-shadow: 0 12px 28px rgba(74, 90, 36, 0.22);
}

.button--secondary {
  border-color: #9ba5b1;
  color: var(--land-deep);
  background: rgba(255, 255, 255, 0.74);
}

.button--gold {
  color: #201a00;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(245, 181, 0, 0.24);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button:focus-visible, .text-link:focus-visible, .anchor-nav a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.tokusochi-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #4e5258;
  font-size: 13px;
  font-weight: 600;
}

.tokusochi-hero__points li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  vertical-align: 2px;
}

.tokusochi-hero__media {
  position: relative;
  z-index: 1;
  margin: 0 -11vw 0 0;
  height: 570px;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  box-shadow: 0 30px 80px rgba(23, 28, 34, 0.18);
}

.tokusochi-hero__media picture, .tokusochi-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.tokusochi-hero__media img {
  object-fit: cover;
  object-position: 52% center;
}

.tokusochi-hero__media figcaption, .document-layout__media figcaption, .field-layout__media figcaption, .risk-photo-layout__media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 23, 26, 0.68);
  font-size: 10px;
}

.tokusochi-hero__alert {
  position: absolute;
  right: 2%;
  bottom: 32px;
  z-index: 3;
  width: 390px;
  padding: 22px 26px;
  border-left: 5px solid var(--gold);
  color: #fff;
  background: rgba(20, 33, 49, 0.94);
  box-shadow: 0 22px 50px rgba(13, 19, 27, 0.28);
}

.tokusochi-hero__alert span {
  display: block;
  color: #dce7c6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tokusochi-hero__alert strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.tokusochi-hero__alert p {
  margin: 4px 0 0;
  color: #e8ecf2;
  font-size: 12px;
  line-height: 1.7;
}

.anchor-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e3e6e9;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.anchor-nav__inner {
  display: flex;
  justify-content: center;
}

.anchor-nav a {
  position: relative;
  padding: 18px 30px;
  color: #4f545b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.anchor-nav a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  content: "";
  background: #d8dbdf;
  transform: translateY(-50%);
}

.section {
  padding: 112px 0;
  scroll-margin-top: 70px;
}

.section-heading__kicker {
  margin: 0 0 16px;
  color: var(--land-olive);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.section-heading__title, .field-layout__content h2, .risk-photo-layout__content h2, .diagnosis-layout__intro h2, .faq-layout__heading h2, .final-cta__content h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section-heading__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #535960;
  font-size: 16px;
  line-height: 2;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .section-heading__lead {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-heading--split .section-heading__lead {
  margin: 0;
}

.section--conclusion {
  background: #fff;
}

.conclusion-grid {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  align-items: stretch;
  max-width: 980px;
  margin: 62px auto 0;
}

.conclusion-card {
  padding: 42px;
  border-radius: 20px;
}

.conclusion-card--plain {
  border: 1px solid #d2d9e1;
  background: var(--olive-soft);
}

.conclusion-card--danger {
  border: 1px solid #ead7d1;
  background: #fbf3f0;
}

.conclusion-card__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--land-olive);
  font-size: 12px;
  font-weight: 700;
}

.conclusion-card--danger .conclusion-card__label {
  background: #9e4d39;
}

.conclusion-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.55;
}

.conclusion-card p:last-child {
  margin: 18px 0 0;
  color: #555a60;
  font-size: 14px;
}

.conclusion-grid__symbol {
  display: grid;
  place-items: center;
  color: #8b9097;
  font-size: 36px;
  font-weight: 300;
}

.source-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  max-width: 980px;
  margin: 26px auto 0;
  padding: 25px 30px;
  border-left: 4px solid var(--gold);
  background: #faf9f3;
}

.source-note strong {
  color: var(--land-deep);
}

.source-note p {
  margin: 0;
  color: #5d6165;
  font-size: 13px;
}

.section--mechanism {
  color: #fff;
  background: var(--land-deep);
}

.mechanism-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.section--mechanism .section-heading__kicker {
  color: #95adcb;
}

.mechanism-layout__copy > p {
  margin: 26px 0 0;
  color: #dadfe6;
}

.mechanism-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.mechanism-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mechanism-list li > span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.mechanism-list strong {
  font-size: 15px;
}

.mechanism-list p {
  margin: 2px 0 0;
  color: #bac1c9;
  font-size: 12px;
}

.energy-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px 1.35fr 110px 1fr;
  align-items: center;
  min-height: 400px;
  padding: 42px 34px 78px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 45%, rgba(245, 181, 0, 0.13), transparent 40%), rgba(255, 255, 255, 0.05);
}

.energy-diagram__node, .energy-diagram__battery {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 22px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
}

.energy-diagram__node span, .energy-diagram__battery span {
  color: #c2cad4;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.energy-diagram__node strong, .energy-diagram__battery strong {
  margin-top: 8px;
  font-size: 20px;
}

.energy-diagram__battery {
  min-height: 190px;
  border: 2px solid var(--gold);
  background: rgba(245, 181, 0, 0.08);
}

.energy-diagram__battery small {
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px;
}

.energy-diagram__flow {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  color: #d8dee5;
  font-size: 11px;
}

.energy-diagram__flow i {
  position: relative;
  width: 84px;
  height: 2px;
  background: #9facbb;
}

.energy-diagram__flow i::after {
  position: absolute;
  top: -5px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #9facbb;
  border-right: 2px solid #9facbb;
  content: "";
  transform: rotate(45deg);
}

.energy-diagram__caption {
  position: absolute;
  right: 34px;
  bottom: 24px;
  left: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #bac1c9;
  font-size: 11px;
  text-align: center;
}

.section--check {
  background: var(--surface);
}

.document-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  margin-top: 60px;
}

.document-layout__media, .field-layout__media, .risk-photo-layout__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.document-layout__media {
  min-height: 540px;
}

.document-layout__media picture, .document-layout__media img, .field-layout__media picture, .field-layout__media img, .risk-photo-layout__media picture, .risk-photo-layout__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.document-layout__media img, .field-layout__media img, .risk-photo-layout__media img {
  object-fit: cover;
}

.document-layout__media img {
  object-position: center;
}

.field-layout__media img {
  object-position: 62% center;
}

.risk-photo-layout__media img {
  object-position: 54% center;
}

.document-checklist {
  display: grid;
}

.document-checklist article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #d7dade;
}

.document-checklist article:last-child {
  border-bottom: 1px solid #d7dade;
}

.document-checklist span {
  color: var(--land-olive);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.document-checklist h3 {
  margin: 0;
  font-size: 20px;
}

.document-checklist p {
  margin: 6px 0 0;
  color: #5a5f65;
  font-size: 13px;
}

.impact-table {
  margin-top: 54px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(35, 41, 48, 0.08);
}

.impact-table table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
}

.impact-table th, .impact-table td {
  padding: 20px 22px;
  border-bottom: 1px solid #e1e3e6;
  text-align: left;
  vertical-align: top;
}

.impact-table thead th {
  color: #fff;
  background: var(--land-olive);
  font-size: 13px;
}

.impact-table tbody th {
  width: 140px;
  color: var(--land-deep);
  font-size: 14px;
}

.impact-table td {
  color: #585d62;
  font-size: 13px;
}

.section--pitfalls {
  background: #fff;
}

.pitfall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.pitfall-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border: 1px solid #dfe2e6;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.pitfall-card > span {
  color: #9da7b4;
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.pitfall-card h3 {
  margin: 28px 0 0;
  font-size: 21px;
  line-height: 1.6;
}

.pitfall-card p {
  margin: 18px 0 0;
  color: #5d6267;
  font-size: 13px;
}

.pitfall-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  border-radius: 70px 0 18px;
  content: "";
  background: var(--gold);
  opacity: 0.18;
}

.section--field {
  padding-top: 0;
}

.field-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 560px;
}

.field-layout__media {
  border-radius: 20px 0 0 20px;
}

.field-layout__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  color: #fff;
  background: var(--land-olive);
  border-radius: 0 20px 20px 0;
}

.field-layout__content .section-heading__kicker {
  color: #d6e2bc;
}

.persona-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.persona-list article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.persona-list strong {
  font-size: 15px;
}

.persona-list p {
  margin: 3px 0 0;
  color: #e1e6ed;
  font-size: 12px;
}

.section--risk-photo {
  background: #f0f2eb;
}

.risk-photo-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.risk-photo-layout__content > p:not(.section-heading__kicker) {
  margin: 24px 0 0;
  color: #585d62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  color: var(--land-olive);
  font-weight: 700;
  text-decoration: none;
}

.risk-photo-layout__media {
  height: 500px;
}

.section--diagnosis {
  color: #fff;
  background: var(--land-deep);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.diagnosis-layout__intro .section-heading__kicker {
  color: #c3d49f;
}

.diagnosis-layout__intro > p:not(.section-heading__kicker):not(.diagnosis-layout__note) {
  margin: 24px 0 0;
  color: #d3d8df;
}

.diagnosis-layout__intro .button {
  margin-top: 30px;
}

.diagnosis-layout__note {
  margin: 18px 0 0;
  color: #a9b1ba;
  font-size: 11px;
}

.diagnosis-layout__steps {
  display: grid;
  gap: 12px;
}

.diagnosis-layout__steps article {
  display: grid;
  grid-template-columns: 90px 170px 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.diagnosis-layout__steps span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.diagnosis-layout__steps h3 {
  margin: 0;
  font-size: 17px;
}

.diagnosis-layout__steps p {
  margin: 0;
  color: #c4cad2;
  font-size: 12px;
}

.section--documents-needed {
  background: #fff;
}

.needed-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.needed-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid #dfe2e5;
}

.needed-list li:nth-last-child(-n+2) {
  border-bottom: 1px solid #dfe2e5;
}

.needed-list span {
  color: var(--land-olive);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.needed-list strong {
  font-size: 14px;
}

.section--faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-layout__heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-layout__heading > p:last-child {
  margin: 22px 0 0;
  color: #60656b;
}

.faq-list details {
  border-top: 1px solid #d7dade;
}

.faq-list details:last-child {
  border-bottom: 1px solid #d7dade;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  width: 14px;
  height: 14px;
  content: "+";
  color: var(--land-olive);
  font-size: 22px;
  line-height: 14px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span, .faq-list details > div > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--land-olive);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.faq-list details > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 0 36px 24px 0;
}

.faq-list details > div > span {
  color: var(--land-deep);
  background: #d2dbe5;
}

.faq-list details p {
  margin: 2px 0 0;
  color: #5a5f65;
  font-size: 13px;
}

.section--final-cta {
  padding: 0;
  background: var(--land-deep);
}

.final-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: 100%;
  max-width: none;
}

.final-cta__media {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
}

.final-cta__media picture, .final-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.final-cta__media img {
  object-fit: cover;
  object-position: center;
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(7vw, 70px);
  color: #fff;
  background: linear-gradient(135deg, var(--land-deep), #39451f);
}

.final-cta__content > p:first-child {
  margin: 0 0 18px;
  color: #a7bbd3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.final-cta__content > p:not(:first-child) {
  margin: 24px 0 0;
  color: #d4dae1;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.reference-note {
  padding: 34px 0;
  border-bottom: 1px solid #e5e7e9;
  background: #fff;
}

.reference-note h2 {
  margin: 0;
  font-size: 14px;
}

.reference-note p {
  margin: 8px 0 0;
  color: #676b70;
  font-size: 11px;
}

.reference-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: #5c6066;
  font-size: 11px;
}

.sp-menu {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
  .button--primary:hover {
    box-shadow: 0 18px 34px rgba(74, 90, 36, 0.28);
  }
  .anchor-nav a:hover, .text-link:hover {
    color: var(--revix-green);
  }
}
@media (max-width: 1100px) {
  .inner {
    width: min(100% - 48px, 1040px);
  }
  .tokusochi-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  .tokusochi-hero__content {
    padding-right: 32px;
  }
  .tokusochi-hero__alert {
    right: 0;
    width: 360px;
  }
  .mechanism-layout, .document-layout, .risk-photo-layout, .diagnosis-layout, .faq-layout {
    gap: 48px;
  }
  .diagnosis-layout__steps article {
    grid-template-columns: 78px 130px 1fr;
  }
}
@media (max-width: 850px) {
  .inner {
    width: min(100% - 40px, 760px);
  }
  .sp-menu {
    display: block;
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 200;
  }
  .sp-menu__button {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--land-deep);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }
  .sp-menu__button-lines {
    position: relative;
    width: 20px;
    height: 2px;
    background: currentColor;
  }
  .sp-menu__button-lines::before, .sp-menu__button-lines::after {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    content: "";
    background: currentColor;
  }
  .sp-menu__button-lines::before {
    top: -6px;
  }
  .sp-menu__button-lines::after {
    top: 6px;
  }
  .sp-menu__button-label {
    margin-top: 2px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    visibility: hidden;
    background: rgba(22, 24, 28, 0.92);
    opacity: 0;
    transition: 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__nav {
    display: grid;
    width: min(320px, 100% - 48px);
  }
  .sp-menu__nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
  }
  .breadcrumb__list {
    padding-right: 65px;
  }
  .tokusochi-hero {
    min-height: auto;
    background: #f4f6ef;
  }
  .tokusochi-hero__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 48px 0 0;
  }
  .tokusochi-hero__content {
    width: min(100% - 40px, 760px);
    margin-inline: auto;
    padding: 0;
  }
  .tokusochi-hero__title {
    font-size: 52px;
  }
  .tokusochi-hero__media {
    order: 2;
    width: calc(100% - 20px);
    height: 460px;
    margin: 44px 0 0 auto;
    border-radius: 20px 0 0 0;
  }
  .tokusochi-hero__alert {
    position: relative;
    order: 3;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: -50px auto 28px;
  }
  .anchor-nav {
    display: none;
  }
  .section {
    padding: 84px 0;
  }
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .conclusion-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .conclusion-grid__symbol {
    height: 28px;
    transform: rotate(90deg);
  }
  .source-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mechanism-layout, .document-layout, .field-layout, .risk-photo-layout, .diagnosis-layout, .faq-layout, .final-cta {
    grid-template-columns: 1fr;
  }
  .energy-diagram {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding-bottom: 96px;
  }
  .energy-diagram__flow {
    transform: rotate(90deg);
    margin: 24px 0;
  }
  .document-layout__media {
    min-height: 440px;
  }
  .pitfall-grid {
    grid-template-columns: 1fr;
  }
  .pitfall-card {
    min-height: auto;
  }
  .field-layout__media {
    min-height: 460px;
    border-radius: 20px 20px 0 0;
  }
  .field-layout__content {
    border-radius: 0 0 20px 20px;
  }
  .risk-photo-layout__media {
    height: 440px;
  }
  .diagnosis-layout__steps article {
    grid-template-columns: 70px 1fr;
  }
  .diagnosis-layout__steps p {
    grid-column: 2;
  }
  .needed-list {
    grid-template-columns: 1fr;
  }
  .needed-list li:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .needed-list li:last-child {
    border-bottom: 1px solid #dfe2e5;
  }
  .faq-layout__heading {
    position: static;
  }
  .final-cta__media {
    min-height: 460px;
  }
  .final-cta__content {
    padding: 70px 30px;
  }
}
@media (max-width: 568px) {
  .inner {
    width: calc(100% - 32px);
  }
  .breadcrumb__list {
    width: calc(100% - 24px);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 10px;
  }
  .breadcrumb__list li + li::before {
    margin-right: 12px;
  }
  .tokusochi-hero__inner {
    padding-top: 38px;
  }
  .tokusochi-hero__content {
    width: calc(100% - 32px);
  }
  .tokusochi-hero__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }
  .tokusochi-hero__title {
    font-size: 42px;
  }
  .tokusochi-hero__lead {
    margin-top: 22px;
    font-size: 14px;
  }
  .tokusochi-hero__lead br {
    display: none;
  }
  .tokusochi-hero__actions {
    display: grid;
  }
  .button {
    width: 100%;
    min-height: 55px;
    padding: 0 20px;
    font-size: 14px;
  }
  .tokusochi-hero__media {
    width: calc(100% - 16px);
    height: 330px;
    margin-top: 34px;
  }
  .tokusochi-hero__alert {
    width: calc(100% - 32px);
    padding: 18px 20px;
  }
  .section {
    padding: 70px 0;
  }
  .section-heading__title, .field-layout__content h2, .risk-photo-layout__content h2, .diagnosis-layout__intro h2, .faq-layout__heading h2, .final-cta__content h2 {
    font-size: 32px;
  }
  .section-heading__lead {
    font-size: 14px;
  }
  .conclusion-card {
    padding: 28px 24px;
  }
  .conclusion-card h3 {
    font-size: 21px;
  }
  .source-note {
    padding: 20px;
  }
  .mechanism-layout {
    gap: 40px;
  }
  .energy-diagram {
    padding: 26px 20px 92px;
    border-radius: 20px;
  }
  .document-layout {
    margin-top: 36px;
  }
  .document-layout__media {
    min-height: 310px;
  }
  .document-checklist article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .document-checklist h3 {
    font-size: 17px;
  }
  .pitfall-card {
    padding: 26px;
  }
  .field-layout__media, .risk-photo-layout__media, .final-cta__media {
    min-height: 320px;
    height: 320px;
  }
  .tokusochi-hero__media img, .document-layout__media img, .field-layout__media img, .risk-photo-layout__media img, .final-cta__media img {
    object-position: center;
  }
  .field-layout__content {
    padding: 38px 24px;
  }
  .diagnosis-layout__steps article {
    display: block;
    padding: 22px;
  }
  .diagnosis-layout__steps h3 {
    margin-top: 8px;
  }
  .diagnosis-layout__steps p {
    margin-top: 6px;
  }
  .needed-list li {
    grid-template-columns: 40px 1fr;
  }
  .faq-list summary {
    grid-template-columns: 36px 1fr;
    padding-right: 36px;
    font-size: 14px;
  }
  .faq-list details > div {
    grid-template-columns: 36px 1fr;
    padding-right: 0;
  }
  .faq-list summary span, .faq-list details > div > span {
    width: 28px;
    height: 28px;
  }
  .final-cta__content {
    padding: 55px 20px;
  }
  .reference-note ul {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !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-tokusochi img[src][src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.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:1200/900}
body#land-tokusochi :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.jpg"]),body#land-tokusochi :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-tokusochi picture:has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-tokusochi img[src][src$="/img/contents/bess-land/risk/checklist/tokusochi/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:1200/900}
body#land-tokusochi :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/survey.jpg"]),body#land-tokusochi :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/checklist/tokusochi/survey.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-tokusochi picture:has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/survey.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-tokusochi img[src][src$="/img/contents/bess-land/risk/checklist/tokusochi/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:1200/900}
body#land-tokusochi :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/risk.jpg"]),body#land-tokusochi :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/checklist/tokusochi/risk.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-tokusochi picture:has(> img[src$="/img/contents/bess-land/risk/checklist/tokusochi/risk.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/survey.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/risk.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/documents.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/survey.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/risk/checklist/tokusochi/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;
  --u-theme-light: #9CC4F0;
}

@keyframes u-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- 旧オリーブ変数をブルー台帳へ差し替え（varで全体波及） ---- */
body#land-tokusochi {
  --land-olive: #1F6FD0;
  --land-deep: #0C2A4D;
  --olive-soft: #F2F6FB;
  --surface: #F2F6FB;
  --line: #E2E5E8;
}

/* ---- ヒーロー（--u-deepグラデ・白明朝31px・eyebrowアニメ） ---- */
body#land-tokusochi .tokusochi-hero {
  color: #fff;
  background: linear-gradient(115deg, #0C2A4D 0%, #113459 52%, #1F6FD0 140%);
}
body#land-tokusochi .tokusochi-hero::before {
  opacity: 0.18;
}
body#land-tokusochi .tokusochi-hero__eyebrow {
  display: block;
  color: var(--u-theme-light);
  font-size: 13px;
  letter-spacing: 0.28em;
  animation: u-fadeUp 0.6s ease 0s both;
}
body#land-tokusochi .tokusochi-hero__eyebrow::before {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--u-theme-light);
}
body#land-tokusochi .tokusochi-hero__eyebrow::after {
  content: none;
}
body#land-tokusochi .tokusochi-hero__title {
  color: #fff;
  font-size: 31px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  animation: u-fadeUp 0.6s ease 0.12s both;
}
body#land-tokusochi .tokusochi-hero__lead {
  color: #DCE6F2;
  font-size: 18px;
  line-height: 1.9;
  animation: u-fadeUp 0.6s ease 0.24s both;
}
body#land-tokusochi .tokusochi-hero__actions {
  animation: u-fadeUp 0.6s ease 0.36s both;
}
body#land-tokusochi .tokusochi-hero__points {
  color: #DCE6F2;
  animation: u-fadeUp 0.6s ease 0.48s both;
}
body#land-tokusochi .tokusochi-hero__points li::before {
  background: var(--u-theme-light);
}
body#land-tokusochi .tokusochi-hero__media {
  border-radius: 12px;
}
body#land-tokusochi .tokusochi-hero__alert {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(12, 42, 77, 0.92);
}
body#land-tokusochi .tokusochi-hero__alert span {
  color: var(--u-theme-light);
}

/* ---- ボタン（主CTA=金）・フォーカス ---- */
body#land-tokusochi .button--primary {
  color: var(--u-ink);
  background: var(--u-gold);
  box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24);
}
@media (hover: hover) and (pointer: fine) {
  body#land-tokusochi .button--primary:hover,
  body#land-tokusochi .button--gold:hover {
    box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32);
    filter: brightness(0.92);
  }
}
body#land-tokusochi .button:focus-visible {
  outline: 2px solid var(--u-deep);
  outline-offset: 3px;
}
body#land-tokusochi .tokusochi-hero .button:focus-visible,
body#land-tokusochi .section--mechanism .button:focus-visible,
body#land-tokusochi .section--diagnosis .button:focus-visible,
body#land-tokusochi .section--field .button:focus-visible,
body#land-tokusochi .section--final-cta .button:focus-visible {
  outline-color: #fff;
}

/* ---- 余白リズム96px・タイプスケール ---- */
body#land-tokusochi .section {
  padding: 96px 0;
}
body#land-tokusochi .section--final-cta {
  padding: 0;
}
body#land-tokusochi main h2 {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
body#land-tokusochi main h3 {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
body#land-tokusochi .reference-note h2 {
  font-size: 14px;
}
body#land-tokusochi .section-heading__kicker {
  color: var(--u-theme);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
body#land-tokusochi .section--mechanism .section-heading__kicker,
body#land-tokusochi .diagnosis-layout__intro .section-heading__kicker,
body#land-tokusochi .field-layout__content .section-heading__kicker {
  color: var(--u-theme-light);
}
body#land-tokusochi .section-heading__lead {
  color: var(--u-sub);
  font-size: 18px;
  line-height: 1.9;
}

/* ---- 結論・出典 ---- */
body#land-tokusochi .conclusion-card {
  border-radius: 12px;
}
body#land-tokusochi .conclusion-card__label {
  background: var(--u-deep);
}
body#land-tokusochi .source-note {
  border-left: 4px solid var(--u-theme);
  border-radius: 0 12px 12px 0;
  background: var(--u-tint);
}

/* ---- 仕組み（濃色バンド） ---- */
body#land-tokusochi .mechanism-list li > span {
  color: var(--u-theme-light);
}
body#land-tokusochi .energy-diagram {
  border-radius: 12px;
  background: radial-gradient(circle at 50% 45%, rgba(31, 111, 208, 0.22), transparent 40%), rgba(255, 255, 255, 0.05);
}
body#land-tokusochi .energy-diagram__node,
body#land-tokusochi .energy-diagram__battery {
  border-radius: 12px;
}
body#land-tokusochi .energy-diagram__battery {
  border-color: rgba(156, 196, 240, 0.6);
  background: rgba(31, 111, 208, 0.16);
}
body#land-tokusochi .energy-diagram__battery small {
  color: var(--u-theme-light);
}

/* ---- 確認資料・影響表 ---- */
body#land-tokusochi .document-checklist span {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 13px;
}
body#land-tokusochi .impact-table {
  border: 1px solid var(--u-border);
  border-radius: 12px;
}
body#land-tokusochi .impact-table thead th {
  background: var(--u-deep);
}

/* ---- 落とし穴カード ---- */
body#land-tokusochi .pitfall-card {
  border: 1px solid var(--u-border);
  border-radius: 12px;
  background: #fff;
}
body#land-tokusochi .pitfall-card::after {
  border-radius: 70px 0 12px;
  background: var(--u-theme);
}
body#land-tokusochi .pitfall-card > span {
  color: rgba(31, 111, 208, 0.35);
  font-family: "Barlow", Arial, sans-serif;
}

/* ---- 現場・写真リスク・診断 ---- */
body#land-tokusochi .field-layout__content {
  background: var(--u-deep);
  border-radius: 0 12px 12px 0;
}
body#land-tokusochi .persona-list article {
  border-radius: 12px;
}
body#land-tokusochi .section--risk-photo {
  background: var(--u-tint);
}
body#land-tokusochi .diagnosis-layout__steps article {
  border-radius: 12px;
}
body#land-tokusochi .diagnosis-layout__steps span {
  color: var(--u-theme-light);
}

/* ---- 必要資料・FAQ ---- */
body#land-tokusochi .needed-list span {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 13px;
}
body#land-tokusochi .faq-list summary span {
  background: var(--u-deep);
}

/* ---- 最終CTA（濃色締めバンド） ---- */
body#land-tokusochi .final-cta__content {
  background: linear-gradient(135deg, #0C2A4D 0%, #1B5FB0 100%);
}

/* ---- SPリズム・モーション停止 ---- */
@media (max-width: 900px) {
  body#land-tokusochi .section {
    padding: 48px 0;
  }
  body#land-tokusochi .section--final-cta {
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  body#land-tokusochi .tokusochi-hero__eyebrow,
  body#land-tokusochi .tokusochi-hero__title,
  body#land-tokusochi .tokusochi-hero__lead,
  body#land-tokusochi .tokusochi-hero__actions,
  body#land-tokusochi .tokusochi-hero__points {
    animation: none;
  }
}

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