* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}

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

#fullPageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
}

body.loaded #fullPageLoader {
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

#fullPage {
  width: 100dvw;
  height: 100dvh;
  position: relative;
}

.fullPageContents {
  height: 87.4dvh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.slide {
  scroll-snap-align: start;
  width: 100%;
  height: 87.4dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}

.slide img {
  max-height: 87.4dvh;
  max-width: 100dvw;
  display: block;
}

.cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12.59dvh;
  text-align: center;
  overflow: hidden;
}

.ctaInner {
  position: relative;
  display: inline-block;
}

.ctaImg {
  max-height: 12.59dvh;
  max-width: 100dvw;
  display: block;
  margin: 0 auto;
}

video {
  max-width: 100%;
  max-height: 87.4dvh;
  height: auto;
}

#thanks {
  max-width: 750px;
  margin: 0 auto;
}

#thanks p {
  padding: 0 0 1em;
}



/* スクロールダウン */
.scrollDown.active {
  display: block;
}

.scrollDown {
  display: none;
  position: absolute;
  text-align: center;
  bottom: 5dvh;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: left;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  border: none;
  background: none;
}

.scrollDown::before {
  display: block;
  animation: scrollDown 2s infinite;
  border-bottom: 4px solid #999;
  border-left: 4px solid #999;
  content: "";
  height: 5dvh;
  margin: auto;
  width: 5dvh;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-2.5dvh, 2.5dvh);
  }

  100% {
    opacity: 0;
  }
}

.slideInner {
  position: relative;
  display: inline-block;
}

.slideInner a {
  display: block;
  position: absolute;
}

.slideInner a.link1 {
  width: 13.73%;
  height: 3.60%;
  left: 7.33%;
  top: 54.50%;
}

.slideInner a.link2 {
  width: 34.67%;
  height: 3.60%;
  left: 22.40%;
  top: 54.50%;
}

.slideInner a.link3 {
  width: 28.53%;
  height: 3.60%;
  left: 57.73%;
  top: 54.50%;
}

.slideInner a.link4 {
  width: 21.33%;
  height: 2.70%;
  left: 21.33%;
  top: 46.85%;
}


@media (orientation: portrait) {
  #fullPage {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .fullPageContents {
    aspect-ratio: 750 / 1110;
    width: 100%;
    height: auto;
  }

  .slide {
    aspect-ratio: 750 / 1110;
    width: 100%;
    height: auto;
  }

  .cta {
    position: relative;
  }
}