@charset "UTF-8";

/* =========================================================
   Base
========================================================= */
:root {
  --color-navy: #283a5e;
  --color-navy-deep: #1b2942;
  --color-blue: #35507f;
  --color-blue-deep: #223456;
  --color-blue-light: #eef3fb;
  --color-accent: #5f7fb3;
  --color-accent-soft: #dfe8f6;
  --color-text: #1f2b3d;
  --color-text-sub: #607086;
  --color-white: #ffffff;
  --color-bg: #f5f8fc;
  --color-bg-soft: #fbfcfe;
  --color-line: rgba(40, 58, 94, 0.1);

  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;

  --content-width: 1160px;
  --header-height: 82px;
  --section-space: 108px;
  --section-space-wide: 124px;
  --section-space-narrow: 88px;
  --section-space-sp: 72px;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(20, 34, 61, 0.05);
  --shadow-md: 0 16px 40px rgba(20, 34, 61, 0.08);
  --shadow-lg: 0 24px 64px rgba(20, 34, 61, 0.12);

  --transition: 0.32s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: 0.02em;
  background: var(--color-white);
  -webkit-text-size-adjust: 100%;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

a:hover {
  opacity: 0.96;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd,
p,
figure {
  margin: 0;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

button {
  font: inherit;
}

main {
  overflow: clip;
}

.inner {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* =========================================================
   Utility
========================================================= */
.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-light,
.section-soft {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 100%);
}

.section-white {
  background: var(--color-white);
}

.section-dark {
  position: relative;
  color: var(--color-white);
}

.entry {
  padding-block: var(--section-space-wide);
}

/* =========================================================
   Section Heading
========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-heading-light h2,
.section-heading-light .section-lead,
.section-heading-light .eyebrow {
  color: var(--color-white);
}

.section-heading--center {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading--center .eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 1rem;
}

.section-heading--center .eyebrow::after {
  display: none;
}

.section-heading--center h2 {
  display: block;
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  line-height: 1.2;
}

.section-heading--center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #35507f 50%, transparent 100%);
}

.section-heading--center .section-lead {
  margin: 20px auto 0;
}

.section-lead {
  max-width: 780px;
  margin-top: 14px;
  color: var(--color-text-sub);
  font-size: 1.04rem;
  line-height: 1.9;
}

.section-subtitle {
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--color-navy);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-subtitle br {
  display: block;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, rgba(27, 41, 66, 0.84), rgba(27, 41, 66, 0.52));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(27, 41, 66, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 220px;
}

.site-logo img {
  width: 100%;
  height: auto;
  max-height: 44px;
}

/* =========================================================
   Navigation
========================================================= */
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav-cta {
  display: none;
}

/* =========================================================
   Mobile Menu Button / Overlay
========================================================= */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 120;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition:
    transform var(--transition),
    opacity var(--transition),
    top var(--transition);
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(27, 41, 66, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, #35507f 0%, #283a5e 55%, #1b2942 100%);
  box-shadow: 0 14px 32px rgba(40, 58, 94, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(40, 58, 94, 0.28);
}

.btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.btn-outline {
  color: var(--color-navy);
  border-color: rgba(40, 58, 94, 0.14);
  background: var(--color-white);
}

.btn-outline:hover {
  border-color: rgba(40, 58, 94, 0.3);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   Header CTA
========================================================= */
.header-cta {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 48px;
  padding: 0 22px;
  color: var(--color-navy);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 28px rgba(15, 23, 39, 0.18),
    0 4px 12px rgba(40, 58, 94, 0.14),
    0 0 0 4px rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: headerCtaFloat 3.2s ease-in-out infinite;
}

.header-cta:hover {
  color: var(--color-navy-deep);
  background: #f8fbff;
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(15, 23, 39, 0.22),
    0 8px 18px rgba(40, 58, 94, 0.18),
    0 0 0 6px rgba(255, 255, 255, 0.16);
}

.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 48%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(95, 127, 179, 0.18) 45%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(95, 127, 179, 0.18) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  pointer-events: none;
  animation: headerCtaShine 4.8s ease-in-out infinite;
}

.site-header.is-scrolled .header-cta {
  box-shadow:
    0 14px 30px rgba(15, 23, 39, 0.22),
    0 6px 14px rgba(40, 58, 94, 0.16),
    0 0 0 4px rgba(255, 255, 255, 0.14);
}

@keyframes headerCtaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes headerCtaShine {
  0% {
    left: -130%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  24% {
    left: 145%;
    opacity: 0;
  }
  100% {
    left: 145%;
    opacity: 0;
  }
}

/* =========================================================
   Hero
========================================================= */
.hero.hero--simple {
  position: relative;
  min-height: 720px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay,
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-overlay {
  background: linear-gradient(
    135deg,
    rgba(27, 41, 66, 0.42),
    rgba(27, 41, 66, 0.34)
  );
}

.parallax-section {
  position: relative;
  overflow: clip;
}

.parallax-media {
  position: absolute;
  inset: -8%;
  z-index: 0;
  overflow: hidden;
}

.parallax-media picture,
.parallax-media img {
  width: 100%;
  height: 100%;
}

.parallax-media img {
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(720px - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-image {
  width: min(96%, 920px);
  margin: 0 auto;
}

.hero-title-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   Slanted sections
========================================================= */
.section-slant {
  position: relative;
  z-index: 1;
}

.section-slant--bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(56px, 8vw, 110px);
  z-index: 5;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.section-slant--top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(56px, 8vw, 110px);
  z-index: 5;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 34%);
}

.section-light.section-slant--bottom::after,
.entry.section-slant--top::before {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.section-dark.section-slant--top::before,
.section-dark.section-slant--bottom::after {
  background: #ffffff;
}

.section .inner {
  position: relative;
  z-index: 6;
}

/* =========================================================
   Media Layout
========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-content p {
  color: var(--color-text-sub);
  font-size: 1rem;
  line-height: 1.95;
}

.section-media,
.section-media-center__image {
  overflow: hidden;
  background: #e9eef7;
  box-shadow: 0 12px 32px rgba(40, 58, 94, 0.08);
}

.section-media {
  border-radius: 24px;
}

.section-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-media--fixed img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.section-media-center {
  max-width: 920px;
  margin: 0 auto;
}

.section-media-center__image {
  border-radius: 24px;
}

.section-media-center__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-media-center__image--fixed img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.section-media-center__caption {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--color-text-sub);
  font-size: 0.96rem;
  line-height: 1.9;
  text-align: center;
}

/* =========================================================
   Cards
========================================================= */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(40, 58, 94, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(40, 58, 94, 0.06);
}

.lp-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eef7;
}

.lp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.lp-card__body h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 700;
}

.lp-card__body p {
  color: var(--color-text-sub);
  font-size: 0.96rem;
  line-height: 1.9;
}

.lp-card--simple .lp-card__body {
  justify-content: center;
}

/* =========================================================
   Compare Table
========================================================= */
.compare-table-wrap {
  max-width: 1100px;
  margin: 56px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid rgba(40, 58, 94, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(40, 58, 94, 0.08);
}

.compare-table thead th {
  padding: 24px 18px;
  background: linear-gradient(135deg, #35507f 0%, #283a5e 100%);
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  width: 18%;
  min-width: 120px;
}

.compare-table tbody th {
  padding: 26px 20px;
  background: #f4f7fc;
  color: var(--color-navy);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  border-top: 1px solid rgba(40, 58, 94, 0.08);
}

.compare-table tbody td {
  padding: 24px 18px;
  background: #ffffff;
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(40, 58, 94, 0.08);
  border-left: 1px solid rgba(40, 58, 94, 0.08);
}

.compare-table tbody tr:nth-child(even) td {
  background: #fbfcff;
}

.compare-table tbody tr:nth-child(even) th {
  background: #eef3fb;
}

.compare-note {
  max-width: 1100px;
  margin: 18px auto 0;
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.9;
}

.compare-note + .compare-note {
  margin-top: 10px;
}

/* =========================================================
   Steps
========================================================= */
.steps-timeline {
  display: grid;
  gap: 24px;
}

.steps-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 18px 44px rgba(7, 19, 47, 0.16),
    0 2px 10px rgba(7, 19, 47, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.steps-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(95, 127, 179, 0.16), rgba(40, 58, 94, 0.12));
  border: 1px solid rgba(40, 58, 94, 0.16);
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.steps-content h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 1.28rem;
  line-height: 1.5;
  font-weight: 800;
}

.steps-content p {
  color: var(--color-text-sub);
  font-size: 1rem;
  line-height: 1.9;
}

/* =========================================================
   Disclaimer
========================================================= */
.disclaimer-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(40, 58, 94, 0.08);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: var(--shadow-sm);
}

.disclaimer-box p {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.95;
}

.disclaimer-box p + p {
  margin-top: 14px;
}

/* =========================================================
   Entry
========================================================= */
.entry {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(95, 127, 179, 0.18) 0%, rgba(95, 127, 179, 0) 34%),
    radial-gradient(circle at 80% 30%, rgba(53, 80, 127, 0.18) 0%, rgba(53, 80, 127, 0) 30%),
    linear-gradient(135deg, #1b2942 0%, #283a5e 52%, #223456 100%);
}

.entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
  pointer-events: none;
}

.entry .inner {
  position: relative;
  z-index: 2;
}

.entry .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.84);
}

.entry-content {
  max-width: 860px;
}

.entry-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.24;
  font-weight: 800;
}

.entry-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 2;
}

