:root {
  color-scheme: light;
  --page-bg: #070b11;
  --surface: #0d1017;
  --faq-bg: #f8f8f8;
  --faq-line: #2d3138;
  --icon-size: clamp(24px, 4vw, 34px);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(54, 88, 144, 0.35), transparent 34%),
    linear-gradient(180deg, #0e1420 0%, var(--page-bg) 100%);
  color: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

button {
  font: inherit;
}

.lp-main {
  width: min(100%, 750px);
  margin: 0 auto;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-section {
  position: relative;
}

.lp-fv {
  overflow: hidden;
}

.fv-visual {
  position: relative;
}

.fv-badge-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fv-badge {
  position: absolute;
  aspect-ratio: 1;
}

.fv-badge-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fv-badge.is-active .fv-badge-image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fv-badge-ems {
  left: 4.625%;
  top: 48.65%;
  width: 18.95%;
}

.fv-badge-muscle {
  left: 21.3%;
  top: 39.4%;
  width: 18.95%;
}

.fv-badge-fit {
  left: 21.45%;
  top: 57.325%;
  width: 18.95%;
}

.lp-cta,
.floating-cta {
  background: linear-gradient(180deg, #19b5c4 0%, #0d659d 100%);
}

.lp-cta-link,
.floating-cta-link {
  display: block;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 50;
  width: min(100%, 750px);
  transform: translate(-50%, calc(100% + 8px));
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    visibility 0.32s linear;
}

.floating-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.lp-faq {
  padding: 32px 22px 40px;
  background:
    url("{{ file_root_path }}/img/faq_section_bg.png") center top / cover no-repeat,
    #1b202a;
}

.faq-heading-wrap {
  padding: 18px 0 24px;
  text-align: center;
}

.faq-heading-en {
  margin: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.faq-heading {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  width: min(100%, 648px);
  margin: 0 auto;
}

.faq-question {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.faq-state {
  display: block;
  width: 100%;
  height: auto;
}

.faq-state[hidden] {
  display: none;
}

.lp-form-anchor {
  min-height: 180px;
  padding: 24px 20px 120px;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf3f8 100%);
  color: #111;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

@media (max-width: 750px) {
  .lp-form-anchor {
    padding-bottom: 96px;
  }
}
