/* ===== RETHEME navy (§3-3b ページテーマ制・2026-07-03) — 元は page26.css.bak_20260703 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #151c24;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary,
label,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: #123A63;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

#contents {
  overflow: clip;
}

.section-inner {
  width: min(1180px, 100% - 100px);
  margin: 0 auto;
}

@media (max-width: 850px) {
  .section-inner {
    width: min(100% - 60px, 720px);
  }
}
@media (max-width: 568px) {
  .section-inner {
    width: calc(100% - 40px);
  }
}
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *, .header *::before, .header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #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: 850px) {
  .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);
  }
}

.sp-menu {
  position: fixed;
  top: 17px;
  right: 18px;
  z-index: 1200;
  display: none;
}

.sp-menu__button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(14, 50, 92, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 32, 50, 0.16);
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.sp-menu__line {
  display: block;
  width: 20px;
  height: 2px;
  background: #123A63;
  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;
  padding: 100px 24px 40px;
  visibility: hidden;
  background: rgba(8, 29, 53, 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;
  max-width: 520px;
  margin: 0 auto;
  gap: 4px;
}

.sp-menu__link,
.sp-menu__cta {
  display: block;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.sp-menu__cta {
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
  color: #151c24;
  background: #f5b500;
  text-align: center;
}

@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-menu__line,
  .sp-menu__panel {
    transition: none;
  }
}
.c-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c-label::before {
  width: 26px;
  height: 2px;
  content: "";
  background: #f5b500;
}

.c-title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.c-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #485360;
  font-size: 18px;
  line-height: 1.9;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.c-button--primary {
  color: #151c24;
  background: #f5b500;
  box-shadow: 0 14px 30px rgba(75, 62, 6, 0.2);
}

.c-button--outline {
  border: 1px solid rgba(14, 50, 92, 0.28);
  color: #123A63;
  background: #fff;
}

.c-button__arrow {
  margin-left: 18px;
  font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    transform: translateY(-2px);
  }
  .c-button--primary:hover {
    box-shadow: 0 18px 34px rgba(75, 62, 6, 0.28);
  }
  .c-button--outline:hover {
    background: #f4f6f8;
  }
}
@media (max-width: 568px) {
  .c-lead {
    font-size: 16px;
  }
  .c-button {
    width: 100%;
    min-height: 58px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
#hv-inv-request {
  --page-color: #123A63;
  --page-deep: #072241;
  --page-surface: #eef2f6;
  --page-ink: #151c24;
  --page-muted: #535d69;
  --page-gold: #f5b500;
}

.hv-request-hero {
  position: relative;
  min-height: 760px;
  background: #eef2f6;
}

.hv-request-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57%;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.hv-request-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(238, 242, 246, 0.88) 0%, rgba(238, 242, 246, 0.05) 38%, rgba(7, 34, 65, 0.08) 100%);
}

.hv-request-hero__media img,
.hv-request-hero__media picture {
  width: 100%;
  height: 100%;
}

.hv-request-hero__media img {
  object-fit: cover;
  object-position: 65% center;
}

.hv-request-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.hv-request-hero__content {
  width: min(610px, 55%);
}

.hv-request-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 7px 12px;
  border-radius: 100px;
  color: #fff;
  background: #123A63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hv-request-hero__title {
  margin: 0;
  color: #0b2440;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.hv-request-hero__title-accent {
  display: block;
  color: #123A63;
}

.hv-request-hero__lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #333f4d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.hv-request-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  list-style: none;
}

.hv-request-hero__fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(14, 50, 92, 0.18);
  border-radius: 5px;
  color: #123A63;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.hv-request-hero__fact::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #f5b500;
}

.hv-request-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hv-request-hero__note {
  margin: 16px 0 0;
  color: #5b6570;
  font-size: 13px;
}

.hv-request-trustbar {
  position: relative;
  z-index: 3;
  margin-top: -32px;
}

.hv-request-trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(18, 37, 59, 0.13);
}

.hv-request-trustbar__item {
  min-height: 96px;
  padding: 24px 22px;
  border-right: 1px solid #dce2e9;
}

.hv-request-trustbar__item:last-child {
  border-right: 0;
}

.hv-request-trustbar__title {
  display: block;
  color: #123A63;
  font-size: 15px;
  font-weight: 700;
}

.hv-request-trustbar__text {
  display: block;
  margin-top: 5px;
  color: #656e79;
  font-size: 12px;
  line-height: 1.6;
}

.hv-request-options {
  padding: 150px 0 130px;
}

.hv-request-options__header {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 70px;
}

.hv-request-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.hv-request-options__card {
  position: relative;
  min-height: 320px;
  padding: 36px 30px 32px;
  overflow: hidden;
  border: 1px solid #dce2e9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 43, 65, 0.07);
}

.hv-request-options__card::before {
  position: absolute;
  top: -46px;
  right: -36px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  content: "";
  background: #eef2f6;
}

.hv-request-options__number {
  position: relative;
  z-index: 1;
  color: #123A63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hv-request-options__title {
  position: relative;
  z-index: 1;
  margin: 46px 0 0;
  font-size: 24px;
  line-height: 1.45;
}

.hv-request-options__text {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #5b6570;
}

.hv-request-options__visual {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 64px;
  margin-top: 90px;
  padding: 54px;
  border-radius: 14px;
  background: #123A63;
}

.hv-request-options__image {
  position: relative;
  min-height: 430px;
  margin-left: -90px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 24px 55px rgba(3, 17, 32, 0.28);
}

.hv-request-options__image img,
.hv-request-options__image picture {
  width: 100%;
  height: 100%;
}

.hv-request-options__image img {
  object-fit: cover;
  object-position: center;
}

.hv-request-options__copy {
  color: #fff;
}

.hv-request-options__copy-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.35;
}

.hv-request-options__copy-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hv-request-options__checks {
  display: grid;
  margin: 28px 0 0;
  list-style: none;
  gap: 12px;
}

.hv-request-options__check {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.hv-request-options__check::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #f5b500;
  border-left: 2px solid #f5b500;
  content: "";
  transform: rotate(-45deg);
}

.hv-request-assurance {
  padding: 120px 0;
  background: #eef2f6;
}

.hv-request-assurance__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.hv-request-assurance__list {
  display: grid;
  gap: 14px;
}

.hv-request-assurance__item {
  padding: 26px 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 43, 65, 0.06);
}

.hv-request-assurance__question {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #123A63;
  font-size: 18px;
  font-weight: 700;
}

.hv-request-assurance__question::before {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #123A63;
  background: #e1e8ef;
  content: "?";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  place-items: center;
}

.hv-request-assurance__answer {
  margin: 12px 0 0 42px;
  color: #5b6570;
  font-size: 14px;
}

.hv-request-form-section {
  padding: 140px 0;
  background: #fff;
}

.hv-request-form-section__header {
  max-width: 800px;
  margin-bottom: 60px;
}

.hv-request-form-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  gap: 64px;
}

.hv-request-form-guide {
  position: sticky;
  top: 30px;
  padding: 32px;
  border-radius: 10px;
  color: #fff;
  background: #123A63;
}

.hv-request-form-guide__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
}

.hv-request-form-guide__list {
  display: grid;
  margin: 26px 0 0;
  list-style: none;
  gap: 14px;
}

.hv-request-form-guide__item {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hv-request-form-guide__item::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #f5b500;
}

.hv-request-form-guide__note {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.hv-request-form {
  padding: 54px;
  border: 1px solid #dce2e9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(21, 42, 67, 0.08);
}

.hv-request-form__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 42px;
}

.hv-request-form__progress-item {
  padding: 10px 8px;
  border-radius: 5px;
  color: #6f7781;
  background: #eef0f3;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hv-request-form__progress-item.is-current {
  color: #fff;
  background: #123A63;
}

.hv-request-form__group {
  margin: 0;
  padding: 0;
  border: 0;
}

.hv-request-form__group + .hv-request-form__group {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid #e2e7ec;
}

.hv-request-form__legend {
  margin-bottom: 26px;
  color: #17283b;
  font-size: 22px;
  font-weight: 700;
}

.hv-request-form__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 16px 0;
}

.hv-request-form__label {
  padding-top: 13px;
  color: #25313f;
  font-size: 14px;
  font-weight: 700;
}

.hv-request-form__required,
.hv-request-form__optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.5;
}

.hv-request-form__required {
  color: #fff;
  background: #b54b42;
}

.hv-request-form__optional {
  color: #5d656f;
  background: #e8ebee;
}

.hv-request-form__control,
.hv-request-form__select,
.hv-request-form__textarea {
  width: 100%;
  border: 1px solid #bcc4cd;
  border-radius: 6px;
  color: #151c24;
  background: #fff;
}

.hv-request-form__control,
.hv-request-form__select {
  min-height: 52px;
  padding: 11px 14px;
}

.hv-request-form__textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.hv-request-form__control:focus,
.hv-request-form__select:focus,
.hv-request-form__textarea:focus {
  border-color: #123A63;
  outline: 3px solid rgba(14, 50, 92, 0.14);
}

.hv-request-form__radio-list,
.hv-request-form__checkbox-list {
  display: grid;
  gap: 10px;
}

.hv-request-form__choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #d2d8df;
  border-radius: 6px;
  cursor: pointer;
}

.hv-request-form__choice:hover {
  border-color: #123A63;
}

.hv-request-form__choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #123A63;
}

.hv-request-form__help {
  margin: 8px 0 0;
  color: #6a727c;
  font-size: 12px;
}

.hv-request-form__consent {
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  background: #f4f6f8;
}

.hv-request-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
}

.hv-request-form__consent-label input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #123A63;
}

.hv-request-form__consent-link {
  color: #123A63;
  font-weight: 700;
}

.hv-request-form__submit-wrap {
  margin-top: 28px;
  text-align: center;
}

.hv-request-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 480px);
  min-height: 68px;
  padding: 14px 30px;
  border-radius: 7px;
  color: #151c24;
  background: #f5b500;
  box-shadow: 0 14px 30px rgba(75, 62, 6, 0.2);
  font-weight: 700;
  cursor: pointer;
}

.hv-request-form__submit:focus-visible {
  outline: 3px solid #123A63;
  outline-offset: 3px;
}

.hv-request-form__submit-note {
  margin: 13px 0 0;
  color: #6a727c;
  font-size: 12px;
}

.hv-request-process {
  padding: 140px 0;
  color: #fff;
  background: #072241;
}

.hv-request-process__layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 78px;
}

.hv-request-process__visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 10px;
}

.hv-request-process__visual img,
.hv-request-process__visual picture {
  width: 100%;
  height: 100%;
}

.hv-request-process__visual img {
  object-fit: cover;
  object-position: center;
}

.hv-request-process__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(3, 12, 23, 0.75));
}

.hv-request-process .c-label {
  color: #9ab4d1;
}

.hv-request-process__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
}

.hv-request-process__lead {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.hv-request-process__steps {
  display: grid;
  margin-top: 42px;
  counter-reset: process;
  gap: 18px;
}

.hv-request-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  counter-increment: process;
}

.hv-request-process__step::before {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #072241;
  background: #f5b500;
  content: counter(process, decimal-leading-zero);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  place-items: center;
}

.hv-request-process__step-title {
  margin: 0;
  font-size: 18px;
}

.hv-request-process__step-text {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hv-request-review {
  padding: 140px 0;
}

.hv-request-review__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}

.hv-request-review__content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 50px;
  margin-top: 60px;
}

.hv-request-review__image {
  min-height: 590px;
  overflow: hidden;
  border-radius: 12px;
}

.hv-request-review__image img,
.hv-request-review__image picture {
  width: 100%;
  height: 100%;
}

.hv-request-review__image img {
  object-fit: cover;
  object-position: center;
}

.hv-request-review__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hv-request-review__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 28px;
  border-radius: 9px;
  background: #eef2f6;
}

.hv-request-review__card:nth-child(2),
.hv-request-review__card:nth-child(3) {
  background: #123A63;
  color: #fff;
}

.hv-request-review__number {
  color: #f5b500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.hv-request-review__card-title {
  margin: 34px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.hv-request-review__card-text {
  margin: 12px 0 0;
  color: #616a75;
  font-size: 13px;
}

.hv-request-review__card:nth-child(2) .hv-request-review__card-text,
.hv-request-review__card:nth-child(3) .hv-request-review__card-text {
  color: rgba(255, 255, 255, 0.72);
}

.hv-request-review__notice {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 4px solid #f5b500;
  color: #5c6570;
  background: #f8f9fa;
  font-size: 13px;
}

.hv-request-faq {
  padding: 130px 0;
  background: #f4f6f8;
}

.hv-request-faq__header {
  max-width: 760px;
}

.hv-request-faq__list {
  display: grid;
  margin-top: 54px;
  gap: 12px;
}

.hv-request-faq__item {
  border: 1px solid #d5dce3;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.hv-request-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 20px 64px 20px 26px;
  color: #17283b;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.hv-request-faq__question::-webkit-details-marker {
  display: none;
}

.hv-request-faq__question::before {
  margin-right: 16px;
  color: #123A63;
  content: "Q";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.hv-request-faq__question::after {
  position: absolute;
  top: 50%;
  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;
  transform: translateY(-50%);
}

.hv-request-faq__item[open] .hv-request-faq__question::after {
  background: linear-gradient(#123A63, #123A63) center/100% 2px no-repeat;
}

.hv-request-faq__answer {
  padding: 0 28px 28px 62px;
  color: #5c6570;
}

.hv-request-faq__answer p {
  margin: 0;
}

.hv-request-final {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #072241;
}

.hv-request-final__media {
  position: absolute;
  inset: 0;
}

.hv-request-final__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 19, 38, 0.94) 0%, rgba(3, 19, 38, 0.8) 48%, rgba(3, 19, 38, 0.38) 100%);
}

.hv-request-final__media img,
.hv-request-final__media picture {
  width: 100%;
  height: 100%;
}

.hv-request-final__media img {
  object-fit: cover;
  object-position: center;
}

.hv-request-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hv-request-final__content {
  max-width: 690px;
}

.hv-request-final .c-label {
  color: #a8bdd5;
}

.hv-request-final__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hv-request-final__text {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hv-request-final__actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hv-request-final__sub-link {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  font-weight: 700;
}

.hv-request-breadcrumb {
  padding: 18px 0;
  border-top: 1px solid #e3e7ec;
  background: #fff;
}

.hv-request-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  list-style: none;
  color: #6a727c;
  font-size: 12px;
}

.hv-request-breadcrumb__item + .hv-request-breadcrumb__item::before {
  margin-right: 9px;
  content: "/";
}

.hv-request-breadcrumb__link {
  color: #123A63;
}

@media (max-width: 1100px) {
  .hv-request-form-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 38px;
  }
  .hv-request-form {
    padding: 40px;
  }
  .hv-request-options__visual {
    gap: 44px;
    padding: 42px;
  }
}
@media (max-width: 850px) {
  .hv-request-hero,
  .hv-request-hero__inner {
    min-height: 720px;
  }
  .hv-request-hero__media {
    top: auto;
    width: 100%;
    height: 44%;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }
  .hv-request-hero__media::after {
    background: linear-gradient(180deg, #eef2f6 0%, rgba(238, 242, 246, 0.1) 42%, rgba(7, 34, 65, 0.06) 100%);
  }
  .hv-request-hero__media img {
    object-position: 68% center;
  }
  .hv-request-final__media img {
    object-position: 72% center;
  }
  .hv-request-hero__inner {
    align-items: flex-start;
    padding-top: 62px;
    padding-bottom: 330px;
  }
  .hv-request-hero__content {
    width: 100%;
  }
  .hv-request-trustbar {
    margin-top: -18px;
  }
  .hv-request-trustbar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .hv-request-trustbar__item:nth-child(2) {
    border-right: 0;
  }
  .hv-request-trustbar__item:nth-child(-n+2) {
    border-bottom: 1px solid #dce2e9;
  }
  .hv-request-options,
  .hv-request-form-section,
  .hv-request-process,
  .hv-request-review,
  .hv-request-faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hv-request-options__header,
  .hv-request-assurance__layout,
  .hv-request-process__layout,
  .hv-request-review__header,
  .hv-request-review__content {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hv-request-options__grid {
    grid-template-columns: 1fr;
  }
  .hv-request-options__card {
    min-height: auto;
  }
  .hv-request-options__visual {
    grid-template-columns: 1fr;
  }
  .hv-request-options__image {
    min-height: 400px;
    margin: -75px 0 0;
  }
  .hv-request-assurance {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .hv-request-form-layout {
    grid-template-columns: 1fr;
  }
  .hv-request-form-guide {
    position: static;
  }
  .hv-request-process__visual {
    min-height: 430px;
  }
  .hv-request-review__image {
    min-height: 480px;
  }
}
@media (max-width: 568px) {
  .hv-request-hero,
  .hv-request-hero__inner {
    min-height: 790px;
  }
  .hv-request-hero__inner {
    padding-top: 42px;
    padding-bottom: 320px;
  }
  .hv-request-hero__title {
    font-size: 41px;
  }
  .hv-request-hero__lead {
    margin-top: 22px;
    font-size: 16px;
  }
  .hv-request-hero__actions,
  .hv-request-final__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hv-request-hero__fact {
    font-size: 12px;
  }
  .hv-request-trustbar__inner {
    grid-template-columns: 1fr;
  }
  .hv-request-trustbar__item {
    min-height: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid #dce2e9;
  }
  .hv-request-trustbar__item:last-child {
    border-bottom: 0;
  }
  .hv-request-options,
  .hv-request-form-section,
  .hv-request-process,
  .hv-request-review,
  .hv-request-faq {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .hv-request-options__grid {
    margin-top: 38px;
  }
  .hv-request-options__card {
    padding: 28px 24px;
  }
  .hv-request-options__title {
    margin-top: 30px;
    font-size: 22px;
  }
  .hv-request-options__visual {
    margin-top: 70px;
    padding: 24px;
  }
  .hv-request-options__image {
    min-height: 300px;
    margin-top: -52px;
  }
  .hv-request-assurance__item {
    padding: 22px 20px;
  }
  .hv-request-assurance__answer {
    margin-left: 0;
  }
  .hv-request-form-section__header {
    margin-bottom: 38px;
  }
  .hv-request-form-guide,
  .hv-request-form {
    padding: 26px 20px;
  }
  .hv-request-form__progress {
    grid-template-columns: 1fr;
  }
  .hv-request-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 0;
  }
  .hv-request-form__label {
    padding-top: 0;
  }
  .hv-request-form__consent {
    padding: 20px 16px;
  }
  .hv-request-process__visual,
  .hv-request-review__image {
    min-height: 320px;
  }
  .hv-request-process__step {
    grid-template-columns: 44px 1fr;
    padding: 18px 16px;
  }
  .hv-request-process__step::before {
    width: 42px;
    height: 42px;
  }
  .hv-request-review__grid {
    grid-template-columns: 1fr;
  }
  .hv-request-review__card {
    min-height: auto;
  }
  .hv-request-faq__question {
    min-height: 74px;
    padding: 18px 52px 18px 18px;
    font-size: 15px;
  }
  .hv-request-faq__answer {
    padding: 0 18px 22px;
    font-size: 14px;
  }
  .hv-request-final,
  .hv-request-final__inner {
    min-height: 600px;
  }
  .hv-request-final__text {
    font-size: 16px;
  }
  .hv-request-final__sub-link {
    justify-content: center;
    min-height: 50px;
  }
}

/* ===== 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背景カード）は不変更。 ===== */
.hv-request-options__image,.hv-request-process__visual,.hv-request-review__image{min-height:0}
.hv-request-process__visual::after{display:none}
.hv-request-options__image picture,.hv-request-process__visual picture,.hv-request-review__image picture{position:static;display:block;height:auto}
.hv-request-options__image img,.hv-request-process__visual img,.hv-request-review__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:1600/1067}
main figure:has(img[src$="/request/battery-detail.jpg"])::after,main figure:has(img[src$="/request/operation-center.jpg"])::after,main figure:has(img[src$="/request/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;
}

/* ---- 共通コンポーネント（c-*） ---- */
body#hv-inv-request .skip-link { background: var(--u-deep); }
body#hv-inv-request .c-label { color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-request .c-label::before { width: 40px; height: 2px; background: var(--u-gold); }
body#hv-inv-request .c-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-request .c-lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#hv-inv-request .c-button { min-height: 56px; padding: 16px 32px; border-radius: 999px; font-size: 16px; }
body#hv-inv-request .c-button--primary { color: var(--u-ink); background: var(--u-gold); box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); }
body#hv-inv-request .c-button--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-request .c-button--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32); filter: brightness(0.92); }
  body#hv-inv-request .c-button--outline:hover { background: rgba(255, 255, 255, 0.08); }
}
body#hv-inv-request .c-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
body#hv-inv-request main a:not([class]) { color: var(--u-theme); text-decoration: underline; }

