.section--cta {
  position: relative;
  overflow: hidden;
}

/* CTA 背景：FV動画を再利用してループ再生（エモーショナル演出） */
.section--cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section--cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: blur(1px) saturate(0.85);
}

.section--cta__media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(var(--color-black-rgb), 0.62) 0%,
      rgba(var(--color-black-rgb), 0.88) 100%
    );
}

.section--cta__container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.section--cta__lead {
  max-width: 100%;
  color: rgba(var(--color-white-warm), 0.98);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.section--cta__subcopy {
  max-width: 100%;
  margin-top: 12px;
  color: rgba(var(--color-white-warm), 0.85);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.section--cta__button {
  width: min(100%, 280px);
  min-height: 56px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .section--cta__lead {
    font-size: 34px;
    letter-spacing: 0.1em;
  }

  .section--cta__button {
    margin-top: 40px;
  }
}
