/* ===== RETHEME blue (§3-3b・2026-07-03 batch) — 原本はサーバ .bak & _server_mirror/css ===== */
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #16181c;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button, input {
  font: inherit;
}

button {
  color: inherit;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #1F6FD0;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible, .header__lang-link:focus-visible, .header__action-link:focus-visible, .header__nav-link:focus-visible, .header__logo:focus-visible {
  outline: 2px solid #1F6FD0;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #1F6FD0;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #1F6FD0;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1F6FD0 0%, #1B5FB0 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);
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  background: #0C2A4D;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

#wrapper, #contents {
  width: 100%;
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #0C2A4D;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }
  .sp-menu__button-label {
    font-size: 13px;
    font-weight: 700;
  }
  .sp-menu__icon {
    display: grid;
    gap: 4px;
    width: 20px;
  }
  .sp-menu__icon span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__icon span:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 490;
    display: grid;
    align-items: end;
    visibility: hidden;
    background: rgba(15, 26, 40, 0.6);
    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: 1px;
    padding: 28px 20px 92px;
    background: #fff;
    transform: translateY(20px);
    transition: transform 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__nav {
    transform: translateY(0);
  }
  .sp-menu__nav a {
    padding: 15px 10px;
    border-bottom: 1px solid #dee1e5;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__nav a[aria-current=page] {
    color: #4a5a24;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
.land-sell-conditions {
  overflow: hidden;
  color: #16181c;
}
.land-sell-conditions a:focus-visible,
.land-sell-conditions button:focus-visible,
.land-sell-conditions summary:focus-visible,
.land-sell-conditions input:focus-visible {
  outline: 3px solid #f5b500;
  outline-offset: 4px;
}

.lsc-container {
  width: min(1180px, 100% - 80px);
  margin-inline: auto;
}

.lsc-section {
  padding: 112px 0;
}

.lsc-section--soft {
  background: #f4f6f9;
}

.lsc-section--olive {
  color: #fff;
  background: #17273b;
}

.lsc-eyebrow {
  margin: 0 0 18px;
  color: #4a5a24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lsc-section--olive .lsc-eyebrow {
  color: #d9e1b8;
}

.lsc-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.lsc-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #585d62;
  font-size: 18px;
  line-height: 2;
}

.lsc-section--olive .lsc-lead {
  color: rgba(255, 255, 255, 0.82);
}

.lsc-note {
  margin: 18px 0 0;
  color: #585d62;
  font-size: 13px;
  line-height: 1.8;
}

.breadcrumb {
  border-top: 1px solid #ebedf0;
  border-bottom: 1px solid #ebedf0;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
  padding: 14px 0;
  list-style: none;
  color: #646970;
  font-size: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #9ea3a9;
}

.breadcrumb a {
  text-decoration: none;
}

.lsc-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  background: #e3e7ec;
}

.lsc-hero__media {
  position: relative;
  z-index: 1;
  grid-area: 1/1;
  width: 56%;
  min-height: 720px;
  margin-left: 44%;
  overflow: hidden;
}

.lsc-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(227, 231, 236, 0.96) 0%, rgba(227, 231, 236, 0.15) 45%, rgba(227, 231, 236, 0) 70%);
}

.lsc-hero__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lsc-hero__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lsc-hero__media img {
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.78) contrast(0.96);
}

.lsc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-area: 1/1;
  align-items: center;
  min-height: 720px;
}

.lsc-hero__content {
  width: min(650px, 55%);
  padding: 82px 0;
}

.lsc-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border: 1px solid rgba(74, 90, 36, 0.3);
  border-radius: 999px;
  color: #17273b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.lsc-hero__label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #f5b500;
}

