/* ══════════════════════════════════════
   DESIGN TOKENS
   すべてのサイズは4の倍数
══════════════════════════════════════ */
:root {
  /* Colors */
  --navy:        #072652;
  --navy-mid:    #162538;
  --navy-light:  #1e3248;
  --gold:        #b8963e;
  --gold-light:  #d4af62;
  --silver:      #a8b4c0;
  --silver-light:#d4dce4;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --gray-light:  #eef0f3;
  --gray-mid:    #c8d0d8;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #8896a8;
  --section-rule: linear-gradient(90deg, transparent, rgba(184,150,62,0.28), transparent);

  /* Typography — 4の倍数 */
  --text-12: 12px;
  --text-16: 16px;
  --text-20: 20px;
  --text-24: 24px;
  --text-28: 28px;
  --text-32: 32px;

  /* Spacing — 4の倍数 */
  --sp-4:  4px;
  --sp-8:  8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;
  --sp-64: 64px;
  --sp-80: 80px;

  /* Layout */
  --max-w: 480px;
  --pad:   20px;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--white);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: hidden;
}
.nowrap {
  display: inline-block;
  white-space: nowrap;
}
.trust-lead,
.experience-lead,
.problem-intro,
.service-body,
.service-note,
.video-caption,
.form-lead,
.disc-list li,
.t-text {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}
.text-block {
  margin-bottom: 1.25em;
}
.trust-lead,
.experience-lead,
.problem-intro,
.service-body,
.service-note,
.video-caption,
.form-lead {
  margin-bottom: 1.25em;
}
h1, h2 {
  font-family: 'Noto Serif JP', serif;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,0.97);
  padding: var(--sp-8) var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.header-logo {
  display: flex;
  align-items: center;
  width: 132px;
  min-width: 132px;
}
.header-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header-cta {
  width: 170px;
  padding: var(--sp-8) var(--sp-12);
  background: linear-gradient(135deg, #f4d36e 0%, #ffd980 46%, #d6a843 100%);
  border: none;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 1px 0 rgba(255,255,255,0.45) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header-cta img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: auto;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative; overflow: hidden;
  padding: 0;
}
.hero::before {
  content: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(13,27,46,0.08);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hero-fv {
  display: block;
  width: 100%;
}
.hero-fv img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  padding: 16px 14px 0px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 260px;
  padding: 8px 20px;
  border: 1px solid rgba(184,150,62,0.72);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: none;
  margin: 0 auto 16px;
  opacity: 0;
  animation: fadeUp .6s ease .1s forwards;
}
.hero-headline {
  font-family: 'Noto Serif JP', serif;
  font-size: 29px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.42;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: none;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp .6s ease .25s forwards;
}
.hero-headline span {
  color: var(--gold);
  text-shadow: none;
}
.hero-rule { display: none; }

.hero-visual {
  position: relative;
  width: calc(100% + 32px);
  min-height: 244px;
  margin: 8px -16px 0;
  opacity: 0;
  animation: fadeUp .6s ease .42s forwards;
}
.hero-card {
  width: 100%;
  margin: 0;
}
.hero-card img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-sub {
  position: absolute;
  inset: 0;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0b0f16;
  line-height: 1.55;
  letter-spacing: 0.4em;
  text-align: center;
  text-shadow: none;
}
.hero-sub-line {
  display: block;
  writing-mode: vertical-rl;
  white-space: nowrap;
  padding: 8px 4px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #0b0f16;
}
.hero-sub-line:nth-of-type(1) {
  position: absolute;
  top: 64px;
  right: 16px;
}
.hero-sub-line:nth-of-type(2) {
  position: absolute;
  top: 64px;
  right: 52px;
}
.hero-guide {
  width: 100%;
  margin: 0;
  padding: 16px 16px 10px;
  background: var(--navy);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.72);
  opacity: 0;
  animation: fadeUp .6s ease .52s forwards;
}
.hero-cta {
  width: 100%;
  margin: 0;
  padding: 0 16px 20px;
  background: var(--navy);
  opacity: 0;
  animation: fadeUp .6s ease .6s forwards;
}
.hero-cta .btn-primary {
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 14px 18px;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.hero-cta .btn-primary img {
  width: 26px;
  height: 26px;
}

.hero-steps {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .6s ease .7s forwards;
}
.hero-step {
  container-type: inline-size;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  padding: clamp(8px, 8cqw, 12px);
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 2px solid rgba(184,150,62,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 5cqw, 7px);
  position: relative;
}
.hero-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
.hero-step-icon {
  width: clamp(34px, 44cqw, 54px);
  height: clamp(34px, 44cqw, 54px);
  flex-shrink: 0;
}
.hero-step-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-step-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: var(--navy-light);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.hero-step:nth-child(3) .hero-step-icon svg {
  stroke: var(--gold);
}
.hero-step p {
  max-width: 100%;
  font-size: clamp(10px, 16cqw, 14px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: var(--sp-20) var(--pad);
  background: linear-gradient(135deg, #f4d36e 0%, #ffd980 46%, #d6a843 100%);
  color: var(--navy);
  font-size: var(--text-24);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.38), 0 2px 0 rgba(255,255,255,0.45) inset;
}
.btn-primary img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero-note {
  font-size: var(--text-12);
  color: rgba(168,180,192,.6);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .6s ease .76s forwards;
}

/* ══════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════ */
.section--trust {
  padding: 44px 18px 28px;
  background: var(--white);
  overflow: hidden;
}
.section--trust::before {
  left: 0;
  right: 0;
  background: var(--section-rule);
}
.trust-metric {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.trust-icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trust-copy {
  min-width: 0;
}
.trust-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-number {
  margin-top: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-number span {
  margin-right: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(76px, 19vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: 0;
}
.trust-lead {
  margin-bottom: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.05em;
}
.trust-map {
  width: calc(100% + 36px);
  margin: 0 -18px;
}
.trust-map img {
  display: block;
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════
   EXPERIENCE SECTION
══════════════════════════════════════ */
.section--experience {
  padding: 44px 18px 0;
  background: var(--white);
  overflow: hidden;
}
.section--experience::before {
  left: 0;
  right: 0;
  background: var(--section-rule);
}
.experience-metric {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.experience-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.experience-copy {
  min-width: 0;
}
.experience-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.experience-number {
  margin-top: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.experience-number span {
  margin-right: 6px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(72px, 18vw, 92px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 0;
}
.experience-lead {
  margin-bottom: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.05em;
}
.experience-visual {
  width: calc(100% + 36px);
  margin: 0 -18px;
}
.experience-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section {
  padding: var(--sp-40) var(--pad);
  position: relative;
}
.section::before {
  content: '';
  position: absolute; top: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: var(--section-rule);
}
.section--navy {
  background: var(--navy);
}
.section--navy::before {
  background: var(--section-rule);
}
.section--gray { background: var(--off-white); }
.section--white { background: var(--white); }
.section--gray-dark { background: #f0f2f5; }

.s-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}
.s-head {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 28px;
}
.s-head::after {
  content: none;
}
.s-head--light { color: var(--white); }

/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
.section--problem {
  padding: 40px 24px;
  background:
    linear-gradient(90deg, rgba(13,27,46,0.03) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,27,46,0.02) 0 1px, transparent 1px),
    var(--white);
  background-size: 24px 24px;
}
.section--problem::before {
  left: 0;
  right: 0;
  background: var(--section-rule);
  opacity: 1;
}
.problem-intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--navy);
  line-height: 2.05;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.payment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 28px;
  column-gap: 0;
}
.payment-list li {
  grid-column: span 2;
  min-height: 96px;
  padding: 0 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
  position: relative;
}
.payment-list li:nth-child(-n+2) {
  grid-column: span 3;
}
.payment-list li:nth-child(1)::after,
.payment-list li:nth-child(3)::after,
.payment-list li:nth-child(4)::after,
.payment-list li:nth-child(6)::after,
.payment-list li:nth-child(7)::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 74px;
  background: var(--gray-light);
}
.payment-list img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(25%) saturate(760%) hue-rotate(6deg) brightness(94%) contrast(88%);
  opacity: 0.58;
}
.payment-list span {
  display: block;
}
.problem-arrow {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  position: relative;
}
.problem-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.problem-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: translate(-50%, -50%) rotate(45deg);
}
.problem-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: var(--sp-32);
}
.problem-body strong { color: var(--text-dark); font-weight: 700; }

/* 転換ブロック */
.pivot {
  padding: 20px 18px;
  background: #eef1f4;
  border-radius: 6px;
  border: none;
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(13,27,46,0.04);
}
.pivot::after { content: none; }
.pivot p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.05em;
}
.pivot p span { color: var(--navy); }

/* 帯アニメーション */
.pivot-line {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.pivot-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--navy);
  animation: wipe 0.5s cubic-bezier(.77,0,.18,1) forwards;
  animation-play-state: paused;
}
.pivot-line.wipe-go::after {
  animation-play-state: running;
}
@keyframes wipe {
  0%   { left: -100%; }
  49%  { left: 0%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}
.pivot-line span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0s;
}
.pivot-line.wipe-go span {
  opacity: 1;
  transition-delay: 0.25s;
}

