/* ===== RETHEME navy (§3-3b ページテーマ制・2026-07-03) — 元は page25.css.bak_20260703 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  color: #16181c;
  background: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.3em;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  color: #ffffff;
  background: #071A31;
  text-decoration: none;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

.inner {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inner {
    width: min(100% - 60px, 1080px);
  }
}
@media (max-width: 768px) {
  .inner {
    width: calc(100% - 40px);
  }
}

.section {
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 90px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}
.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-heading__eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: #f5b500;
}
.section-heading__title {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}
.section-heading__lead {
  margin-bottom: 0;
  color: #535a62;
  font-size: 18px;
  line-height: 1.9;
}
.section-heading--light {
  color: #ffffff;
}
.section-heading--light .section-heading__eyebrow, .section-heading--light .section-heading__lead {
  color: rgba(255, 255, 255, 0.76);
}
@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading__title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .section-heading__lead {
    font-size: 16px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #071A31;
  background: #f5b500;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.button::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    box-shadow: 0 12px 28px rgba(245, 181, 0, 0.26);
    transform: translateY(-2px);
  }
}
.button--outline {
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
  background: transparent;
}
.button--outline:focus-visible {
  outline-color: #f5b500;
}
.button--white {
  color: #071A31;
  background: #ffffff;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
    min-height: 56px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.breadcrumb {
  padding: 16px 0;
  border-top: 1px solid #d7dce2;
  border-bottom: 1px solid #d7dce2;
  background: #ffffff;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #535a62;
  font-size: 13px;
  line-height: 1.5;
}
.breadcrumb__item:not(:last-child)::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.breadcrumb__link {
  text-decoration: none;
}
.breadcrumb__link:focus-visible {
  outline: 2px solid #123A63;
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 17px;
    right: 18px;
    z-index: 301;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #123A63;
    box-shadow: 0 12px 30px rgba(15, 34, 55, 0.08);
    cursor: pointer;
  }
  .sp-menu__line {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s 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;
    z-index: 300;
    visibility: hidden;
    overflow-y: auto;
    background: rgba(8, 35, 65, 0.98);
    opacity: 0;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__panel-inner {
    width: min(100% - 40px, 520px);
    margin: 0 auto;
    padding: 92px 0 44px;
  }
  .sp-menu__label {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.58);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }
  .sp-menu__nav {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__link::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }
  .sp-menu__link.is-current {
    color: #f5b500;
  }
  .sp-menu__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }
  .sp-menu__action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__action--primary {
    border-color: #f5b500;
    color: #071A31;
    background: #f5b500;
  }
}

.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: 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: 768px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

body#hv-inv-faq .faq-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #071A31;
}
body#hv-inv-faq .faq-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 35, 65, 0.98) 0%, rgba(8, 35, 65, 0.9) 42%, rgba(8, 35, 65, 0.28) 72%, rgba(8, 35, 65, 0.04) 100%), linear-gradient(0deg, rgba(8, 35, 65, 0.3) 0%, transparent 52%);
}
body#hv-inv-faq .faq-hero::after {
  position: absolute;
  top: -150px;
  left: -90px;
  z-index: 1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.02);
}
body#hv-inv-faq .faq-hero__media {
  position: absolute;
  inset: 0;
}
body#hv-inv-faq .faq-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
body#hv-inv-faq .faq-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 720px;
  padding-top: 72px;
  padding-bottom: 82px;
}
body#hv-inv-faq .faq-hero__content {
  width: min(650px, 61vw);
}
body#hv-inv-faq .faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
body#hv-inv-faq .faq-hero__eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: #f5b500;
}
body#hv-inv-faq .faq-hero__title {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}
body#hv-inv-faq .faq-hero__title-sub {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.04em;
}
body#hv-inv-faq .faq-hero__lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.95;
}
body#hv-inv-faq .faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-faq .faq-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
body#hv-inv-faq .faq-hero__note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #f5b500;
  box-shadow: 0 0 0 5px rgba(245, 181, 0, 0.16);
}
@media (max-width: 1024px) {
  body#hv-inv-faq .faq-hero__inner {
    min-height: 660px;
  }
  body#hv-inv-faq .faq-hero__content {
    width: min(650px, 72vw);
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .faq-hero {
    display: grid;
    min-height: auto;
    background: #071A31;
  }
  body#hv-inv-faq .faq-hero::before {
    background: linear-gradient(180deg, rgba(8, 35, 65, 0.12) 0%, rgba(8, 35, 65, 0.08) 100%);
  }
  body#hv-inv-faq .faq-hero::after {
    display: none;
  }
  body#hv-inv-faq .faq-hero__media {
    position: relative;
    order: 1;
    height: 310px;
  }
  body#hv-inv-faq .faq-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 62%, #071A31 100%);
  }
  body#hv-inv-faq .faq-hero__media img {
    object-position: 67% center;
  }
  body#hv-inv-faq .faq-hero__inner {
    order: 2;
    min-height: 0;
    margin-top: -44px;
    padding-top: 0;
    padding-bottom: 60px;
  }
  body#hv-inv-faq .faq-hero__content {
    width: 100%;
  }
  body#hv-inv-faq .faq-hero__eyebrow {
    margin-bottom: 16px;
  }
  body#hv-inv-faq .faq-hero__title {
    margin-bottom: 18px;
    font-size: clamp(38px, 12vw, 54px);
  }
  body#hv-inv-faq .faq-hero__lead {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.85;
  }
  body#hv-inv-faq .faq-hero__actions {
    display: grid;
  }
}
body#hv-inv-faq .faq-proof {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}
body#hv-inv-faq .faq-proof__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 32, 60, 0.1);
  list-style: none;
}
body#hv-inv-faq .faq-proof__item {
  position: relative;
  min-height: 124px;
  padding: 28px 28px 26px 76px;
}
body#hv-inv-faq .faq-proof__item:not(:last-child) {
  border-right: 1px solid #d7dce2;
}
body#hv-inv-faq .faq-proof__number {
  position: absolute;
  top: 28px;
  left: 28px;
  color: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body#hv-inv-faq .faq-proof__title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}
body#hv-inv-faq .faq-proof__text {
  margin-bottom: 0;
  color: #535a62;
  font-size: 13px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .faq-proof__item {
    padding-right: 22px;
    padding-left: 66px;
  }
  body#hv-inv-faq .faq-proof__number {
    left: 22px;
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .faq-proof {
    margin-top: -18px;
  }
  body#hv-inv-faq .faq-proof__list {
    grid-template-columns: 1fr;
  }
  body#hv-inv-faq .faq-proof__item {
    min-height: 0;
    padding: 22px 20px 20px 62px;
  }
  body#hv-inv-faq .faq-proof__item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #d7dce2;
  }
  body#hv-inv-faq .faq-proof__number {
    top: 22px;
    left: 20px;
  }
}
body#hv-inv-faq .investor-concerns {
  padding-top: 130px;
  background: #ffffff;
}
body#hv-inv-faq .investor-concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
body#hv-inv-faq .investor-concerns__card {
  position: relative;
  min-height: 310px;
  padding: 40px 34px 34px;
  overflow: hidden;
  border: 1px solid #d7dce2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 34, 55, 0.08);
}
body#hv-inv-faq .investor-concerns__card::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, rgba(14, 50, 92, 0.1), rgba(245, 181, 0, 0.1));
}
body#hv-inv-faq .investor-concerns__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: #123A63;
  background: #eef2f6;
}
body#hv-inv-faq .investor-concerns__icon svg {
  width: 28px;
  height: 28px;
}
body#hv-inv-faq .investor-concerns__title {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.45;
}
body#hv-inv-faq .investor-concerns__text {
  margin-bottom: 0;
  color: #535a62;
  line-height: 1.85;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .investor-concerns__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-faq .investor-concerns__card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .investor-concerns {
    padding-top: 98px;
  }
  body#hv-inv-faq .investor-concerns__card {
    padding: 30px 24px 28px;
  }
  body#hv-inv-faq .investor-concerns__title {
    font-size: 21px;
  }
}
body#hv-inv-faq .answer-policy {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #071A31;
}
body#hv-inv-faq .answer-policy::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(245, 181, 0, 0.12) 0%, transparent 68%);
}
body#hv-inv-faq .answer-policy__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 78px;
  align-items: center;
}
body#hv-inv-faq .answer-policy__image {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 26px 26px 140px 26px;
}
body#hv-inv-faq .answer-policy__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(8, 35, 65, 0.54) 100%);
}
body#hv-inv-faq .answer-policy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
body#hv-inv-faq .answer-policy__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-faq .answer-policy__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
body#hv-inv-faq .answer-policy__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #071A31;
  background: #f5b500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
body#hv-inv-faq .answer-policy__title {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.5;
}
body#hv-inv-faq .answer-policy__text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .answer-policy__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  body#hv-inv-faq .answer-policy__image {
    min-height: 430px;
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .answer-policy__image {
    min-height: 320px;
    border-radius: 20px 20px 90px 20px;
  }
  body#hv-inv-faq .answer-policy__item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }
  body#hv-inv-faq .answer-policy__mark {
    width: 44px;
    height: 44px;
  }
}
body#hv-inv-faq .faq-search {
  background: #f5f6f8;
}
body#hv-inv-faq .faq-search__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 30px;
  border: 1px solid #d7dce2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 34, 55, 0.08);
}
body#hv-inv-faq .faq-search__label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}
body#hv-inv-faq .faq-search__input-wrap {
  position: relative;
}
body#hv-inv-faq .faq-search__input-wrap::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid #123A63;
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}
body#hv-inv-faq .faq-search__input-wrap::after {
  position: absolute;
  top: calc(50% + 7px);
  left: 34px;
  width: 8px;
  height: 2px;
  content: "";
  background: #123A63;
  transform: rotate(45deg);
}
body#hv-inv-faq .faq-search__input {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 54px;
  border: 1px solid #d7dce2;
  border-radius: 12px;
  color: #16181c;
  background: #ffffff;
}
body#hv-inv-faq .faq-search__input:focus {
  border-color: #123A63;
  outline: 3px solid rgba(14, 50, 92, 0.12);
}
body#hv-inv-faq .faq-search__count {
  margin-bottom: 15px;
  color: #535a62;
  font-size: 13px;
  white-space: nowrap;
}
body#hv-inv-faq .faq-search__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-faq .faq-search__category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #d7dce2;
  border-radius: 999px;
  color: #071A31;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
body#hv-inv-faq .faq-search__category-link::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}
body#hv-inv-faq .faq-search__category-link:focus-visible {
  outline: 2px solid #123A63;
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .faq-search__category-link:hover {
    border-color: #123A63;
    background: #eef2f6;
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .faq-search__box {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 22px 18px;
  }
  body#hv-inv-faq .faq-search__count {
    margin: 8px 0 0;
  }
  body#hv-inv-faq .faq-search__categories {
    gap: 8px;
  }
}
body#hv-inv-faq .faq-content {
  background: #ffffff;
}
body#hv-inv-faq .faq-content__group {
  scroll-margin-top: 90px;
}
body#hv-inv-faq .faq-content__group + body#hv-inv-faq .faq-content__group {
  margin-top: 76px;
}
body#hv-inv-faq .faq-content__group-header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
body#hv-inv-faq .faq-content__group-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0C2A4D 0%, #123A63 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
body#hv-inv-faq .faq-content__group-title {
  margin-bottom: 4px;
  font-size: 31px;
  line-height: 1.4;
}
body#hv-inv-faq .faq-content__group-lead {
  margin-bottom: 0;
  color: #535a62;
  font-size: 14px;
}
body#hv-inv-faq .faq-content__list {
  display: grid;
  gap: 14px;
}
body#hv-inv-faq .faq-content__item {
  border: 1px solid #d7dce2;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body#hv-inv-faq .faq-content__item[open] {
  border-color: rgba(14, 50, 92, 0.46);
  box-shadow: 0 12px 30px rgba(15, 34, 55, 0.08);
}
body#hv-inv-faq .faq-content__question {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}
body#hv-inv-faq .faq-content__question::-webkit-details-marker {
  display: none;
}
body#hv-inv-faq .faq-content__q-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
}
body#hv-inv-faq .faq-content__question-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}
body#hv-inv-faq .faq-content__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2f6;
}
body#hv-inv-faq .faq-content__toggle::before, body#hv-inv-faq .faq-content__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: #123A63;
  transform: translate(-50%, -50%);
}
body#hv-inv-faq .faq-content__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}
body#hv-inv-faq .faq-content__item[open] body#hv-inv-faq .faq-content__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}
body#hv-inv-faq .faq-content__answer {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 0 26px 28px;
}
body#hv-inv-faq .faq-content__a-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #071A31;
  background: #f5b500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
}
body#hv-inv-faq .faq-content__answer-body p:last-child, body#hv-inv-faq .faq-content__answer-body ul:last-child {
  margin-bottom: 0;
}
body#hv-inv-faq .faq-content__answer-body p, body#hv-inv-faq .faq-content__answer-body li {
  color: #535a62;
  line-height: 1.9;
}
body#hv-inv-faq .faq-content__answer-body ul {
  margin-bottom: 16px;
}
body#hv-inv-faq .faq-content__answer-note {
  display: block;
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid #f5b500;
  color: #535a62;
  background: #f5f6f8;
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-faq .faq-content__empty {
  padding: 34px;
  border: 1px dashed #d7dce2;
  border-radius: 16px;
  color: #535a62;
  text-align: center;
  background: #f5f6f8;
}
@media (max-width: 768px) {
  body#hv-inv-faq .faq-content__group + body#hv-inv-faq .faq-content__group {
    margin-top: 58px;
  }
  body#hv-inv-faq .faq-content__group-header {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }
  body#hv-inv-faq .faq-content__group-number {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 12px;
  }
  body#hv-inv-faq .faq-content__group-title {
    font-size: 24px;
  }
  body#hv-inv-faq .faq-content__question {
    grid-template-columns: 38px 1fr 24px;
    gap: 11px;
    min-height: 0;
    padding: 18px 16px;
  }
  body#hv-inv-faq .faq-content__q-mark, body#hv-inv-faq .faq-content__a-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  body#hv-inv-faq .faq-content__question-text {
    font-size: 16px;
  }
  body#hv-inv-faq .faq-content__toggle {
    width: 24px;
    height: 24px;
  }
  body#hv-inv-faq .faq-content__answer {
    grid-template-columns: 38px 1fr;
    gap: 11px;
    padding: 0 16px 22px;
  }
  body#hv-inv-faq .faq-content__answer-body p, body#hv-inv-faq .faq-content__answer-body li {
    font-size: 14px;
    line-height: 1.85;
  }
}
body#hv-inv-faq .mid-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #123A63;
}
body#hv-inv-faq .mid-cta__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 520px;
}
body#hv-inv-faq .mid-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 74px 78px 0;
}
body#hv-inv-faq .mid-cta__eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body#hv-inv-faq .mid-cta__title {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.35;
}
body#hv-inv-faq .mid-cta__text {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}
body#hv-inv-faq .mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-faq .mid-cta__image {
  position: relative;
  min-height: 520px;
  margin-right: calc((100vw - min(1180px, 100vw - 100px)) / -2);
}
body#hv-inv-faq .mid-cta__image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #123A63 0%, transparent 28%);
}
body#hv-inv-faq .mid-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .mid-cta__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-faq .mid-cta__content {
    padding-right: 0;
  }
  body#hv-inv-faq .mid-cta__image {
    min-height: 390px;
    margin: 0 calc((100vw - min(100% - 60px, 1080px)) / -2);
  }
  body#hv-inv-faq .mid-cta__image::before {
    background: linear-gradient(180deg, #123A63 0%, transparent 30%);
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .mid-cta__content {
    padding: 64px 0 40px;
  }
  body#hv-inv-faq .mid-cta__title {
    font-size: 32px;
  }
  body#hv-inv-faq .mid-cta__text {
    font-size: 15px;
  }
  body#hv-inv-faq .mid-cta__actions {
    display: grid;
  }
  body#hv-inv-faq .mid-cta__image {
    min-height: 300px;
    margin: 0 -20px;
  }
}
body#hv-inv-faq .consultation-check {
  background: #f5f6f8;
}
body#hv-inv-faq .consultation-check__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
body#hv-inv-faq .consultation-check__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-faq .consultation-check__item {
  position: relative;
  padding: 20px 20px 20px 58px;
  border: 1px solid #d7dce2;
  border-radius: 14px;
  background: #ffffff;
}
body#hv-inv-faq .consultation-check__item::before {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 20px;
  height: 20px;
  border: 2px solid #123A63;
  border-radius: 50%;
  content: "";
}
body#hv-inv-faq .consultation-check__item::after {
  position: absolute;
  top: 27px;
  left: 28px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #123A63;
  border-left: 2px solid #123A63;
  content: "";
  transform: rotate(-45deg);
}
body#hv-inv-faq .consultation-check__item-title {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.55;
}
body#hv-inv-faq .consultation-check__item-text {
  margin-bottom: 0;
  color: #535a62;
  font-size: 13px;
  line-height: 1.75;
}
body#hv-inv-faq .consultation-check__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 120px 24px 24px 24px;
  box-shadow: 0 18px 48px rgba(7, 32, 60, 0.1);
}
body#hv-inv-faq .consultation-check__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .consultation-check__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  body#hv-inv-faq .consultation-check__image {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .consultation-check__item {
    padding: 18px 16px 18px 52px;
  }
  body#hv-inv-faq .consultation-check__item::before {
    top: 20px;
    left: 18px;
  }
  body#hv-inv-faq .consultation-check__item::after {
    top: 25px;
    left: 24px;
  }
  body#hv-inv-faq .consultation-check__image {
    min-height: 300px;
    border-radius: 72px 18px 18px 18px;
  }
}
body#hv-inv-faq .support-flow {
  background: #ffffff;
}
body#hv-inv-faq .support-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  counter-reset: support-flow;
  list-style: none;
}
body#hv-inv-faq .support-flow__item {
  position: relative;
  min-height: 280px;
  padding: 38px 30px 30px;
  border-radius: 18px;
  background: #eef2f6;
  counter-increment: support-flow;
}
body#hv-inv-faq .support-flow__item::before {
  display: block;
  margin-bottom: 28px;
  color: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  content: "STEP " counter(support-flow, decimal-leading-zero);
}
body#hv-inv-faq .support-flow__item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  content: "";
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 34, 55, 0.08);
  transform: translateY(-50%);
}
body#hv-inv-faq .support-flow__arrow {
  position: absolute;
  top: 50%;
  right: -5px;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-top: 2px solid #123A63;
  border-right: 2px solid #123A63;
  transform: translateY(-50%) rotate(45deg);
}
body#hv-inv-faq .support-flow__title {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.45;
}
body#hv-inv-faq .support-flow__text {
  margin-bottom: 0;
  color: #535a62;
  font-size: 14px;
  line-height: 1.85;
}
@media (max-width: 1024px) {
  body#hv-inv-faq .support-flow__list {
    grid-template-columns: 1fr;
  }
  body#hv-inv-faq .support-flow__item {
    min-height: 0;
  }
  body#hv-inv-faq .support-flow__item:not(:last-child)::after, body#hv-inv-faq .support-flow__arrow {
    display: none;
  }
}
body#hv-inv-faq .related-links {
  color: #ffffff;
  background: #071A31;
}
body#hv-inv-faq .related-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
body#hv-inv-faq .related-links__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
body#hv-inv-faq .related-links__card::before {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}
body#hv-inv-faq .related-links__label {
  margin-bottom: auto;
  color: #f5b500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body#hv-inv-faq .related-links__title {
  margin: 42px 0 12px;
  font-size: 21px;
  line-height: 1.5;
}
body#hv-inv-faq .related-links__text {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-faq .related-links__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
body#hv-inv-faq .related-links__more::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
body#hv-inv-faq .related-links__card:focus-visible {
  outline: 2px solid #f5b500;
  outline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .related-links__card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
  }
}
@media (max-width: 1024px) {
  body#hv-inv-faq .related-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  body#hv-inv-faq .related-links__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-faq .related-links__card {
    min-height: 220px;
  }
}
body#hv-inv-faq .final-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: #071A31;
}
body#hv-inv-faq .final-cta__media {
  position: absolute;
  inset: 0;
}
body#hv-inv-faq .final-cta__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 35, 65, 0.96) 0%, rgba(8, 35, 65, 0.78) 48%, rgba(8, 35, 65, 0.2) 100%), linear-gradient(0deg, rgba(8, 35, 65, 0.36) 0%, transparent 60%);
}
body#hv-inv-faq .final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
body#hv-inv-faq .final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 650px;
}
body#hv-inv-faq .final-cta__content {
  width: min(660px, 62vw);
}
body#hv-inv-faq .final-cta__eyebrow {
  margin-bottom: 20px;
  color: #f5b500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body#hv-inv-faq .final-cta__title {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.8vw, 66px);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
body#hv-inv-faq .final-cta__text {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}
body#hv-inv-faq .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-faq .final-cta__note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}
@media (max-width: 768px) {
  body#hv-inv-faq .final-cta {
    min-height: 620px;
  }
  body#hv-inv-faq .final-cta__media::after {
    background: linear-gradient(180deg, rgba(8, 35, 65, 0.46) 0%, rgba(8, 35, 65, 0.94) 62%, #071A31 100%);
  }
  body#hv-inv-faq .final-cta__media img {
    object-position: 62% center;
  }
  body#hv-inv-faq .final-cta__inner {
    align-items: flex-end;
    min-height: 620px;
    padding-bottom: 58px;
  }
  body#hv-inv-faq .final-cta__content {
    width: 100%;
  }
  body#hv-inv-faq .final-cta__title {
    font-size: 38px;
  }
  body#hv-inv-faq .final-cta__text {
    font-size: 15px;
  }
  body#hv-inv-faq .final-cta__actions {
    display: grid;
  }
}
body#hv-inv-faq .page-note {
  padding: 30px 0 0;
  color: #535a62;
  background: #ffffff;
}
body#hv-inv-faq .page-note__text {
  margin-bottom: 0;
  padding: 18px 20px;
  border: 1px solid #d7dce2;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.8;
}

/* ===== 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-inv-faq .answer-policy__image,body#hv-inv-faq .consultation-check__image{min-height:0;border-radius:14px}
body#hv-inv-faq .answer-policy__image::after{display:none}
body#hv-inv-faq .answer-policy__image picture,body#hv-inv-faq .consultation-check__image picture{position:static;display:block;height:auto}
body#hv-inv-faq .answer-policy__image img,body#hv-inv-faq .consultation-check__image img{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:8/5}
main figure:has(img[src$="/faq/safety-detail.jpg"])::after,main figure:has(img[src$="/faq/consultation.jpg"])::after{content:none}

/* ===== UPLIFT batch3 hv navy (uplift_20260705) — 下層格上げ再開指示書 2026-07-05 ===== */
:root {
  --u-theme: #0C2A4D;
  --u-deep: #071A31;
  --u-tint: #F2F5F9;
  --u-gold: #F5B500;
  --u-goldline: #E3B94F;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- 基礎リズム / 見出し / リンク ---- */
body#hv-inv-faq .skip-link { background: var(--u-deep); }
body#hv-inv-faq .section { padding: 96px 0; }
body#hv-inv-faq .section-heading { margin-bottom: 48px; }
body#hv-inv-faq .section-heading__eyebrow { margin-bottom: 16px; color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-faq .section-heading__eyebrow::before { width: 40px; height: 2px; background: var(--u-gold); }
body#hv-inv-faq .section-heading__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-faq .section-heading__lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#hv-inv-faq .section-heading--light .section-heading__eyebrow { color: var(--u-goldline); }
body#hv-inv-faq .section-heading--light .section-heading__lead { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-faq main a:not([class]) { color: var(--u-theme); text-decoration: underline; }

/* ---- ボタン（主CTA=金 / 副=白アウトライン） ---- */
body#hv-inv-faq .button { min-height: 56px; padding: 16px 32px; border-radius: 999px; color: var(--u-ink); background: var(--u-gold); font-size: 16px; box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); }
body#hv-inv-faq .button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; box-shadow: none; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32); filter: brightness(0.92); }
  body#hv-inv-faq .button--outline:hover { background: rgba(255, 255, 255, 0.08); box-shadow: none; filter: none; }
}
body#hv-inv-faq .button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
body#hv-inv-faq .button--outline:focus-visible { outline-color: var(--u-gold); }