.lsc-hero__title {
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.lsc-hero__title-small {
  display: block;
  margin-bottom: 16px;
  color: #4a5a24;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lsc-hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #3c4044;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.9;
}

.lsc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.lsc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lsc-button::after {
  content: "→";
  font-size: 18px;
}

.lsc-button--primary {
  color: #16181c;
  background: #f5b500;
  box-shadow: 0 12px 28px rgba(114, 86, 0, 0.18);
}

.lsc-button--secondary {
  border-color: #4a5a24;
  color: #17273b;
  background: rgba(255, 255, 255, 0.72);
}

.lsc-button--light {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: transparent;
}

.lsc-button--white {
  color: #17273b;
  background: #fff;
}

.lsc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #4d5258;
  font-size: 13px;
  font-weight: 700;
}

.lsc-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lsc-hero__trust li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  background: #4a5a24;
  font-size: 11px;
}

.lsc-placeholder {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  background: rgba(22, 24, 28, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lsc-summary {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

.lsc-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(25, 34, 45, 0.13);
  overflow: hidden;
}

.lsc-summary__item {
  min-height: 192px;
  padding: 32px 28px;
  border-right: 1px solid #d6dbe2;
}

.lsc-summary__item:last-child {
  border-right: 0;
}

.lsc-summary__number {
  display: block;
  color: #4a5a24;
  font: 800 12px/1 Arial, sans-serif;
  letter-spacing: 0.16em;
}

.lsc-summary__title {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.lsc-summary__text {
  margin: 12px 0 0;
  color: #585d62;
  font-size: 14px;
  line-height: 1.8;
}

.lsc-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
  margin-top: 56px;
}

.lsc-photo {
  position: sticky;
  top: 24px;
  overflow: hidden;
  height: 620px;
  border-radius: 18px;
  background: #d2d8df;
}

.lsc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lsc-photo--documents img {
  object-position: 58% center;
}

.lsc-photo--risk img {
  object-position: center;
}

.lsc-photo--consultation img {
  object-position: center;
}

.lsc-photo__caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 16px 18px;
  border-radius: 8px;
  color: #fff;
  background: rgba(22, 28, 36, 0.84);
  font-size: 13px;
  line-height: 1.7;
  backdrop-filter: blur(8px);
}

.lsc-checker {
  padding: 38px;
  border: 1px solid #d6dbe2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(28, 38, 50, 0.08);
}

.lsc-checker__heading {
  margin: 0;
  font-size: 26px;
  line-height: 1.45;
}

.lsc-checker__intro {
  margin: 12px 0 0;
  color: #585d62;
  font-size: 14px;
  line-height: 1.8;
}

.lsc-checker__list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.lsc-checker__item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 19px 18px;
  border: 1px solid #d6dbe2;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lsc-checker__item:has(input:checked) {
  border-color: #4a5a24;
  background: #eef1e6;
}

.lsc-checker__item input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: #4a5a24;
}

.lsc-checker__label strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.lsc-checker__label span {
  display: block;
  margin-top: 5px;
  color: #585d62;
  font-size: 13px;
  line-height: 1.7;
}

.lsc-checker__result {
  margin-top: 24px;
  padding: 22px;
  border-radius: 10px;
  color: #fff;
  background: #17273b;
}

.lsc-checker__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.lsc-checker__score strong {
  color: #f8ce4d;
  font: 800 38px/1 Arial, sans-serif;
}

.lsc-checker__score span {
  font-size: 13px;
}

.lsc-checker__message {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.lsc-inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 52px;
  padding: 34px 38px;
  border-radius: 14px;
  background: #eef1e6;
}

.lsc-inline-cta__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.lsc-inline-cta__text {
  margin: 10px 0 0;
  color: #585d62;
  font-size: 14px;
  line-height: 1.8;
}

.lsc-pitfalls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.lsc-pitfall {
  position: relative;
  min-height: 360px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.lsc-pitfall__number {
  color: #d9e1b8;
  font: 800 12px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
}

.lsc-pitfall__title {
  margin: 34px 0 0;
  font-size: 23px;
  line-height: 1.5;
}

.lsc-pitfall__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.9;
}

