/* ===== 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 60px;
}
.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 0%, #537fb4 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: #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);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #16181c;
  background: #fff;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button, summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: #0C2A4D;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

#main {
  overflow: hidden;
}

.l-container {
  width: min(1180px, 100% - 120px);
  margin: 0 auto;
}

.l-container--wide {
  width: min(1340px, 100% - 80px);
}

.l-section {
  position: relative;
  padding: 104px 0;
}

.l-section--compact {
  padding: 76px 0;
}

.c-breadcrumb {
  border-top: 1px solid #ebedf0;
  border-bottom: 1px solid #ebedf0;
  background: #fff;
}

.c-breadcrumb__list {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #686d68;
  font-size: 12px;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  margin-right: 10px;
  content: "/";
  color: #abb0ab;
}

.c-breadcrumb__link {
  text-decoration: none;
}

.c-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #4a5a24;
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.c-kicker::before {
  width: 34px;
  height: 2px;
  content: "";
  background: #f5b500;
}

.c-heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.c-heading--small {
  font-size: clamp(27px, 3.3vw, 42px);
}

.c-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #5d625d;
  font-size: 17px;
  line-height: 2;
}

.c-note {
  margin: 18px 0 0;
  color: #707570;
  font-size: 12px;
  line-height: 1.8;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #161a20;
  background: #f5b500;
  box-shadow: 0 12px 28px rgba(85, 72, 8, 0.18);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.c-button::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.c-button--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.c-button--white {
  border-color: #dce0e4;
  color: #18293d;
  background: #fff;
  box-shadow: none;
}

.c-button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid #7894b6;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(85, 72, 8, 0.22);
  }
  .c-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  .c-button--white:hover {
    background: #f4f6f9;
    box-shadow: none;
  }
}
.sp-menu {
  display: none;
}

.land-risk-hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  background: #18293d;
}

.land-risk-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.land-risk-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 19, 27, 0.96) 0%, rgba(17, 27, 40, 0.88) 42%, rgba(17, 27, 40, 0.36) 70%, rgba(17, 27, 40, 0.12) 100%);
}

.land-risk-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
}

.land-risk-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding-top: 64px;
  padding-bottom: 70px;
}

.land-risk-hero__content {
  width: min(680px, 58%);
}

.land-risk-hero__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #f3f5eb;
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.land-risk-hero__title {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.land-risk-hero__title em {
  color: #f8c426;
  font-style: normal;
}

.land-risk-hero__lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #eceff3;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.land-risk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.land-risk-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.land-risk-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7ebdf;
  font-size: 12px;
}

.land-risk-hero__trust-item::before {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "✓";
  place-items: center;
  color: #18293d;
  background: #c7d5e7;
  font-weight: 800;
}

.land-risk-answer {
  background: #fff;
}

.land-risk-answer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.land-risk-answer__statement {
  margin: 0;
  color: #18293d;
  font-size: clamp(27px, 3.2vw, 43px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.land-risk-answer__statement strong {
  color: #9a4f31;
}

.land-risk-answer__copy {
  margin: 24px 0 0;
  color: #5d625d;
  font-size: 16px;
  line-height: 2;
}

.land-risk-answer__visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.land-risk-answer__card {
  min-height: 240px;
  padding: 30px 22px;
  border: 1px solid #d8dee5;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5f8fb 0%, #e5ebf3 100%);
}

.land-risk-answer__number {
  color: #98a276;
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.land-risk-answer__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 20px 0;
  border-radius: 16px;
  place-items: center;
  color: #fff;
  background: #4a5a24;
  font-size: 24px;
  font-weight: 700;
}

.land-risk-answer__card-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.land-risk-answer__card-text {
  margin: 12px 0 0;
  color: #5d625d;
  font-size: 13px;
  line-height: 1.8;
}

.land-risk-check {
  background: #f4f6ef;
}

.land-risk-check__head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.land-risk-check__summary {
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid #f5b500;
  color: #5d625d;
  font-size: 15px;
  line-height: 1.9;
}

.land-risk-check__matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.land-risk-check__group {
  overflow: hidden;
  border: 1px solid #d7dde4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(33, 42, 53, 0.06);
}

.land-risk-check__group-head {
  padding: 26px 28px 22px;
  color: #fff;
  background: #18293d;
}

.land-risk-check__group:nth-child(2) .land-risk-check__group-head {
  background: #384a5f;
}

.land-risk-check__group:nth-child(3) .land-risk-check__group-head {
  background: #67583d;
}

.land-risk-check__group-label {
  margin: 0 0 8px;
  color: #dce6c8;
  font-family: Barlow, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.land-risk-check__group-title {
  margin: 0;
  font-size: 23px;
}

.land-risk-check__list {
  margin: 0;
  padding: 18px 28px 26px;
  list-style: none;
}

.land-risk-check__item {
  position: relative;
  padding: 15px 0 15px 29px;
  border-bottom: 1px solid #e7eaee;
  font-size: 14px;
  line-height: 1.7;
}

.land-risk-check__item:last-child {
  border-bottom: 0;
}

.land-risk-check__item::before {
  position: absolute;
  top: 18px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  border: 1px solid #9daa82;
  border-radius: 5px;
  content: "";
  place-items: center;
}

.land-risk-check__foot {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  background: #e6eadc;
}

.land-risk-check__foot-mark {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #4a5a24;
  font-size: 24px;
  font-weight: 800;
}

.land-risk-check__foot p {
  margin: 0;
  color: #3b4047;
  font-size: 14px;
  line-height: 1.8;
}

.land-risk-pitfall {
  background: #fff;
}

.land-risk-pitfall__items {
  display: grid;
  gap: 26px;
  margin-top: 54px;
}

.land-risk-pitfall__item {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #dce0e4;
  border-radius: 24px;
  background: #fff;
}

.land-risk-pitfall__item:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.land-risk-pitfall__item:nth-child(even) .land-risk-pitfall__media {
  order: 2;
}

.land-risk-pitfall__media {
  margin: 0;
  min-height: 360px;
  background: #d8dde4;
}

.land-risk-pitfall__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.land-risk-pitfall__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 50px;
}

.land-risk-pitfall__num {
  margin: 0 0 14px;
  color: #9a6b39;
  font-family: Barlow, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.land-risk-pitfall__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
}

.land-risk-pitfall__text {
  margin: 18px 0 0;
  color: #5d625d;
  font-size: 15px;
  line-height: 1.9;
}

.land-risk-pitfall__point {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-left: 3px solid #f5b500;
  color: #18293d;
  background: #f6f7f1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.land-risk-midcta {
  color: #fff;
  background: #18293d;
}

.land-risk-midcta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.land-risk-midcta__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
}

.land-risk-midcta__text {
  max-width: 760px;
  margin: 14px 0 0;
  color: #d3dbe5;
  font-size: 15px;
  line-height: 1.9;
}

.land-risk-diagnosis {
  background: #eef2e6;
}

.land-risk-diagnosis__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.land-risk-diagnosis__media {
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(36, 47, 61, 0.14);
}

.land-risk-diagnosis__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.land-risk-diagnosis__list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.land-risk-diagnosis__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid #d2dae3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.land-risk-diagnosis__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  color: #fff;
  background: #4a5a24;
  font-size: 18px;
  font-weight: 800;
}

.land-risk-diagnosis__item-title {
  margin: 0;
  font-size: 17px;
}

.land-risk-diagnosis__item-text {
  margin: 7px 0 0;
  color: #5d625d;
  font-size: 13px;
  line-height: 1.75;
}

.land-risk-flow {
  background: #fff;
}

.land-risk-flow__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  margin-top: 48px;
}

.land-risk-flow__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.land-risk-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 0 0 36px;
  counter-increment: step;
}

.land-risk-flow__step:not(:last-child)::after {
  position: absolute;
  top: 56px;
  bottom: 4px;
  left: 27px;
  width: 1px;
  content: "";
  background: #c6cdd5;
}

.land-risk-flow__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid #bfc9d5;
  border-radius: 50%;
  place-items: center;
  color: #4a5a24;
  background: #fff;
  font-family: Barlow, Arial, sans-serif;
  font-weight: 800;
}

.land-risk-flow__number::before {
  content: counter(step, decimal-leading-zero);
}

.land-risk-flow__step-title {
  margin: 3px 0 8px;
  font-size: 19px;
}

.land-risk-flow__step-text {
  margin: 0;
  color: #5d625d;
  font-size: 14px;
  line-height: 1.8;
}

.land-risk-flow__docs {
  align-self: start;
  padding: 34px;
  border-radius: 20px;
  background: #18293d;
  color: #fff;
}

.land-risk-flow__docs-title {
  margin: 0;
  font-size: 23px;
}

.land-risk-flow__docs-text {
  margin: 12px 0 0;
  color: #d1d7df;
  font-size: 13px;
  line-height: 1.8;
}

.land-risk-flow__docs-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.land-risk-flow__docs-item {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.6;
}

.land-risk-flow__docs-item::before {
  position: absolute;
  top: 14px;
  left: 14px;
  content: "□";
  color: #d8e6bb;
}

.land-risk-links {
  background: #f5f6f2;
}

.land-risk-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.land-risk-links__card {
  position: relative;
  min-height: 210px;
  padding: 28px 24px 52px;
  border: 1px solid #d8dce1;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.land-risk-links__label {
  color: #7e8690;
  font-family: Barlow, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.land-risk-links__title {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.land-risk-links__text {
  margin: 12px 0 0;
  color: #5d625d;
  font-size: 12px;
  line-height: 1.8;
}

.land-risk-links__arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #4a5a24;
}

.land-risk-links__arrow::before {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .land-risk-links__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(35, 43, 53, 0.1);
  }
}
.land-risk-faq {
  background: #fff;
}

.land-risk-faq__list {
  max-width: 900px;
  margin: 46px auto 0;
}

.land-risk-faq__item {
  border-top: 1px solid #dce0e4;
}

.land-risk-faq__item:last-child {
  border-bottom: 1px solid #dce0e4;
}

.land-risk-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.land-risk-faq__question::-webkit-details-marker {
  display: none;
}

.land-risk-faq__mark {
  color: #4a5a24;
  font-family: Barlow, Arial, sans-serif;
  font-size: 23px;
}

.land-risk-faq__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9edf2;
}

.land-risk-faq__toggle::before, .land-risk-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: #18293d;
  transform: translate(-50%, -50%);
}

.land-risk-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.land-risk-faq__item[open] .land-risk-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.land-risk-faq__answer {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 0 56px 26px 0;
  color: #5d625d;
  font-size: 14px;
  line-height: 1.9;
}

.land-risk-faq__answer p {
  margin: 0;
}

.land-risk-final {
  position: relative;
  color: #fff;
  background: #18293d;
}

.land-risk-final__media {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0.28;
}

.land-risk-final__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 28, 40, 0.98) 0%, rgba(18, 28, 40, 0.76) 62%, rgba(18, 28, 40, 0.48) 100%);
}

.land-risk-final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.land-risk-final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 64px;
  align-items: center;
  min-height: 610px;
}

.land-risk-final__title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.28;
}

.land-risk-final__text {
  max-width: 700px;
  margin: 22px 0 0;
  color: #d9dfe6;
  font-size: 16px;
  line-height: 1.9;
}

.land-risk-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.land-risk-final__choices {
  display: grid;
  gap: 12px;
}

.land-risk-final__choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.land-risk-final__choice strong {
  display: block;
  font-size: 16px;
}

.land-risk-final__choice small {
  display: block;
  margin-top: 5px;
  color: #c7cfd8;
  font-size: 11px;
}

.land-risk-final__choice-arrow {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  color: #18293d;
  background: #d8e1eb;
}

.land-risk-final__choice-arrow::before {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .l-container {
    width: min(100% - 60px, 1080px);
  }
  .land-risk-answer__grid, .land-risk-diagnosis__grid, .land-risk-flow__layout {
    gap: 44px;
  }
  .land-risk-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .l-container, .l-container--wide {
    width: calc(100% - 48px);
  }
  .l-section {
    padding: 76px 0;
  }
  .sp-menu {
    position: fixed;
    top: 13px;
    right: 18px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 0;
    border-radius: 50%;
    place-items: center;
    background: #18293d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .sp-menu__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(7px) 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(-7px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    visibility: hidden;
    padding: 92px 24px 32px;
    background: rgba(18, 25, 34, 0.98);
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__nav {
    display: grid;
    gap: 6px;
  }
  .sp-menu__link {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
  }
  .sp-menu__link--cta {
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    color: #18293d;
    background: #f5b500;
    text-align: center;
    font-weight: 700;
  }
  .land-risk-hero, .land-risk-hero__inner {
    min-height: 680px;
  }
  .land-risk-hero__content {
    width: min(700px, 78%);
  }
  .land-risk-answer__grid, .land-risk-check__head, .land-risk-diagnosis__grid, .land-risk-flow__layout, .land-risk-final__inner {
    grid-template-columns: 1fr;
  }
  .land-risk-answer__visual {
    margin-top: 6px;
  }
  .land-risk-check__matrix {
    grid-template-columns: 1fr;
  }
  .land-risk-pitfall__item, .land-risk-pitfall__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .land-risk-pitfall__item:nth-child(even) .land-risk-pitfall__media {
    order: 0;
  }
  .land-risk-pitfall__media {
    min-height: 320px;
  }
  .land-risk-midcta__inner {
    grid-template-columns: 1fr;
  }
  .land-risk-midcta__action {
    justify-self: start;
  }
  .land-risk-diagnosis__media {
    min-height: 420px;
  }
  .land-risk-diagnosis__media img {
    min-height: 420px;
  }
  .land-risk-final__inner {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 82px;
  }
}
@media (max-width: 568px) {
  .l-container, .l-container--wide {
    width: calc(100% - 36px);
  }
  .l-section {
    padding: 62px 0;
  }
  .c-heading {
    font-size: 31px;
  }
  .c-heading--small {
    font-size: 28px;
  }
  .c-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }
  .c-button {
    width: 100%;
    min-height: 54px;
    padding: 0 22px;
  }
  .c-breadcrumb {
    display: none;
  }
  .land-risk-hero {
    min-height: 720px;
  }
  .land-risk-hero__media::after {
    background: linear-gradient(180deg, rgba(16, 25, 35, 0.48) 0%, rgba(16, 25, 35, 0.95) 58%, rgba(16, 25, 35, 0.99) 100%);
  }
  .land-risk-hero__media img {
    object-position: 67% 15%;
  }
  .land-risk-hero__inner {
    align-items: flex-end;
    min-height: 720px;
    padding-top: 210px;
    padding-bottom: 48px;
  }
  .land-risk-hero__content {
    width: 100%;
  }
  .land-risk-hero__label {
    margin-bottom: 17px;
    font-size: 11px;
  }
  .land-risk-hero__title {
    font-size: 42px;
    line-height: 1.18;
  }
  .land-risk-hero__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
  .land-risk-hero__actions {
    display: grid;
    margin-top: 26px;
  }
  .land-risk-hero__trust {
    gap: 8px 14px;
    margin-top: 24px;
  }
  .land-risk-hero__trust-item {
    font-size: 10px;
  }
  .land-risk-answer__grid {
    gap: 38px;
  }
  .land-risk-answer__statement {
    font-size: 27px;
  }
  .land-risk-answer__visual {
    grid-template-columns: 1fr;
  }
  .land-risk-answer__card {
    min-height: auto;
  }
  .land-risk-check__head {
    gap: 26px;
  }
  .land-risk-check__summary {
    padding-left: 18px;
  }
  .land-risk-check__matrix {
    margin-top: 34px;
  }
  .land-risk-check__foot {
    align-items: flex-start;
    padding: 20px;
  }
  .land-risk-pitfall__items {
    margin-top: 34px;
  }
  .land-risk-pitfall__item {
    min-height: 0;
    border-radius: 18px;
  }
  .land-risk-pitfall__media {
    min-height: 230px;
  }
  .land-risk-pitfall__body {
    padding: 28px 24px 32px;
  }
  .land-risk-pitfall__title {
    font-size: 23px;
  }
  .land-risk-midcta__inner {
    gap: 28px;
  }
  .land-risk-diagnosis__grid {
    gap: 36px;
  }
  .land-risk-diagnosis__media, .land-risk-diagnosis__media img {
    min-height: 290px;
  }
  .land-risk-diagnosis__item {
    grid-template-columns: 38px 1fr;
    padding: 17px;
  }
  .land-risk-diagnosis__icon {
    width: 38px;
    height: 38px;
  }
  .land-risk-flow__layout {
    margin-top: 34px;
  }
  .land-risk-flow__step {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding-bottom: 30px;
  }
  .land-risk-flow__number {
    width: 44px;
    height: 44px;
  }
  .land-risk-flow__step:not(:last-child)::after {
    top: 44px;
    left: 21px;
  }
  .land-risk-flow__docs {
    padding: 26px 22px;
  }
  .land-risk-links__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .land-risk-links__card {
    min-height: 180px;
  }
  .land-risk-faq__list {
    margin-top: 30px;
  }
  .land-risk-faq__question {
    grid-template-columns: 30px 1fr 24px;
    gap: 10px;
    padding: 20px 0;
    font-size: 15px;
  }
  .land-risk-faq__answer {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 0 0 22px;
    font-size: 13px;
  }
  .land-risk-final__inner {
    gap: 36px;
    padding-bottom: 110px;
  }
  .land-risk-final__actions {
    display: grid;
  }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 180;
    display: block;
  }
  .mobile-cta__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    color: #161a20;
    background: #f5b500;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !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-risk img[src][src$="/img/contents/bess-land/risk/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/800}
body#land-risk :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/documents.jpg"]),body#land-risk :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/documents.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-risk picture:has(> img[src$="/img/contents/bess-land/risk/documents.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-risk img[src][src$="/img/contents/bess-land/risk/hazard-site.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/800}
body#land-risk :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/hazard-site.jpg"]),body#land-risk :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/hazard-site.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-risk picture:has(> img[src$="/img/contents/bess-land/risk/hazard-site.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-risk img[src][src$="/img/contents/bess-land/risk/boundary-check.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/800}
body#land-risk :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/boundary-check.jpg"]),body#land-risk :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/boundary-check.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-risk picture:has(> img[src$="/img/contents/bess-land/risk/boundary-check.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-risk img[src][src$="/img/contents/bess-land/risk/site-check.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/800}
body#land-risk :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/risk/site-check.jpg"]),body#land-risk :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/risk/site-check.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-risk picture:has(> img[src$="/img/contents/bess-land/risk/site-check.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/bess-land/risk/documents.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/risk/hazard-site.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/risk/boundary-check.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/risk/site-check.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/bess-land/risk/documents.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/risk/hazard-site.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/risk/boundary-check.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/risk/site-check.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-risk .l-section { padding: 96px 0; }
body#land-risk .l-section--compact { padding: 64px 0; }

/* ---- キッカー・見出し・リード（テーマ色／25px明朝／18px） ---- */
body#land-risk .c-kicker { color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; }
body#land-risk .c-kicker::before { width: 40px; height: 2px; background: var(--u-theme); }
body#land-risk .land-risk-final .c-kicker { color: #93BEF0; }
body#land-risk .land-risk-final .c-kicker::before { background: #93BEF0; }
body#land-risk .c-heading { font-size: 25px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-risk .c-heading--small { font-size: 25px; }
body#land-risk .c-lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }

