/* Font Face */
@font-face {
  font-family: 'corporate-logo';
  src: url('./fonts/Corporate-Logo-Medium-ver3.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'corporate-logo';
  src: url('./fonts/Corporate-Logo-Bold-ver3.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('./fonts/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('./fonts/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background-color: #ffffff;
}

body {
  margin: 0 auto;
  max-width: 640px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #1e9adb;
}

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

a {
  text-decoration: none;
}

.countdown {
  background-color: #000000;
  padding: 24px 16px;
  text-align: center;
}

.countdown__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.countdown__timer {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  max-width: 100%;
  padding: 0 8px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__digits {
  display: flex;
  gap: 4px;
}

.countdown__digit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(30px, 8vw, 37px);
  height: clamp(41px, 11vw, 52px);
  background-color: #333333;
  border: 2px solid #ffffff;
  border-radius: 7px;
  color: #ffffff;
  font-size: clamp(22px, 6vw, 29px);
  font-weight: 700;
}

.countdown__separator {
  display: flex;
  align-items: center;
  height: clamp(41px, 11vw, 52px);
  color: #ffffff;
  font-size: clamp(22px, 6vw, 29px);
  font-weight: 700;
  margin: 0 3px;
}

.countdown__label {
  color: #ffffff;
  font-size: 12px;
  margin-top: 8px;
}

.lp {
  width: 100%;
  padding-bottom: 90px;
  background-color: #1e9adb;
}

.lp-slice {
  position: relative;
  width: 100%;
}

.lp-slice__image {
  width: 100%;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 1;
}

.hotspot--kv-cta {
  left: 6%;
  top: 64.5%;
  width: 88%;
  height: 9%;
}

.hotspot--step1-cta {
  left: 9%;
  top: 70%;
  width: 82%;
  height: 12%;
}

.hotspot--application-cta {
  left: 15%;
  top: 58%;
  width: 70%;
  height: 18%;
}

.hotspot--point-cta {
  left: 9%;
  top: 37%;
  width: 82%;
  height: 7%;
}

.hotspot--more-cta {
  left: 9%;
  top: 87%;
  width: 82%;
  height: 7%;
}

.hotspot[aria-disabled="true"] {
  pointer-events: none;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
}

.fixed-cta .cta-button {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
}

.fixed-cta .cta-button::after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 4s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.terms {
  background-color: #f5f5f5;
  padding: 30px 16px 120px;
}

.terms__title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0 0 16px;
}

.terms__scroll {
  height: 200px;
  overflow-y: scroll;
  background-color: #fffcfc;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 16px;
}

.terms__content {
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}

.terms__content p {
  margin: 0 0 12px;
}

.terms__content strong {
  color: #333333;
}

.terms__content ul {
  margin: 0 0 12px;
  padding-left: 20px;
  list-style: disc;
}

.terms__content li {
  margin-bottom: 4px;
}

.terms__scroll::-webkit-scrollbar {
  width: 6px;
}

.terms__scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.terms__scroll::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 3px;
}

.terms__scroll::-webkit-scrollbar-thumb:hover {
  background: #aaaaaa;
}

@media (min-width: 640px) {
  body {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
}