.lsc-pitfall__point {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8ce4d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.lsc-diagnosis {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 640px;
}

.lsc-diagnosis__content {
  display: flex;
  align-items: center;
  padding: 96px max(7vw, 60px);
  background: #eef1e6;
}

.lsc-diagnosis__inner {
  max-width: 650px;
}

.lsc-diagnosis__media {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #cdd2d9;
}

.lsc-diagnosis__media picture, .lsc-diagnosis__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.lsc-diagnosis__media img {
  object-fit: cover;
}

.lsc-diagnosis__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lsc-diagnosis__list li {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(31, 42, 55, 0.07);
}

.lsc-diagnosis__list li::before {
  margin-right: 8px;
  color: #4a5a24;
  content: "●";
  font-size: 9px;
}

.lsc-assessment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 54px;
}

.lsc-assessment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lsc-assessment__card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #d6dbe2;
  border-radius: 14px;
  background: #fff;
}

.lsc-assessment__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4a5a24;
  font-size: 14px;
  font-weight: 800;
}

.lsc-assessment__title {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.5;
}

.lsc-assessment__text {
  margin: 10px 0 0;
  color: #585d62;
  font-size: 13px;
  line-height: 1.8;
}

.lsc-assessment__quote {
  padding: 48px;
  border-radius: 18px;
  color: #fff;
  background: #17273b;
}

.lsc-assessment__quote strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.5;
}

.lsc-assessment__quote p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 2;
}

.lsc-documents {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: stretch;
  margin-top: 54px;
}

.lsc-documents__panel {
  padding: 42px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(29, 39, 52, 0.08);
}

.lsc-documents__group + .lsc-documents__group {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #d6dbe2;
}

.lsc-documents__heading {
  margin: 0;
  color: #17273b;
  font-size: 20px;
}

.lsc-documents__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lsc-documents__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #585d62;
  font-size: 14px;
  line-height: 1.7;
}

.lsc-documents__list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #4a5a24;
  border-radius: 4px;
  color: #4a5a24;
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.lsc-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
  counter-reset: flow;
}

.lsc-flow__item {
  position: relative;
  padding: 34px 26px;
  border-top: 1px solid #d6dbe2;
  border-bottom: 1px solid #d6dbe2;
  background: #fff;
  counter-increment: flow;
}

.lsc-flow__item:first-child {
  border-left: 1px solid #d6dbe2;
  border-radius: 14px 0 0 14px;
}

.lsc-flow__item:last-child {
  border-right: 1px solid #d6dbe2;
  border-radius: 0 14px 14px 0;
}

.lsc-flow__item + .lsc-flow__item {
  border-left: 1px solid #d6dbe2;
}

.lsc-flow__item::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: counter(flow, decimal-leading-zero);
  background: #4a5a24;
  font: 800 13px/1 Arial, sans-serif;
}

.lsc-flow__title {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.5;
}

.lsc-flow__text {
  margin: 10px 0 0;
  color: #585d62;
  font-size: 13px;
  line-height: 1.8;
}

.lsc-faq {
  display: grid;
  gap: 14px;
  margin-top: 50px;
}

.lsc-faq__item {
  border: 1px solid #d6dbe2;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.lsc-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 26px;
  gap: 12px;
  align-items: center;
  padding: 24px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.lsc-faq__question::-webkit-details-marker {
  display: none;
}

.lsc-faq__question::before {
  color: #4a5a24;
  content: "Q";
  font: 800 22px/1 Arial, sans-serif;
}

.lsc-faq__question::after {
  content: "+";
  color: #4a5a24;
  font: 400 24px/1 Arial, sans-serif;
}

.lsc-faq__item[open] .lsc-faq__question::after {
  content: "−";
}

.lsc-faq__answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 0 26px 26px;
  color: #585d62;
  font-size: 14px;
  line-height: 1.9;
}

.lsc-faq__answer::before {
  color: #f5b500;
  content: "A";
  font: 800 22px/1 Arial, sans-serif;
}