/* ══════════════════════════════════════
   SERVICE SECTION
══════════════════════════════════════ */
.section--service {
  padding: 40px 32px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(13,27,46,0.025) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,27,46,0.018) 0 1px, transparent 1px),
    var(--white);
  background-size: 24px 24px;
}
.service-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--navy);
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.service-flow {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  overflow: hidden;
  text-align: center;
}
.service-flow img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.section--service .hero-step {
  background: rgba(255,255,255,0.96);
  border-color: rgba(184,150,62,0.58);
}
.section--service .hero-step p {
  font-size: clamp(10px, 14cqw, 13px);
}
.section--service .hero-step:not(:last-child)::after {
  filter: drop-shadow(0 1px 1px rgba(13,27,46,0.18));
}
.service-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--navy);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.section--fee {
  background:
    linear-gradient(90deg, rgba(13,27,46,0.025) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,27,46,0.018) 0 1px, transparent 1px),
    var(--white);
  background-size: 24px 24px;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card {
  min-height: 132px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card-body {
  width: 100%;
}
.service-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.service-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  color: #004494;
  letter-spacing: 0;
}
.service-card-num span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-left: 2px;
}
.service-card-note {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.service-card--brands {
  min-height: 120px;
  display: block;
  padding: 22px 18px 18px;
}
.brand-panel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
.brand-panel-title::before,
.brand-panel-title::after {
  content: none;
}
.brand-panel-title span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: block;
  width: 100%;
  max-width: 72px;
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
}
.feature-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: var(--sp-16);
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.feat {
  padding: var(--sp-20) var(--sp-16);
  border: 1px solid var(--gray-mid);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: var(--sp-8);
  text-align: center;
}
.feat--filled { background: var(--navy-light); }
.feat--outlined { background: var(--gray-light); }
.feat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.feat-num .unit {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.feat-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.feat--outlined .feat-title { color: var(--text-dark); }
.feat-list {
  display: flex; flex-direction: column; gap: var(--sp-8);
}
.feat-list-item {
  display: flex; align-items: center; gap: var(--sp-8);
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.4;
}
.feat-list-item span:first-child { font-size: var(--text-16); }
.feat-brands {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.brand {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-12);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-8);
  border: 1px solid var(--gray-mid);
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.video-sub {
  display: flex; justify-content: center;
  margin-bottom: var(--sp-20);
}
.video-sub span {
  font-size: var(--text-16);
  font-weight: 400;
  color: var(--text-mid);
  background: var(--gray-light);
  padding: var(--sp-8) var(--sp-20);
  letter-spacing: 0.04em;
}
.video-box {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: var(--navy);
  border: 1px solid rgba(184,150,62,.2);
  box-shadow: none;
}
.player-controls {
  box-shadow: none;
  filter: none;
}
.video-box iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.video-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-16);
}
.video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(184,150,62,.12);
  border: 1px solid rgba(184,150,62,.4);
  display: flex; align-items: center; justify-content: center;
}
.video-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--gold);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.video-ph p { font-size: var(--text-12); color: var(--silver); letter-spacing: .08em; }
.video-caption {
  margin-top: var(--sp-16);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: center;
}

