/* ===== RETHEME violet (§3-3b ページテーマ制・2026-07-03) — 元は page08.css.bak_20260703 ===== */
/* Page 08 source reconstructed from the supplied production CSS. CSS syntax is valid SCSS. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:root {
  color-scheme: light;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #19201e;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  color: #19201e;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  background-color: #fff;
}

#wrapper,
#contents {
  min-width: 0;
}

main {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background-color: #1b4539;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.inner {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section--soft {
  background-color: #f5f7f7;
}

.section--surface {
  background-color: #f5f7f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #22745D;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading__eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background-color: #22745D;
}

.section-heading--center .section-heading__eyebrow::after {
  width: 28px;
  height: 1px;
  content: "";
  background-color: #22745D;
}

.section-heading__title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.section-heading__lead {
  margin-top: 18px;
  color: #615e6d;
  font-size: 17px;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 26px;
  border: 1px solid #22745D;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #22745D;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    color: #22745D;
    background-color: #fff;
    box-shadow: 0 14px 34px rgba(24, 40, 36, 0.16);
    transform: translateY(-2px);
  }
}
.button::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  content: "";
  transform: rotate(45deg);
}

.button--secondary {
  color: #1b4539;
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .button--secondary:hover {
    color: #fff;
    background-color: #22745D;
  }
}
.button--dark {
  border-color: #fff;
  color: #1b4539;
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .button--dark:hover {
    color: #fff;
    background-color: transparent;
  }
}
.button:focus-visible {
  outline: 3px solid rgba(69, 140, 120, 0.35);
  outline-offset: 4px;
}

.breadcrumb {
  border-top: 1px solid #dbe0df;
  border-bottom: 1px solid #dbe0df;
  background-color: #fff;
}

.breadcrumb__inner {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
  padding: 14px 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #615e6d;
  font-size: 12px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #615e6d;
  border-right: 1px solid #615e6d;
  content: "";
  transform: rotate(45deg);
}

.breadcrumb__link {
  text-decoration: none;
}

.breadcrumb__link:focus-visible {
  outline: 2px solid #22745D;
  outline-offset: 3px;
}

@media (max-width: 850px) {
  .inner,
  .breadcrumb__inner {
    width: min(100% - 60px, 1180px);
  }
  .section {
    padding: 84px 0;
  }
  .section-heading {
    margin-bottom: 42px;
  }
}
@media (max-width: 568px) {
  body {
    font-size: 15px;
  }
  .inner,
  .breadcrumb__inner {
    width: calc(100% - 40px);
  }
  .section {
    padding: 68px 0;
  }
  .section-heading__title {
    font-size: 30px;
  }
  .section-heading__lead {
    font-size: 15px;
  }
  .button {
    width: 100%;
    min-height: 56px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.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: #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__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 {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #dbe0df;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
  }
  .sp-menu__line,
  .sp-menu__line::before,
  .sp-menu__line::after {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: #19201e;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .sp-menu__line::before,
  .sp-menu__line::after {
    content: "";
  }
  .sp-menu__line::before {
    transform: translateY(-6px);
  }
  .sp-menu__line::after {
    transform: translateY(6px);
  }
  .sp-menu__button.is-open .sp-menu__line {
    background-color: transparent;
  }
  .sp-menu__button.is-open .sp-menu__line::before {
    transform: rotate(45deg);
  }
  .sp-menu__button.is-open .sp-menu__line::after {
    transform: rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 90px 28px 36px;
    visibility: hidden;
    background-color: rgba(245, 247, 247, 0.98);
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu__panel.is-open {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__nav {
    display: grid;
    gap: 6px;
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    border-bottom: 1px solid #dbe0df;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__link::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #22745D;
    border-right: 2px solid #22745D;
    content: "";
    transform: rotate(45deg);
  }
  .sp-menu__actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }
}
@media (max-width: 568px) {
  .sp-menu__button {
    right: 124px;
  }
}
.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, #31A886 0%, #22745D 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: #31A886;
  }
  .footer__summary:hover::after {
    background-color: #31A886;
  }
}
@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);
  }
}
body#lv-lo-faq .faq-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background-color: #f5f7f7;
}

body#lv-lo-faq .faq-hero__media {
  position: absolute;
  inset: 0;
}

body#lv-lo-faq .faq-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(246, 248, 248, 0.98) 0%, rgba(246, 248, 248, 0.92) 38%, rgba(246, 248, 248, 0.25) 72%, rgba(246, 248, 248, 0.05) 100%);
}

body#lv-lo-faq .faq-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

body#lv-lo-faq .faq-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 690px;
  padding-top: 70px;
  padding-bottom: 70px;
}

body#lv-lo-faq .faq-hero__content {
  width: min(610px, 56%);
}

body#lv-lo-faq .faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #22745D;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body#lv-lo-faq .faq-hero__eyebrow::before {
  width: 36px;
  height: 1px;
  content: "";
  background-color: #22745D;
}

body#lv-lo-faq .faq-hero__title {
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.025em;
}

body#lv-lo-faq .faq-hero__title-sub {
  display: block;
  margin-top: 12px;
  color: #1b4539;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 600;
  line-height: 1.5;
}

body#lv-lo-faq .faq-hero__lead {
  max-width: 580px;
  margin-top: 28px;
  color: #615e6d;
  font-size: 18px;
  line-height: 1.95;
}

body#lv-lo-faq .faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body#lv-lo-faq .faq-hero__note {
  display: flex;
  gap: 10px;
  max-width: 550px;
  margin-top: 22px;
  color: #6b6878;
  font-size: 12px;
  line-height: 1.7;
}

body#lv-lo-faq .faq-hero__note::before {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #bac5c2;
  border-radius: 50%;
  content: "i";
  font-size: 11px;
  font-weight: 700;
}

body#lv-lo-faq .faq-quick-nav {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

body#lv-lo-faq .faq-quick-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dbe0df;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 18px 50px rgba(24, 40, 36, 0.1);
}

body#lv-lo-faq .faq-quick-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 12px;
  color: #1b4539;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .faq-quick-nav__link:hover {
    color: #fff;
    background-color: #22745D;
  }
}
body#lv-lo-faq .faq-quick-nav__link + .faq-quick-nav__link {
  border-left: 1px solid #dbe0df;
}

body#lv-lo-faq .faq-quick-nav__link:focus-visible {
  outline: 3px solid rgba(69, 140, 120, 0.28);
  outline-offset: -4px;
}

body#lv-lo-faq .concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body#lv-lo-faq .concerns__item {
  position: relative;
  min-height: 290px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid #dbe0df;
  border-radius: 22px;
  background-color: #fff;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
}

body#lv-lo-faq .concerns__number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(46, 103, 87, 0.08);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
}

body#lv-lo-faq .concerns__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #22745D;
  font-size: 22px;
  font-weight: 700;
  background-color: #ebf1ef;
}

body#lv-lo-faq .concerns__title {
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.5;
}

body#lv-lo-faq .concerns__text {
  margin-top: 14px;
  color: #615e6d;
  font-size: 14px;
  line-height: 1.85;
}

body#lv-lo-faq .first-check__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 70px;
  align-items: center;
}

body#lv-lo-faq .first-check__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(24, 40, 36, 0.1);
}

body#lv-lo-faq .first-check__image::before {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  display: block;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.15);
}

body#lv-lo-faq .first-check__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

body#lv-lo-faq .first-check__items {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

body#lv-lo-faq .first-check__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid #dbe0df;
}

body#lv-lo-faq .first-check__item:last-child {
  border-bottom: 1px solid #dbe0df;
}

body#lv-lo-faq .first-check__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #31A886 0%, #22745D 100%);
}

body#lv-lo-faq .first-check__title {
  font-size: 19px;
  line-height: 1.55;
}

body#lv-lo-faq .first-check__text {
  margin-top: 8px;
  color: #615e6d;
  font-size: 14px;
  line-height: 1.8;
}

body#lv-lo-faq .faq-main {
  background: linear-gradient(180deg, #f5f7f7 0%, #fff 35%, #fff 100%);
}

body#lv-lo-faq .faq-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 46px;
  padding: 28px;
  border: 1px solid #dbe0df;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
}

body#lv-lo-faq .faq-tools__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

body#lv-lo-faq .faq-tools__field {
  position: relative;
}

body#lv-lo-faq .faq-tools__field::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid #22745D;
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}

body#lv-lo-faq .faq-tools__field::after {
  position: absolute;
  top: 50%;
  left: 34px;
  width: 8px;
  height: 2px;
  content: "";
  background-color: #22745D;
  transform: translateY(5px) rotate(45deg);
  transform-origin: left center;
}

body#lv-lo-faq .faq-tools__input {
  width: 100%;
  min-height: 56px;
  padding: 12px 18px 12px 54px;
  border: 1px solid #bac5c2;
  border-radius: 12px;
  color: #19201e;
  background-color: #fff;
}

body#lv-lo-faq .faq-tools__input:focus {
  border-color: #22745D;
  outline: 3px solid rgba(69, 140, 120, 0.18);
}

body#lv-lo-faq .faq-tools__result {
  margin-top: 8px;
  color: #615e6d;
  font-size: 12px;
}

body#lv-lo-faq .faq-tools__buttons {
  display: flex;
  gap: 10px;
}

body#lv-lo-faq .faq-tools__button {
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid #bac5c2;
  border-radius: 999px;
  color: #1b4539;
  font-size: 13px;
  font-weight: 700;
  background-color: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .faq-tools__button:hover {
    border-color: #22745D;
    color: #fff;
    background-color: #22745D;
  }
}
body#lv-lo-faq .faq-tools__button:focus-visible {
  outline: 3px solid rgba(69, 140, 120, 0.25);
  outline-offset: 2px;
}

body#lv-lo-faq .faq-groups {
  display: grid;
  gap: 82px;
}

body#lv-lo-faq .faq-group {
  scroll-margin-top: 30px;
}

body#lv-lo-faq .faq-group__header {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}

body#lv-lo-faq .faq-group__image {
  width: 150px;
  height: 112px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
}

body#lv-lo-faq .faq-group__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body#lv-lo-faq .faq-group__index {
  color: #22745D;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body#lv-lo-faq .faq-group__title {
  margin-top: 4px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
}

body#lv-lo-faq .faq-group__lead {
  margin-top: 6px;
  color: #615e6d;
  font-size: 14px;
}

body#lv-lo-faq .faq-group__list {
  display: grid;
  gap: 12px;
}

body#lv-lo-faq .faq-item {
  border: 1px solid #dbe0df;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 6px 24px rgba(24, 40, 36, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body#lv-lo-faq .faq-item[open] {
  border-color: #bac5c2;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
}

body#lv-lo-faq .faq-item__question {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px 24px;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .faq-item__question:hover {
    color: #1b4539;
  }
}
body#lv-lo-faq .faq-item__question::-webkit-details-marker {
  display: none;
}

body#lv-lo-faq .faq-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #22745D;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  background-color: #ebf1ef;
}

body#lv-lo-faq .faq-item__toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

body#lv-lo-faq .faq-item__toggle::before,
body#lv-lo-faq .faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background-color: #22745D;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

body#lv-lo-faq .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body#lv-lo-faq .faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body#lv-lo-faq .faq-item__answer {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 0 24px 26px;
}

body#lv-lo-faq .faq-item__answer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  background-color: #22745D;
}

body#lv-lo-faq .faq-item__body {
  padding-top: 6px;
  color: #615e6d;
  font-size: 15px;
  line-height: 1.95;
}

body#lv-lo-faq .faq-item__body strong {
  color: #19201e;
}

body#lv-lo-faq .faq-item__note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid #d7b46a;
  color: #7a5d1b;
  font-size: 12px;
  line-height: 1.75;
  background-color: #fff8e7;
}

body#lv-lo-faq .faq-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #22745D;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .faq-item__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
body#lv-lo-faq .faq-item__link::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  content: "";
  transform: rotate(45deg);
}

body#lv-lo-faq .mid-cta {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background-color: #1b4539;
  box-shadow: 0 18px 50px rgba(24, 40, 36, 0.1);
}

body#lv-lo-faq .mid-cta::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 70px rgba(255, 255, 255, 0.025);
}

body#lv-lo-faq .mid-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 54px 58px;
}

body#lv-lo-faq .mid-cta__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

body#lv-lo-faq .mid-cta__title {
  margin-top: 8px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.45;
}

body#lv-lo-faq .mid-cta__text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.8;
}

body#lv-lo-faq .decision-guide__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: stretch;
}

body#lv-lo-faq .decision-guide__image {
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(24, 40, 36, 0.1);
}

body#lv-lo-faq .decision-guide__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

body#lv-lo-faq .decision-guide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body#lv-lo-faq .decision-guide__cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

body#lv-lo-faq .decision-card {
  padding: 25px 26px;
  border: 1px solid #dbe0df;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 8px 26px rgba(24, 40, 36, 0.08);
}

body#lv-lo-faq .decision-card--specialist {
  border-color: #ead8ad;
  background-color: #fff8e7;
}

body#lv-lo-faq .decision-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22745D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body#lv-lo-faq .decision-card--specialist .decision-card__label {
  color: #7a5d1b;
}

body#lv-lo-faq .decision-card__title {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.5;
}

body#lv-lo-faq .decision-card__list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

body#lv-lo-faq .decision-card__item {
  position: relative;
  padding-left: 24px;
  color: #615e6d;
  font-size: 14px;
  line-height: 1.75;
}

body#lv-lo-faq .decision-card__item::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #22745D;
  border-left: 2px solid #22745D;
  content: "";
  transform: rotate(-45deg);
}

body#lv-lo-faq .decision-card--specialist .decision-card__item::before {
  border-color: #7a5d1b;
}

body#lv-lo-faq .related-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body#lv-lo-faq .related-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid #dbe0df;
  border-radius: 20px;
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .related-link:hover {
    border-color: #22745D;
    box-shadow: 0 18px 50px rgba(24, 40, 36, 0.1);
    transform: translateY(-5px);
  }
}
body#lv-lo-faq .related-link::before {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background-color: #ebf1ef;
}

body#lv-lo-faq .related-link__number {
  position: relative;
  color: #22745D;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 700;
}

body#lv-lo-faq .related-link__title {
  position: relative;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
}

body#lv-lo-faq .related-link__text {
  position: relative;
  margin-top: 10px;
  color: #615e6d;
  font-size: 13px;
  line-height: 1.75;
}

body#lv-lo-faq .related-link__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: auto;
  border-radius: 50%;
  color: #fff;
  background-color: #22745D;
}

body#lv-lo-faq .related-link__arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  content: "";
  transform: rotate(45deg) translate(-1px, 1px);
}

body#lv-lo-faq .final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background-color: #1b4539;
}

body#lv-lo-faq .final-cta__media {
  position: absolute;
  inset: 0;
}

body#lv-lo-faq .final-cta__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 39, 32, 0.96) 0%, rgba(16, 39, 32, 0.85) 46%, rgba(16, 39, 32, 0.25) 82%);
}

body#lv-lo-faq .final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

body#lv-lo-faq .final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 620px;
}

body#lv-lo-faq .final-cta__content {
  width: min(650px, 60%);
}

body#lv-lo-faq .final-cta__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

body#lv-lo-faq .final-cta__title {
  margin-top: 16px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.35;
}

body#lv-lo-faq .final-cta__text {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.9;
}

body#lv-lo-faq .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body#lv-lo-faq .final-cta__note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.7;
}

body#lv-lo-faq .mobile-fixed-cta {
  display: none;
}

@media (max-width: 1024px) {
  body#lv-lo-faq .faq-hero {
    min-height: 620px;
  }
  body#lv-lo-faq .faq-hero__inner {
    min-height: 620px;
  }
  body#lv-lo-faq .faq-hero__content {
    width: 62%;
  }
  body#lv-lo-faq .first-check__layout,
  body#lv-lo-faq .decision-guide__layout {
    gap: 42px;
  }
  body#lv-lo-faq .related-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  body#lv-lo-faq .faq-hero {
    min-height: auto;
    padding-bottom: 330px;
  }
  body#lv-lo-faq .faq-hero__media {
    top: auto;
    height: 360px;
  }
  body#lv-lo-faq .faq-hero__media::after {
    background: linear-gradient(180deg, rgba(246, 248, 248, 0.04) 0%, rgba(246, 248, 248, 0.18) 70%, rgba(246, 248, 248, 0.55) 100%);
  }
  body#lv-lo-faq .faq-hero__media img {
    object-position: 72% center;
  }
  body#lv-lo-faq .faq-hero__inner {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 50px;
  }
  body#lv-lo-faq .faq-hero__content {
    width: 100%;
  }
  body#lv-lo-faq .faq-hero__lead {
    max-width: 650px;
  }
  body#lv-lo-faq .faq-quick-nav {
    margin-top: -24px;
  }
  body#lv-lo-faq .faq-quick-nav__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#lv-lo-faq .faq-quick-nav__link {
    min-height: 68px;
  }
  body#lv-lo-faq .faq-quick-nav__link + .faq-quick-nav__link {
    border-left: 0;
  }
  body#lv-lo-faq .faq-quick-nav__link:nth-child(even) {
    border-left: 1px solid #dbe0df;
  }
  body#lv-lo-faq .faq-quick-nav__link:nth-child(n+3) {
    border-top: 1px solid #dbe0df;
  }
  body#lv-lo-faq .faq-quick-nav__link:last-child {
    grid-column: 1/-1;
  }
  body#lv-lo-faq .concerns__grid {
    grid-template-columns: 1fr;
  }
  body#lv-lo-faq .concerns__item {
    min-height: auto;
  }
  body#lv-lo-faq .first-check__layout,
  body#lv-lo-faq .decision-guide__layout {
    grid-template-columns: 1fr;
  }
  body#lv-lo-faq .first-check__image,
  body#lv-lo-faq .first-check__image img {
    min-height: 430px;
  }
  body#lv-lo-faq .faq-tools {
    grid-template-columns: 1fr;
    align-items: start;
  }
  body#lv-lo-faq .faq-tools__buttons {
    justify-content: flex-start;
  }
  body#lv-lo-faq .mid-cta__inner {
    grid-template-columns: 1fr;
    padding: 44px 38px;
  }
  body#lv-lo-faq .mid-cta__action {
    justify-self: start;
  }
  body#lv-lo-faq .decision-guide__image,
  body#lv-lo-faq .decision-guide__image img {
    min-height: 470px;
  }
  body#lv-lo-faq .final-cta {
    min-height: 590px;
  }
  body#lv-lo-faq .final-cta__inner {
    min-height: 590px;
  }
  body#lv-lo-faq .final-cta__content {
    width: 70%;
  }
}
@media (max-width: 568px) {
  body#lv-lo-faq {
    padding-bottom: 76px;
  }
  body#lv-lo-faq .faq-hero {
    padding-bottom: 250px;
  }
  body#lv-lo-faq .faq-hero__media {
    height: 285px;
  }
  body#lv-lo-faq .faq-hero__inner {
    padding-top: 52px;
    padding-bottom: 36px;
  }
  body#lv-lo-faq .faq-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }
  body#lv-lo-faq .faq-hero__title {
    font-size: 43px;
  }
  body#lv-lo-faq .faq-hero__title-sub {
    margin-top: 8px;
    font-size: 20px;
  }
  body#lv-lo-faq .faq-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }
  body#lv-lo-faq .faq-hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }
  body#lv-lo-faq .faq-hero__note {
    margin-top: 16px;
    font-size: 11px;
  }
  body#lv-lo-faq .faq-quick-nav {
    margin-top: -16px;
  }
  body#lv-lo-faq .faq-quick-nav__inner {
    border-radius: 14px;
  }
  body#lv-lo-faq .faq-quick-nav__link {
    min-height: 60px;
    padding: 10px 8px;
    font-size: 12px;
  }
  body#lv-lo-faq .concerns__item {
    padding: 28px 24px;
    border-radius: 18px;
  }
  body#lv-lo-faq .concerns__title {
    font-size: 20px;
  }
  body#lv-lo-faq .first-check__image,
  body#lv-lo-faq .first-check__image img {
    min-height: 320px;
  }
  body#lv-lo-faq .first-check__image {
    border-radius: 20px;
  }
  body#lv-lo-faq .first-check__items {
    margin-top: 24px;
  }
  body#lv-lo-faq .first-check__item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }
  body#lv-lo-faq .first-check__number {
    width: 44px;
    height: 44px;
  }
  body#lv-lo-faq .first-check__title {
    font-size: 17px;
  }
  body#lv-lo-faq .faq-tools {
    margin-bottom: 38px;
    padding: 20px;
    border-radius: 16px;
  }
  body#lv-lo-faq .faq-tools__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body#lv-lo-faq .faq-tools__button {
    padding-right: 12px;
    padding-left: 12px;
  }
  body#lv-lo-faq .faq-groups {
    gap: 64px;
  }
  body#lv-lo-faq .faq-group__header {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
  }
  body#lv-lo-faq .faq-group__image {
    width: 90px;
    height: 78px;
    border-radius: 12px;
  }
  body#lv-lo-faq .faq-group__title {
    font-size: 23px;
  }
  body#lv-lo-faq .faq-group__lead {
    display: none;
  }
  body#lv-lo-faq .faq-item {
    border-radius: 14px;
  }
  body#lv-lo-faq .faq-item__question {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 12px;
    min-height: 76px;
    padding: 16px 16px;
    font-size: 15px;
    line-height: 1.65;
  }
  body#lv-lo-faq .faq-item__mark,
  body#lv-lo-faq .faq-item__answer-mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  body#lv-lo-faq .faq-item__answer {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 0 16px 22px;
  }
  body#lv-lo-faq .faq-item__body {
    padding-top: 2px;
    font-size: 14px;
  }
  body#lv-lo-faq .mid-cta {
    border-radius: 22px;
  }
  body#lv-lo-faq .mid-cta__inner {
    gap: 26px;
    padding: 34px 24px;
  }
  body#lv-lo-faq .mid-cta__action {
    width: 100%;
  }
  body#lv-lo-faq .decision-guide__image,
  body#lv-lo-faq .decision-guide__image img {
    min-height: 330px;
  }
  body#lv-lo-faq .decision-guide__image {
    border-radius: 20px;
  }
  body#lv-lo-faq .decision-card {
    padding: 22px 20px;
  }
  body#lv-lo-faq .related-links__grid {
    grid-template-columns: 1fr;
  }
  body#lv-lo-faq .related-link {
    min-height: 205px;
  }
  body#lv-lo-faq .final-cta {
    min-height: auto;
    padding-top: 330px;
  }
  body#lv-lo-faq .final-cta__media {
    bottom: auto;
    height: 330px;
  }
  body#lv-lo-faq .final-cta__media::after {
    background: linear-gradient(180deg, rgba(16, 39, 32, 0.08) 0%, rgba(16, 39, 32, 0.58) 100%);
  }
  body#lv-lo-faq .final-cta__media img {
    object-position: 68% center;
  }
  body#lv-lo-faq .final-cta__inner {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 56px;
  }
  body#lv-lo-faq .final-cta__content {
    width: 100%;
  }
  body#lv-lo-faq .final-cta__title {
    font-size: 32px;
  }
  body#lv-lo-faq .final-cta__text {
    font-size: 14px;
  }
  body#lv-lo-faq .final-cta__actions {
    display: grid;
  }
  body#lv-lo-faq .mobile-fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #dbe0df;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 28px rgba(24, 40, 36, 0.1);
    backdrop-filter: blur(10px);
  }
  body#lv-lo-faq .mobile-fixed-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid #22745D;
    border-radius: 10px;
    color: #22745D;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
  }
  body#lv-lo-faq .mobile-fixed-cta__link--primary {
    color: #fff;
    background-color: #22745D;
  }
}

/* ===== 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#lv-lo-faq {
  --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#lv-lo-faq .section { padding: 96px 0; }
body#lv-lo-faq .section-heading__en { margin-bottom: 16px; color: var(--u-text); font-size: 13px; }
body#lv-lo-faq .section-heading__title { font-size: 25px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.6; }
body#lv-lo-faq .section-heading__lead { margin-top: 20px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }

/* ---- ボタン / フォーカス ---- */
body#lv-lo-faq .button:focus-visible { outline: 2px solid var(--u-text); outline-offset: 3px; }
body#lv-lo-faq :is(.faq-hero, .mid-cta, .final-cta) .button:focus-visible { outline-color: #fff; }
body#lv-lo-faq :is(.faq-hero, .final-cta) .button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }

