@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  -webkit-text-size-adjust: none;
}

body {
  color: #2e2e2e;
  font: 14px/1.6 "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  background: #fdf1f4;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.lp-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 34vw;
  overflow: hidden;
  background: #fff;
}

.hero-area {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  position: absolute;
  width: 66%;
  top: 14%;
  left: 2%;
  right: auto;
  transform-origin: center center;
  animation: hero-copy-float 3.8s ease-in-out 2.1s infinite;
  will-change: transform;
}

.hero-badge {
  position: absolute;
  width: 20%;
  top: 40%;
  left: auto;
  right: 20%;
  transform-origin: center center;
  will-change: transform;
}

.hero-icon {
  position: absolute;
  width: 30%;
  bottom: 2%;
}

.hero-icon-01 { left: 2%; }
.hero-icon-02 { left: 35%; }
.hero-icon-03 { right: 2%; }

.main-cta {
  display: block;
}

.content-section {
  display: block;
}

/* Footer */
.site-footer {
  padding: 22px 18px 26px;
  background: #111;
  color: #fff;
  text-align: center;
}

.site-footer__brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.site-footer__nav a {
  font-size: 11px;
  line-height: 1.7;
  opacity: .9;
}

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

.site-footer__copy {
  font-size: 10px;
  line-height: 1.6;
  opacity: .65;
}

/* Floating CTA */
.floating-cta-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120%);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  pointer-events: none;
}

.floating-cta-wrap.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta {
  width: min(90vw, 680px);
  margin: 0 auto 8px;
  transform-origin: center center;
  animation: cta-motion-floating 1.7s ease-in-out infinite;
  will-change: transform;
}

.floating-cta__link {
  display: block;
}


/* Hero animations */
.anim-fade-left {
  animation: fade-left 1.65s cubic-bezier(.16, .78, .24, 1) both;
}

.anim-rise {
  opacity: 0;
  transform: translateY(400px);
  animation: rise-in 1s ease both;
}

.anim-tada {
  animation: badge-pop-wiggle 2.25s cubic-bezier(.18, .89, .32, 1.28) .55s infinite both;
}

.delay-250 { animation-delay: .25s; }
.delay-500 { animation-delay: .5s; }
.delay-750 { animation-delay: .75s; }

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-70px) translateY(24px) scale(.96);
  }
  70% {
    opacity: 1;
    transform: translateX(8px) translateY(-4px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(400px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes cta-motion-floating {
  0%, 100% { transform: scale(1) translateY(0); }
  20% { transform: scale(1.04) translateY(-4px); }
  38% { transform: scale(.99) translateY(1px); }
  58% { transform: scale(1.025) translateY(-2px); }
  76% { transform: scale(1) translateY(0); }
}

@keyframes hero-copy-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-0.6deg); }
}

@keyframes badge-pop-wiggle {
  0%, 38%, 100% { transform: scale(1) rotate(0deg); }
  46% { transform: scale(1.24) rotate(8deg); }
  54% { transform: scale(.90) rotate(-7deg); }
  62% { transform: scale(1.15) rotate(5deg); }
  70% { transform: scale(.96) rotate(-3deg); }
  78% { transform: scale(1.06) rotate(2deg); }
  86% { transform: scale(1) rotate(0deg); }
}

@media screen and (min-width: 900px) {
  .lp-container {
    margin-bottom: 300px;
    box-shadow: 0 0 26px rgba(0, 0, 0, .08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
