/* ===== RETHEME violet (§3-3b ページテーマ制・2026-07-03) — 元は page07.css.bak_20260703 ===== */
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #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;
  }
}
.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, #22745D);
}
.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;
  }
  .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);
  }
}

body {
  color: #19211f;
  background-color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

#wrapper,
#contents {
  width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background-color: #155442;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.inner {
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.sp-menu {
  display: none;
}

@media (max-width: 900px) {
  .sp-menu {
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 500;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #31A886, #22745D);
    box-shadow: 0 12px 30px rgba(27, 64, 53, 0.25);
  }
  .sp-menu__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
  .sp-menu__icon,
  .sp-menu__icon::before,
  .sp-menu__icon::after {
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background-color: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .sp-menu__icon {
    position: relative;
  }
  .sp-menu__icon::before {
    position: absolute;
    top: -7px;
  }
  .sp-menu__icon::after {
    position: absolute;
    top: 7px;
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    visibility: hidden;
    padding: 90px 24px 40px;
    background-color: rgba(22, 42, 36, 0.97);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
}
.breadcrumb {
  border-top: 1px solid #dee3e2;
  border-bottom: 1px solid #dee3e2;
  background-color: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
  padding: 14px 0;
  list-style: none;
  gap: 8px;
}

.breadcrumb__item {
  color: #696673;
  font-size: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

/* Shared page components */
.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--compact {
  margin-bottom: 40px;
}

.section-heading__eyebrow {
  margin: 0 0 16px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.section-heading__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.section-heading__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #505b58;
  font-size: 17px;
  line-height: 2;
}

.section-heading--center .section-heading__lead {
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 62px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #31A886, #22745D);
  box-shadow: 0 16px 34px rgba(46, 103, 87, 0.22);
}

.button--secondary {
  border-color: #bcc6c3;
  color: var(--color-primary-dark);
  background-color: #fff;
}

.button--gold {
  min-width: 330px;
  color: #1d302b;
  background: linear-gradient(135deg, #f2d58a, #d3a43b);
  box-shadow: 0 18px 36px rgba(180, 132, 29, 0.24);
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  background-color: #dee5e3;
  box-shadow: var(--shadow-soft);
}

.image-frame picture,
.image-frame img {
  width: 100%;
  height: 100%;
}

.image-frame img {
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* Hero */
.revenue-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f6f7f7 0%, #f6f7f7 49%, #dfe7e5 49%, #dfe7e5 100%);
}

.revenue-hero::before {
  position: absolute;
  top: 38px;
  left: 48%;
  z-index: 0;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(46, 103, 87, 0.12);
  border-radius: 50%;
  content: "";
}

.revenue-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  width: min(1440px, 100%);
  min-height: 790px;
  margin: 0 auto;
}

.revenue-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 70px 90px max(70px, (100vw - 1320px) / 2);
}

.revenue-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin: 0 0 24px;
  padding: 5px 14px;
  border: 1px solid rgba(46, 103, 87, 0.24);
  border-radius: 999px;
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.revenue-hero__title {
  margin: 0;
  color: #1a302a;
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.16;
}

.revenue-hero__lead {
  margin: 28px 0 0;
  color: #44524e;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 2;
}

.revenue-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border: 1px solid #d7dedc;
  border-radius: 18px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(42, 67, 60, 0.07);
}

.revenue-hero__metric {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 18px 20px;
}

.revenue-hero__metric:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background-color: #dde3e1;
  content: "";
}

.revenue-hero__metric--accent {
  color: #fff;
  background-color: var(--color-primary-dark);
}

.revenue-hero__metric--accent::after {
  display: none;
}

.revenue-hero__metric-label {
  color: #6b667b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.revenue-hero__metric--accent .revenue-hero__metric-label {
  color: rgba(255, 255, 255, 0.72);
}

.revenue-hero__metric-value {
  margin-top: 3px;
  color: #1f3630;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.revenue-hero__metric--accent .revenue-hero__metric-value {
  color: #fff;
}

.revenue-hero__metric-value span {
  margin-left: 2px;
  font-family: inherit;
  font-size: 15px;
}

.revenue-hero__note {
  margin: 14px 0 0;
  color: #706d7b;
  font-size: 11px;
  line-height: 1.7;
}

.revenue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.revenue-hero__visual {
  position: relative;
  min-height: 790px;
  margin: 0;
  overflow: hidden;
}

.revenue-hero__visual picture,
.revenue-hero__visual img {
  width: 100%;
  height: 100%;
}

.revenue-hero__visual img {
  object-fit: cover;
  object-position: 60% center;
}

.revenue-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 64, 53, 0.16), transparent 38%, rgba(19, 39, 33, 0.08));
  content: "";
}

