/* ===== RETHEME violet (§3-3b ページテーマ制・2026-07-03) — 元は page09.css.bak_20260703 ===== */
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, p, ul, ol, dl, dd, figure, fieldset {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

:root {
  --color-green: #22745D;
  --color-deep-green: #155442;
  --color-mint: #ecf2f0;
  --color-yellow: #f5b500;
  --color-ink: #16181c;
  --color-muted: #5f5d67;
  --color-line: #dde3e1;
  --color-surface: #f6f7f7;
  --color-white: #fff;
  --shadow-soft: 0 24px 70px rgba(27, 64, 53, 0.12);
}

html {
  color: var(--color-ink);
  background: #fff;
  font-size: 16px;
}

body {
  min-width: 320px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

body.is-menu-open {
  overflow: hidden;
}

#wrapper {
  overflow: clip;
}

#contents {
  min-height: 100vh;
}

main {
  display: block;
}

a {
  text-underline-offset: 0.18em;
}

button, input, select, textarea {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--color-deep-green);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading__eyebrow {
  color: var(--color-green);
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading__title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.section-heading__lead {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 2;
}

.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  background: #b73d35;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #3b4b47;
  background: #e9eeec;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 850px) {
  .container {
    width: min(100% - 40px, 680px);
  }
  .section-heading {
    gap: 12px;
  }
  .section-heading__title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .section-heading__lead {
    font-size: 15px;
    line-height: 1.9;
  }
}
.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__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: #f5f7f7;
  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: #31A886;
}

.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 #31A886;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #31A886;
  }
  .header__lang-link:hover {
    background: #f5f7f7;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #31A886;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
    .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
    .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__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 #f5f7f7;
}
.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, #22745D 0%, #31A886 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: #f5f7f7;
}
.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: #22745D;
  }
  .footer__summary:hover::after {
    background-color: #22745D;
  }
}
@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: tbpx) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 35px;
  }
  .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: sppx) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 1200;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #155442;
    box-shadow: 0 12px 30px rgba(27, 64, 53, 0.22);
  }
  .sp-menu__button-line {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .sp-menu__button-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    align-items: center;
    padding: 100px 30px 40px;
    visibility: hidden;
    background: rgba(27, 64, 53, 0.97);
    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: 0;
  }
  .sp-menu__link {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
}
.request-page {
  background: #fff;
}

.breadcrumb {
  border-top: 1px solid #eef0f0;
  border-bottom: 1px solid #eef0f0;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  color: #676570;
  font-size: 12px;
}

.breadcrumb__item + .breadcrumb__item::before {
  margin-right: 10px;
  content: "/";
  color: #aba9b2;
}

.breadcrumb__link {
  text-decoration: none;
}

.request-hero {
  position: relative;
  min-height: 720px;
  background: #f0f5f3;
}

.request-hero__media {
  position: absolute;
  inset: 0 0 0 42%;
  overflow: hidden;
}

.request-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #f0f5f3 0%, rgba(240, 245, 243, 0.78) 12%, rgba(240, 245, 243, 0) 46%);
}

.request-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.request-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 720px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.request-hero__content {
  width: min(660px, 60%);
}

.request-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(46, 103, 87, 0.2);
  border-radius: 999px;
  color: #155442;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.request-hero__badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #31A886;
  box-shadow: 0 0 0 6px rgba(69, 140, 120, 0.14);
}

.request-hero__title {
  font-size: clamp(48px, 5.7vw, 78px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.request-hero__title-accent {
  display: block;
  color: #22745D;
}

.request-hero__lead {
  max-width: 600px;
  margin-top: 24px;
  color: #39423f;
  font-size: 18px;
  line-height: 2;
}

.request-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button--primary {
  color: #fff;
  background: #22745D;
  box-shadow: 0 18px 35px rgba(46, 103, 87, 0.22);
}

.button--secondary {
  border-color: #22745D;
  color: #155442;
  background: rgba(255, 255, 255, 0.82);
}

.request-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 22px;
  color: #565263;
  font-size: 13px;
}

.request-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.request-hero__meta-item::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  content: "✓";
  color: #22745D;
  background: #fff;
  font-weight: 800;
}