/* ---- ヒーロー（淡地ヒーロー→--u-deepグラデのposterヒーローへ転換） ---- */
body#hv-inv-request .hv-request-hero {
  color: #fff;
  background: linear-gradient(120deg, var(--u-theme) 0%, var(--u-deep) 100%);
}
body#hv-inv-request .hv-request-hero__media::after {
  background: linear-gradient(90deg, rgba(7, 26, 49, 0.92) 0%, rgba(7, 26, 49, 0.45) 45%, rgba(7, 26, 49, 0.2) 100%);
}
body#hv-inv-request .hv-request-hero__eyebrow {
  padding: 8px 16px;
  border: 1px solid rgba(227, 185, 79, 0.55);
  border-radius: 999px;
  color: var(--u-goldline);
  background: rgba(7, 26, 49, 0.45);
  font-size: 13px;
  letter-spacing: 0.12em;
}
body#hv-inv-request .hv-request-hero__title {
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
body#hv-inv-request .hv-request-hero__title-accent { color: var(--u-gold); }
body#hv-inv-request .hv-request-hero__lead { color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.9; }
body#hv-inv-request .hv-request-hero__fact {
  border-color: rgba(227, 185, 79, 0.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 26, 49, 0.45);
  font-size: 13px;
}
body#hv-inv-request .hv-request-hero__note { color: rgba(255, 255, 255, 0.7); font-size: 13px; }
@keyframes uplift26Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#hv-inv-request .hv-request-hero__eyebrow { animation: uplift26Fade 0.6s ease 0s both; }
body#hv-inv-request .hv-request-hero__title { animation: uplift26Fade 0.6s ease 0.12s both; }
body#hv-inv-request .hv-request-hero__lead { animation: uplift26Fade 0.6s ease 0.24s both; }
body#hv-inv-request .hv-request-hero__facts { animation: uplift26Fade 0.6s ease 0.36s both; }
body#hv-inv-request .hv-request-hero__actions { animation: uplift26Fade 0.6s ease 0.44s both; }
body#hv-inv-request .hv-request-hero__note { animation: uplift26Fade 0.6s ease 0.52s both; }
@media (prefers-reduced-motion: reduce) {
  body#hv-inv-request .hv-request-hero__eyebrow,
  body#hv-inv-request .hv-request-hero__title,
  body#hv-inv-request .hv-request-hero__lead,
  body#hv-inv-request .hv-request-hero__facts,
  body#hv-inv-request .hv-request-hero__actions,
  body#hv-inv-request .hv-request-hero__note { animation: none; }
}