/* ---- ヒーロー（--u-deepグラデ×白明朝31px×goldline eyebrowアニメ） ---- */
body#hv-inv-faq .faq-hero { background: var(--u-deep); }
body#hv-inv-faq .faq-hero::before {
  background: linear-gradient(100deg, rgba(7, 26, 49, 0.97) 0%, rgba(7, 26, 49, 0.88) 42%, rgba(12, 42, 77, 0.3) 74%, rgba(7, 26, 49, 0.08) 100%), linear-gradient(0deg, rgba(7, 26, 49, 0.32) 0%, transparent 52%);
}
body#hv-inv-faq .faq-hero::after { border-color: rgba(227, 185, 79, 0.16); box-shadow: 0 0 0 90px rgba(227, 185, 79, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.02); }
body#hv-inv-faq .faq-hero__eyebrow { color: var(--u-goldline); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-faq .faq-hero__eyebrow::before { width: 40px; height: 2px; background: var(--u-goldline); }
body#hv-inv-faq .faq-hero__title {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
body#hv-inv-faq .faq-hero__title-sub { color: rgba(255, 255, 255, 0.78); font-size: 13px; letter-spacing: 0.06em; }
body#hv-inv-faq .faq-hero__lead { color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.9; }
body#hv-inv-faq .faq-hero__note { color: rgba(255, 255, 255, 0.7); font-size: 13px; }
@keyframes uplift25Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#hv-inv-faq .faq-hero__eyebrow { animation: uplift25Fade 0.6s ease 0s both; }
body#hv-inv-faq .faq-hero__title { animation: uplift25Fade 0.6s ease 0.12s both; }
body#hv-inv-faq .faq-hero__lead { animation: uplift25Fade 0.6s ease 0.24s both; }
body#hv-inv-faq .faq-hero__actions { animation: uplift25Fade 0.6s ease 0.36s both; }
body#hv-inv-faq .faq-hero__note { animation: uplift25Fade 0.6s ease 0.48s both; }
@media (prefers-reduced-motion: reduce) {
  body#hv-inv-faq .faq-hero__eyebrow,
  body#hv-inv-faq .faq-hero__title,
  body#hv-inv-faq .faq-hero__lead,
  body#hv-inv-faq .faq-hero__actions,
  body#hv-inv-faq .faq-hero__note { animation: none; }
}