/* ---- ボタン（金CTA・radius999） ---- */
body#land-risk .c-button { min-height: 56px; padding: 0 32px; color: var(--u-ink); background: var(--u-gold); font-size: 16px; }
body#land-risk .c-button--outline { border-color: rgba(255, 255, 255, 0.65); color: #fff; background: transparent; }
body#land-risk .c-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  body#land-risk .c-button:hover { background: var(--u-gold); filter: brightness(0.92); }
  body#land-risk .c-button--outline:hover { background: rgba(255, 255, 255, 0.1); filter: none; }
}

/* ---- ヒーロー（--u-deepグラデ＋白明朝31px＋eyebrowアニメ） ---- */
body#land-risk .land-risk-hero { min-height: 620px; background: var(--u-deep); }
body#land-risk .land-risk-hero__inner { min-height: 620px; }
body#land-risk .land-risk-hero__media::after { 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%); opacity: 1; mix-blend-mode: normal; }
body#land-risk .land-risk-hero__label { display: block; min-height: 0; margin-bottom: 18px; padding: 0; border: 0; border-radius: 0; color: #93BEF0; background: transparent; font-size: 13px; letter-spacing: 0.28em; }
body#land-risk .land-risk-hero__label::before { content: ""; display: block; width: 40px; height: 2px; margin-bottom: 14px; background: var(--u-theme); }
body#land-risk .land-risk-hero__label::after { content: none; }
body#land-risk .land-risk-hero__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-risk .land-risk-hero__title em { color: #9CC4F2; }
body#land-risk .land-risk-hero__lead { color: #DCE6F2; font-size: 18px; line-height: 1.9; }
body#land-risk .land-risk-hero__trust-item { color: #DCE6F2; font-size: 13px; }
body#land-risk .land-risk-hero__trust-item::before { color: var(--u-deep); background: #BCD4F0; }
@keyframes u45-fade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
body#land-risk .land-risk-hero__label,
body#land-risk .land-risk-hero__title,
body#land-risk .land-risk-hero__lead,
body#land-risk .land-risk-hero__actions,
body#land-risk .land-risk-hero__trust { animation: u45-fade 0.6s ease both; }
body#land-risk .land-risk-hero__title { animation-delay: 0.12s; }
body#land-risk .land-risk-hero__lead { animation-delay: 0.24s; }
body#land-risk .land-risk-hero__actions { animation-delay: 0.36s; }
body#land-risk .land-risk-hero__trust { animation-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  body#land-risk .land-risk-hero__label,
  body#land-risk .land-risk-hero__title,
  body#land-risk .land-risk-hero__lead,
  body#land-risk .land-risk-hero__actions,
  body#land-risk .land-risk-hero__trust { animation: none; }
}