/* ---- トラストバー ---- */
body#hv-inv-request .hv-request-trustbar__inner { border-radius: 12px; box-shadow: 0 12px 34px rgba(7, 26, 49, 0.12); }
body#hv-inv-request .hv-request-trustbar__item { border-right-color: var(--u-border); }
body#hv-inv-request .hv-request-trustbar__title { color: var(--u-theme); font-size: 16px; }
body#hv-inv-request .hv-request-trustbar__text { color: var(--u-sub); font-size: 13px; }
@media (max-width: 850px) {
  body#hv-inv-request .hv-request-trustbar__item:nth-child(-n+2) { border-bottom-color: var(--u-border); }
}
@media (max-width: 568px) {
  body#hv-inv-request .hv-request-trustbar__item { border-bottom-color: var(--u-border); }
}

/* ---- できること（白地カード＋濃色帯・図解スロット.hv-request-options__imageは不干渉） ---- */
body#hv-inv-request .hv-request-options { padding: 96px 0; }
body#hv-inv-request .hv-request-options__card { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(7, 26, 49, 0.06); }
body#hv-inv-request .hv-request-options__card::before { background: var(--u-tint); }
body#hv-inv-request .hv-request-options__number { color: var(--u-theme); font-size: 13px; }
body#hv-inv-request .hv-request-options__title { font-size: 20px; }
body#hv-inv-request .hv-request-options__text { color: var(--u-sub); font-size: 16px; line-height: 1.8; }
body#hv-inv-request .hv-request-options__visual { border-radius: 12px; background: var(--u-theme); }
body#hv-inv-request .hv-request-options__copy-title { font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#hv-inv-request .hv-request-options__copy-text { color: rgba(255, 255, 255, 0.82); font-size: 16px; line-height: 1.8; }
body#hv-inv-request .hv-request-options__check { font-size: 16px; }
body#hv-inv-request .hv-request-options__check::before { border-bottom-color: var(--u-gold); border-left-color: var(--u-gold); }