.revenue-hero__caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  max-width: 330px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  background-color: rgba(21, 44, 38, 0.78);
  backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1.7;
}

/* Page index */
.page-index {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.page-index__inner {
  display: flex;
  justify-content: center;
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
}

.page-index__link {
  position: relative;
  padding: 19px 28px;
  color: #3c4744;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.page-index__link::after {
  position: absolute;
  right: 50%;
  bottom: 10px;
  left: 50%;
  height: 2px;
  background-color: var(--color-primary);
  content: "";
  transition: right 0.25s ease, left 0.25s ease;
}

/* Concerns */
.concerns {
  background-color: #fff;
}

.concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.concerns__card {
  position: relative;
  min-height: 300px;
  padding: 38px 34px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: #fff;
  box-shadow: var(--shadow-card);
}

.concerns__card::before {
  position: absolute;
  top: 0;
  left: 34px;
  width: 56px;
  height: 4px;
  background-color: var(--color-primary);
  content: "";
}

.concerns__number {
  color: #a1afab;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.concerns__title {
  margin: 28px 0 0;
  color: #1d312b;
  font-size: 23px;
  line-height: 1.55;
}

.concerns__text {
  margin: 18px 0 0;
  color: #625e70;
  font-size: 15px;
  line-height: 1.95;
}

/* Simulation */
.simulation {
  overflow: hidden;
  background-color: #f2f5f4;
}

.simulation__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.simulation__chart-card,
.simulation__assumptions {
  border: 1px solid rgba(46, 103, 87, 0.12);
  border-radius: 28px;
  background-color: #fff;
  box-shadow: var(--shadow-card);
}

.simulation__chart-card {
  padding: 38px;
}

.simulation__formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
}

.simulation__formula-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  padding: 18px 20px;
  border-radius: 16px;
  background-color: #f4f6f6;
}

.simulation__formula-label {
  color: #747180;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.simulation__formula-value {
  margin-top: 6px;
  color: #1f3630;
  font-size: 22px;
  line-height: 1.35;
}

.simulation__formula-symbol {
  display: grid;
  place-items: center;
  color: #847f95;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.income-chart {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  height: 400px;
  margin-top: 42px;
  padding-bottom: 40px;
}

.income-chart::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 72px;
  background: repeating-linear-gradient(to bottom, #e1e6e5 0, #e1e6e5 1px, transparent 1px, transparent 33.333%);
  content: "";
}

.income-chart__axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1px;
  color: #747180;
  font-size: 10px;
  line-height: 1;
}

.income-chart__bars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 20px;
  height: 100%;
}

.income-chart__bar {
  position: relative;
  height: var(--bar-height);
  min-height: 20px;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, #8aaca2, #22745D);
  box-shadow: 0 10px 24px rgba(46, 103, 87, 0.18);
}

.income-chart__bar--accent {
  background: linear-gradient(180deg, #e9cf85, #c3962f);
  box-shadow: 0 12px 28px rgba(195, 150, 47, 0.24);
}

.income-chart__amount {
  position: absolute;
  right: 50%;
  bottom: calc(100% + 8px);
  color: #233c35;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(50%);
}

.income-chart__year {
  position: absolute;
  top: calc(100% + 12px);
  right: 50%;
  color: #565263;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(50%);
}

.simulation__chart-note {
  margin: 22px 0 0;
  color: var(--color-note);
  font-size: 11px;
  line-height: 1.8;
}

.simulation__assumptions {
  padding: 34px 30px;
}

.simulation__assumptions-title {
  margin: 0;
  color: #1d312b;
  font-size: 22px;
}

.simulation__definition-list {
  margin: 24px 0 0;
}

.simulation__definition-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-border);
}

.simulation__definition-item dt {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.simulation__definition-item dd {
  margin: 0;
  color: #535e5b;
  font-size: 14px;
  line-height: 1.7;
}

.simulation__caution {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background-color: #f7f0dd;
}

.simulation__caution strong {
  color: #7d5f1c;
  font-size: 14px;
}

.simulation__caution p {
  margin: 8px 0 0;
  color: #6e6244;
  font-size: 12px;
  line-height: 1.8;
}

/* Model explanation */
.model-steps {
  background-color: #fff;
}

.model-steps .inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: center;
}

.model-steps__visual {
  position: relative;
}

.model-steps__visual::before {
  position: absolute;
  top: -28px;
  left: -28px;
  z-index: 0;
  width: 70%;
  height: 70%;
  border-radius: 28px;
  background-color: #e6eeec;
  content: "";
}