/* ---- ヒーロー（写真×deepシェード・白明朝31px） ---- */
body#lv-lo-faq .faq-hero { background-color: var(--u-deep); }
body#lv-lo-faq .faq-hero__media::after { background: linear-gradient(90deg, rgba(44, 88, 75, 0.96) 0%, rgba(44, 88, 75, 0.9) 38%, rgba(44, 88, 75, 0.42) 72%, rgba(44, 88, 75, 0.18) 100%); }
body#lv-lo-faq .faq-hero__eyebrow { color: var(--u-lav); font-size: 13px; }
body#lv-lo-faq .faq-hero__eyebrow::after { background: var(--u-lav); }
body#lv-lo-faq .faq-hero__title { color: #fff; font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#lv-lo-faq .faq-hero__title-sub { color: var(--u-lav); font-size: 18px; }
body#lv-lo-faq .faq-hero__lead { color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.9; }
body#lv-lo-faq .faq-hero__note { color: rgba(255, 255, 255, 0.7); font-size: 13px; }

/* ---- FAQグループ / 注記（クリーム面の全廃） ---- */
body#lv-lo-faq .faq-group__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#lv-lo-faq .faq-item__note { border-left-color: var(--u-theme); color: var(--u-sub); background-color: var(--u-tint); }
body#lv-lo-faq .decision-card--specialist { border-color: var(--u-theme); background-color: var(--u-tint); }

