/* ===== RETHEME navy (§3-3b ページテーマ制・2026-07-03) — 元は page23.css.bak_20260703 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #171c21;
  background: #fff;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: #071A31;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

#wrapper,
#contents {
  min-width: 0;
}

.inner {
  width: min(100% - 100px, 1200px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section--compact {
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #123A63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading__eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-heading__title {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.section-heading__lead {
  margin-bottom: 0;
  color: #5f666f;
  font-size: 17px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #171c21;
  background: #f5b500;
  box-shadow: 0 12px 30px rgba(23, 28, 33, 0.16);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button--secondary {
  border-color: #b7bfc9;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.button--light {
  background: #fff;
}

.button:focus-visible,
.breadcrumb__link:focus-visible,
.floating-cta__link:focus-visible,
.sp-menu__button:focus-visible,
.sp-menu__link:focus-visible {
  outline: 3px solid #f5b500;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    box-shadow: 0 16px 34px rgba(23, 28, 33, 0.2);
    transform: translateY(-2px);
  }
}
.breadcrumb {
  border-top: 1px solid #e5e8ec;
  border-bottom: 1px solid #e5e8ec;
  background: #fff;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100% - 100px, 1200px);
  margin: 0 auto;
  padding: 14px 0;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #666d75;
  font-size: 12px;
}

.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;
}

.sp-menu {
  display: none;
}

.floating-cta {
  display: none;
}

@media (max-width: 850px) {
  .inner,
  .breadcrumb__list {
    width: min(100% - 48px, 720px);
  }
  .section {
    padding: 84px 0;
  }
  .section--compact {
    padding: 68px 0;
  }
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 15px;
    right: 16px;
    z-index: 1200;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #123A63;
    box-shadow: 0 8px 20px rgba(14, 50, 92, 0.25);
    cursor: pointer;
  }
  .sp-menu__line {
    width: 18px;
    height: 2px;
    background: #fff;
    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: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 88px 30px 40px;
    visibility: hidden;
    background: rgba(8, 23, 41, 0.98);
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__nav {
    display: grid;
    gap: 8px;
  }
  .sp-menu__link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }
  .floating-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1000;
    display: block;
  }
  .floating-cta__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    background: #f5b500;
    box-shadow: 0 12px 28px rgba(23, 28, 33, 0.24);
    font-weight: 700;
    text-decoration: none;
  }
}
@media (max-width: 568px) {
  .inner,
  .breadcrumb__list {
    width: calc(100% - 40px);
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading__title {
    font-size: 34px;
  }
  .section-heading__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.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%, #0C2A4D 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: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

body#hv-inv-requirements .requirements-hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(46, 101, 163, 0.12), transparent 35%), linear-gradient(120deg, #f8f9fb 0%, #edf1f5 55%, #dbe2ea 100%);
}
body#hv-inv-requirements .requirements-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  align-items: center;
  gap: 70px;
  width: min(100% - 100px, 1380px);
  min-height: 740px;
  margin: 0 auto;
  padding: 88px 0 78px;
}
body#hv-inv-requirements .requirements-hero__copy {
  padding-left: max(0px, (100vw - 1380px) / 2);
}
body#hv-inv-requirements .requirements-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(14, 50, 92, 0.2);
  border-radius: 999px;
  color: #123A63;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body#hv-inv-requirements .requirements-hero__title {
  max-width: 760px;
  margin-bottom: 26px;
  color: #101c29;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
body#hv-inv-requirements .requirements-hero__title-accent {
  color: #123A63;
}
body#hv-inv-requirements .requirements-hero__lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: #404953;
  font-size: 18px;
  line-height: 2;
}
body#hv-inv-requirements .requirements-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-requirements .requirements-hero__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 660px;
  margin: 22px 0 0;
  color: #666d75;
  font-size: 12px;
  line-height: 1.7;
}
body#hv-inv-requirements .requirements-hero__note::before {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "i";
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}
body#hv-inv-requirements .requirements-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 610px;
  margin-right: -7vw;
  overflow: hidden;
  border-radius: 44px 0 0 44px;
  box-shadow: 0 36px 70px rgba(17, 32, 50, 0.2);
}
body#hv-inv-requirements .requirements-hero__visual picture,
body#hv-inv-requirements .requirements-hero__visual img {
  width: 100%;
  height: 100%;
}
body#hv-inv-requirements .requirements-hero__visual img {
  object-fit: cover;
  object-position: 58% center;
}
body#hv-inv-requirements .requirements-hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 29, 49, 0.08), transparent 40%);
  pointer-events: none;
}
body#hv-inv-requirements .requirements-hero__status {
  position: absolute;
  bottom: 32px;
  left: -42px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: min(330px, 80%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(17, 32, 50, 0.2);
  backdrop-filter: blur(10px);
}
body#hv-inv-requirements .requirements-hero__status-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: #123A63;
  font-size: 22px;
  place-items: center;
}
body#hv-inv-requirements .requirements-hero__status-label {
  display: block;
  margin-bottom: 4px;
  color: #6c747d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
body#hv-inv-requirements .requirements-hero__status-text {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
body#hv-inv-requirements .placeholder-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 27, 45, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}
body#hv-inv-requirements .decision {
  position: relative;
  background: #fff;
}
body#hv-inv-requirements .decision__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}
body#hv-inv-requirements .decision__visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 34px 34px 0;
  box-shadow: 0 26px 60px rgba(20, 38, 59, 0.13);
}
body#hv-inv-requirements .decision__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body#hv-inv-requirements .decision__content {
  max-width: 660px;
  padding-right: max(50px, (100vw - 1200px) / 2);
}
body#hv-inv-requirements .decision__summary {
  margin-bottom: 30px;
  padding-left: 26px;
  border-left: 4px solid #f5b500;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
body#hv-inv-requirements .decision__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .decision__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #dce0e5;
}
body#hv-inv-requirements .decision__number {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #123A63;
  background: #e9eef3;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  place-items: center;
}
body#hv-inv-requirements .decision__item-title {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 700;
}
body#hv-inv-requirements .decision__item-text {
  margin-bottom: 0;
  color: #5f666f;
  font-size: 14px;
  line-height: 1.8;
}
body#hv-inv-requirements .conditions {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), #071A31;
  background-size: 48px 48px;
}
body#hv-inv-requirements .conditions::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.02);
}
body#hv-inv-requirements .conditions .section-heading__eyebrow,
body#hv-inv-requirements .conditions .section-heading__lead {
  color: #c7d2df;
}
body#hv-inv-requirements .conditions__intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}
body#hv-inv-requirements .conditions__legend {
  display: flex;
  gap: 16px;
  color: #d6dee8;
  font-size: 12px;
}
body#hv-inv-requirements .conditions__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
body#hv-inv-requirements .conditions__legend-item::before {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  content: "";
  background: #f5b500;
}
body#hv-inv-requirements .conditions__legend-item--review::before {
  background: #7293b9;
}
body#hv-inv-requirements .conditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
body#hv-inv-requirements .conditions__card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}
body#hv-inv-requirements .conditions__card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}
body#hv-inv-requirements .conditions__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: #071A31;
  background: #f5b500;
  font-size: 22px;
  place-items: center;
}
body#hv-inv-requirements .conditions__title {
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
}
body#hv-inv-requirements .conditions__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .conditions__item {
  position: relative;
  padding-left: 28px;
  color: #e4eaf0;
  font-size: 14px;
  line-height: 1.75;
}
body#hv-inv-requirements .conditions__item::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  content: "";
}
body#hv-inv-requirements .conditions__item::after {
  position: absolute;
  top: 0.72em;
  left: 4px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #f5b500;
  border-left: 2px solid #f5b500;
  content: "";
  transform: rotate(-45deg);
}
body#hv-inv-requirements .conditions__note {
  margin: 28px 0 0;
  color: #b8c4d1;
  font-size: 12px;
  line-height: 1.8;
}
body#hv-inv-requirements .pitfalls {
  background: #f3f5f7;
}
body#hv-inv-requirements .pitfalls__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 70px;
}
body#hv-inv-requirements .pitfalls__list {
  display: grid;
  gap: 18px;
}
body#hv-inv-requirements .pitfalls__item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 38, 59, 0.06);
}
body#hv-inv-requirements .pitfalls__number {
  color: #123A63;
  font-family: Arial, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.3;
}
body#hv-inv-requirements .pitfalls__title {
  margin-bottom: 8px;
  font-size: 19px;
}
body#hv-inv-requirements .pitfalls__text {
  margin-bottom: 0;
  color: #606770;
  font-size: 14px;
  line-height: 1.85;
}
body#hv-inv-requirements .pitfalls__visual {
  position: sticky;
  top: 30px;
  align-self: start;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(20, 38, 59, 0.13);
}
body#hv-inv-requirements .pitfalls__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-inv-requirements .diagnosis {
  position: relative;
  overflow: hidden;
  background: #fff;
}
body#hv-inv-requirements .diagnosis__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #123A63;
  box-shadow: 0 28px 70px rgba(14, 50, 92, 0.18);
}
body#hv-inv-requirements .diagnosis__content {
  padding: 64px;
  color: #fff;
}
body#hv-inv-requirements .diagnosis__eyebrow {
  margin-bottom: 16px;
  color: #bccad9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
body#hv-inv-requirements .diagnosis__title {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.35;
}
body#hv-inv-requirements .diagnosis__lead {
  margin-bottom: 30px;
  color: #e2e8ef;
  line-height: 1.95;
}
body#hv-inv-requirements .diagnosis__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .diagnosis__item {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.6;
}
body#hv-inv-requirements .diagnosis__item::before {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: #f5b500;
}
body#hv-inv-requirements .diagnosis__item::after {
  position: absolute;
  top: 20px;
  left: 19px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #182432;
  border-left: 2px solid #182432;
  content: "";
  transform: rotate(-45deg);
}
body#hv-inv-requirements .diagnosis__visual {
  position: relative;
  min-height: 630px;
}
body#hv-inv-requirements .diagnosis__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body#hv-inv-requirements .documents {
  background: #f5f6f8;
}
body#hv-inv-requirements .documents__intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
body#hv-inv-requirements .documents__notice {
  padding: 24px;
  border-left: 4px solid #f5b500;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 38, 59, 0.06);
}
body#hv-inv-requirements .documents__notice-title {
  margin-bottom: 8px;
  color: #123A63;
  font-size: 15px;
  font-weight: 700;
}
body#hv-inv-requirements .documents__notice-text {
  margin-bottom: 0;
  color: #5f666f;
  font-size: 13px;
  line-height: 1.75;
}
body#hv-inv-requirements .documents__stages {
  display: grid;
  gap: 18px;
}
body#hv-inv-requirements .documents__stage {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 38, 59, 0.07);
}
body#hv-inv-requirements .documents__stage-head {
  padding: 30px;
  color: #fff;
  background: #123A63;
}
body#hv-inv-requirements .documents__stage:nth-child(2) .documents__stage-head {
  background: #17406f;
}
body#hv-inv-requirements .documents__stage:nth-child(3) .documents__stage-head {
  background: #23384f;
}
body#hv-inv-requirements .documents__stage-number {
  display: block;
  margin-bottom: 14px;
  color: #f5b500;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
body#hv-inv-requirements .documents__stage-title {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5;
}
body#hv-inv-requirements .documents__stage-body {
  padding: 30px 34px;
}
body#hv-inv-requirements .documents__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .documents__item {
  position: relative;
  padding-left: 22px;
  color: #424b55;
  font-size: 14px;
  line-height: 1.7;
}
body#hv-inv-requirements .documents__item::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #0C2A4D;
}
body#hv-inv-requirements .documents__source {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
  margin-top: 68px;
  padding: 44px;
  border-radius: 28px;
  background: #fff;
}
body#hv-inv-requirements .documents__source-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
}
body#hv-inv-requirements .documents__source-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-inv-requirements .documents__source-title {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.45;
}
body#hv-inv-requirements .documents__source-text {
  margin-bottom: 18px;
  color: #5f666f;
  line-height: 1.9;
}
body#hv-inv-requirements .documents__source-note {
  margin-bottom: 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #edf1f5;
  color: #424b55;
  font-size: 12px;
  line-height: 1.75;
}
body#hv-inv-requirements .process {
  background: #fff;
}
body#hv-inv-requirements .process__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .process__flow::before {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: #cdd4db;
}
body#hv-inv-requirements .process__item {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}
body#hv-inv-requirements .process__number {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #123A63;
  box-shadow: 0 0 0 1px #bac4d0;
  font-family: Arial, sans-serif;
  font-weight: 700;
  place-items: center;
}
body#hv-inv-requirements .process__title {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
body#hv-inv-requirements .process__text {
  margin-bottom: 0;
  color: #646b74;
  font-size: 12px;
  line-height: 1.7;
}
body#hv-inv-requirements .alternatives {
  overflow: hidden;
  background: #0b1c2f;
}
body#hv-inv-requirements .alternatives__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}
body#hv-inv-requirements .alternatives__visual {
  position: relative;
  min-height: 560px;
  margin-left: -8vw;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
}
body#hv-inv-requirements .alternatives__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#hv-inv-requirements .alternatives__content {
  color: #fff;
}
body#hv-inv-requirements .alternatives__eyebrow {
  margin-bottom: 16px;
  color: #9bb0c8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
body#hv-inv-requirements .alternatives__title {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.35;
}
body#hv-inv-requirements .alternatives__lead {
  margin-bottom: 28px;
  color: #d3dbe5;
  line-height: 1.95;
}
body#hv-inv-requirements .alternatives__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
body#hv-inv-requirements .alternatives__item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #e4e9ef;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  line-height: 1.65;
}
body#hv-inv-requirements .faq {
  background: #f6f7f9;
}
body#hv-inv-requirements .faq__list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
body#hv-inv-requirements .faq__item {
  overflow: hidden;
  border: 1px solid #d9dde2;
  border-radius: 16px;
  background: #fff;
}
body#hv-inv-requirements .faq__summary {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 64px 24px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}
body#hv-inv-requirements .faq__summary::-webkit-details-marker {
  display: none;
}
body#hv-inv-requirements .faq__summary::before {
  flex: 0 0 auto;
  color: #123A63;
  content: "Q";
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
body#hv-inv-requirements .faq__summary::after {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 16px;
  height: 16px;
  content: "";
  background: linear-gradient(#123A63, #123A63) center/100% 2px no-repeat, linear-gradient(#123A63, #123A63) center/2px 100% no-repeat;
  transition: transform 0.2s ease;
}
body#hv-inv-requirements .faq__item[open] .faq__summary::after {
  transform: rotate(45deg);
}
body#hv-inv-requirements .faq__answer {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 0 28px 26px;
  color: #5f666f;
  line-height: 1.9;
}
body#hv-inv-requirements .faq__answer::before {
  color: #f5b500;
  content: "A";
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}
body#hv-inv-requirements .faq__answer p {
  margin-bottom: 0;
}
body#hv-inv-requirements .final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #0b1c2f;
}
body#hv-inv-requirements .final-cta__background {
  position: absolute;
  inset: 0;
}
body#hv-inv-requirements .final-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body#hv-inv-requirements .final-cta__background::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 19, 34, 0.92) 0%, rgba(6, 19, 34, 0.8) 48%, rgba(6, 19, 34, 0.4) 100%);
}
body#hv-inv-requirements .final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
}
body#hv-inv-requirements .final-cta__content {
  max-width: 740px;
}
body#hv-inv-requirements .final-cta__eyebrow {
  margin-bottom: 16px;
  color: #acbdd1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
body#hv-inv-requirements .final-cta__title {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}
body#hv-inv-requirements .final-cta__lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: #e1e7ee;
  font-size: 17px;
  line-height: 2;
}
body#hv-inv-requirements .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-requirements .related-links {
  border-top: 1px solid #e0e4e8;
  background: #fff;
}
body#hv-inv-requirements .related-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body#hv-inv-requirements .related-links__link {
  position: relative;
  display: block;
  min-height: 150px;
  padding: 26px 58px 26px 26px;
  border: 1px solid #dbe0e5;
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
body#hv-inv-requirements .related-links__label {
  display: block;
  margin-bottom: 10px;
  color: #123A63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
body#hv-inv-requirements .related-links__title {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.6;
}
body#hv-inv-requirements .related-links__link::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #123A63;
  border-right: 2px solid #123A63;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-requirements .related-links__link:hover {
    border-color: #123A63;
    transform: translateY(-2px);
  }
}
@media (max-width: 1180px) {
  body#hv-inv-requirements .requirements-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 45px;
    width: calc(100% - 70px);
  }
  body#hv-inv-requirements .requirements-hero__visual {
    margin-right: -35px;
  }
  body#hv-inv-requirements .decision__grid {
    gap: 55px;
  }
  body#hv-inv-requirements .pitfalls__layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 45px;
  }
}
@media (max-width: 850px) {
  body#hv-inv-requirements .requirements-hero {
    min-height: auto;
  }
  body#hv-inv-requirements .requirements-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    width: min(100% - 48px, 720px);
    min-height: auto;
    padding: 64px 0 70px;
  }
  body#hv-inv-requirements .requirements-hero__copy {
    padding-left: 0;
  }
  body#hv-inv-requirements .requirements-hero__title {
    font-size: 58px;
  }
  body#hv-inv-requirements .requirements-hero__visual {
    min-height: 500px;
    margin-right: 0;
    border-radius: 26px;
  }
  body#hv-inv-requirements .requirements-hero__status {
    right: 22px;
    bottom: 22px;
    left: auto;
  }
  body#hv-inv-requirements .decision__grid,
  body#hv-inv-requirements .diagnosis__panel,
  body#hv-inv-requirements .documents__source,
  body#hv-inv-requirements .alternatives__layout {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .decision__visual {
    min-height: 480px;
    margin-right: 24px;
  }
  body#hv-inv-requirements .decision__content {
    max-width: none;
    padding: 0 24px;
  }
  body#hv-inv-requirements .conditions__intro,
  body#hv-inv-requirements .documents__intro {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .conditions__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .conditions__card {
    min-height: auto;
  }
  body#hv-inv-requirements .pitfalls__layout {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .pitfalls__visual {
    position: relative;
    top: 0;
    min-height: 480px;
  }
  body#hv-inv-requirements .diagnosis__content {
    padding: 54px 42px;
  }
  body#hv-inv-requirements .diagnosis__visual {
    min-height: 440px;
  }
  body#hv-inv-requirements .documents__source {
    padding: 34px;
  }
  body#hv-inv-requirements .process__flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body#hv-inv-requirements .process__flow::before {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 34px;
    width: 2px;
    height: auto;
  }
  body#hv-inv-requirements .process__item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 0;
    text-align: left;
  }
  body#hv-inv-requirements .process__number {
    margin: 0;
  }
  body#hv-inv-requirements .process__copy {
    padding-top: 8px;
  }
  body#hv-inv-requirements .alternatives__visual {
    min-height: 460px;
    margin-left: -24px;
    margin-right: 24px;
  }
  body#hv-inv-requirements .related-links__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 568px) {
  body#hv-inv-requirements .requirements-hero__inner {
    width: calc(100% - 40px);
    padding-top: 44px;
  }
  body#hv-inv-requirements .requirements-hero__title {
    font-size: 43px;
    line-height: 1.18;
  }
  body#hv-inv-requirements .requirements-hero__lead {
    font-size: 16px;
    line-height: 1.9;
  }
  body#hv-inv-requirements .requirements-hero__visual {
    min-height: 390px;
  }
  body#hv-inv-requirements .requirements-hero__status {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
  body#hv-inv-requirements .decision__visual {
    min-height: 370px;
    margin-right: 20px;
  }
  body#hv-inv-requirements .decision__content {
    padding: 0 20px;
  }
  body#hv-inv-requirements .decision__summary {
    font-size: 17px;
  }
  body#hv-inv-requirements .decision__item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  body#hv-inv-requirements .decision__number {
    width: 44px;
    height: 44px;
  }
  body#hv-inv-requirements .conditions__card {
    padding: 28px 22px;
  }
  body#hv-inv-requirements .pitfalls__item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 22px 18px;
  }
  body#hv-inv-requirements .pitfalls__number {
    font-size: 34px;
  }
  body#hv-inv-requirements .pitfalls__visual {
    min-height: 360px;
  }
  body#hv-inv-requirements .diagnosis__content {
    padding: 40px 22px;
  }
  body#hv-inv-requirements .diagnosis__list,
  body#hv-inv-requirements .alternatives__list {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .diagnosis__visual {
    min-height: 340px;
  }
  body#hv-inv-requirements .documents__stage {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .documents__stage-head,
  body#hv-inv-requirements .documents__stage-body {
    padding: 24px 22px;
  }
  body#hv-inv-requirements .documents__list {
    grid-template-columns: 1fr;
  }
  body#hv-inv-requirements .documents__source {
    gap: 28px;
    margin-top: 44px;
    padding: 22px;
  }
  body#hv-inv-requirements .documents__source-visual {
    min-height: 300px;
  }
  body#hv-inv-requirements .documents__source-title {
    font-size: 25px;
  }
  body#hv-inv-requirements .alternatives__visual {
    min-height: 350px;
    margin-right: 20px;
    margin-left: -20px;
  }
  body#hv-inv-requirements .faq__summary {
    padding: 20px 54px 20px 20px;
    font-size: 15px;
  }
  body#hv-inv-requirements .faq__summary::after {
    top: 24px;
    right: 22px;
  }
  body#hv-inv-requirements .faq__answer {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 0 20px 22px;
    font-size: 14px;
  }
  body#hv-inv-requirements .final-cta,
  body#hv-inv-requirements .final-cta__inner {
    min-height: 600px;
  }
  body#hv-inv-requirements .final-cta__title {
    font-size: 40px;
  }
  body#hv-inv-requirements .final-cta__actions {
    display: grid;
  }
}

/* ===== 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-requirements .decision__visual,body#hv-inv-requirements .pitfalls__visual,body#hv-inv-requirements .diagnosis__visual,body#hv-inv-requirements .documents__source-visual,body#hv-inv-requirements .alternatives__visual{min-height:0}
body#hv-inv-requirements .decision__visual img,body#hv-inv-requirements .pitfalls__visual img,body#hv-inv-requirements .diagnosis__visual img,body#hv-inv-requirements .documents__source-visual img,body#hv-inv-requirements .alternatives__visual 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;}
body#hv-inv-requirements .decision__visual img{aspect-ratio:4/3}
body#hv-inv-requirements .pitfalls__visual img{aspect-ratio:3/4}
body#hv-inv-requirements .diagnosis__visual img{aspect-ratio:14/11}
body#hv-inv-requirements .documents__source-visual img,body#hv-inv-requirements .alternatives__visual img{aspect-ratio:7/5}
main figure:has(img[src$="/requirements/site-check.jpg"])::after,main figure:has(img[src$="/requirements/equipment-detail.jpg"])::after,main figure:has(img[src$="/requirements/engineering-meeting.jpg"])::after,main figure:has(img[src$="/requirements/operations.jpg"])::after,main figure:has(img[src$="/requirements/alternative-site.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-requirements .section { padding: 96px 0; }
body#hv-inv-requirements .related-links.section--compact { padding: 96px 0; }
body#hv-inv-requirements .section-heading__eyebrow { margin-bottom: 16px; color: var(--u-theme); font-size: 13px; }
body#hv-inv-requirements .section-heading__eyebrow::before { background: var(--u-goldline); }
body#hv-inv-requirements .section-heading__title { color: var(--u-ink); font-size: 25px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.6; }
body#hv-inv-requirements .section-heading__lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }

/* ---- ボタン（主CTA=金×インク / 副=白アウトライン） ---- */
body#hv-inv-requirements .button { min-height: 56px; padding: 0 32px; border-radius: 999px; color: var(--u-ink); background: var(--u-gold); box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); font-size: 16px; }
body#hv-inv-requirements .button--secondary,
body#hv-inv-requirements .button--light { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; box-shadow: none; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-requirements .button:hover { box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32); filter: brightness(0.92); transform: translateY(-2px); }
  body#hv-inv-requirements .button--secondary:hover,
  body#hv-inv-requirements .button--light:hover { background: rgba(255, 255, 255, 0.08); box-shadow: none; filter: none; }
}
body#hv-inv-requirements .button:focus-visible { outline: 2px solid var(--u-theme); outline-offset: 3px; }
body#hv-inv-requirements :is(.requirements-hero, .conditions, .diagnosis__panel, .alternatives, .final-cta) .button:focus-visible { outline-color: #fff; }

