@charset "utf-8";

/* Coming Soon */
.lp-coming-soon {
  padding: 64px 0 56px;
  text-align: center;
}

.lp-coming-soon__text {
  margin: 0 0 10px;
  color: #3d629e;
  font-family: "Century Gothic", "Quicksand", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.lp-coming-soon__dots {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.lp-coming-soon__dots li {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #3e639f;
}

@media (max-width: 801px) {
  .lp-coming-soon {
    padding: 40px 0 36px;
  }
  .lp-coming-soon__text {
    font-size: 22px;
  }
  .lp-coming-soon__dots li {
    width: 5px;
    height: 5px;
  }
}

/* Close Button */
.lp-close-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 0 0;
}

.lp-close {
  display: inline-block;
  width: 180px;
  transition: opacity 0.2s ease, transform 0.1s ease, filter 0.15s ease;
}

.lp-close:hover {
  opacity: 0.9;
  filter: brightness(1.03);
}

.lp-close:active {
  transform: scale(0.95);
  opacity: 0.7;
  filter: brightness(0.95);
}

@media (max-width: 801px) {
  .lp-close-wrap {
    padding-top: 18px;
  }
}