/* ---- 3つの約束バー ---- */
body#hv-inv-faq .faq-proof__list { border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 12px 34px rgba(7, 26, 49, 0.08); }
body#hv-inv-faq .faq-proof__item:not(:last-child) { border-right-color: var(--u-border); }
body#hv-inv-faq .faq-proof__number { color: var(--u-theme); font-size: 13px; }
body#hv-inv-faq .faq-proof__text { color: var(--u-sub); font-size: 13px; }
@media (max-width: 768px) {
  body#hv-inv-faq .faq-proof__item:not(:last-child) { border-bottom-color: var(--u-border); }
}

/* ---- 3つの不安（白地カード） ---- */
body#hv-inv-faq .investor-concerns { padding-top: 96px; }
body#hv-inv-faq .investor-concerns__card { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06); }
body#hv-inv-faq .investor-concerns__card::after { background: var(--u-tint); }
body#hv-inv-faq .investor-concerns__icon { border-radius: 12px; color: var(--u-theme); background: var(--u-tint); }
body#hv-inv-faq .investor-concerns__title { font-size: 20px; }
body#hv-inv-faq .investor-concerns__text { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- 回答ポリシー（濃色バンド1・図解スロット.answer-policy__imageは不干渉） ---- */
body#hv-inv-faq .answer-policy { background: var(--u-deep); }
body#hv-inv-faq .answer-policy::before { background: radial-gradient(circle, rgba(227, 185, 79, 0.1) 0%, transparent 68%); }
body#hv-inv-faq .answer-policy__item { border-color: rgba(227, 185, 79, 0.28); border-radius: 12px; background: rgba(255, 255, 255, 0.06); }
body#hv-inv-faq .answer-policy__mark {
  border: 1px solid var(--u-goldline);
  color: var(--u-goldline);
  background: transparent;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