.image-frame--portrait {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
}

.image-frame--portrait img {
  object-position: 55% center;
}

.model-steps__content .section-heading__title {
  font-size: clamp(32px, 3.7vw, 50px);
}

.model-steps__lead {
  margin: 26px 0 0;
  color: #57625f;
  font-size: 16px;
  line-height: 2;
}

.model-steps__list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.model-steps__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
}

.model-steps__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.model-steps__number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.model-steps__item-title {
  margin: 0;
  color: #1d312b;
  font-size: 19px;
}

.model-steps__item-text {
  margin: 6px 0 0;
  color: #625e70;
  font-size: 14px;
  line-height: 1.8;
}

/* Factors */
.factors {
  background-color: #f7f7f9;
}

.factors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.factors__card {
  min-height: 270px;
  padding: 30px 26px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background-color: #fff;
}

.factors__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.factors__title {
  margin: 26px 0 0;
  color: #1d312b;
  font-size: 20px;
  line-height: 1.5;
}

.factors__text {
  margin: 14px 0 0;
  color: #605c6d;
  font-size: 14px;
  line-height: 1.9;
}

.factors__context {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 0;
  align-items: stretch;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 28px;
  background-color: #1c352e;
  box-shadow: var(--shadow-soft);
}

.image-frame--wide {
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
}

.image-frame--wide img {
  object-position: center;
}

.factors__context-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 44px;
  color: #fff;
}

.factors__context-title {
  margin: 0;
  font-size: 27px;
  line-height: 1.55;
}

.factors__context-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.95;
}

.factors__context .text-link {
  color: #f0cf79;
}

/* Comparison */
.comparison {
  background-color: #fff;
}

.comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.comparison__table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background-color: #fff;
}

.comparison__table th,
.comparison__table td {
  padding: 22px 20px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: #525d5a;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}

.comparison__table thead th {
  color: #1d312b;
  background-color: #f3f5f5;
  font-size: 14px;
  font-weight: 700;
}

.comparison__table tbody th {
  width: 150px;
  color: #1d312b;
  background-color: #fafafb;
  font-weight: 700;
}

.comparison__table .comparison__highlight {
  color: #1d362f;
  background-color: #ecf2f0;
  font-weight: 700;
}

.comparison__table thead .comparison__highlight {
  color: #fff;
  background-color: var(--color-primary);
}

.comparison__table tr:last-child th,
.comparison__table tr:last-child td {
  border-bottom: 0;
}

.comparison__table th:last-child,
.comparison__table td:last-child {
  border-right: 0;
}

.comparison__note {
  margin: 18px 0 0;
  color: var(--color-note);
  font-size: 11px;
  line-height: 1.8;
}

/* Responsibilities */
.responsibilities {
  background-color: #f3f5f5;
}

.responsibilities__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.responsibilities__header .section-heading {
  margin-bottom: 46px;
}

.responsibilities__badge {
  flex: 0 0 auto;
  margin-bottom: 50px;
  padding: 10px 18px;
  border: 1px solid #c9a75b;
  border-radius: 999px;
  color: #795b18;
  background-color: #fff9ea;
  font-size: 12px;
  font-weight: 700;
}

.responsibilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.responsibilities__card {
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: #fff;
  box-shadow: var(--shadow-card);
}

.responsibilities__card--green {
  color: #fff;
  border-color: transparent;
  background-color: #1c352e;
}

.responsibilities__title {
  margin: 0;
  color: #1d312b;
  font-size: 23px;
}

.responsibilities__card--green .responsibilities__title {
  color: #fff;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list__item {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--color-border);
  color: #545f5c;
  font-size: 14px;
  line-height: 1.75;
}

.check-list__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.check-list__item::before {
  position: absolute;
  top: 20px;
  left: 2px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-primary);
  content: "✓";
  font-size: 10px;
  line-height: 1;
}

.responsibilities__card--green .check-list__item {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.responsibilities__card--green .check-list__item::before {
  color: #1d312b;
  background-color: #f0cf79;
}

.responsibilities__notice {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 4px solid #c69a32;
  border-radius: 0 14px 14px 0;
  background-color: #fff;
}

.responsibilities__notice strong {
  flex: 0 0 auto;
  color: #72561a;
  font-size: 14px;
}

.responsibilities__notice p {
  margin: 0;
  color: #696673;
  font-size: 12px;
  line-height: 1.8;
}

/* Diagnosis */
.diagnosis {
  background-color: #fff;
}

.diagnosis__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 70px;
  align-items: center;
}

