/* ===== RETHEME navy (§3-3b ページテーマ制・2026-07-03) — 元は page20.css.bak_20260703 ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, p, ol, ul, dl, dd, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

:root {
  --color-primary: #123A63;
  --color-primary-dark: #082342;
  --color-accent: #d8aa45;
  --color-text: #151b22;
  --color-muted: #626970;
  --color-surface: #f3f5f7;
  --color-border: #d7dce1;
  --color-white: #fff;
  --shadow-card: 0 24px 70px rgba(14, 31, 50, .10);
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  color: var(--color-text);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

#wrapper, #contents {
  width: 100%;
}

main {
  display: block;
}

.inner {
  width: min(1180px, 100% - 80px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section--dark {
  color: #fff;
  background: #0a2442;
}

.section--soft {
  background: #f3f5f7;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: #123A63;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  max-width: none;
}

.section-heading--light {
  color: #fff;
}

.section-heading__eyebrow {
  margin-bottom: 18px;
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.section-heading--light .section-heading__eyebrow {
  color: #8eafd5;
}

.section-heading__title {
  font-size: clamp(3.2rem, 4vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.section-heading__lead {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 1.7rem;
  line-height: 2;
}

.section-heading--light .section-heading__lead {
  color: rgba(255, 255, 255, 0.74);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 250px;
  min-height: 64px;
  padding: 0 24px 0 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button span {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
}

.button--primary {
  color: #fff;
  background: #123A63;
  box-shadow: 0 14px 34px rgba(3, 29, 58, 0.25);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button--light {
  color: #123A63;
  background: #fff;
  box-shadow: none;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  text-underline-offset: 6px;
}

.text-link--light {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(3, 29, 58, 0.32);
  }
  .button--ghost:hover {
    color: #123A63;
    background: #fff;
  }
}
.button:focus-visible, .text-link:focus-visible {
  outline: 3px solid #d8aa45;
  outline-offset: 4px;
}

.breadcrumb {
  padding: 18px 0;
  border-top: 1px solid #edeff1;
  border-bottom: 1px solid #edeff1;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  color: #6f757c;
  font-size: 1.2rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #b3b9bf;
}

.breadcrumb__link {
  text-decoration: none;
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .inner {
    width: min(100% - 40px, 680px);
  }
  .section {
    padding: 88px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading--split {
    display: block;
  }
  .section-heading--split > .section-heading__eyebrow {
    margin-bottom: 18px;
  }
  .section-heading__title {
    font-size: clamp(3rem, 8vw, 4.4rem);
  }
  .section-heading__lead {
    font-size: 1.5rem;
  }
  .button {
    width: 100%;
    min-width: 0;
    min-height: 60px;
  }
  .breadcrumb {
    padding: 12px 0;
  }
  .breadcrumb__list {
    width: calc(100% - 40px);
  }
  .sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    display: block;
    pointer-events: none;
  }
  .sp-menu__button {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 58px;
    height: 58px;
    margin: 8px 10px 0 0;
    border-radius: 50%;
    color: #fff;
    background: #123A63;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
    cursor: pointer;
  }
  .sp-menu__line {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    padding: 90px 24px 30px;
    visibility: hidden;
    background: rgba(6, 25, 47, 0.98);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: auto;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .sp-menu__nav {
    display: grid;
    gap: 4px;
    max-width: 520px;
    margin: 0 auto;
  }
  .sp-menu__link {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link--accent {
    margin-top: 18px;
    padding: 18px;
    border: 0;
    border-radius: 3px;
    color: #123A63;
    text-align: center;
    background: #fff;
  }
}
@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;
  }
}
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #0C2A4D;
}

.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 #0C2A4D;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #0C2A4D;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #0C2A4D;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions, .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow, .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0C2A4D 0%, #123A63 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #0C2A4D;
  }
  .footer__summary:hover::after {
    background-color: #0C2A4D;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: tbpx) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 35px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: sppx) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

body#hv-investor .investor-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #0a1f36;
}
body#hv-investor .investor-hero__media, body#hv-investor .investor-hero__overlay {
  position: absolute;
  inset: 0;
}
body#hv-investor .investor-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body#hv-investor .investor-hero__overlay {
  background: linear-gradient(90deg, rgba(4, 21, 40, 0.96) 0%, rgba(4, 21, 40, 0.86) 36%, rgba(4, 21, 40, 0.28) 72%, rgba(4, 21, 40, 0.08) 100%);
}
body#hv-investor .investor-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding-top: 54px;
  padding-bottom: 70px;
}
body#hv-investor .investor-hero__content {
  width: min(720px, 66%);
}
body#hv-investor .investor-hero__eyebrow {
  margin-bottom: 24px;
  color: #9eb9d8;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
body#hv-investor .investor-hero__title {
  font-size: clamp(4.6rem, 5.8vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.23;
}
body#hv-investor .investor-hero__title span {
  color: #e2bd67;
}
body#hv-investor .investor-hero__lead {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.8rem;
  line-height: 2;
}
body#hv-investor .investor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
body#hv-investor .investor-hero__note {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.2rem;
  line-height: 1.8;
}
body#hv-investor .investor-hero__scroll {
  position: absolute;
  right: 38px;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-decoration: none;
}
body#hv-investor .investor-hero__scroll i {
  display: block;
  width: 1px;
  height: 62px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.5);
}
body#hv-investor .decision-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body#hv-investor .decision-card {
  position: relative;
  min-height: 320px;
  padding: 42px 34px 36px;
  overflow: hidden;
  border: 1px solid #dfe3e7;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 34, 55, 0.07);
}
body#hv-investor .decision-card::after {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(14, 50, 92, 0.12);
  border-radius: 50%;
  content: "";
}
body#hv-investor .decision-card__number {
  display: block;
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#hv-investor .decision-card__title {
  margin-top: 70px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.45;
}
body#hv-investor .decision-card__text {
  margin-top: 18px;
  color: #606770;
  font-size: 1.45rem;
  line-height: 1.9;
}
body#hv-investor .investment-framework {
  position: relative;
  overflow: hidden;
}
body#hv-investor .investment-framework::before {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}
body#hv-investor .investment-framework__inner {
  position: relative;
}
body#hv-investor .investment-framework__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
body#hv-investor .framework-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  min-height: 250px;
  padding: 46px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}
body#hv-investor .framework-item__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(164, 190, 220, 0.5);
  border-radius: 50%;
  color: #9eb9d8;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}
body#hv-investor .framework-item__title {
  font-size: 2.4rem;
  font-weight: 600;
}
body#hv-investor .framework-item__text {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.45rem;
  line-height: 1.9;
}
body#hv-investor .revenue-structure__note {
  margin-top: 40px;
}
body#hv-investor .revenue-map {
  max-width: 1080px;
  margin: 0 auto;
  padding: 46px;
  border: 1px solid #dce1e6;
  background: #f8f9fa;
}
body#hv-investor .revenue-map__markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
body#hv-investor .revenue-map__connector {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 70px;
  margin: 0 13%;
}
body#hv-investor .revenue-map__connector::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: #9fabb9;
  content: "";
}
body#hv-investor .revenue-map__connector span {
  position: relative;
}
body#hv-investor .revenue-map__connector span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 52px;
  background: #9fabb9;
  content: "";
}
body#hv-investor .revenue-map__connector span:nth-child(2)::after {
  position: absolute;
  bottom: 8px;
  left: calc(50% - 5px);
  width: 11px;
  height: 11px;
  border-right: 2px solid #123A63;
  border-bottom: 2px solid #123A63;
  content: "";
  transform: rotate(45deg);
}
body#hv-investor .revenue-map__core {
  display: grid;
  place-items: center;
  width: min(420px, 76%);
  min-height: 190px;
  margin: 0 auto;
  padding: 30px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #123A63, #072342);
  box-shadow: 0 24px 50px rgba(7, 35, 66, 0.2);
}
body#hv-investor .revenue-map__core-label {
  color: #9eb9d8;
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
body#hv-investor .revenue-map__core-title {
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
body#hv-investor .revenue-map__core-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
}
body#hv-investor .revenue-map__outcomes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
body#hv-investor .revenue-map__outcomes span {
  padding: 9px 16px;
  border: 1px solid #cad1d9;
  border-radius: 999px;
  color: #434c56;
  font-size: 1.2rem;
  font-weight: 600;
  background: #fff;
}
body#hv-investor .market-card {
  min-height: 235px;
  padding: 26px 24px;
  border-top: 4px solid #123A63;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 45, 68, 0.06);
}
body#hv-investor .market-card--capacity {
  border-top-color: #4c647f;
}
body#hv-investor .market-card--wholesale {
  border-top-color: #d2a74d;
}
body#hv-investor .market-card__label {
  color: #717880;
  font-size: 1.15rem;
  font-weight: 600;
}
body#hv-investor .market-card__title {
  margin-top: 8px;
  font-size: 2.2rem;
  font-weight: 600;
}
body#hv-investor .market-card__value {
  margin-top: 26px;
  color: #123A63;
  font-size: 1.35rem;
  font-weight: 700;
}
body#hv-investor .market-card__text {
  margin-top: 8px;
  color: #686e75;
  font-size: 1.3rem;
  line-height: 1.8;
}
body#hv-investor .note-box {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  padding: 28px 32px;
  border-left: 4px solid #d2a74d;
  background: #fff8e8;
}
body#hv-investor .note-box__title {
  font-size: 1.5rem;
}
body#hv-investor .note-box__text {
  color: #665e4c;
  font-size: 1.35rem;
  line-height: 1.8;
}
body#hv-investor .due-diligence__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 82px;
}
body#hv-investor .due-diligence__visual {
  position: relative;
  min-height: 700px;
}
body#hv-investor .due-diligence__visual::before {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 55%;
  height: 52%;
  border: 1px solid #bfc6cf;
  content: "";
}
body#hv-investor .due-diligence__visual picture {
  position: absolute;
  inset: 0 0 0 30px;
  overflow: hidden;
}
body#hv-investor .due-diligence__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-investor .check-list {
  list-style: none;
}
body#hv-investor .check-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid #ced4db;
}
body#hv-investor .check-list__number {
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
body#hv-investor .check-list__item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}
body#hv-investor .check-list__item p {
  margin-top: 5px;
  color: #666d74;
  font-size: 1.35rem;
  line-height: 1.7;
}
body#hv-investor .evidence-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
}
body#hv-investor .evidence-section__disclaimer {
  margin-top: 28px;
  color: #6f757c;
  font-size: 1.2rem;
  line-height: 1.8;
}
body#hv-investor .evidence-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 34, 55, 0.1);
}
body#hv-investor .evidence-card--offset {
  margin-top: 56px;
}
body#hv-investor .evidence-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
body#hv-investor .evidence-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-investor .evidence-card__body {
  padding: 32px 30px 36px;
}
body#hv-investor .evidence-card__number {
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#hv-investor .evidence-card__title {
  margin-top: 14px;
  font-size: 2.2rem;
  font-weight: 600;
}
body#hv-investor .evidence-card__text {
  margin-top: 16px;
  color: #626970;
  font-size: 1.4rem;
  line-height: 1.9;
}
body#hv-investor .evidence-card__list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-left: 18px;
  color: #353d46;
  font-size: 1.3rem;
}
body#hv-investor .evidence-card__list li::marker {
  color: #d2a74d;
}
body#hv-investor .mid-cta {
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(120deg, #0d325c 0%, #0a2543 72%);
}
body#hv-investor .mid-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
body#hv-investor .mid-cta__eyebrow {
  color: #9eb9d8;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
body#hv-investor .mid-cta__title {
  margin-top: 14px;
  font-size: clamp(3rem, 3.5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4;
}
body#hv-investor .mid-cta__text {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
}
body#hv-investor .mid-cta__actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}
body#hv-investor .project-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d5dae0;
  border-left: 1px solid #d5dae0;
  list-style: none;
}
body#hv-investor .project-flow__note {
  margin-top: 24px;
  color: #717880;
  font-size: 1.2rem;
}
body#hv-investor .flow-step {
  position: relative;
  min-height: 260px;
  padding: 34px 30px;
  border-right: 1px solid #d5dae0;
  border-bottom: 1px solid #d5dae0;
}
body#hv-investor .flow-step__number {
  display: block;
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#hv-investor .flow-step__body {
  margin-top: 66px;
}
body#hv-investor .flow-step__title {
  font-size: 2.1rem;
  font-weight: 600;
}
body#hv-investor .flow-step__text {
  margin-top: 12px;
  color: #666d74;
  font-size: 1.35rem;
  line-height: 1.8;
}
body#hv-investor .document-guide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 72px;
}
body#hv-investor .document-guide__content {
  padding: 42px 0;
}
body#hv-investor .document-guide__image {
  min-height: 560px;
  overflow: hidden;
}
body#hv-investor .document-guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-investor .document-guide__list {
  display: grid;
  gap: 14px;
  list-style: none;
}
body#hv-investor .document-guide__item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #d5dbe1;
  background: #fff;
  font-size: 1.45rem;
  font-weight: 600;
}
body#hv-investor .document-guide__item span {
  color: #0e3f78;
}
body#hv-investor .document-guide__note {
  margin-top: 24px;
  color: #666d74;
  font-size: 1.3rem;
}
body#hv-investor .faq__inner {
  max-width: 1000px;
}
body#hv-investor .faq__list {
  border-top: 1px solid #d7dce1;
}
body#hv-investor .faq-item {
  border-bottom: 1px solid #d7dce1;
}
body#hv-investor .faq-item__question {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 28px 12px;
  cursor: pointer;
}
body#hv-investor .faq-item__mark {
  color: #0e3f78;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
body#hv-investor .faq-item__question-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
}
body#hv-investor .faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
}
body#hv-investor .faq-item__icon::before, body#hv-investor .faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #123A63;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
body#hv-investor .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
body#hv-investor .faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
body#hv-investor .faq-item__answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 0 52px 30px 12px;
}
body#hv-investor .faq-item__mark--answer {
  color: #d2a74d;
}
body#hv-investor .faq-item__answer-text {
  color: #5f666e;
  font-size: 1.45rem;
  line-height: 1.9;
}
body#hv-investor .final-cta {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: #081b31;
}
body#hv-investor .final-cta__media, body#hv-investor .final-cta__overlay {
  position: absolute;
  inset: 0;
}
body#hv-investor .final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body#hv-investor .final-cta__overlay {
  background: linear-gradient(90deg, rgba(5, 22, 42, 0.95) 0%, rgba(5, 22, 42, 0.84) 48%, rgba(5, 22, 42, 0.25) 100%);
}
body#hv-investor .final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 690px;
  padding-top: 90px;
  padding-bottom: 90px;
}
body#hv-investor .final-cta__eyebrow {
  color: #9eb9d8;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
body#hv-investor .final-cta__title {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(4rem, 5.2vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.3;
}
body#hv-investor .final-cta__text {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.7rem;
}
body#hv-investor .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
body#hv-investor .final-cta__note {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.15rem;
}
@media (max-width: 1024px) {
  body#hv-investor .investor-hero {
    min-height: 700px;
  }
  body#hv-investor .investor-hero__inner {
    min-height: 700px;
  }
  body#hv-investor .investor-hero__content {
    width: 76%;
  }
  body#hv-investor .decision-overview__grid {
    gap: 16px;
  }
  body#hv-investor .decision-card {
    padding: 34px 26px;
  }
  body#hv-investor .due-diligence__inner {
    gap: 48px;
  }
  body#hv-investor .due-diligence__visual {
    min-height: 620px;
  }
  body#hv-investor .evidence-card__body {
    padding-right: 24px;
    padding-left: 24px;
  }
  body#hv-investor .mid-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  body#hv-investor .mid-cta__actions {
    grid-template-columns: auto auto;
    align-items: center;
  }
}
@media (max-width: 850px) {
  body#hv-investor .investor-hero {
    min-height: 780px;
  }
  body#hv-investor .investor-hero__media img {
    object-position: 63% center;
  }
  body#hv-investor .investor-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 21, 40, 0.55) 0%, rgba(4, 21, 40, 0.9) 45%, rgba(4, 21, 40, 0.98) 100%);
  }
  body#hv-investor .investor-hero__inner {
    align-items: flex-end;
    min-height: 780px;
    padding-top: 130px;
    padding-bottom: 64px;
  }
  body#hv-investor .investor-hero__content {
    width: 100%;
  }
  body#hv-investor .investor-hero__title {
    font-size: clamp(4rem, 11vw, 5.4rem);
  }
  body#hv-investor .investor-hero__lead {
    font-size: 1.55rem;
  }
  body#hv-investor .investor-hero__actions {
    display: grid;
  }
  body#hv-investor .investor-hero__scroll {
    display: none;
  }
  body#hv-investor .decision-overview__grid {
    grid-template-columns: 1fr;
  }
  body#hv-investor .decision-card {
    min-height: 0;
  }
  body#hv-investor .decision-card__title {
    margin-top: 38px;
  }
  body#hv-investor .investment-framework__list {
    grid-template-columns: 1fr;
  }
  body#hv-investor .framework-item {
    min-height: 0;
    padding: 34px 26px;
  }
  body#hv-investor .revenue-map {
    padding: 24px 18px;
  }
  body#hv-investor .revenue-map__markets {
    grid-template-columns: 1fr;
  }
  body#hv-investor .revenue-map__connector {
    display: none;
  }
  body#hv-investor .revenue-map__core {
    width: 100%;
    margin-top: 20px;
  }
  body#hv-investor .revenue-map__outcomes {
    flex-wrap: wrap;
  }
  body#hv-investor .note-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body#hv-investor .due-diligence__inner {
    grid-template-columns: 1fr;
  }
  body#hv-investor .due-diligence__visual {
    min-height: 500px;
  }
  body#hv-investor .due-diligence__visual picture {
    inset: 0;
  }
  body#hv-investor .due-diligence__visual::before {
    display: none;
  }
  body#hv-investor .evidence-section__grid {
    grid-template-columns: 1fr;
  }
  body#hv-investor .evidence-card--offset {
    margin-top: 0;
  }
  body#hv-investor .mid-cta__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }
  body#hv-investor .project-flow__list {
    grid-template-columns: 1fr 1fr;
  }
  body#hv-investor .document-guide__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body#hv-investor .document-guide__content {
    padding: 0;
  }
  body#hv-investor .document-guide__image {
    min-height: 430px;
  }
  body#hv-investor .final-cta {
    min-height: 740px;
  }
  body#hv-investor .final-cta__media img {
    object-position: 64% center;
  }
  body#hv-investor .final-cta__overlay {
    background: linear-gradient(180deg, rgba(5, 22, 42, 0.35), rgba(5, 22, 42, 0.93) 50%, rgba(5, 22, 42, 0.98));
  }
  body#hv-investor .final-cta__inner {
    justify-content: flex-end;
    min-height: 740px;
  }
  body#hv-investor .final-cta__actions {
    display: grid;
  }
}
@media (max-width: 568px) {
  body#hv-investor .investor-hero__eyebrow {
    font-size: 1.2rem;
  }
  body#hv-investor .investor-hero__title {
    font-size: 3.8rem;
  }
  body#hv-investor .investor-hero__note {
    font-size: 1.1rem;
  }
  body#hv-investor .framework-item {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }
  body#hv-investor .framework-item__icon {
    width: 44px;
    height: 44px;
  }
  body#hv-investor .market-card {
    min-height: 0;
  }
  body#hv-investor .revenue-map__core-title {
    font-size: 3.6rem;
  }
  body#hv-investor .due-diligence__visual {
    min-height: 380px;
  }
  body#hv-investor .check-list__item {
    grid-template-columns: 38px 1fr;
  }
  body#hv-investor .project-flow__list {
    grid-template-columns: 1fr;
  }
  body#hv-investor .flow-step {
    min-height: 0;
  }
  body#hv-investor .flow-step__body {
    margin-top: 34px;
  }
  body#hv-investor .document-guide__image {
    min-height: 320px;
  }
  body#hv-investor .faq-item__question {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    padding: 24px 4px;
  }
  body#hv-investor .faq-item__answer {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 0 4px 26px;
  }
  body#hv-investor .final-cta__title {
    font-size: 3.8rem;
  }
}

/* ===== 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: #0C2A4D; 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: #E3B94F;
}
/* 大数字・番号はサムネ同様に細アウトライン風の品を（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; }
}


/* ===== BATCHB LP図解表示型オーバーライド（image-design-system v1.1 §7-2）2026-07-03 =====
   図解スロット限定: height:auto/contain・アスペクト比契約・写真調和フィルタ解除・ベール/装飾/キャプション重畳の解除。
   写真スロット（ヒーロー/CTA帯/longevity-tech背景カード）は不変更。 ===== */
body#hv-investor img[src$="/investor/site-check.jpg"],body#hv-investor img[src$="/investor/battery-detail.jpg"],body#hv-investor img[src$="/investor/operation.jpg"]{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;aspect-ratio:3/2}
main figure:has(img[src$="/investor/site-check.jpg"])::after,main figure:has(img[src$="/investor/battery-detail.jpg"])::after,main figure:has(img[src$="/investor/operation.jpg"])::after{content:none}