body#hv-inv-faq .answer-policy__title { font-size: 18px; }
body#hv-inv-faq .answer-policy__text { color: rgba(255, 255, 255, 0.72); font-size: 14px; }

/* ---- 検索（淡地） ---- */
body#hv-inv-faq .faq-search { background: var(--u-tint); }
body#hv-inv-faq .faq-search__box { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06); }
body#hv-inv-faq .faq-search__input { border-color: var(--u-border); border-radius: 6px; }
body#hv-inv-faq .faq-search__input:focus { border-color: var(--u-theme); outline: 2px solid var(--u-theme); outline-offset: 2px; }
body#hv-inv-faq .faq-search__input-wrap::before { border-color: var(--u-theme); }
body#hv-inv-faq .faq-search__input-wrap::after { background: var(--u-theme); }
body#hv-inv-faq .faq-search__count { color: var(--u-sub); font-size: 13px; }
body#hv-inv-faq .faq-search__category-link { border-color: var(--u-border); color: var(--u-theme); font-size: 13px; }
body#hv-inv-faq .faq-search__category-link:focus-visible { outline: 2px solid var(--u-theme); }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .faq-search__category-link:hover { border-color: var(--u-theme); background: var(--u-tint); }
}

/* ---- FAQ本文 ---- */
/* 既存バグ修正: サーバ側 `.faq-content__group + body# .faq-content__group` は無効セレクタで
   グループ間マージンが効いていない → 有効なセレクタで余白リズムを再定義 */