/* ---- 送信前の不安（淡地） ---- */
body#hv-inv-request .hv-request-assurance { padding: 96px 0; background: var(--u-tint); }
body#hv-inv-request .hv-request-assurance__item { border: 1px solid var(--u-border); border-radius: 12px; box-shadow: 0 6px 18px rgba(7, 26, 49, 0.05); }
body#hv-inv-request .hv-request-assurance__question { color: var(--u-ink); font-size: 18px; }
body#hv-inv-request .hv-request-assurance__question::before { color: var(--u-theme); background: var(--u-tint); }
body#hv-inv-request .hv-request-assurance__answer { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- フォーム（配色・radius6/12・focus可視化のみ。寸法は既存維持） ---- */
body#hv-inv-request .hv-request-form-section { padding: 96px 0; }
body#hv-inv-request .hv-request-form-guide { border-radius: 12px; background: var(--u-theme); }
body#hv-inv-request .hv-request-form-guide__title { font-size: 20px; }
body#hv-inv-request .hv-request-form-guide__item { color: rgba(255, 255, 255, 0.88); font-size: 14px; }
body#hv-inv-request .hv-request-form-guide__item::before { background: var(--u-gold); }
body#hv-inv-request .hv-request-form-guide__note { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
body#hv-inv-request .hv-request-form { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 12px 34px rgba(7, 26, 49, 0.08); }
body#hv-inv-request .hv-request-form__progress-item { border-radius: 6px; }
body#hv-inv-request .hv-request-form__progress-item.is-current { background: var(--u-theme); }
body#hv-inv-request .hv-request-form__legend { color: var(--u-ink); font-size: 20px; }
body#hv-inv-request .hv-request-form__label { color: var(--u-ink); font-size: 14px; }
body#hv-inv-request .hv-request-form__control,
body#hv-inv-request .hv-request-form__select,
body#hv-inv-request .hv-request-form__textarea { border-radius: 6px; }
body#hv-inv-request .hv-request-form__control:focus,
body#hv-inv-request .hv-request-form__select:focus,
body#hv-inv-request .hv-request-form__textarea:focus {
  border-color: var(--u-theme);
  outline: 2px solid var(--u-theme);
  outline-offset: 2px;
}
body#hv-inv-request .hv-request-form__choice { border-radius: 6px; }
body#hv-inv-request .hv-request-form__choice:hover { border-color: var(--u-theme); }
body#hv-inv-request .hv-request-form__choice input { accent-color: var(--u-theme); }
body#hv-inv-request .hv-request-form__choice input:focus-visible { outline: 2px solid var(--u-theme); outline-offset: 2px; }
body#hv-inv-request .hv-request-form__help { color: var(--u-sub); font-size: 13px; }
body#hv-inv-request .hv-request-form__consent { border-radius: 12px; background: var(--u-tint); }
body#hv-inv-request .hv-request-form__consent-label input { accent-color: var(--u-theme); }
body#hv-inv-request .hv-request-form__consent-label input:focus-visible { outline: 2px solid var(--u-theme); outline-offset: 2px; }
body#hv-inv-request .hv-request-form__consent-link { color: var(--u-theme); text-decoration: underline; }
body#hv-inv-request .hv-request-form__submit {
  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;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-request .hv-request-form__submit:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32); filter: brightness(0.92); }
}
body#hv-inv-request .hv-request-form__submit:focus-visible { outline: 2px solid var(--u-theme); outline-offset: 3px; }
body#hv-inv-request .hv-request-form__submit-note { color: var(--u-sub); font-size: 13px; }