/* ---- アンサー ---- */
body#land-risk .land-risk-answer__statement { color: var(--u-ink); font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#land-risk .land-risk-answer__statement strong { color: var(--u-theme); }
body#land-risk .land-risk-answer__copy { color: var(--u-sub); }
body#land-risk .land-risk-answer__card { border-color: #D8E2EE; border-radius: 12px; background: var(--u-tint); }
body#land-risk .land-risk-answer__number { color: var(--u-theme); }
body#land-risk .land-risk-answer__icon { border-radius: 12px; background: var(--u-theme); }
body#land-risk .land-risk-answer__card-title { font-size: 20px; }
body#land-risk .land-risk-answer__card-text { color: var(--u-sub); }

/* ---- チェック（淡地=--u-tint・ヘッダ青系3階調） ---- */
body#land-risk .land-risk-check { background: var(--u-tint); }
body#land-risk .land-risk-check__summary { border-left-color: var(--u-theme); color: var(--u-sub); }
body#land-risk .land-risk-check__group { border-color: #D8E2EE; border-radius: 12px; }
body#land-risk .land-risk-check__group-head { background: var(--u-deep); }
body#land-risk .land-risk-check__group:nth-child(2) .land-risk-check__group-head { background: var(--u-theme); }
body#land-risk .land-risk-check__group:nth-child(3) .land-risk-check__group-head { background: #3E5C80; }
body#land-risk .land-risk-check__group-label { color: #BCD4F0; }
body#land-risk .land-risk-check__group-title { font-size: 20px; }
body#land-risk .land-risk-check__item::before { border-color: #9FB8D4; border-radius: 6px; }
body#land-risk .land-risk-check__foot { border-radius: 12px; background: #E3EDF8; }
body#land-risk .land-risk-check__foot-mark { background: var(--u-theme); }

