:root {
  color-scheme: light;
  --page-bg: #fff8f5;
  --shadow: 0 22px 70px rgba(201, 92, 105, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 214, 206, 0.72), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(255, 238, 206, 0.58), transparent 30rem),
    linear-gradient(180deg, #fffaf7 0%, var(--page-bg) 48%, #fff 100%);
  color: #3d221b;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.lp {
  width: min(100%, 864px);
  margin: 0 auto;
  padding-bottom: 0;
  background: #fff;
  box-shadow: none;
}

.lp-slice {
  position: relative;
  margin: 0;
  line-height: 0;
}

.lp-slice img {
  display: block;
  width: 100%;
  height: auto;
}

.section-bridge {
  display: block;
  height: 0;
  overflow: hidden;
}

.hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
}

.hotspot:focus-visible {
  outline: 3px solid rgba(239, 111, 120, 0.82);
  outline-offset: 4px;
}

.hotspot-hero {
  left: 6.5%;
  right: 6.5%;
  top: 81%;
  height: 9.6%;
}

.hotspot-final {
  left: 6.5%;
  right: 6.5%;
  top: 73.8%;
  height: 9%;
}

.floating-cta {
  position: fixed;
  right: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 20;
  display: block;
  width: min(96vw, 500px);
  transform: translateX(50%);
  filter: drop-shadow(0 12px 24px rgba(196, 64, 74, 0.3));
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateX(50%) translateY(-2px);
  filter: drop-shadow(0 16px 30px rgba(196, 64, 74, 0.34));
}

.floating-cta:focus-visible {
  outline: 3px solid rgba(239, 111, 120, 0.82);
  outline-offset: 4px;
  border-radius: 999px;
}

.floating-cta img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  body {
    padding: 32px 0;
  }

  .lp {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .floating-cta {
    width: 500px;
  }
}

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

  .floating-cta {
    transition: none;
  }
}