.lsc-faq__answer p {
  margin: 0;
}

.lsc-final-cta {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background: #182330;
}

.lsc-final-cta__media {
  position: absolute;
  inset: 0;
  opacity: 0.38;
}

.lsc-final-cta__media picture, .lsc-final-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.lsc-final-cta__media img {
  object-fit: cover;
  object-position: center;
}

.lsc-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 35, 0.94) 0%, rgba(14, 23, 35, 0.78) 55%, rgba(14, 23, 35, 0.46) 100%);
}

.lsc-final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 620px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lsc-final-cta__content {
  max-width: 760px;
}

.lsc-final-cta__title {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.lsc-final-cta__text {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 2;
}

.lsc-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lsc-final-cta__note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.8;
}

.lsc-related {
  padding: 72px 0;
  background: #edf0f3;
}

.lsc-related__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.lsc-related__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(33, 42, 52, 0.07);
}

.lsc-related__link strong {
  display: block;
  font-size: 17px;
  line-height: 1.5;
}

.lsc-related__link span {
  display: block;
  margin-top: 6px;
  color: #585d62;
  font-size: 12px;
  line-height: 1.6;
}

.lsc-related__link::after {
  content: "→";
  color: #4a5a24;
  font-size: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .lsc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(35, 48, 65, 0.18);
  }
  .lsc-related__link:hover {
    transform: translateY(-2px);
  }
}
@media (max-width: 1024px) {
  .lsc-container, .breadcrumb__list {
    width: min(100% - 60px, 1180px);
  }
  .lsc-section {
    padding: 92px 0;
  }
  .lsc-hero, .lsc-hero__inner {
    min-height: 650px;
  }
  .lsc-hero__content {
    width: 62%;
  }
  .lsc-summary__grid {
    grid-template-columns: 1fr 1fr;
  }
  .lsc-summary__item:nth-child(2) {
    border-right: 0;
  }
  .lsc-summary__item:nth-child(-n+2) {
    border-bottom: 1px solid #d6dbe2;
  }
  .lsc-check-layout, .lsc-assessment, .lsc-documents {
    gap: 42px;
  }
  .lsc-pitfalls {
    gap: 16px;
  }
  .lsc-pitfall {
    min-height: 400px;
  }
  .lsc-diagnosis {
    grid-template-columns: 1fr;
  }
  .lsc-diagnosis__media {
    min-height: 500px;
    order: -1;
  }
  .lsc-diagnosis__content {
    padding: 72px 40px;
  }
  .lsc-flow {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .lsc-flow__item, .lsc-flow__item:first-child, .lsc-flow__item:last-child {
    border: 1px solid #d6dbe2;
    border-radius: 12px;
  }
}
@media (max-width: 760px) {
  .lsc-container, .breadcrumb__list {
    width: calc(100% - 40px);
  }
  .lsc-section {
    padding: 72px 0;
  }
  .lsc-title {
    font-size: 34px;
  }
  .lsc-lead {
    font-size: 16px;
    line-height: 1.9;
  }
  .breadcrumb__list {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .lsc-hero {
    min-height: auto;
    padding: 0 0 52px;
  }
  .lsc-hero {
    display: block;
  }
  .lsc-hero__media {
    position: relative;
    width: 100%;
    min-height: 0;
    height: 340px;
    margin-left: 0;
  }
  .lsc-hero__media::after {
    background: linear-gradient(0deg, #e3e7ec 0%, rgba(227, 231, 236, 0) 58%);
  }
  .lsc-hero__media img {
    object-position: 62% center;
  }
  .lsc-hero__inner {
    min-height: auto;
    margin-top: -72px;
  }
  .lsc-hero__content {
    width: 100%;
    padding: 0;
  }
  .lsc-hero__label {
    margin-bottom: 16px;
  }
  .lsc-hero__title {
    font-size: 54px;
  }
  .lsc-hero__title-small {
    font-size: 17px;
  }
  .lsc-hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }
  .lsc-hero__actions {
    display: grid;
    margin-top: 26px;
  }
  .lsc-button {
    width: 100%;
    min-height: 56px;
  }
  .lsc-summary {
    margin-top: 0;
    padding-top: 26px;
  }
  .lsc-summary__grid {
    grid-template-columns: 1fr;
  }
  .lsc-summary__item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d6dbe2;
  }
  .lsc-summary__item:last-child {
    border-bottom: 0;
  }
  .lsc-check-layout, .lsc-assessment, .lsc-documents {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }
  .lsc-photo {
    position: relative;
    height: 360px;
  }
  .lsc-photo img {
    height: 100%;
  }
  .lsc-checker {
    padding: 26px 20px;
  }
  .lsc-checker__item {
    padding: 16px 14px;
  }
  .lsc-inline-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .lsc-pitfalls {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .lsc-pitfall {
    min-height: 330px;
  }
  .lsc-diagnosis__media {
    min-height: 360px;
  }
  .lsc-diagnosis__content {
    padding: 64px 20px;
  }
  .lsc-diagnosis__list {
    grid-template-columns: 1fr;
  }
  .lsc-assessment__grid {
    grid-template-columns: 1fr;
  }
  .lsc-assessment__card {
    min-height: auto;
  }
  .lsc-assessment__quote {
    padding: 34px 26px;
  }
  .lsc-documents__panel {
    padding: 30px 22px;
  }
  .lsc-flow {
    grid-template-columns: 1fr;
  }
  .lsc-faq__question {
    grid-template-columns: 30px 1fr 20px;
    padding: 20px 16px;
    font-size: 15px;
  }
  .lsc-faq__answer {
    grid-template-columns: 30px 1fr;
    padding: 0 16px 22px;
  }
  .lsc-final-cta, .lsc-final-cta__inner {
    min-height: 680px;
  }
  .lsc-final-cta__overlay {
    background: linear-gradient(0deg, rgba(14, 23, 35, 0.96) 0%, rgba(14, 23, 35, 0.7) 80%, rgba(14, 23, 35, 0.5) 100%);
  }
  .lsc-final-cta__title {
    font-size: 39px;
  }
  .lsc-final-cta__text {
    font-size: 15px;
  }
  .lsc-final-cta__actions {
    display: grid;
  }
  .lsc-related__links {
    grid-template-columns: 1fr;
  }
}
*,
*::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-sell-conditions img[src][src$="/img/contents/bess-land/sell/conditions/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/800}
body#land-sell-conditions :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/sell/conditions/survey.jpg"]),body#land-sell-conditions :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/sell/conditions/survey.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-sell-conditions picture:has(> img[src$="/img/contents/bess-land/sell/conditions/survey.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-sell-conditions img[src][src$="/img/contents/bess-land/sell/conditions/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/800}
body#land-sell-conditions :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/sell/conditions/risk.jpg"]),body#land-sell-conditions :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/sell/conditions/risk.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-sell-conditions picture:has(> img[src$="/img/contents/bess-land/sell/conditions/risk.jpg"]){position:static;display:block;height:auto;min-height:0}
body#land-sell-conditions img[src][src$="/img/contents/bess-land/sell/conditions/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-sell-conditions :is(div,figure,picture):has(> img[src$="/img/contents/bess-land/sell/conditions/documents.jpg"]),body#land-sell-conditions :is(div,figure,picture):has(> picture > img[src$="/img/contents/bess-land/sell/conditions/documents.jpg"]){min-height:0;height:auto;aspect-ratio:auto}
body#land-sell-conditions picture:has(> img[src$="/img/contents/bess-land/sell/conditions/documents.jpg"]){position:static;display:block;height:auto;min-height:0}
main figure:has(img[src$="/img/contents/bess-land/sell/conditions/survey.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/sell/conditions/risk.jpg"])::after,main figure:has(img[src$="/img/contents/bess-land/sell/conditions/documents.jpg"])::after{content:none}
main figure:has(img[src$="/img/contents/bess-land/sell/conditions/survey.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/sell/conditions/risk.jpg"]) figcaption,main figure:has(img[src$="/img/contents/bess-land/sell/conditions/documents.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-sell-conditions .lsc-section { padding: 96px 0; }

/* ---- 共通見出し（eyebrow=テーマ色Barlow+後置罫） ---- */
body#land-sell-conditions .lsc-eyebrow {
  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-sell-conditions .lsc-eyebrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 2px;
  margin-left: 14px;
  background: var(--u-theme);
}
body#land-sell-conditions .lsc-section--olive .lsc-eyebrow { color: #A9C9EE; }
body#land-sell-conditions .lsc-title { font-size: 25px; line-height: 1.5; letter-spacing: 0.02em; }
body#land-sell-conditions .lsc-lead { color: var(--u-sub); font-size: 18px; }
body#land-sell-conditions .lsc-section--soft { background: var(--u-tint); }
body#land-sell-conditions .lsc-section--olive { background: var(--u-deep); }
body#land-sell-conditions .lsc-section--olive .lsc-lead { color: rgba(255, 255, 255, 0.82); }

/* ---- ヒーロー（--u-deepグラデ×白明朝31px×eyebrowアニメ） ---- */
@keyframes u41FadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
body#land-sell-conditions .lsc-hero {
  color: #fff;
  background: linear-gradient(100deg, #0C2A4D 0%, #123E6F 60%, #1F6FD0 100%);
}
body#land-sell-conditions .lsc-hero__media::after {
  background: linear-gradient(90deg, rgba(12, 42, 77, 0.96) 0%, rgba(12, 42, 77, 0.45) 45%, rgba(12, 42, 77, 0.05) 75%);
}
body#land-sell-conditions .lsc-hero__media img { filter: saturate(0.75); }
body#land-sell-conditions .lsc-hero__label {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #DCE6F2;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  animation: u41FadeUp 0.6s ease 0s both;
}
body#land-sell-conditions .lsc-hero__label::before {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 16px;
  border-radius: 0;
  background: var(--u-theme);
}
body#land-sell-conditions .lsc-hero__label::after { content: none; }
body#land-sell-conditions .lsc-hero__title {
  font-size: 31px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  animation: u41FadeUp 0.6s ease 0.12s both;
}
body#land-sell-conditions .lsc-hero__title-small {
  margin-bottom: 14px;
  color: #A9C9EE;
  font-size: 18px;
  letter-spacing: 0.04em;
}
body#land-sell-conditions .lsc-hero__lead {
  color: #DCE6F2;
  font-size: 18px;
  line-height: 1.9;
  animation: u41FadeUp 0.6s ease 0.24s both;
}
body#land-sell-conditions .lsc-hero__actions { animation: u41FadeUp 0.6s ease 0.36s both; }
body#land-sell-conditions .lsc-hero__trust {
  color: #DCE6F2;
  animation: u41FadeUp 0.6s ease 0.48s both;
}
body#land-sell-conditions .lsc-hero__trust li::before { background: var(--u-theme); }
@media (prefers-reduced-motion: reduce) {
  body#land-sell-conditions .lsc-hero__label,
  body#land-sell-conditions .lsc-hero__title,
  body#land-sell-conditions .lsc-hero__lead,
  body#land-sell-conditions .lsc-hero__actions,
  body#land-sell-conditions .lsc-hero__trust { animation: none; }
}