/* ══════════════════════════════════════
   TARGET SECTION
══════════════════════════════════════ */
.section--target {
  padding: 40px 24px;
  background:
    linear-gradient(90deg, rgba(13,27,46,0.025) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,27,46,0.018) 0 1px, transparent 1px),
    var(--white);
  background-size: 24px 24px;
}
.target-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: center;
  margin-bottom: var(--sp-24);
}
.target-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.target-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e8edf2;
  border-radius: 6px;
}
.t-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.t-icon::before {
  content: '';
  width: 32px;
  height: 32px;
  border: 2px solid var(--navy-light);
  border-radius: 4px;
  opacity: 0.82;
}
.t-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--navy-light);
  opacity: 0.82;
  transform: rotate(-25deg);
}
.t-icon--image::before,
.t-icon--image::after {
  content: none;
}
.t-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.t-text {
  font-size: var(--text-16);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   FORM SECTION
══════════════════════════════════════ */
.form-lead {
  font-size: var(--text-16);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-24);
}
.form-wrap { background: var(--white); }
.form-inner { padding: var(--sp-32) var(--sp-24); }
.form-row {
  display: flex; flex-direction: column; gap: var(--sp-8);
  margin-bottom: var(--sp-20);
}
.form-row label {
  font-size: var(--text-12);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-row label .req {
  display: inline-block;
  margin-left: var(--sp-4);
  font-size: var(--text-12);
  color: var(--gold);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: var(--sp-16);
  border: 1px solid var(--gray-mid);
  background: var(--off-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-16);
  color: var(--text-dark);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-agree {
  display: flex; align-items: flex-start; gap: var(--sp-12);
  margin-bottom: var(--sp-24);
}
.form-agree input {
  width: 20px; height: 20px; min-width: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
}
.form-agree span {
  font-size: var(--text-12);
  color: var(--text-mid);
  line-height: 1.8;
}
.form-submit {
  display: block; width: 100%;
  padding: var(--sp-20);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: var(--text-16);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,150,62,.28);
}
.form-dummy-note {
  margin-top: var(--sp-16);
  font-size: var(--text-12);
  color: var(--text-light);
  text-align: center;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disc {
  background: var(--navy-mid);
  padding: var(--sp-48) var(--pad);
  position: relative;
  text-align: center;
}
.disc::before {
  content: '';
  position: absolute; top: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: var(--section-rule);
}
.disc-title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: var(--sp-20);
}
.disc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: var(--sp-16);
  align-items: flex-start;
}
.disc-list li {
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--silver-light);
  line-height: 1.8;
  padding-left: 0;
  position: relative;
  text-align: left;
}
.disc-list li::before {
  content: '※';
  position: static;
  margin-right: 4px;
  color: var(--gold);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: var(--sp-24) var(--pad);
  border-top: 1px solid rgba(184,150,62,0.28);
  text-align: center;
}
footer p {
  font-size: var(--text-12);
  color: rgba(168,180,192,.3);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   FLOATING BANNER
══════════════════════════════════════ */
.floating-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, var(--max-w));
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  background: var(--navy);
  border-top: 1px solid rgba(184,150,62,0.42);
  border-radius: 0;
  box-shadow: 0 10px 26px rgba(7,38,82,0.24);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.floating-banner__lead {
  display: inline-block;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.floating-banner__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #f4d36e 0%, #ffd980 46%, #d6a843 100%);
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(255,255,255,0.45) inset;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: 0.08em;
}
.floating-banner__cta img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.floating-banner__cta span {
  display: inline-block;
  white-space: nowrap;
}
.floating-banner.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.r.v { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SMALL VIEWPORT FIT
══════════════════════════════════════ */
@media (max-width: 390px) {
  :root {
    --pad: 16px;
    --text-16: 15px;
    --text-20: 18px;
    --text-24: 21px;
    --text-28: 24px;
    --text-32: 28px;
  }

  .header {
    padding: 12px 16px;
  }
  .header-logo {
    width: 116px;
    min-width: 116px;
  }
  .header-cta {
    width: 154px;
    padding: 6px 8px;
    font-size: 11px;
    letter-spacing: 0;
    gap: 3px;
  }
  .header-cta img {
    width: 24px;
    height: 24px;
  }

  .section,
  .section--problem,
  .section--service,
  .section--fee,
  .section--target,
  .section--trust,
  .section--experience,
  .disc {
    padding-left: 16px;
    padding-right: 16px;
  }

  .s-head {
    font-size: 25px;
    line-height: 1.55;
  }

  .trust-metric {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }
  .trust-icon {
    width: 88px;
    height: 88px;
  }
  .trust-title {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .trust-number {
    font-size: 24px;
    letter-spacing: 0;
  }
  .trust-number span {
    margin-right: 6px;
    font-size: clamp(60px, 18vw, 82px);
  }

  .experience-metric {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px;
  }
  .experience-icon {
    width: 80px;
    height: 80px;
  }
  .experience-title {
    font-size: 19px;
    letter-spacing: 0.03em;
  }
  .experience-number {
    font-size: 20px;
    letter-spacing: 0;
  }
  .experience-number span {
    margin-right: 4px;
    font-size: clamp(58px, 17vw, 78px);
  }

  .trust-lead,
  .experience-lead,
  .problem-intro,
  .service-body,
  .service-note,
  .video-caption,
  .form-lead,
  .disc-list li,
  .t-text {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .target-item {
    gap: 12px;
    padding: 14px 14px;
  }
  .t-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .btn-primary {
    font-size: 21px;
    letter-spacing: 0.08em;
  }
  .hero-cta .btn-primary {
    width: min(100%, 286px);
    padding: 13px 16px;
    font-size: 17px;
    letter-spacing: 0.06em;
  }
  .hero-cta .btn-primary img {
    width: 24px;
    height: 24px;
  }

  .floating-banner {
    width: 100%;
    padding: 9px 12px calc(11px + env(safe-area-inset-bottom));
  }
  .floating-banner__lead {
    font-size: 16px;
  }
  .floating-banner__cta {
    min-height: 46px;
    padding: 9px 16px;
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .floating-banner__cta img {
    width: 26px;
    height: 26px;
  }

  .service-flow img {
    width: min(100%, 320px);
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 14px;
    --text-16: 14px;
    --text-24: 19px;
    --text-28: 22px;
  }

  .header-logo {
    width: 108px;
    min-width: 108px;
  }
  .header-cta {
    width: 144px;
    font-size: 10px;
  }
  .header-cta img {
    width: 22px;
    height: 22px;
  }

  .s-head {
    font-size: 23px;
  }

  .trust-metric {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px;
  }
  .trust-icon {
    width: 76px;
    height: 76px;
  }
  .trust-title {
    font-size: 18px;
  }
  .trust-number {
    font-size: 21px;
  }
  .trust-number span {
    font-size: clamp(52px, 16vw, 68px);
  }

  .experience-metric {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
  }
  .experience-icon {
    width: 72px;
    height: 72px;
  }
  .experience-title {
    font-size: 17px;
  }
  .experience-number {
    font-size: 18px;
  }
  .experience-number span {
    font-size: clamp(50px, 16vw, 66px);
  }

  .trust-lead,
  .experience-lead,
  .problem-intro,
  .service-body,
  .service-note,
  .video-caption,
  .form-lead,
  .disc-list li,
  .t-text {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .btn-primary {
    font-size: 19px;
    letter-spacing: 0.05em;
  }
  .hero-cta .btn-primary {
    width: min(100%, 270px);
    padding: 12px 14px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .hero-cta .btn-primary img {
    width: 22px;
    height: 22px;
  }

  .floating-banner {
    width: 100%;
    padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
  }
  .floating-banner__lead {
    font-size: 11px;
  }
  .floating-banner__cta {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  .floating-banner__cta img {
    width: 24px;
    height: 24px;
  }

  .service-flow img {
    width: min(100%, 300px);
  }
}