.request-assurance {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.request-assurance__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px;
  overflow: hidden;
  background: #155442;
  box-shadow: var(--shadow-soft);
}

.request-assurance__item {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 34px 38px;
  color: #fff;
}

.request-assurance__item + .request-assurance__item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.request-assurance__number {
  color: #9cc6ba;
  font-family: Barlow, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.request-assurance__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.request-assurance__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.8;
}

.request-guide {
  padding: 150px 0 130px;
}

.request-guide__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
  margin-top: 70px;
}

.request-guide__visual {
  position: relative;
  min-height: 560px;
}

.request-guide__photo {
  position: absolute;
  inset: 0 80px 70px 0;
  border-radius: 0 120px 24px 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.request-guide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-guide__photo--sub {
  inset: auto 0 0 auto;
  width: 48%;
  height: 42%;
  border: 10px solid #fff;
  border-radius: 22px;
}

.request-guide__content {
  display: grid;
  gap: 22px;
}

.request-guide__list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.request-guide__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #dde3e1;
}

.request-guide__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  background: #22745D;
  font-family: Barlow, Arial, sans-serif;
  font-weight: 700;
}

.request-guide__item-title {
  font-size: 18px;
  font-weight: 700;
}

.request-guide__item-text {
  margin-top: 5px;
  color: #676570;
  font-size: 14px;
  line-height: 1.8;
}

.request-form-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #155442 0, #155442 360px, #f6f7f7 360px, #f6f7f7 100%);
}

.request-form-section .section-heading__eyebrow, .request-form-section .section-heading__title, .request-form-section .section-heading__lead {
  color: #fff;
}

.request-form-section__notice {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-align: center;
}

.request-form {
  margin-top: 62px;
  padding: 64px 78px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 38px 90px rgba(19, 44, 37, 0.16);
}

.request-form__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 52px;
}

.request-form__progress-item {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: #6a6773;
  background: #eef1f0;
  font-size: 12px;
  font-weight: 700;
}

.request-form__progress-item.is-current {
  color: #fff;
  background: #22745D;
}

.request-form__group {
  padding: 0;
  border: 0;
}

.request-form__group + .request-form__group {
  margin-top: 58px;
  padding-top: 52px;
  border-top: 1px solid #e1e5e4;
}

.request-form__legend {
  width: 100%;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.request-form__legend-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
  background: #22745D;
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
}

.request-form__radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.request-form__radio {
  position: relative;
}

.request-form__radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-form__radio-label {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border: 2px solid #dde3e1;
  border-radius: 16px;
  color: #36403d;
  background: #fff;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.request-form__radio input:checked + .request-form__radio-label {
  border-color: #22745D;
  color: #155442;
  background: #eff6f4;
  box-shadow: inset 0 0 0 1px #22745D;
}

.request-form__radio input:focus-visible + .request-form__radio-label {
  outline: 3px solid rgba(245, 181, 0, 0.65);
  outline-offset: 2px;
}

.request-form__rows {
  display: grid;
  gap: 26px;
}

.request-form__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 34px;
}

.request-form__label {
  padding-top: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.request-form__control {
  min-width: 0;
}

.request-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.request-form input[type=text],
.request-form input[type=email],
.request-form input[type=tel],
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid #c2ccc9;
  border-radius: 9px;
  background: #fbfbfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form textarea {
  min-height: 160px;
  resize: vertical;
}

.request-form input:focus, .request-form select:focus, .request-form textarea:focus {
  border-color: #22745D;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(46, 103, 87, 0.12);
}

.request-form__help {
  margin-top: 8px;
  color: #6b6974;
  font-size: 12px;
  line-height: 1.7;
}

.request-form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.request-form__checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.request-form__checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #22745D;
}