/* ---- ボタン（金CTA・radius999） ---- */
body#land-sell-conditions .lsc-button {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
}
body#land-sell-conditions .lsc-button--primary {
  color: var(--u-ink);
  box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24);
}
body#land-sell-conditions .lsc-hero .lsc-button--secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  body#land-sell-conditions .lsc-button--primary:hover {
    filter: brightness(0.92);
    box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32);
  }
}
body#land-sell-conditions .lsc-button:focus-visible { outline: 2px solid var(--u-deep); outline-offset: 3px; }
body#land-sell-conditions .lsc-hero .lsc-button:focus-visible,
body#land-sell-conditions .lsc-final-cta .lsc-button:focus-visible { outline-color: #fff; }

/* ---- サマリー ---- */
body#land-sell-conditions .lsc-summary__grid { border-radius: 12px; }
body#land-sell-conditions .lsc-summary__item { border-right-color: var(--u-border); }
body#land-sell-conditions .lsc-summary__number { color: var(--u-theme); font-size: 12px; }
body#land-sell-conditions .lsc-summary__title { font-size: 20px; }
body#land-sell-conditions .lsc-summary__text { color: var(--u-sub); font-size: 14px; }

/* ---- チェックリスト ---- */
body#land-sell-conditions .lsc-check-layout { margin-top: 48px; }
body#land-sell-conditions .lsc-checker { border-color: var(--u-border); border-radius: 12px; }
body#land-sell-conditions .lsc-checker__heading { font-size: 20px; }
body#land-sell-conditions .lsc-checker__intro { color: var(--u-sub); font-size: 14px; }
body#land-sell-conditions .lsc-checker__item { border-color: var(--u-border); border-radius: 6px; }
body#land-sell-conditions .lsc-checker__item:has(input:checked) {
  border-color: var(--u-theme);
  background: #E9F1FB;
}
body#land-sell-conditions .lsc-checker__item input { accent-color: var(--u-theme); }
body#land-sell-conditions .lsc-checker__label {
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}
body#land-sell-conditions .lsc-checker__label::after { content: none; }
body#land-sell-conditions .lsc-checker__result { border-radius: 6px; background: var(--u-deep); }
body#land-sell-conditions .lsc-checker__score strong { color: #fff; font-family: "Barlow", Arial, sans-serif; }
body#land-sell-conditions .lsc-inline-cta { margin-top: 48px; border-radius: 12px; background: var(--u-tint); }
body#land-sell-conditions .lsc-inline-cta__title { font-size: 20px; }
body#land-sell-conditions .lsc-inline-cta__text { color: var(--u-sub); font-size: 14px; }