/* ---- ヒーロー（淡色地→deepグラデ×白明朝31px×goldlineアクセント） ---- */
body#hv-inv-requirements .requirements-hero { color: #fff; background: linear-gradient(115deg, var(--u-theme) 0%, var(--u-deep) 100%); }
body#hv-inv-requirements .requirements-hero__eyebrow { border-color: rgba(227, 185, 79, 0.55); color: var(--u-goldline); background: rgba(7, 26, 49, 0.45); font-size: 13px; }
body#hv-inv-requirements .requirements-hero__title { color: #fff; font-size: 31px; letter-spacing: 0.03em; line-height: 1.5; }
body#hv-inv-requirements .requirements-hero__title-accent { color: var(--u-goldline); }
body#hv-inv-requirements .requirements-hero__lead { color: #DCE6F2; font-size: 18px; line-height: 1.9; }
body#hv-inv-requirements .requirements-hero__note { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
body#hv-inv-requirements .requirements-hero__visual { border-radius: 12px 0 0 12px; }
body#hv-inv-requirements .requirements-hero__status { border-radius: 12px; }
body#hv-inv-requirements .requirements-hero__status-icon { border-radius: 6px; background: var(--u-theme); }
body#hv-inv-requirements .requirements-hero__status-label { color: var(--u-theme); font-family: "Barlow", Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; }