/* ---- 送信後の流れ（濃色バンド・図解スロット.hv-request-process__visualは不干渉） ---- */
body#hv-inv-request .hv-request-process { padding: 96px 0; background: var(--u-deep); }
body#hv-inv-request .hv-request-process .c-label { color: var(--u-goldline); }
body#hv-inv-request .hv-request-process__title { font-size: 25px; line-height: 1.6; letter-spacing: 0.03em; }
body#hv-inv-request .hv-request-process__lead { color: rgba(255, 255, 255, 0.78); font-size: 18px; line-height: 1.9; }
body#hv-inv-request .hv-request-process__step { border-color: rgba(227, 185, 79, 0.28); border-radius: 12px; }
body#hv-inv-request .hv-request-process__step::before {
  border: 1px solid var(--u-goldline);
  color: var(--u-goldline);
  background: transparent;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 13px;
}
body#hv-inv-request .hv-request-process__step-title { font-size: 18px; }
body#hv-inv-request .hv-request-process__step-text { color: rgba(255, 255, 255, 0.72); font-size: 13px; }

/* ---- 4つの判断軸（図解スロット.hv-request-review__imageは不干渉） ---- */
body#hv-inv-request .hv-request-review { padding: 96px 0; }
body#hv-inv-request .hv-request-review__card { border-radius: 12px; background: var(--u-tint); }
body#hv-inv-request .hv-request-review__card:nth-child(2),
body#hv-inv-request .hv-request-review__card:nth-child(3) { background: var(--u-theme); }
/* 既存バグ修正: 金文字番号が淡地カード上で低コントラスト（1.67:1）→ 淡地=--u-theme / 濃地=--u-goldline */
body#hv-inv-request .hv-request-review__number { color: var(--u-theme); font-size: 13px; }
body#hv-inv-request .hv-request-review__card:nth-child(2) .hv-request-review__number,
body#hv-inv-request .hv-request-review__card:nth-child(3) .hv-request-review__number { color: var(--u-goldline); }
body#hv-inv-request .hv-request-review__card-title { font-size: 20px; }
body#hv-inv-request .hv-request-review__card-text { color: var(--u-sub); font-size: 13px; }
body#hv-inv-request .hv-request-review__card:nth-child(2) .hv-request-review__card-text,
body#hv-inv-request .hv-request-review__card:nth-child(3) .hv-request-review__card-text { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-request .hv-request-review__notice { border-left-color: var(--u-goldline); color: var(--u-sub); background: var(--u-tint); font-size: 13px; }