/* ---- 見落としがちな条件（濃色バンド） ---- */
body#land-sell-conditions .lsc-pitfalls { margin-top: 48px; }
body#land-sell-conditions .lsc-pitfall { border-radius: 12px; }
body#land-sell-conditions .lsc-pitfall__number { color: #A9C9EE; font-size: 12px; }
body#land-sell-conditions .lsc-pitfall__title { font-size: 20px; }
body#land-sell-conditions .lsc-pitfall__text { font-size: 14px; }
body#land-sell-conditions .lsc-pitfall__point { color: #A9C9EE; font-size: 13px; }

/* ---- 診断誘導 ---- */
body#land-sell-conditions .lsc-diagnosis__content { background: var(--u-tint); }
body#land-sell-conditions .lsc-diagnosis__media {
  display: flex;
  align-items: center;
  background: var(--u-tint);
}
body#land-sell-conditions .lsc-diagnosis__list li { border-radius: 6px; }
body#land-sell-conditions .lsc-diagnosis__list li::before { color: var(--u-theme); }

/* ---- 査定方針 ---- */
body#land-sell-conditions .lsc-assessment { margin-top: 48px; }
body#land-sell-conditions .lsc-assessment__card { border-color: var(--u-border); border-radius: 12px; }
body#land-sell-conditions .lsc-assessment__icon { background: var(--u-theme); }
body#land-sell-conditions .lsc-assessment__title { font-size: 20px; }
body#land-sell-conditions .lsc-assessment__text { color: var(--u-sub); font-size: 13px; }
body#land-sell-conditions .lsc-assessment__quote { border-radius: 12px; background: var(--u-deep); }
body#land-sell-conditions .lsc-assessment__quote strong { font-size: 25px; line-height: 1.5; }