.diagnosis__lead {
  margin: 26px 0 0;
  color: #57625f;
  font-size: 16px;
  line-height: 2;
}

.diagnosis__steps {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.diagnosis__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
}

.diagnosis__step:last-child {
  border-bottom: 1px solid var(--color-border);
}

.diagnosis__number {
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.diagnosis__step-title {
  margin: 0;
  color: #1d312b;
  font-size: 19px;
}

.diagnosis__step-text {
  margin: 5px 0 0;
  color: #635f70;
  font-size: 14px;
  line-height: 1.8;
}

.diagnosis__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.diagnosis__actions .button {
  min-width: 220px;
}

.diagnosis__visual {
  aspect-ratio: 4/5;
}

.diagnosis__visual img {
  object-position: center;
}

/* FAQ */
.faq-section {
  background-color: #f4f6f6;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 90px;
  align-items: start;
}

.faq-section__heading {
  position: sticky;
  top: 100px;
}

.faq-section__heading .section-heading__title {
  font-size: clamp(32px, 3.4vw, 48px);
}

.faq-item {
  border-top: 1px solid #ced6d4;
}

.faq-item:last-child {
  border-bottom: 1px solid #ced6d4;
}

.faq-item__question {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 18px;
  align-items: center;
  padding: 25px 4px;
  color: #1d312b;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-item__mark--answer {
  color: #785b1b;
  background-color: #f1d98e;
}

.faq-item__question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 4px 30px;
}

.faq-item__answer-text {
  margin: 4px 0 0;
  color: #5d596b;
  font-size: 14px;
  line-height: 1.95;
}

/* Related links */
.related-links {
  padding: 110px 0;
  background-color: #fff;
}

.related-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background-color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-card__label {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.related-card__title {
  margin: 22px 0 0;
  color: #1d312b;
  font-size: 22px;
}

.related-card__text {
  margin: 14px 0 0;
  color: #605c6d;
  font-size: 14px;
  line-height: 1.9;
}

.related-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--color-primary);
  font-size: 22px;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
}

.final-cta__background,
.final-cta__background picture,
.final-cta__background img,
.final-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta__background img {
  object-fit: cover;
  object-position: center;
}

.final-cta__overlay {
  background: linear-gradient(90deg, rgba(17, 37, 31, 0.92) 0%, rgba(17, 37, 31, 0.84) 45%, rgba(17, 37, 31, 0.2) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, 100% - 80px);
  min-height: 650px;
  margin: 0 auto;
  padding: 70px 0;
}