.entry-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.entry-actions .btn {
  min-height: 78px;
  padding: 0 42px;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 999px;
}

.entry-actions .btn-primary {
  min-width: 340px;
  color: var(--color-navy);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 36px rgba(15, 23, 39, 0.16),
    0 6px 18px rgba(255, 255, 255, 0.12);
}

.entry-actions .btn-primary:hover {
  color: var(--color-navy-deep);
  background: #f7faff;
  border-color: #ffffff;
  box-shadow:
    0 22px 42px rgba(15, 23, 39, 0.2),
    0 8px 20px rgba(255, 255, 255, 0.16);
}

.entry-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: center;
}

.entry-note a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* =========================================================
   Floating CTA
========================================================= */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta .btn {
  min-height: 54px;
  padding-inline: 24px;
  box-shadow: 0 12px 28px rgba(40, 58, 94, 0.18);
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  padding: 46px 0 36px;
  background: #0f1727;
  color: var(--color-white);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
}

.site-footer-logo img {
  width: 100%;
  height: auto;
  max-height: 52px;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}

.site-footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.8;
}

.site-footer-nav a:hover {
  color: rgba(255, 255, 255, 1);
}

.site-footer-copy {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px) {
  :root {
    --header-height: 76px;
    --section-space: 96px;
    --section-space-wide: 108px;
    --section-space-narrow: 78px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .lp-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title-image {
    width: min(94%, 760px);
  }

  .entry-actions .btn-primary {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(88vw, 320px);
    height: calc(100svh - 68px);
    padding: 20px 0 24px;
    margin-left: 0;
    overflow-y: auto;
    background: rgba(27, 41, 66, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .site-nav a {
    display: block;
    padding: 16px 20px;
    color: var(--color-white);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav-cta {
    display: block;
    margin: 18px 20px 0;
    padding: 14px 18px !important;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #35507f 0%, #283a5e 55%, #1b2942 100%);
    text-align: center;
    font-weight: 700;
    border-bottom: none !important;
  }

  .site-header.is-menu-open .site-nav {
    transform: translateX(0);
  }

  .site-header.is-menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .steps-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    font-size: 15px;
    line-height: 1.76;
  }

  .inner {
    width: min(100% - 28px, var(--content-width));
  }

  .section {
    padding: var(--section-space-sp) 0;
  }

  .site-header {
    height: 68px;
  }

  .site-header .inner {
    gap: 14px;
  }

  .site-logo {
    max-width: 160px;
  }

  .site-logo img {
    max-height: 34px;
  }

  .site-nav {
    top: 68px;
    height: calc(100svh - 68px);
  }

  .hero.hero--simple {
    min-height: 560px;
    padding-top: var(--header-height);
  }

  .hero-inner {
    min-height: calc(560px - var(--header-height));
  }

  .hero-title-image {
    width: min(94%, 500px);
  }

  .section-slant--top::before,
  .section-slant--bottom::after {
    height: 36px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 1.95rem;
    line-height: 1.32;
  }

  .section-heading--center {
    margin-bottom: 40px;
  }

  .section-heading--center .eyebrow {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .section-heading--center h2 {
    padding-bottom: 14px;
    font-size: 2.05rem;
    line-height: 1.3;
  }

  .section-heading--center h2::after {
    width: 70px;
  }

  .section-lead {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .section-subtitle {
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .lp-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-card__body {
    padding: 20px 18px;
  }

  .section-media-center__image {
    border-radius: 18px;
  }

  .section-media-center__caption {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .compare-table-wrap {
    margin-top: 36px;
  }

  .compare-table {
    min-width: 640px;
    border-radius: 18px;
  }

  .compare-table thead th {
    padding: 18px 14px;
    font-size: 1rem;
  }

  .compare-table tbody th {
    padding: 20px 14px;
    font-size: 1.18rem;
  }

  .compare-table tbody td {
    padding: 20px 14px;
    font-size: 1.6rem;
  }

  .compare-note {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .disclaimer-box {
    padding: 22px 18px;
  }

  .disclaimer-box p {
    font-size: 0.9rem;
  }

  .entry-content h2 {
    font-size: 2.05rem;
  }

  .entry-content p {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .entry-actions {
    flex-direction: column;
    gap: 14px;
  }

  .entry-actions .btn {
    width: 100%;
    min-height: 68px;
    padding: 0 24px;
    font-size: 1rem;
  }

  .entry-note {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.75;
  }

  .floating-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .floating-cta .btn {
    width: 100%;
    min-height: 52px;
  }

  .site-footer {
    padding: 34px 0 28px;
  }

  .site-footer-inner {
    gap: 18px;
  }

  .site-footer-logo {
    max-width: 170px;
  }

  .site-footer-logo img {
    max-height: 40px;
  }

  .site-footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer-nav a {
    font-size: 0.9rem;
  }

  .site-footer-copy {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .parallax-media img,
  .btn:hover {
    transform: none !important;
  }

  .header-cta,
  .header-cta::before {
    animation: none !important;
  }
}
/* =========================================================
   Hero note
========================================================= */
.hero-note-section {
  padding: 18px 0;
  background: #fffd00;
  border-top: 1px solid rgba(40, 58, 94, 0.08);
  border-bottom: 1px solid rgba(40, 58, 94, 0.08);
}

.hero-note-text {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 767px) {
  .hero-note-section {
    padding: 14px 0;
  }

  .hero-note-text {
    font-size: 0.84rem;
    line-height: 1.7;
    text-align: left;
  }
}
/* =========================================================
   Notice Modal
========================================================= */

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.notice-modal.is-show {
  display: flex;
}

.notice-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.notice-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 42px 38px 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(12, 22, 40, 0.28);
  text-align: center;
}

.notice-modal__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef3fb;
  color: #35507f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.notice-modal__title {
  margin: 18px 0 0;
  color: #283a5e;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.35;
  font-weight: 800;
}

.notice-modal__text {
  margin: 20px 0 0;
  color: #1f2b3d;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 600;
  text-align: left;
}

.notice-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 58px;
  margin-top: 28px;
  padding: 0 28px;
  border: 1px solid #283a5e;
  border-radius: 999px;
  background: linear-gradient(135deg, #35507f 0%, #283a5e 55%, #1b2942 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(40, 58, 94, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
}

.notice-modal__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(40, 58, 94, 0.28);
}

body.is-notice-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .notice-modal {
    padding: 18px;
  }

  .notice-modal__dialog {
    padding: 32px 22px 28px;
    border-radius: 20px;
  }

  .notice-modal__text {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .notice-modal__button {
    width: 100%;
    min-height: 56px;
  }
}