/* ---- 結論（3条件） ---- */
body#hv-inv-requirements .decision__summary { border-left: 2px solid var(--u-goldline); font-size: 20px; }
body#hv-inv-requirements .decision__item { border-bottom-color: var(--u-border); }
body#hv-inv-requirements .decision__number { color: var(--u-theme); background: var(--u-tint); font-size: 16px; }
body#hv-inv-requirements .decision__item-title { font-size: 20px; }
body#hv-inv-requirements .decision__item-text { color: var(--u-sub); font-size: 14px; line-height: 1.8; }

/* ---- 設置条件チェック（deep濃色バンド） ---- */
body#hv-inv-requirements .conditions .section-heading__eyebrow { color: var(--u-goldline); }
body#hv-inv-requirements .conditions .section-heading__lead { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-requirements .conditions__legend { font-size: 13px; }
body#hv-inv-requirements .conditions__legend-item--review::before { background: var(--u-goldline); } /* 旧hue青#7293b9をgoldlineへ */
body#hv-inv-requirements .conditions__card { border-color: rgba(227, 185, 79, 0.28); border-radius: 12px; }
body#hv-inv-requirements .conditions__icon { border-radius: 6px; color: var(--u-deep); background: var(--u-gold); font-size: 20px; }
body#hv-inv-requirements .conditions__title { font-size: 20px; }
body#hv-inv-requirements .conditions__item { color: rgba(255, 255, 255, 0.88); font-size: 14px; }
body#hv-inv-requirements .conditions__item::after { border-bottom-color: var(--u-gold); border-left-color: var(--u-gold); }
body#hv-inv-requirements .conditions__note { color: rgba(255, 255, 255, 0.7); font-size: 13px; }