/* ---- 書類 ---- */
body#land-sell-conditions .lsc-documents { margin-top: 48px; }
body#land-sell-conditions .lsc-documents__panel { border-radius: 12px; }
body#land-sell-conditions .lsc-documents__group + .lsc-documents__group { border-top-color: var(--u-border); }
body#land-sell-conditions .lsc-documents__heading { color: var(--u-deep); font-size: 20px; }
body#land-sell-conditions .lsc-documents__list li { color: var(--u-sub); font-size: 14px; }
body#land-sell-conditions .lsc-documents__list li::before {
  border-color: var(--u-theme);
  color: var(--u-theme);
}

/* ---- フロー ---- */
body#land-sell-conditions .lsc-flow { margin-top: 48px; }
body#land-sell-conditions .lsc-flow__item { border-color: var(--u-border); }
body#land-sell-conditions .lsc-flow__item:first-child { border-left-color: var(--u-border); border-radius: 12px 0 0 12px; }
body#land-sell-conditions .lsc-flow__item:last-child { border-right-color: var(--u-border); border-radius: 0 12px 12px 0; }
body#land-sell-conditions .lsc-flow__item + .lsc-flow__item { border-left-color: var(--u-border); }
body#land-sell-conditions .lsc-flow__item::before { background: var(--u-theme); }
body#land-sell-conditions .lsc-flow__title { font-size: 20px; }
body#land-sell-conditions .lsc-flow__text { color: var(--u-sub); font-size: 13px; }

