/* ===== RETHEME green (§3-3b ページテーマ制・2026-07-03) — 元は page10.css.bak_20260703 ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #17201c;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
}

img {
  height: auto;
}

button, input, select, textarea {
  font: inherit;
}

a {
  color: inherit;
}

p, h1, h2, h3, ul, ol, dl, dd {
  margin-top: 0;
}

button {
  border: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.inner {
  width: min(100% - 100px, 1200px);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section--surface {
  background: #f6f8f7;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0;
  color: #1B7A4E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.section-heading__lead {
  margin: 0;
  color: #5c6862;
  font-size: 17px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 28px;
  border: 1px solid #1B7A4E;
  border-radius: 999px;
  color: #fff;
  background: #1B7A4E;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.button::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(27, 122, 75, 0.22);
  }
}

.button--outline {
  color: #1B7A4E;
  background: transparent;
}

.button--light {
  border-color: #fff;
  color: #0d4e2e;
  background: #fff;
}

.button--text {
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: #1B7A4E;
  background: transparent;
}

.breadcrumb {
  border-top: 1px solid #dce5e0;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: min(100% - 100px, 1200px);
  margin: 0 auto;
  padding: 18px 0;
  color: #5c6862;
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.breadcrumb__item:not(:last-child)::after {
  margin-left: 12px;
  content: "/";
}

.breadcrumb__link {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: #0d4e2e;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sp-menu {
  display: none;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  gap: 10px;
}

.floating-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid #1B7A4E;
  border-radius: 999px;
  color: #fff;
  background: #1B7A4E;
  box-shadow: 0 10px 30px rgba(17, 49, 33, 0.08);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 850px) {
  .inner {
    width: min(100% - 60px, 720px);
  }
  .section {
    padding: 84px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .sp-menu {
    position: fixed;
    top: 15px;
    right: 18px;
    z-index: 300;
    display: block;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: #0d4e2e;
    cursor: pointer;
  }
  .sp-menu__icon,
  .sp-menu__icon::before,
  .sp-menu__icon::after {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }
  .sp-menu__icon {
    position: relative;
  }
  .sp-menu__icon::before,
  .sp-menu__icon::after {
    position: absolute;
    left: 0;
    content: "";
  }
  .sp-menu__icon::before {
    top: -6px;
  }
  .sp-menu__icon::after {
    top: 6px;
  }
  .sp-menu.is-open .sp-menu__icon {
    background: transparent;
  }
  .sp-menu.is-open .sp-menu__icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    padding: 96px 30px 50px;
    visibility: hidden;
    background: rgba(13, 78, 46, 0.97);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu__nav {
    display: grid;
    gap: 4px;
  }
  .sp-menu__link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__cta {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }
  .floating-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .floating-cta__link {
    min-height: 48px;
    padding: 0 12px;
    font-size: 12px;
  }
}
@media (max-width: 568px) {
  .inner {
    width: calc(100% - 40px);
  }
  .section {
    padding: 72px 0;
  }
  .section-heading__title {
    font-size: 32px;
  }
  .section-heading__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .breadcrumb__list {
    width: calc(100% - 40px);
  }
}
.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: #f4f8f6;
  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: #1E8A58;
}

.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 #1E8A58;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #1E8A58;
  }
  .header__lang-link:hover {
    background: #f4f8f6;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #1E8A58;
  }
}
@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 #f4f8f6;
}
.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, #1E8A58 0%, #1B7A4E 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: #f4f8f6;
}
.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: #1B7A4E;
  }
  .footer__summary:hover::after {
    background-color: #1B7A4E;
  }
}
@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#investor {
  overflow-x: hidden;
}
body#investor .investor-hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #f4f8f6;
}
body#investor .investor-hero__media {
  position: absolute;
  inset: 0 0 0 46%;
}
body#investor .investor-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f8f6 0%, rgba(244, 248, 246, 0.82) 14%, transparent 58%);
  content: "";
}
body#investor .investor-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
body#investor .investor-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 740px;
}
body#investor .investor-hero__content {
  width: min(58%, 700px);
  padding: 90px 0 86px;
}
body#investor .investor-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #1B7A4E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#investor .investor-hero__eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}
body#investor .investor-hero__title {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 620;
  line-height: 1.07;
  letter-spacing: -0.055em;
}
body#investor .investor-hero__title-sub {
  display: block;
  margin-bottom: 14px;
  color: #0d4e2e;
  font-size: 0.44em;
  font-weight: 650;
  letter-spacing: -0.03em;
}
body#investor .investor-hero__title-main {
  display: block;
  white-space: nowrap;
}
body#investor .investor-hero__title-accent {
  color: #1B7A4E;
}
body#investor .investor-hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #17201c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}
body#investor .investor-hero__metrics {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin: 34px 0 0;
}
body#investor .investor-hero__metric {
  min-width: 210px;
  padding: 18px 22px;
  border-left: 3px solid #1B7A4E;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(17, 49, 33, 0.08);
  backdrop-filter: blur(6px);
}
body#investor .investor-hero__metric-label {
  display: block;
  margin-bottom: 5px;
  color: #5c6862;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body#investor .investor-hero__metric-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #0d4e2e;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}
body#investor .investor-hero__metric-unit {
  font-size: 14px;
  font-weight: 700;
}
body#investor .investor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
body#investor .investor-hero__note {
  max-width: 610px;
  margin: 18px 0 0;
  color: #5c6862;
  font-size: 11px;
  line-height: 1.75;
}
body#investor .investment-summary {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}
body#investor .investment-summary__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dce5e0;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 49, 33, 0.1);
}
body#investor .investment-summary__item {
  position: relative;
  min-height: 160px;
  padding: 34px 34px 28px;
}
body#investor .investment-summary__item:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #dce5e0;
  content: "";
}
body#investor .investment-summary__number {
  margin: 0 0 10px;
  color: #1B7A4E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}
body#investor .investment-summary__title {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
body#investor .investment-summary__text {
  margin: 0;
  color: #5c6862;
  font-size: 13px;
  line-height: 1.8;
}
body#investor .investor-concerns__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
body#investor .investor-concerns__image-wrap {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}
body#investor .investor-concerns__image {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
body#investor .investor-concerns__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(76%, 380px);
  margin: 0;
  padding: 24px 28px;
  color: #fff;
  background: #0d4e2e;
  font-size: 13px;
  line-height: 1.85;
}
body#investor .investor-concerns__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#investor .investor-concerns__item {
  position: relative;
  padding: 0 0 24px 46px;
  border-bottom: 1px solid #dce5e0;
}
body#investor .investor-concerns__item::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #1B7A4E;
  border-radius: 50%;
  color: #1B7A4E;
  content: "?";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}
body#investor .investor-concerns__question {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
body#investor .investor-concerns__answer {
  margin: 0;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.85;
}
body#investor .investment-highlights {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0d4e2e;
}
body#investor .investment-highlights::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}
body#investor .investment-highlights .section-heading__eyebrow,
body#investor .investment-highlights .section-heading__lead {
  color: rgba(255, 255, 255, 0.72);
}
body#investor .investment-highlights__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
body#investor .investment-highlights__item {
  min-height: 330px;
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
body#investor .investment-highlights__index {
  display: block;
  margin-bottom: 48px;
  color: #f4e6bc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}
body#investor .investment-highlights__title {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.55;
}
body#investor .investment-highlights__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}
body#investor .revenue-mechanism__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
}
body#investor .revenue-mechanism__visual {
  position: relative;
  min-height: 580px;
  padding: 44px;
  background: #f4f8f6;
}
body#investor .revenue-mechanism__image {
  width: 100%;
  height: 492px;
  object-fit: cover;
}
body#investor .revenue-mechanism__diagram {
  display: grid;
  gap: 0;
  margin-top: 36px;
}
body#investor .revenue-mechanism__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 0 0 32px;
}
body#investor .revenue-mechanism__step:not(:last-child)::before {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 27px;
  width: 1px;
  background: #dce5e0;
  content: "";
}
body#investor .revenue-mechanism__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #1B7A4E;
  border-radius: 50%;
  color: #1B7A4E;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
}
body#investor .revenue-mechanism__title {
  margin: 2px 0 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
body#investor .revenue-mechanism__text {
  margin: 0;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.85;
}
body#investor .simulation {
  background: #f6f8f7;
}
body#investor .simulation__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border: 1px solid #dce5e0;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 49, 33, 0.1);
}
body#investor .simulation__summary {
  padding: 54px;
  color: #fff;
  background: #0d4e2e;
}
body#investor .simulation__label {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
body#investor .simulation__metric {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
body#investor .simulation__metric:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
body#investor .simulation__metric-name {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
body#investor .simulation__metric-value {
  font-size: 42px;
  font-weight: 650;
  line-height: 1.15;
}
body#investor .simulation__metric-unit {
  margin-left: 6px;
  font-size: 14px;
}
body#investor .simulation__summary-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.8;
}
body#investor .simulation__formula {
  padding: 54px;
}
body#investor .simulation__formula-title {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}
body#investor .simulation__equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
  padding: 28px 0;
  border-top: 1px solid #dce5e0;
  border-bottom: 1px solid #dce5e0;
}
body#investor .simulation__equation-item {
  text-align: center;
}
body#investor .simulation__equation-label {
  display: block;
  margin-bottom: 10px;
  color: #5c6862;
  font-size: 12px;
}
body#investor .simulation__equation-value {
  color: #1B7A4E;
  font-size: 18px;
  font-weight: 700;
}
body#investor .simulation__equation-symbol {
  color: #5c6862;
  font-size: 24px;
}
body#investor .simulation__checklist {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
body#investor .simulation__check-item {
  position: relative;
  padding-left: 26px;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.75;
}
body#investor .simulation__check-item::before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #1B7A4E;
  border-left: 2px solid #1B7A4E;
  content: "";
  transform: rotate(-45deg);
}
body#investor .site-strategy__layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 80px;
  align-items: center;
}
body#investor .site-strategy__image-wrap {
  position: relative;
}
body#investor .site-strategy__image {
  display: block;
  width: 100%;
  min-height: 580px;
  object-fit: cover;
}
body#investor .site-strategy__badge {
  position: absolute;
  right: -34px;
  bottom: 44px;
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  color: #fff;
  background: #1B7A4E;
  box-shadow: 0 20px 60px rgba(17, 49, 33, 0.1);
  text-align: center;
}
body#investor .site-strategy__badge-small {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
}
body#investor .site-strategy__badge-large {
  font-size: 34px;
  font-weight: 700;
}
body#investor .site-strategy__list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
body#investor .site-strategy__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}
body#investor .site-strategy__number {
  color: #1B7A4E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}
body#investor .site-strategy__item-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
body#investor .site-strategy__item-text {
  margin: 0;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.8;
}
body#investor .risk-control {
  color: #fff;
  background: #0d4e2e;
}
body#investor .risk-control .section-heading__eyebrow,
body#investor .risk-control .section-heading__lead {
  color: rgba(255, 255, 255, 0.68);
}
body#investor .risk-control__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}
body#investor .risk-control__item {
  min-height: 250px;
  padding: 32px;
  background: #0d4e2e;
}
body#investor .risk-control__tag {
  display: inline-block;
  margin-bottom: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4e6bc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body#investor .risk-control__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.5;
}
body#investor .risk-control__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.9;
}
body#investor .consultation-cta {
  position: relative;
  overflow: hidden;
  background: #f4f8f6;
}
body#investor .consultation-cta__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 520px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 49, 33, 0.1);
}
body#investor .consultation-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px;
}
body#investor .consultation-cta__eyebrow {
  margin: 0 0 16px;
  color: #1B7A4E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#investor .consultation-cta__title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.035em;
}
body#investor .consultation-cta__text {
  margin: 24px 0 0;
  color: #5c6862;
  font-size: 15px;
  line-height: 1.9;
}
body#investor .consultation-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
body#investor .consultation-cta__image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
body#investor .implementation-flow__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
body#investor .implementation-flow__item {
  position: relative;
  min-height: 245px;
  padding: 30px 24px;
  border-top: 1px solid #dce5e0;
  border-bottom: 1px solid #dce5e0;
}
body#investor .implementation-flow__item:not(:last-child) {
  border-right: 1px solid #dce5e0;
}
body#investor .implementation-flow__item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-top: 1px solid #1B7A4E;
  border-right: 1px solid #1B7A4E;
  background: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
body#investor .implementation-flow__step {
  display: block;
  margin-bottom: 30px;
  color: #1B7A4E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}
body#investor .implementation-flow__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}
body#investor .implementation-flow__text {
  margin: 0;
  color: #5c6862;
  font-size: 12px;
  line-height: 1.8;
}
body#investor .decision-check__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
body#investor .decision-check__sticky {
  position: sticky;
  top: 40px;
}
body#investor .decision-check__image {
  width: 100%;
  height: 470px;
  margin-top: 32px;
  object-fit: cover;
}
body#investor .decision-check__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dce5e0;
  list-style: none;
}
body#investor .decision-check__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid #dce5e0;
}
body#investor .decision-check__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #1B7A4E;
  border-radius: 50%;
  color: #1B7A4E;
  font-size: 13px;
  font-weight: 700;
}
body#investor .decision-check__title {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}
body#investor .decision-check__text {
  margin: 0;
  color: #5c6862;
  font-size: 13px;
  line-height: 1.8;
}
body#investor .faq {
  background: #f6f8f7;
}
body#investor .faq__list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
body#investor .faq__item {
  border: 1px solid #dce5e0;
  background: #fff;
}
body#investor .faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 24px 26px;
  cursor: pointer;
}
body#investor .faq__question-mark {
  color: #1B7A4E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}
body#investor .faq__question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}
body#investor .faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}
body#investor .faq__toggle::before,
body#investor .faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: #1B7A4E;
  content: "";
  transform: translate(-50%, -50%);
}
body#investor .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
body#investor .faq__item[open] .faq__toggle::after {
  display: none;
}
body#investor .faq__answer {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 0 26px 26px;
}
body#investor .faq__answer-mark {
  color: #c89a38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}
body#investor .faq__answer-text {
  margin: 2px 0 0;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.95;
}
body#investor .final-cta {
  padding: 0 0 120px;
  background: #f6f8f7;
}
body#investor .final-cta__panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #0d4e2e;
}
body#investor .final-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
body#investor .final-cta__panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 78, 46, 0.96) 0%, rgba(13, 78, 46, 0.78) 58%, rgba(13, 78, 46, 0.3) 100%);
  content: "";
}
body#investor .final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(68%, 740px);
  min-height: 520px;
  padding: 72px;
}
body#investor .final-cta__eyebrow {
  margin: 0 0 18px;
  color: #f4e6bc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
body#investor .final-cta__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 630;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
body#investor .final-cta__text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.9;
}
body#investor .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
@media (max-width: 1100px) {
  body#investor .investor-hero__media {
    left: 40%;
  }
  body#investor .investment-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body#investor .implementation-flow__list {
    grid-template-columns: repeat(3, 1fr);
  }
  body#investor .implementation-flow__item:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 850px) {
  body#investor .investor-hero {
    min-height: auto;
    padding-bottom: 0;
  }
  body#investor .investor-hero__media {
    position: relative;
    inset: auto;
    height: 520px;
    margin-top: 0;
  }
  body#investor .investor-hero__media::after {
    background: linear-gradient(180deg, #f4f8f6 0%, transparent 34%);
  }
  body#investor .investor-hero__inner {
    min-height: auto;
  }
  body#investor .investor-hero__content {
    width: 100%;
    padding: 74px 0 52px;
  }
  body#investor .investor-hero__title {
    font-size: clamp(50px, 10vw, 72px);
  }
  body#investor .investment-summary {
    margin-top: -44px;
  }
  body#investor .investment-summary__inner {
    grid-template-columns: 1fr;
  }
  body#investor .investment-summary__item {
    min-height: auto;
  }
  body#investor .investment-summary__item:not(:last-child)::after {
    top: auto;
    right: 28px;
    bottom: 0;
    left: 28px;
    width: auto;
    height: 1px;
  }
  body#investor .investor-concerns__grid,
  body#investor .revenue-mechanism__layout,
  body#investor .simulation__panel,
  body#investor .site-strategy__layout,
  body#investor .consultation-cta__grid,
  body#investor .decision-check__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  body#investor .investor-concerns__image,
  body#investor .investor-concerns__image-wrap,
  body#investor .revenue-mechanism__visual,
  body#investor .site-strategy__image,
  body#investor .consultation-cta__image {
    min-height: 440px;
    height: 440px;
  }
  body#investor .simulation__summary,
  body#investor .simulation__formula,
  body#investor .consultation-cta__content {
    padding: 44px;
  }
  body#investor .risk-control__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body#investor .site-strategy__badge {
    right: 24px;
    bottom: 24px;
  }
  body#investor .decision-check__sticky {
    position: static;
  }
  body#investor .decision-check__image {
    height: 420px;
  }
  body#investor .final-cta__content {
    width: 86%;
    padding: 54px;
  }
}
@media (max-width: 568px) {
  body#investor .investor-hero__content {
    padding: 58px 0 44px;
  }
  body#investor .investor-hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  body#investor .investor-hero__title {
    font-size: 42px;
    line-height: 1.12;
  }
  body#investor .investor-hero__title-main {
    white-space: normal;
  }
  body#investor .investor-hero__title-sub {
    font-size: 0.48em;
    line-height: 1.5;
  }
  body#investor .investor-hero__lead {
    font-size: 15px;
  }
  body#investor .investor-hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  body#investor .investor-hero__metric {
    min-width: 0;
    padding: 14px;
  }
  body#investor .investor-hero__metric-value {
    font-size: 25px;
  }
  body#investor .investor-hero__actions,
  body#investor .consultation-cta__actions,
  body#investor .final-cta__actions {
    display: grid;
  }
  body#investor .investor-hero__media {
    height: 420px;
  }
  body#investor .investment-summary {
    margin-top: -30px;
  }
  body#investor .investment-summary__item {
    padding: 28px 24px;
  }
  body#investor .investor-concerns__image,
  body#investor .investor-concerns__image-wrap,
  body#investor .revenue-mechanism__visual,
  body#investor .site-strategy__image,
  body#investor .consultation-cta__image {
    min-height: 340px;
    height: 340px;
  }
  body#investor .investor-concerns__caption {
    width: 88%;
    padding: 18px 20px;
  }
  body#investor .investment-highlights__grid,
  body#investor .risk-control__grid {
    grid-template-columns: 1fr;
  }
  body#investor .investment-highlights__item {
    min-height: auto;
    padding: 30px 24px;
  }
  body#investor .investment-highlights__index {
    margin-bottom: 24px;
  }
  body#investor .revenue-mechanism__visual {
    padding: 20px;
  }
  body#investor .revenue-mechanism__image {
    height: 300px;
  }
  body#investor .simulation__summary,
  body#investor .simulation__formula,
  body#investor .consultation-cta__content {
    padding: 34px 24px;
  }
  body#investor .simulation__metric-value {
    font-size: 34px;
  }
  body#investor .simulation__equation {
    grid-template-columns: 1fr;
  }
  body#investor .simulation__equation-symbol {
    transform: rotate(90deg);
  }
  body#investor .site-strategy__badge {
    right: 14px;
    bottom: 14px;
    width: 126px;
    height: 126px;
  }
  body#investor .site-strategy__badge-large {
    font-size: 28px;
  }
  body#investor .implementation-flow__list {
    grid-template-columns: 1fr;
  }
  body#investor .implementation-flow__item,
  body#investor .implementation-flow__item:nth-child(3) {
    min-height: auto;
    border-right: 0;
  }
  body#investor .implementation-flow__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
  body#investor .decision-check__image {
    height: 330px;
  }
  body#investor .faq__question {
    grid-template-columns: 28px 1fr 18px;
    gap: 10px;
    padding: 20px 18px;
  }
  body#investor .faq__answer {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 0 18px 20px;
  }
  body#investor .final-cta {
    padding-bottom: 72px;
  }
  body#investor .final-cta__panel,
  body#investor .final-cta__content {
    min-height: 540px;
  }
  body#investor .final-cta__content {
    width: 100%;
    padding: 42px 24px 92px;
  }
}

/* ===== 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: #1E8A58; 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: #1E8A58;
}
/* 大数字・番号はサムネ同様に細アウトライン風の品を（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 green (uplift_20260705) — バッチ④指示書 2026-07-05 ===== */
body#investor {
  --u-theme: #1E8A58;
  --u-text: #1B7A4E;
  --u-deep: #0F4C30;
  --u-tint: #F1F7F3;
  --u-gold: #F5B500;
  --u-mint: #8FD6B0;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- 基礎リズム / 見出し ---- */