/* ---- 見落とし（淡地） ---- */
body#hv-inv-requirements .pitfalls { background: var(--u-tint); }
body#hv-inv-requirements .pitfalls__item { border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06); }
body#hv-inv-requirements .pitfalls__number { color: transparent; font-size: 31px; opacity: 1; -webkit-text-stroke: 1px rgba(12, 42, 77, 0.35); }
body#hv-inv-requirements .pitfalls__title { font-size: 20px; }
body#hv-inv-requirements .pitfalls__text { color: var(--u-sub); font-size: 14px; line-height: 1.8; }

/* ---- 事前診断パネル（ネイビーバンド） ---- */
body#hv-inv-requirements .diagnosis__panel { border-radius: 12px; background: linear-gradient(115deg, var(--u-theme) 0%, var(--u-deep) 100%); }
body#hv-inv-requirements .diagnosis__eyebrow { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-requirements .diagnosis__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#hv-inv-requirements .diagnosis__lead { color: rgba(255, 255, 255, 0.82); font-size: 16px; }
body#hv-inv-requirements .diagnosis__item { border-color: rgba(227, 185, 79, 0.28); border-radius: 6px; font-size: 13px; }
body#hv-inv-requirements .diagnosis__item::after { border-bottom-color: var(--u-deep); border-left-color: var(--u-deep); }