body#hv-inv-faq .faq-content__group + .faq-content__group { margin-top: 96px; }
body#hv-inv-faq .faq-content__group-number {
  border-radius: 12px;
  background: var(--u-theme);
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 13px;
}
body#hv-inv-faq .faq-content__group-title { font-size: 25px; letter-spacing: 0.03em; }
body#hv-inv-faq .faq-content__group-lead { color: var(--u-sub); font-size: 14px; }
body#hv-inv-faq .faq-content__item { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-faq .faq-content__item[open] { border-color: var(--u-theme); box-shadow: 0 12px 30px rgba(7, 26, 49, 0.08); }
body#hv-inv-faq .faq-content__q-mark { background: var(--u-theme); font-size: 16px; }
body#hv-inv-faq .faq-content__a-mark { color: var(--u-theme); background: var(--u-tint); font-size: 16px; }
body#hv-inv-faq .faq-content__question-text { font-size: 18px; }
body#hv-inv-faq .faq-content__toggle { background: var(--u-tint); }
body#hv-inv-faq .faq-content__toggle::before,
body#hv-inv-faq .faq-content__toggle::after { background: var(--u-theme); }
/* 既存バグ修正: サーバ側 `[open] body# .faq-content__toggle::after` は無効セレクタで
   開閉時に＋が−へ変化しない → 有効なセレクタで再定義 */