body#investor .section { padding: 96px 0; }
body#investor .section-heading__en { margin-bottom: 16px; color: var(--u-text); font-size: 13px; }
body#investor .section-heading__title { font-size: 25px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.6; }
body#investor .section-heading__lead { margin-top: 20px; color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#investor .section-heading--light .section-heading__en { color: var(--u-mint); }

/* ---- ボタン（主CTA=金へ統一・variantは不変更） / フォーカス ---- */
body#investor .button:not(.button--outline):not(.button--light):not(.button--text) { color: var(--u-ink); border-color: var(--u-gold); background: var(--u-gold); box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); }
@media (hover: hover) and (pointer: fine) {
  body#investor .button:not(.button--outline):not(.button--light):not(.button--text):hover { background: var(--u-gold); filter: brightness(0.92); }
}
body#investor .button:focus-visible { outline: 2px solid var(--u-text); outline-offset: 3px; }
body#investor :is(.investor-hero, .final-cta, .consultation-cta) .button:focus-visible { outline-color: #fff; }
body#investor :is(.investor-hero, .final-cta, .consultation-cta) .button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }

/* ---- ヒーロー（写真右46%×deepグラデ地・白明朝31px） ---- */
body#investor .investor-hero { background: var(--u-deep); }
body#investor .investor-hero__media::after { background: linear-gradient(90deg, #0F4C30 0%, rgba(15, 76, 48, 0.82) 14%, transparent 58%); }
body#investor .investor-hero__eyebrow { color: var(--u-mint); font-size: 13px; }
body#investor .investor-hero__eyebrow::after { background: var(--u-mint); }
body#investor .investor-hero__title { color: #fff; font-size: 31px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.5; }
body#investor .investor-hero__title-sub { color: var(--u-mint); font-size: 16px; }
body#investor .investor-hero__title-accent { color: var(--u-mint); }
body#investor .investor-hero .button--text { color: #fff; text-decoration: underline; }
body#investor .investor-hero__lead { color: #E3F0E9; font-size: 18px; font-weight: 500; line-height: 1.9; }
body#investor .investor-hero__metric { border-left-color: var(--u-theme); border-radius: 6px; }
body#investor .investor-hero__note { color: rgba(255, 255, 255, 0.72); font-size: 13px; }