/* ---- 必要書類 ---- */
body#hv-inv-requirements .documents { background: var(--u-tint); }
body#hv-inv-requirements .documents__notice { border-left: 2px solid var(--u-goldline); border-radius: 0 6px 6px 0; }
body#hv-inv-requirements .documents__notice-title { color: var(--u-theme); font-size: 16px; }
body#hv-inv-requirements .documents__notice-text { color: var(--u-sub); font-size: 13px; }
body#hv-inv-requirements .documents__stage { border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06); }
body#hv-inv-requirements .documents__stage-head { background: var(--u-theme); }
body#hv-inv-requirements .documents__stage:nth-child(2) .documents__stage-head { background: #123A63; }
body#hv-inv-requirements .documents__stage:nth-child(3) .documents__stage-head { background: var(--u-deep); } /* 旧グレー混色#23384fを全廃 */
body#hv-inv-requirements .documents__stage-number { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-requirements .documents__stage-title { font-size: 20px; }
body#hv-inv-requirements .documents__item { color: var(--u-sub); font-size: 14px; }
body#hv-inv-requirements .documents__item::before { background: var(--u-theme); }
body#hv-inv-requirements .documents__source { border: 1px solid var(--u-border); border-radius: 12px; }
body#hv-inv-requirements .documents__source-title { font-size: 20px; line-height: 1.6; }
body#hv-inv-requirements .documents__source-text { color: var(--u-sub); font-size: 16px; }
body#hv-inv-requirements .documents__source-note { border-radius: 6px; color: var(--u-sub); background: var(--u-tint); font-size: 13px; }