/* ---- 中間CTA（濃色締めバンド1） ---- */
body#lv-lo-faq .mid-cta { border-radius: 12px; background-color: var(--u-deep); background-image: linear-gradient(135deg, var(--u-deep) 0%, #0C3B2E 100%); }
body#lv-lo-faq .mid-cta__eyebrow { color: var(--u-lav); font-size: 13px; }
body#lv-lo-faq .mid-cta__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#lv-lo-faq .mid-cta__text { color: rgba(255, 255, 255, 0.78); font-size: 16px; }

/* ---- 最終CTA（濃色締めバンド2） ---- */
body#lv-lo-faq .final-cta { background-color: var(--u-deep); }
body#lv-lo-faq .final-cta__media::after { background: linear-gradient(90deg, rgba(44, 88, 75, 0.96) 0%, rgba(44, 88, 75, 0.85) 46%, rgba(44, 88, 75, 0.3) 82%); }
body#lv-lo-faq .final-cta__eyebrow { color: var(--u-lav); font-size: 13px; }
body#lv-lo-faq .final-cta__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#lv-lo-faq .final-cta__text { font-size: 18px; line-height: 1.9; }
body#lv-lo-faq .final-cta__note { font-size: 13px; }

/* ---- 写真スロット充填修正（既存バグ: min-height親でpicture height:100%が失効=白帯露出。図解contain対象0を確認済み・写真スロット限定） ---- */
body#lv-lo-faq .decision-guide__image { position: relative; }
body#lv-lo-faq .decision-guide__image picture { position: absolute; inset: 0; }
body#lv-lo-faq .decision-guide__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- ヒーロー登場モーション（CSSのみ・reduced-motionで停止） ---- */
@keyframes uplift08Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#lv-lo-faq .faq-hero__eyebrow { animation: uplift08Fade 0.6s ease 0s both; }
body#lv-lo-faq .faq-hero__title { animation: uplift08Fade 0.6s ease 0.12s both; }
body#lv-lo-faq .faq-hero__lead { animation: uplift08Fade 0.6s ease 0.24s both; }
body#lv-lo-faq .faq-hero__actions { animation: uplift08Fade 0.6s ease 0.36s both; }
body#lv-lo-faq .faq-hero__note { animation: uplift08Fade 0.6s ease 0.48s both; }
@media (prefers-reduced-motion: reduce) {
  body#lv-lo-faq .faq-hero__eyebrow,
  body#lv-lo-faq .faq-hero__title,
  body#lv-lo-faq .faq-hero__lead,
  body#lv-lo-faq .faq-hero__actions,
  body#lv-lo-faq .faq-hero__note { animation: none; }
}