/* ---- FAQ ---- */
body#land-sell-conditions .lsc-faq { margin-top: 48px; }
body#land-sell-conditions .lsc-faq__item { border-color: var(--u-border); border-radius: 12px; }
body#land-sell-conditions .lsc-faq__question { font-size: 16px; }
body#land-sell-conditions .lsc-faq__question::before { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; }
body#land-sell-conditions .lsc-faq__question::after { color: var(--u-theme); }
body#land-sell-conditions .lsc-faq__answer { color: var(--u-sub); font-size: 14px; }
body#land-sell-conditions .lsc-faq__answer::before { color: var(--u-theme); font-family: "Barlow", Arial, sans-serif; }

/* ---- 最終CTA（濃色締め） ---- */
body#land-sell-conditions .lsc-final-cta { background: var(--u-deep); }
body#land-sell-conditions .lsc-final-cta__overlay {
  background: linear-gradient(90deg, rgba(12, 42, 77, 0.94) 0%, rgba(12, 42, 77, 0.78) 55%, rgba(12, 42, 77, 0.46) 100%);
}
body#land-sell-conditions .lsc-final-cta__media img { filter: saturate(0.75); }
body#land-sell-conditions .lsc-final-cta__title { font-size: 25px; line-height: 1.5; letter-spacing: 0.02em; }
body#land-sell-conditions .lsc-final-cta__text { font-size: 18px; }

/* ---- 関連リンク ---- */
body#land-sell-conditions .lsc-related { background: var(--u-tint); }
body#land-sell-conditions .lsc-related__link { border: 1px solid var(--u-border); border-radius: 12px; }
body#land-sell-conditions .lsc-related__link::after { color: var(--u-theme); }
body#land-sell-conditions .lsc-related__link span { color: var(--u-sub); }

/* ---- 〜900px（セクション48px） ---- */
@media (max-width: 900px) {
  body#land-sell-conditions .lsc-section { padding: 48px 0; }
  body#land-sell-conditions .lsc-check-layout,
  body#land-sell-conditions .lsc-assessment,
  body#land-sell-conditions .lsc-documents { margin-top: 32px; }
  body#land-sell-conditions .lsc-pitfalls { margin-top: 32px; }
}
@media (max-width: 760px) {
  body#land-sell-conditions .lsc-hero__media::after {
    background: linear-gradient(0deg, #0C2A4D 0%, rgba(12, 42, 77, 0) 58%);
  }
}

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