body#hv-inv-faq .faq-content__item[open] .faq-content__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
body#hv-inv-faq .faq-content__answer-body p,
body#hv-inv-faq .faq-content__answer-body li { color: var(--u-sub); font-size: 16px; }
body#hv-inv-faq .faq-content__answer-note { border-left-color: var(--u-goldline); background: var(--u-tint); font-size: 13px; }
body#hv-inv-faq .faq-content__empty { border-color: var(--u-border); border-radius: 12px; color: var(--u-sub); background: var(--u-tint); }

/* ---- 中間CTA（濃色締めバンド1） ---- */
body#hv-inv-faq .mid-cta { background: var(--u-theme); }
body#hv-inv-faq .mid-cta__eyebrow { color: var(--u-goldline); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-faq .mid-cta__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-faq .mid-cta__text { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }
body#hv-inv-faq .mid-cta__image::before { background: linear-gradient(90deg, var(--u-theme) 0%, transparent 28%); }
@media (max-width: 1024px) {
  body#hv-inv-faq .mid-cta__image::before { background: linear-gradient(180deg, var(--u-theme) 0%, transparent 30%); }
}

/* ---- 相談前チェック（淡地・図解スロット.consultation-check__imageは不干渉） ---- */
body#hv-inv-faq .consultation-check { background: var(--u-tint); }
body#hv-inv-faq .consultation-check__item { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-faq .consultation-check__item::before { border-color: var(--u-theme); }
body#hv-inv-faq .consultation-check__item::after { border-bottom-color: var(--u-theme); border-left-color: var(--u-theme); }
body#hv-inv-faq .consultation-check__item-title { font-size: 16px; }
body#hv-inv-faq .consultation-check__item-text { color: var(--u-sub); font-size: 13px; }