/* ---- レスポンシブ（96→48pxリズム / SPヒーロー帯の縦シェード） ---- */
@media (max-width: 900px) {
  body#lv-lo-faq .section { padding: 48px 0; }
}
@media (max-width: 850px) {
  body#lv-lo-faq .faq-hero__media::after { background: linear-gradient(180deg, rgba(44, 88, 75, 0.82) 0%, rgba(44, 88, 75, 0.25) 45%, rgba(44, 88, 75, 0.6) 100%); }
}
@media (max-width: 568px) {
  body#lv-lo-faq .faq-hero__title { font-size: 25px; line-height: 1.6; }
  body#lv-lo-faq .section-heading__title { font-size: 20px; }
  body#lv-lo-faq .faq-group__title { font-size: 20px; }
  body#lv-lo-faq .mid-cta__title { font-size: 20px; }
  body#lv-lo-faq .final-cta__title { font-size: 25px; line-height: 1.6; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   lv-lo-faq は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#lv-lo-faq .header__actions { background: #1E8A58; }
body#lv-lo-faq .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#lv-lo-faq .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#lv-lo-faq .header__lang-link.is-current { background: #EDF6F1; }
body#lv-lo-faq .header__lang-button:focus-visible,
body#lv-lo-faq .header__lang-link:focus-visible,
body#lv-lo-faq .header__action-link:focus-visible,
body#lv-lo-faq .header__nav-link:focus-visible,
body#lv-lo-faq .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#lv-lo-faq .header__lang-button:hover { border-color: #1E8A58; }
  body#lv-lo-faq .header__lang-link:hover { background: #EDF6F1; }
  body#lv-lo-faq .header__nav-link:hover { color: #1E8A58; }
}
/* recolor_emerald_20260709 */