/* ---- 進め方 ---- */
body#hv-inv-requirements .process__flow::before { background: var(--u-border); }
body#hv-inv-requirements .process__number { background: var(--u-theme); box-shadow: 0 0 0 1px var(--u-border); font-size: 13px; }
body#hv-inv-requirements .process__title { font-size: 18px; }
body#hv-inv-requirements .process__text { color: var(--u-sub); font-size: 13px; }

/* ---- 代替案（deep濃色バンド） ---- */
body#hv-inv-requirements .alternatives { background: var(--u-deep); } /* 旧#0b1c2fをdeepトークンへ */
body#hv-inv-requirements .alternatives__eyebrow { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-requirements .alternatives__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#hv-inv-requirements .alternatives__lead { color: rgba(255, 255, 255, 0.82); font-size: 16px; }
body#hv-inv-requirements .alternatives__item { border-color: rgba(227, 185, 79, 0.28); border-radius: 6px; color: rgba(255, 255, 255, 0.88); font-size: 13px; }

/* ---- FAQ ---- */
body#hv-inv-requirements .faq { background: var(--u-tint); }
body#hv-inv-requirements .faq__item { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-requirements .faq__summary { font-size: 16px; }
body#hv-inv-requirements .faq__summary::before { color: var(--u-theme); font-size: 20px; }
body#hv-inv-requirements .faq__answer { color: var(--u-sub); font-size: 16px; line-height: 1.8; }
body#hv-inv-requirements .faq__answer::before { color: var(--u-theme); font-size: 20px; } /* 金文字A×白地の低コントラストをネイビーへ修正 */