/* ---- サマリー / ハイライト ---- */
body#investor .investment-summary__item strong { color: var(--u-text); font-size: 25px; }
body#investor .investment-summary__item span { font-size: 13px; }

/* ---- 相談CTA / 最終CTA（濃色締めバンド・tint外周） ---- */
body#investor .consultation-cta__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#investor .final-cta { background: var(--u-tint); }
body#investor .final-cta__panel { border-radius: 12px; background: var(--u-deep); }
body#investor .final-cta__panel::after { background: linear-gradient(90deg, rgba(15, 76, 48, 0.96) 0%, rgba(15, 76, 48, 0.78) 58%, rgba(15, 76, 48, 0.3) 100%); }
body#investor .final-cta__eyebrow { color: var(--u-mint); font-size: 13px; }
body#investor .final-cta__title { font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#investor .final-cta__text { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }

/* ---- ヒーロー登場モーション（CSSのみ・reduced-motionで停止） ---- */
@keyframes uplift10Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#investor .investor-hero__eyebrow { animation: uplift10Fade 0.6s ease 0s both; }
body#investor .investor-hero__title { animation: uplift10Fade 0.6s ease 0.12s both; }
body#investor .investor-hero__lead { animation: uplift10Fade 0.6s ease 0.24s both; }
body#investor .investor-hero__metrics { animation: uplift10Fade 0.6s ease 0.36s both; }
body#investor .investor-hero__actions { animation: uplift10Fade 0.6s ease 0.48s both; }
body#investor .investor-hero__note { animation: uplift10Fade 0.6s ease 0.6s both; }
@media (prefers-reduced-motion: reduce) {
  body#investor .investor-hero__eyebrow,
  body#investor .investor-hero__title,
  body#investor .investor-hero__lead,
  body#investor .investor-hero__metrics,
  body#investor .investor-hero__actions,
  body#investor .investor-hero__note { animation: none; }
}