/* ---- FAQ（淡地） ---- */
body#hv-inv-request .hv-request-faq { padding: 96px 0; background: var(--u-tint); }
body#hv-inv-request .hv-request-faq__item { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-request .hv-request-faq__question { color: var(--u-ink); font-size: 16px; }
body#hv-inv-request .hv-request-faq__question::before { color: var(--u-theme); font-family: "Barlow", Arial, Helvetica, sans-serif; font-size: 20px; }
body#hv-inv-request .hv-request-faq__question::after {
  background: linear-gradient(var(--u-theme), var(--u-theme)) center/100% 2px no-repeat, linear-gradient(var(--u-theme), var(--u-theme)) center/2px 100% no-repeat;
}
body#hv-inv-request .hv-request-faq__item[open] .hv-request-faq__question::after {
  background: linear-gradient(var(--u-theme), var(--u-theme)) center/100% 2px no-repeat;
}
body#hv-inv-request .hv-request-faq__answer { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- 最終CTA（濃色締めバンド） ---- */
body#hv-inv-request .hv-request-final { background: var(--u-deep); }
body#hv-inv-request .hv-request-final__media::after {
  background: linear-gradient(100deg, rgba(7, 26, 49, 0.95) 0%, rgba(7, 26, 49, 0.8) 48%, rgba(12, 42, 77, 0.4) 100%);
}
body#hv-inv-request .hv-request-final .c-label { color: var(--u-goldline); }
body#hv-inv-request .hv-request-final__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-request .hv-request-final__text { color: rgba(255, 255, 255, 0.82); font-size: 18px; }
body#hv-inv-request .hv-request-final__sub-link { text-decoration: underline; }
body#hv-inv-request .hv-request-final__sub-link:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---- パンくず ---- */
body#hv-inv-request .hv-request-breadcrumb__link { color: var(--u-theme); }