/* ---- 回答フロー ---- */
body#hv-inv-faq .support-flow__item { border-radius: 12px; background: var(--u-tint); }
body#hv-inv-faq .support-flow__item::before {
  color: var(--u-theme);
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}
body#hv-inv-faq .support-flow__item:not(:last-child)::after { box-shadow: 0 8px 24px rgba(7, 26, 49, 0.1); }
body#hv-inv-faq .support-flow__arrow { border-top-color: var(--u-theme); border-right-color: var(--u-theme); }
body#hv-inv-faq .support-flow__title { font-size: 20px; }
body#hv-inv-faq .support-flow__text { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- 関連リンク（濃地） ---- */
body#hv-inv-faq .related-links { background: var(--u-deep); }
body#hv-inv-faq .related-links__card { border-color: rgba(255, 255, 255, 0.14); border-radius: 12px; }
body#hv-inv-faq .related-links__card::before { border-color: rgba(227, 185, 79, 0.16); }
body#hv-inv-faq .related-links__label {
  color: var(--u-goldline);
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
}
body#hv-inv-faq .related-links__title { font-size: 20px; }
body#hv-inv-faq .related-links__text { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
body#hv-inv-faq .related-links__card:focus-visible { outline: 2px solid var(--u-gold); }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .related-links__card:hover { border-color: rgba(227, 185, 79, 0.5); }
}