/* ---- 落とし穴（図解スロットfigureは不変更） ---- */
body#land-risk .land-risk-pitfall__item { border-color: var(--u-border); border-radius: 12px; }
body#land-risk .land-risk-pitfall__num { color: var(--u-theme); }
body#land-risk .land-risk-pitfall__title { font-size: 20px; }
body#land-risk .land-risk-pitfall__text { color: var(--u-sub); }
body#land-risk .land-risk-pitfall__point { border-left-color: var(--u-theme); color: var(--u-ink); background: var(--u-tint); }

/* ---- 中間CTA（濃色バンド1） ---- */
body#land-risk .land-risk-midcta { background: var(--u-deep); }
body#land-risk .land-risk-midcta__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-risk .land-risk-midcta__text { color: #D9E3F0; }

/* ---- 診断（淡地・写真スロットのみradius12） ---- */
body#land-risk .land-risk-diagnosis { background: var(--u-tint); }
body#land-risk .land-risk-diagnosis__media { border-radius: 12px; }
body#land-risk .land-risk-diagnosis__item { border-color: #D8E2EE; border-radius: 12px; }
body#land-risk .land-risk-diagnosis__icon { background: var(--u-theme); }
body#land-risk .land-risk-diagnosis__item-title { font-size: 16px; }
body#land-risk .land-risk-diagnosis__item-text { color: var(--u-sub); }

