:root {
  color-scheme: light;
  --page-bg: #f8f1ff;
  --paper: #ffffff;
  --text: #3f2d44;
  --muted: #806f86;
  --max-lp-width: 680px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 255, 0.74) 18%, rgba(248, 241, 255, 0.74) 82%, rgba(255, 255, 255, 0.94)),
    var(--page-bg);
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-shell {
  width: min(100%, var(--max-lp-width));
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 44px rgba(83, 53, 120, 0.12);
}

.sections {
  line-height: 0;
}

.sections section {
  margin: 0;
}

.sections img {
  width: 100%;
}

.site-footer {
  width: min(100%, var(--max-lp-width));
  margin: 0 auto;
  padding: 28px 20px 34px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  background: #ffffff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
}

.cta-footer-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  pointer-events: none;
}

.cta-button {
  display: block;
  width: min(100%, var(--max-lp-width));
  margin: 0 auto;
  animation: ctaPulse 1.8s ease-in-out infinite;
  transform-origin: center bottom;
  pointer-events: auto;
}

.cta-button img {
  width: 100%;
  filter: drop-shadow(0 -6px 18px rgba(0, 0, 0, 0.14));
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@media (max-width: 540px) {
  body {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
    background: #ffffff;
  }

  .lp-shell,
  .site-footer,
  .cta-button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

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

  .cta-button {
    animation: none;
  }
}