.request-form__privacy {
  margin-top: 46px;
  padding: 28px;
  border-radius: 16px;
  background: #f4f6f6;
}

.request-form__privacy-text {
  color: #5b5864;
  font-size: 13px;
  line-height: 1.9;
}

.request-form__privacy-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
}

.request-form__privacy-check input {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  accent-color: #22745D;
}

.request-form__submit {
  display: grid;
  place-items: center;
  margin-top: 34px;
}

.request-form__submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 520px);
  min-height: 72px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  color: #1d2221;
  background: #f5b500;
  box-shadow: 0 18px 40px rgba(245, 181, 0, 0.25);
  font-size: 18px;
  font-weight: 800;
}

.request-form__submit-button::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.request-form__submit-note {
  margin-top: 14px;
  color: #6a6873;
  font-size: 12px;
  text-align: center;
}

.request-form__status {
  margin-top: 18px;
  padding: 16px;
  border-radius: 10px;
  color: #7a2b25;
  background: #fff0ed;
  font-size: 13px;
  text-align: center;
}

.request-form__status[hidden] {
  display: none;
}

.request-flow {
  padding: 150px 0;
}

.request-flow__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
  margin-top: 72px;
}

.request-flow__steps {
  counter-reset: flow;
  display: grid;
}

.request-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 28px 0;
}

.request-flow__step:not(:last-child)::after {
  position: absolute;
  top: 80px;
  bottom: -6px;
  left: 38px;
  width: 1px;
  content: "";
  background: #bdd0cb;
}

.request-flow__step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  background: #22745D;
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.request-flow__step-title {
  padding-top: 6px;
  font-size: 20px;
  font-weight: 700;
}

.request-flow__step-text {
  margin-top: 7px;
  color: #676570;
  font-size: 14px;
  line-height: 1.9;
}

.request-flow__visual {
  position: relative;
}

.request-flow__visual::before {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  content: "";
  background: #ecf2f0;
}

.request-flow__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  border-radius: 28px 0 0 120px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.request-materials {
  padding: 135px 0;
  background: #f6f7f7;
}

.request-materials__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.request-materials__image {
  min-height: 520px;
  border-radius: 24px 100px 24px 24px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.request-materials__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.request-materials__item {
  padding: 20px 22px;
  border: 1px solid #dbe3e1;
  border-radius: 14px;
  background: #fff;
}

.request-materials__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.request-materials__item-title::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: #22745D;
  font-size: 12px;
}

.request-materials__item-text {
  margin-top: 7px;
  color: #6b6974;
  font-size: 12px;
  line-height: 1.7;
}

.request-materials__note {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 3px solid #22745D;
  color: #615e6a;
  font-size: 13px;
  line-height: 1.8;
}

.request-faq {
  padding: 150px 0;
}

.request-faq__list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 62px auto 0;
}

.request-faq__item {
  border: 1px solid #dde3e1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.request-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.request-faq__question::after {
  width: 14px;
  height: 14px;
  border-right: 2px solid #22745D;
  border-bottom: 2px solid #22745D;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.request-faq__item[open] .request-faq__question::after {
  transform: rotate(225deg);
}

.request-faq__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #22745D;
  font-family: Barlow, Arial, sans-serif;
  font-weight: 700;
}

.request-faq__answer {
  padding: 0 32px 28px 86px;
  color: #605e69;
  font-size: 14px;
  line-height: 2;
}

.request-final {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  color: #fff;
  background: #155442;
  text-align: center;
}

.request-final::before, .request-final::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.request-final::before {
  top: -250px;
  left: -120px;
  width: 520px;
  height: 520px;
}

.request-final::after {
  right: -180px;
  bottom: -360px;
  width: 700px;
  height: 700px;
}

.request-final__inner {
  position: relative;
  z-index: 1;
}