/* ---- 流れ（番号=Barlowテーマ色・書類パネル=濃色） ---- */
body#land-risk .land-risk-flow__number { border-color: #BCD0E6; color: var(--u-theme); }
body#land-risk .land-risk-flow__step-title { font-size: 20px; }
body#land-risk .land-risk-flow__step-text { color: var(--u-sub); }
body#land-risk .land-risk-flow__docs { border-radius: 12px; background: var(--u-deep); }
body#land-risk .land-risk-flow__docs-title { font-size: 20px; }
body#land-risk .land-risk-flow__docs-item { border-radius: 6px; }
body#land-risk .land-risk-flow__docs-item::before { color: #BCD4F0; }

/* ---- 関連リンク ---- */
body#land-risk .land-risk-links { background: var(--u-tint); }
body#land-risk .land-risk-links__card { border-color: #D8E2EE; border-radius: 12px; }
body#land-risk .land-risk-links__title { font-size: 20px; }
body#land-risk .land-risk-links__arrow { background: var(--u-theme); }

/* ---- FAQ ---- */
body#land-risk .land-risk-faq__question { font-size: 16px; }
body#land-risk .land-risk-faq__mark { color: var(--u-theme); font-size: 20px; }
body#land-risk .land-risk-faq__toggle::before,
body#land-risk .land-risk-faq__toggle::after { background: var(--u-deep); }

/* ---- 最終CTA（濃色締めバンド×金CTA） ---- */
body#land-risk .land-risk-final { background: var(--u-deep); }
body#land-risk .land-risk-final__media::after { background: linear-gradient(100deg, rgba(12, 42, 77, 0.96) 0%, rgba(12, 42, 77, 0.8) 55%, rgba(31, 111, 208, 0.35) 100%); opacity: 1; mix-blend-mode: normal; }
body#land-risk .land-risk-final__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#land-risk .land-risk-final__text { color: #D9E3F0; }
body#land-risk .land-risk-final__choice { border-radius: 12px; }
body#land-risk .land-risk-final__choice-arrow { color: var(--u-deep); background: #BCD4F0; }

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

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