/* ---- 最終CTA（濃色締めバンド2） ---- */
body#hv-inv-faq .final-cta { background: var(--u-deep); }
body#hv-inv-faq .final-cta__media::after {
  background: linear-gradient(100deg, rgba(7, 26, 49, 0.96) 0%, rgba(7, 26, 49, 0.8) 48%, rgba(12, 42, 77, 0.3) 100%), linear-gradient(0deg, rgba(7, 26, 49, 0.36) 0%, transparent 60%);
}
body#hv-inv-faq .final-cta__eyebrow { color: var(--u-goldline); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-faq .final-cta__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-faq .final-cta__text { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }
body#hv-inv-faq .final-cta__note { color: rgba(255, 255, 255, 0.66); font-size: 13px; }
@media (max-width: 768px) {
  body#hv-inv-faq .final-cta__media::after { background: linear-gradient(180deg, rgba(7, 26, 49, 0.46) 0%, rgba(7, 26, 49, 0.94) 62%, var(--u-deep) 100%); }
}

/* ---- ページ注記 ---- */
body#hv-inv-faq .page-note__text { border-color: var(--u-border); border-radius: 12px; color: var(--u-sub); font-size: 13px; }

/* ---- レスポンシブ（96→48pxリズム / タイプスケール） ---- */
@media (max-width: 900px) {
  body#hv-inv-faq .section { padding: 48px 0; }
  body#hv-inv-faq .investor-concerns { padding-top: 48px; }
  body#hv-inv-faq .faq-content__group + .faq-content__group { margin-top: 48px; }
}
@media (max-width: 768px) {
  body#hv-inv-faq .section-heading { margin-bottom: 32px; }
  body#hv-inv-faq .section-heading__title { font-size: 20px; }
  body#hv-inv-faq .section-heading__lead { font-size: 16px; }
  body#hv-inv-faq .faq-hero__title { font-size: 25px; line-height: 1.6; }
  body#hv-inv-faq .faq-hero__lead { font-size: 16px; }
  body#hv-inv-faq .faq-content__group-title { font-size: 20px; }
  body#hv-inv-faq .faq-content__question-text { font-size: 16px; }
  body#hv-inv-faq .mid-cta__title { font-size: 20px; }
  body#hv-inv-faq .mid-cta__text { font-size: 16px; }
  body#hv-inv-faq .final-cta__title { font-size: 20px; }
  body#hv-inv-faq .final-cta__text { font-size: 16px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   hv-inv-faq は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#hv-inv-faq .header__actions { background: #1E8A58; }
body#hv-inv-faq .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#hv-inv-faq .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#hv-inv-faq .header__lang-link.is-current { background: #EDF6F1; }
body#hv-inv-faq .header__lang-button:focus-visible,
body#hv-inv-faq .header__lang-link:focus-visible,
body#hv-inv-faq .header__action-link:focus-visible,
body#hv-inv-faq .header__nav-link:focus-visible,
body#hv-inv-faq .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-faq .header__lang-button:hover { border-color: #1E8A58; }
  body#hv-inv-faq .header__lang-link:hover { background: #EDF6F1; }
  body#hv-inv-faq .header__nav-link:hover { color: #1E8A58; }
}