.final-cta__eyebrow {
  margin: 0 0 18px;
  color: #efd486;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.final-cta__title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.7vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.final-cta__lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 2;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.final-cta__sub-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.final-cta__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

/* ===== 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-revenue {
  --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-revenue .section { padding: 96px 0; }
body#lv-lo-revenue .section-heading__en { margin-bottom: 16px; color: var(--u-text); font-size: 13px; }
body#lv-lo-revenue .section-heading__title { font-size: 25px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.6; }
body#lv-lo-revenue .section-heading__lead { margin-top: 20px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#lv-lo-revenue .section-heading--light .section-heading__en { color: var(--u-lav); }

/* ---- ボタン / フォーカス ---- */
body#lv-lo-revenue .button:focus-visible { outline: 2px solid var(--u-text); outline-offset: 3px; }
body#lv-lo-revenue :is(.revenue-hero, .final-cta) .button:focus-visible { outline-color: #fff; }
body#lv-lo-revenue :is(.revenue-hero, .final-cta) .button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }

/* ---- ヒーロー（deepグラデ×白明朝31px・旧49%割りパネル全廃） ---- */
body#lv-lo-revenue .revenue-hero { padding: 96px 0; background: linear-gradient(115deg, var(--u-deep) 0%, #0C3B2E 100%); }
body#lv-lo-revenue .revenue-hero__eyebrow { border-color: rgba(255, 255, 255, 0.45); color: #fff; background-color: rgba(255, 255, 255, 0.12); font-size: 13px; }
body#lv-lo-revenue .revenue-hero__title { color: #fff; font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#lv-lo-revenue .revenue-hero__lead { color: #EDF4F2; font-size: 18px; font-weight: 500; line-height: 1.9; }
body#lv-lo-revenue .revenue-hero__metrics { border-color: rgba(255, 255, 255, 0.25); border-radius: 12px; }
body#lv-lo-revenue .revenue-hero__metric--accent { background-color: var(--u-deep); } /* 既存バグ: --color-primary-dark未定義で背景喪失＝白文字沈み */
body#lv-lo-revenue .revenue-hero__note { color: rgba(255, 255, 255, 0.72); font-size: 13px; }

/* ---- 収益シミュレーション（クリーム注意面の全廃） ---- */
body#lv-lo-revenue .simulation__caution { border-left: 3px solid var(--u-theme); border-radius: 6px; background-color: var(--u-tint); }
body#lv-lo-revenue .image-frame { border-radius: 12px; background-color: var(--u-tint); }

/* ---- モデルステップ / 要因 ---- */
body#lv-lo-revenue .model-steps__visual::before { border-radius: 12px; background-color: var(--u-tint); }
body#lv-lo-revenue .factors__context { border-radius: 12px; background-color: var(--u-deep); }
body#lv-lo-revenue .responsibilities__card--green { background-color: var(--u-deep); }

/* ---- 最終CTA（濃色締めバンド） ---- */
body#lv-lo-revenue .final-cta__overlay { background: linear-gradient(90deg, rgba(44, 88, 75, 0.94) 0%, rgba(44, 88, 75, 0.82) 45%, rgba(44, 88, 75, 0.3) 100%); }
body#lv-lo-revenue .final-cta__eyebrow { color: var(--u-lav); font-size: 13px; font-weight: 700; }
body#lv-lo-revenue .final-cta__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#lv-lo-revenue .final-cta__lead { font-size: 18px; line-height: 1.9; }
body#lv-lo-revenue .final-cta__note { font-size: 13px; }

/* ---- ヒーロー登場モーション（CSSのみ・reduced-motionで停止） ---- */
@keyframes uplift07Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#lv-lo-revenue .revenue-hero__eyebrow { animation: uplift07Fade 0.6s ease 0s both; }
body#lv-lo-revenue .revenue-hero__title { animation: uplift07Fade 0.6s ease 0.12s both; }
body#lv-lo-revenue .revenue-hero__lead { animation: uplift07Fade 0.6s ease 0.24s both; }
body#lv-lo-revenue .revenue-hero__metrics { animation: uplift07Fade 0.6s ease 0.36s both; }
body#lv-lo-revenue .revenue-hero__actions { animation: uplift07Fade 0.6s ease 0.48s both; }
body#lv-lo-revenue .revenue-hero__note { animation: uplift07Fade 0.6s ease 0.6s both; }
@media (prefers-reduced-motion: reduce) {
  body#lv-lo-revenue .revenue-hero__eyebrow,
  body#lv-lo-revenue .revenue-hero__title,
  body#lv-lo-revenue .revenue-hero__lead,
  body#lv-lo-revenue .revenue-hero__metrics,
  body#lv-lo-revenue .revenue-hero__actions,
  body#lv-lo-revenue .revenue-hero__note { animation: none; }
}

/* ---- 既存SPバグ修正（本ページ生まれつき・SP375実測542px超過の解消）
   .faq-section__inner minmax(280px,…)+gap90 / .diagnosis__inner minmax(360px,…) がSP未折返し ---- */
@media (max-width: 850px) {
  body#lv-lo-revenue .faq-section__inner { grid-template-columns: 1fr; gap: 40px; }
  body#lv-lo-revenue .faq-section__heading { position: static; top: auto; }
  body#lv-lo-revenue .diagnosis__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- レスポンシブ（96→48pxリズム） ---- */
@media (max-width: 900px) {
  body#lv-lo-revenue .section { padding: 48px 0; }
  body#lv-lo-revenue .revenue-hero { padding: 48px 0 64px; }
}
@media (max-width: 568px) {
  body#lv-lo-revenue .revenue-hero__title { font-size: 25px; line-height: 1.6; }
  body#lv-lo-revenue .section-heading__title { font-size: 20px; }
  body#lv-lo-revenue .final-cta__title { font-size: 25px; line-height: 1.6; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   lv-lo-revenue は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#lv-lo-revenue .header__actions { background: #1E8A58; }
body#lv-lo-revenue .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#lv-lo-revenue .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#lv-lo-revenue .header__lang-link.is-current { background: #EDF6F1; }
body#lv-lo-revenue .header__lang-button:focus-visible,
body#lv-lo-revenue .header__lang-link:focus-visible,
body#lv-lo-revenue .header__action-link:focus-visible,
body#lv-lo-revenue .header__nav-link:focus-visible,
body#lv-lo-revenue .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#lv-lo-revenue .header__lang-button:hover { border-color: #1E8A58; }
  body#lv-lo-revenue .header__lang-link:hover { background: #EDF6F1; }
  body#lv-lo-revenue .header__nav-link:hover { color: #1E8A58; }
}
/* recolor_emerald_20260709 */