/* ---- レスポンシブ（96→48pxリズム / SPヒーロー帯の縦シェード） ---- */
@media (max-width: 900px) {
  body#investor .section { padding: 48px 0; }
}
@media (max-width: 850px) {
  body#investor .investor-hero__media::after { background: linear-gradient(180deg, #0F4C30 0%, transparent 34%); }
}
@media (max-width: 568px) {
  body#investor .investor-hero__title { font-size: 25px; line-height: 1.6; }
  body#investor .section-heading__title { font-size: 20px; }
  body#investor .consultation-cta__title { font-size: 20px; }
  body#investor .final-cta__title { font-size: 25px; line-height: 1.6; }
  body#investor .investment-summary__item strong { font-size: 20px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   investor は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#investor .header__actions { background: #1E8A58; }
body#investor .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#investor .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#investor .header__lang-link.is-current { background: #EDF6F1; }
body#investor .header__lang-button:focus-visible,
body#investor .header__lang-link:focus-visible,
body#investor .header__action-link:focus-visible,
body#investor .header__nav-link:focus-visible,
body#investor .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#investor .header__lang-button:hover { border-color: #1E8A58; }
  body#investor .header__lang-link:hover { background: #EDF6F1; }
  body#investor .header__nav-link:hover { color: #1E8A58; }
}