.request-final__eyebrow {
  color: #9cc6ba;
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.request-final__title {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.35;
}

.request-final__text {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 2;
}

.request-final__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.request-final .button--primary {
  color: #155442;
  background: #fff;
}

.request-final .button--secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover, .request-form__submit-button:hover {
    transform: translateY(-2px);
  }
  .button--primary:hover {
    box-shadow: 0 22px 45px rgba(46, 103, 87, 0.28);
  }
  .request-form__submit-button:hover {
    box-shadow: 0 22px 45px rgba(245, 181, 0, 0.34);
  }
}
@media (max-width: 1024px) {
  .request-guide__grid, .request-flow__grid, .request-materials__grid {
    gap: 50px;
  }
  .request-form {
    padding: 55px 48px;
  }
  .request-form__row {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
}
@media (max-width: 850px) {
  .breadcrumb {
    margin-top: 0;
  }
  .request-hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .request-hero__media {
    position: relative;
    inset: auto;
    height: 420px;
  }
  .request-hero__media::after {
    background: linear-gradient(180deg, rgba(240, 245, 243, 0) 58%, #f0f5f3 100%);
  }
  .request-hero__image {
    object-position: center 48%;
  }
  .request-hero__inner {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 52px;
  }
  .request-hero__content {
    width: 100%;
  }
  .request-hero__title {
    font-size: clamp(42px, 13vw, 60px);
  }
  .request-hero__lead {
    font-size: 16px;
  }
  .request-hero__actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .request-assurance {
    margin-top: 0;
    background: #155442;
  }
  .request-assurance__inner {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .request-assurance__item {
    min-height: auto;
    padding: 26px 20px;
  }
  .request-assurance__item + .request-assurance__item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
  .request-guide, .request-flow, .request-faq {
    padding: 100px 0;
  }
  .request-guide__grid, .request-flow__grid, .request-materials__grid {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 48px;
  }
  .request-guide__visual {
    min-height: 470px;
  }
  .request-guide__photo {
    inset: 0 45px 60px 0;
    border-radius: 0 80px 20px 0;
  }
  .request-guide__photo--sub {
    inset: auto 0 0 auto;
  }
  .request-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #155442 0, #155442 300px, #f6f7f7 300px, #f6f7f7 100%);
  }
  .request-form {
    margin-top: 46px;
    padding: 38px 20px;
    border-radius: 20px;
  }
  .request-form__progress {
    gap: 6px;
  }
  .request-form__progress-item {
    min-height: 36px;
    font-size: 10px;
  }
  .request-form__legend {
    font-size: 20px;
  }
  .request-form__radio-grid {
    grid-template-columns: 1fr;
  }
  .request-form__radio-label {
    min-height: 70px;
  }
  .request-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .request-form__label {
    padding-top: 0;
  }
  .request-form__split {
    grid-template-columns: 1fr;
  }
  .request-flow__grid {
    display: flex;
    flex-direction: column;
  }
  .request-flow__visual {
    order: -1;
  }
  .request-flow__visual img {
    border-radius: 20px 0 0 70px;
  }
  .request-flow__step {
    grid-template-columns: 62px 1fr;
    gap: 18px;
  }
  .request-flow__step-number {
    width: 62px;
    height: 62px;
  }
  .request-flow__step:not(:last-child)::after {
    top: 64px;
    left: 30px;
  }
  .request-materials {
    padding: 100px 0;
  }
  .request-materials__image {
    min-height: 420px;
    border-radius: 20px 70px 20px 20px;
  }
  .request-materials__list {
    grid-template-columns: 1fr;
  }
  .request-faq__question {
    grid-template-columns: 36px 1fr 18px;
    gap: 12px;
    min-height: 76px;
    padding: 18px;
    font-size: 15px;
  }
  .request-faq__mark {
    width: 36px;
    height: 36px;
  }
  .request-faq__answer {
    padding: 0 18px 22px 66px;
  }
  .request-final {
    padding: 95px 0;
  }
  .request-final__actions {
    display: grid;
  }
}
@media (max-width: 480px) {
  .request-hero__media {
    height: 350px;
  }
  .request-hero__badge {
    font-size: 11px;
  }
  .request-hero__title {
    font-size: 41px;
  }
  .request-hero__meta {
    display: grid;
    gap: 8px;
  }
  .request-guide__visual {
    min-height: 390px;
  }
  .request-guide__photo--sub {
    border-width: 7px;
  }
  .request-form__privacy {
    padding: 20px;
  }
  .request-form__privacy-check {
    justify-content: flex-start;
  }
  .request-form__submit-button {
    min-height: 66px;
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== PHOTO HARMONY（§5-5 写真をテーマ色と調和・2026-07-03） ===== */
main img { filter: saturate(0.78); }
main figure { position: relative; }
main figure::after {
  content: ""; position: absolute; inset: 0;
  background: #31A886; opacity: 0.14; mix-blend-mode: color; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { main img { transition: none; } }

/* ===== POSTER GRAMMAR（サムネ文法の移植・2026-07-03 v2） =====
   サムネ＝明朝見出し×英字キッカー字間×金/テーマの点使い。同じ声にそろえる。 */
main h1, main h2, main h3,
main [class*="__title"],
main [class*="-hero__title"] {
  font-family: 'Yu Mincho','Hiragino Mincho ProN','MS Mincho',serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
main [class*="__eyebrow"], main [class*="__en"] {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
main [class*="__eyebrow"]::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 34px; height: 2px; margin-left: 14px;
  background: #31A886;
}
/* 大数字・番号はサムネ同様に細アウトライン風の品を（Barlow） */
main [class*="__number"] {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
}
/* カード類：影を抑えhoverで浮く（§8の上質ホバー） */
@media (hover: hover) and (pointer: fine) {
  main [class*="card"]:hover { transform: translateY(-4px); transition: transform 0.25s ease; }
}
@media (prefers-reduced-motion: reduce) {
  main [class*="card"]:hover { transform: none; }
}

/* ===== UPLIFT batch4 lv violet (uplift_20260705) — バッチ④指示書 2026-07-05 ===== */
body#landowner-request {
  --u-theme: #31A886;
  --u-text: #22745D;
  --u-deep: #155442;
  --u-tint: #F3FAF8;
  --u-gold: #F5B500;
  --u-lav: #ACDDCF;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- 基礎リズム / 見出し ---- */
body#landowner-request .section-heading__en { margin-bottom: 16px; color: var(--u-text); font-size: 13px; }
body#landowner-request .section-heading__title { font-size: 25px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.6; }
body#landowner-request .section-heading__lead { margin-top: 20px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }

/* ---- ボタン / フォーカス ---- */
body#landowner-request .button:focus-visible { outline: 2px solid var(--u-text); outline-offset: 3px; }
body#landowner-request :is(.request-hero, .request-final) .button:focus-visible { outline-color: #fff; }
body#landowner-request :is(.request-hero, .request-final) .button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }

/* ---- ヒーロー（写真右42%×deepグラデ地・白明朝31px） ---- */
body#landowner-request .request-hero { background: var(--u-deep); }
body#landowner-request .request-hero__media::after { background: linear-gradient(90deg, #155442 0%, rgba(21, 84, 66, 0.75) 12%, rgba(21, 84, 66, 0) 46%); }
body#landowner-request .request-hero__badge { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: rgba(255, 255, 255, 0.12); font-size: 13px; }
body#landowner-request .request-hero__title { color: #fff; font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#landowner-request .request-hero__title-accent { color: var(--u-lav); }
body#landowner-request .request-hero__lead { color: rgba(255, 255, 255, 0.88); font-size: 18px; line-height: 1.9; }

/* ---- 安心ポイント帯（白カード反転＋ヒーローとの重なり解消: -42px重ね→64px余白へ・Vlizeさん指示 2026-07-05） ---- */
body#landowner-request .request-hero__meta { color: rgba(255, 255, 255, 0.85); }
body#landowner-request .request-assurance { margin-top: 64px; background: transparent; }
body#landowner-request .request-assurance__inner { border: 1px solid var(--u-border); background: #fff; }
body#landowner-request .request-assurance__item { color: var(--u-ink); }
body#landowner-request .request-assurance__item + .request-assurance__item { border-left-color: var(--u-border); }
body#landowner-request .request-assurance__number { color: var(--u-text); font-size: 13px; }
body#landowner-request .request-assurance__title { font-size: 20px; }
body#landowner-request .request-assurance__text { color: var(--u-sub); font-size: 14px; }
@media (max-width: 850px) {
  body#landowner-request .request-assurance__item + .request-assurance__item { border-top-color: var(--u-border); }
}

/* ---- ガイド ---- */
body#landowner-request .request-guide__icon { background: var(--u-theme); }
body#landowner-request .request-guide__list strong { font-size: 16px; }

/* ---- フォーム（白地・意味色維持・radiusのみ整え） ---- */
body#landowner-request .request-form__control { border-radius: 6px; }
body#landowner-request .request-form__privacy { border-radius: 6px; background: var(--u-tint); }

/* ---- フロー / 資料 / FAQ ---- */
body#landowner-request .request-flow__step-number { color: #fff; background: var(--u-theme); font-size: 13px; }
body#landowner-request .request-materials .section-heading__en { color: var(--u-text); }
body#landowner-request .request-faq details { border-radius: 6px; }

/* ---- 最終CTA（濃色締めバンド・金CTA） ---- */
body#landowner-request .request-final { background: linear-gradient(135deg, var(--u-deep) 0%, #0C3B2E 100%); }
body#landowner-request .request-final__eyebrow { color: var(--u-lav); font-size: 13px; }
body#landowner-request .request-final__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#landowner-request .request-final__text { font-size: 18px; line-height: 1.9; }
body#landowner-request .request-final .button--primary { color: var(--u-ink); background: var(--u-gold); box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); }
@media (hover: hover) and (pointer: fine) {
  body#landowner-request .request-final .button--primary:hover { background: var(--u-gold); filter: brightness(0.92); }
}

/* ---- 写真スロット充填修正（既存バグ: min-height親でpicture height:100%が失効=白帯露出。図解contain対象0を確認済み・写真スロット限定） ---- */
body#landowner-request .request-hero__media picture { display: block; width: 100%; height: 100%; }
body#landowner-request .request-hero__media img { width: 100%; height: 100%; object-fit: cover; }
body#landowner-request .request-guide__photo picture { display: block; width: 100%; height: 100%; }
body#landowner-request .request-guide__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---- ヒーロー登場モーション（CSSのみ・reduced-motionで停止） ---- */
@keyframes uplift09Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#landowner-request .request-hero__badge { animation: uplift09Fade 0.6s ease 0s both; }
body#landowner-request .request-hero__title { animation: uplift09Fade 0.6s ease 0.12s both; }
body#landowner-request .request-hero__lead { animation: uplift09Fade 0.6s ease 0.24s both; }
body#landowner-request .request-hero__actions { animation: uplift09Fade 0.6s ease 0.36s both; }
@media (prefers-reduced-motion: reduce) {
  body#landowner-request .request-hero__badge,
  body#landowner-request .request-hero__title,
  body#landowner-request .request-hero__lead,
  body#landowner-request .request-hero__actions { animation: none; }
}

/* ---- レスポンシブ（SPヒーロー帯の縦シェード / タイトル縮小） ---- */
@media (max-width: 850px) {
  body#landowner-request .request-hero__media::after { background: linear-gradient(180deg, rgba(21, 84, 66, 0) 58%, #155442 100%); }
}
@media (max-width: 568px) {
  body#landowner-request .request-hero__title { font-size: 25px; line-height: 1.6; }
  body#landowner-request .section-heading__title { font-size: 20px; }
  body#landowner-request .request-final__title { font-size: 25px; line-height: 1.6; }
}

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