/* ---- レスポンシブ（96→48pxリズム / タイプスケール / ヒーローSPシェード） ---- */
@media (max-width: 900px) {
  body#hv-inv-request .hv-request-options,
  body#hv-inv-request .hv-request-assurance,
  body#hv-inv-request .hv-request-form-section,
  body#hv-inv-request .hv-request-process,
  body#hv-inv-request .hv-request-review,
  body#hv-inv-request .hv-request-faq { padding: 48px 0; }
}
@media (max-width: 850px) {
  body#hv-inv-request .hv-request-hero__media::after {
    background: linear-gradient(180deg, var(--u-deep) 0%, rgba(7, 26, 49, 0.16) 45%, rgba(7, 26, 49, 0.32) 100%);
  }
}
@media (max-width: 568px) {
  body#hv-inv-request .c-title { font-size: 20px; }
  body#hv-inv-request .c-lead { font-size: 16px; }
  body#hv-inv-request .hv-request-hero__title { font-size: 25px; line-height: 1.6; }
  body#hv-inv-request .hv-request-hero__lead { font-size: 16px; }
  body#hv-inv-request .hv-request-options__copy-title { font-size: 20px; }
  body#hv-inv-request .hv-request-process__title { font-size: 20px; }
  body#hv-inv-request .hv-request-final__title { font-size: 20px; }
  body#hv-inv-request .hv-request-final__text { font-size: 16px; }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   hv-inv-request は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#hv-inv-request .header__actions { background: #1E8A58; }
body#hv-inv-request .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#hv-inv-request .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#hv-inv-request .header__lang-link.is-current { background: #EDF6F1; }
body#hv-inv-request .header__lang-button:focus-visible,
body#hv-inv-request .header__lang-link:focus-visible,
body#hv-inv-request .header__action-link:focus-visible,
body#hv-inv-request .header__nav-link:focus-visible,
body#hv-inv-request .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-request .header__lang-button:hover { border-color: #1E8A58; }
  body#hv-inv-request .header__lang-link:hover { background: #EDF6F1; }
  body#hv-inv-request .header__nav-link:hover { color: #1E8A58; }
}