/* ---- 最終CTA（濃色締めバンド） ---- */
body#hv-inv-requirements .final-cta { background: var(--u-deep); }
body#hv-inv-requirements .final-cta__background::after { background: linear-gradient(90deg, rgba(7, 26, 49, 0.94) 0%, rgba(7, 26, 49, 0.82) 48%, rgba(12, 42, 77, 0.4) 100%); }
body#hv-inv-requirements .final-cta__eyebrow { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-requirements .final-cta__title { font-size: 25px; letter-spacing: 0.03em; line-height: 1.6; }
body#hv-inv-requirements .final-cta__lead { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }

/* ---- 関連リンク ---- */
body#hv-inv-requirements .related-links__link { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-requirements .related-links__label { color: var(--u-theme); font-size: 13px; }
body#hv-inv-requirements .related-links__title { font-size: 20px; letter-spacing: 0.03em; line-height: 1.6; }
body#hv-inv-requirements .related-links__link::after { border-top-color: var(--u-theme); border-right-color: var(--u-theme); }

/* ---- ヒーロー登場モーション（CSSのみ・reduced-motionで停止） ---- */
@keyframes uplift23Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#hv-inv-requirements .requirements-hero__eyebrow { animation: uplift23Fade 0.6s ease 0s both; }
body#hv-inv-requirements .requirements-hero__title { animation: uplift23Fade 0.6s ease 0.12s both; }
body#hv-inv-requirements .requirements-hero__lead { animation: uplift23Fade 0.6s ease 0.24s both; }
body#hv-inv-requirements .requirements-hero__actions { animation: uplift23Fade 0.6s ease 0.36s both; }
body#hv-inv-requirements .requirements-hero__note { animation: uplift23Fade 0.6s ease 0.48s both; }
body#hv-inv-requirements .requirements-hero__visual { animation: uplift23Fade 0.6s ease 0.24s both; }
@media (prefers-reduced-motion: reduce) {
  body#hv-inv-requirements .requirements-hero__eyebrow,
  body#hv-inv-requirements .requirements-hero__title,
  body#hv-inv-requirements .requirements-hero__lead,
  body#hv-inv-requirements .requirements-hero__actions,
  body#hv-inv-requirements .requirements-hero__note,
  body#hv-inv-requirements .requirements-hero__visual { animation: none; }
}

/* ---- レスポンシブ（96→48pxリズム / ヒーロー / 帯グラデ） ---- */
@media (max-width: 900px) {
  body#hv-inv-requirements .section,
  body#hv-inv-requirements .related-links.section--compact { padding: 48px 0; }
}
@media (max-width: 850px) {
  body#hv-inv-requirements .requirements-hero__visual { border-radius: 12px; }
  body#hv-inv-requirements .final-cta__background::after { background: linear-gradient(180deg, rgba(7, 26, 49, 0.7) 0%, rgba(7, 26, 49, 0.94) 60%, rgba(7, 26, 49, 0.98) 100%); }
}
@media (max-width: 568px) {
  body#hv-inv-requirements .requirements-hero__title { font-size: 25px; line-height: 1.6; }
  body#hv-inv-requirements .diagnosis__title,
  body#hv-inv-requirements .alternatives__title,
  body#hv-inv-requirements .final-cta__title { font-size: 20px; }
  body#hv-inv-requirements .pitfalls__number { font-size: 25px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   hv-inv-requirements は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#hv-inv-requirements .header__actions { background: #1E8A58; }
body#hv-inv-requirements .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#hv-inv-requirements .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#hv-inv-requirements .header__lang-link.is-current { background: #EDF6F1; }
body#hv-inv-requirements .header__lang-button:focus-visible,
body#hv-inv-requirements .header__lang-link:focus-visible,
body#hv-inv-requirements .header__action-link:focus-visible,
body#hv-inv-requirements .header__nav-link:focus-visible,
body#hv-inv-requirements .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-requirements .header__lang-button:hover { border-color: #1E8A58; }
  body#hv-inv-requirements .header__lang-link:hover { background: #EDF6F1; }
  body#hv-inv-requirements .header__nav-link:hover { color: #1E8A58; }
}
