@charset "UTF-8";
html, body {
  height: 100%;
  margin: 0;
  scroll-snap-type: y mandatory; /* 初期は1→2のスナップを有効化 */
}

.opening {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}
.opening .infinite {
  width: calc(640 / var(--pc));
  height: calc(350 / var(--pc));
  margin: 0;
}
.opening .infinite img {
  animation: fade 1.2s ease-in-out forwards;
}
.opening .infinite img.infinite-img02, .opening .infinite img.infinite-img03 {
  opacity: 0;
  animation-delay: 0.5s;
}
.opening .infinite img.infinite-img02 {
  width: calc(109 / var(--pc));
  top: calc(130 / var(--pc));
  left: calc(114 / var(--pc));
}
.opening .infinite img.infinite-img03 {
  width: calc(142 / var(--pc));
  top: calc(114 / var(--pc));
  right: calc(90 / var(--pc));
}
.opening .teaser-arrow {
  position: absolute;
  bottom: calc(41 / var(--pc));
  left: 50%;
  transform: translateX(-50%);
}
.opening a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.teaser-arrow {
  width: calc(6 / var(--pc));
  height: calc(35 / var(--pc));
  background: url(../../images/martinique/teaser/teaser-arrow.webp) no-repeat;
  background-size: contain;
  margin: 0 auto;
}

.teaser p {
  line-height: 160%;
  letter-spacing: 0.04em;
  font-size: calc(15 / var(--pc));
  width: calc(701 / var(--pc));
  margin: 0 auto;
  padding-top: calc(140 / var(--pc));
  text-align: center;
}
.teaser .welcome {
  width: calc(860 / var(--pc));
  margin: calc(120 / var(--pc)) auto 0;
}
.teaser .teaser-logo1 {
  width: calc(547 / var(--pc));
  margin: calc(64 / var(--pc)) auto 0;
}
.teaser .teaser-logo2 {
  width: calc(967 / var(--pc));
  margin: calc(37 / var(--pc)) auto 0;
}
.teaser .enter {
  width: calc(145 / var(--pc));
  margin: calc(50 / var(--pc)) auto 0;
  padding-bottom: calc(50 / var(--pc));
}

.snap-container {
  height: 100vh;
  overflow-y: auto;
  overflow-anchor: none;
  scroll-snap-type: y mandatory;
}
.snap-container .snap-area {
  min-height: 100vh;
  scroll-snap-align: start;
}
.snap-container .snap-area.second {
  background: #FAD2C4;
}
.snap-container.snap-container.no-snap {
  scroll-snap-type: none !important; /* ← 2枚目以降は通常スクロール */
  height: auto;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .opening {
    padding-bottom: calc(60 / var(--sp));
  }
  .opening .infinite {
    width: calc(210 / var(--sp));
    height: calc(384 / var(--sp));
  }
  .opening .infinite img.infinite-img02 {
    width: calc(65 / var(--sp));
    top: calc(74 / var(--sp));
    left: calc(72 / var(--sp));
  }
  .opening .infinite img.infinite-img03 {
    width: calc(86 / var(--sp));
    top: calc(246 / var(--sp));
    right: unset;
    left: calc(64 / var(--sp));
  }
  .opening .teaser-arrow {
    bottom: calc(90 / var(--sp));
  }
  .teaser-arrow {
    width: calc(3 / var(--sp));
    height: calc(27 / var(--sp));
  }
  .teaser p {
    letter-spacing: 0.02em;
    line-height: 130%;
    font-size: calc(15 / var(--sp));
    width: calc(322 / var(--sp));
    padding-top: calc(60 / var(--sp));
  }
  .teaser .welcome {
    width: calc(317 / var(--sp));
    margin-top: calc(70 / var(--sp));
  }
  .teaser .teaser-logo1 {
    width: calc(232 / var(--sp));
    margin-top: calc(40 / var(--sp));
  }
  .teaser .teaser-logo2 {
    width: calc(317 / var(--sp));
    margin-top: calc(25 / var(--sp));
  }
  .teaser .enter {
    width: calc(105 / var(--sp));
    margin-top: calc(50 / var(--sp));
    padding-bottom: calc(50 / var(--sp));
  }
}/*# sourceMappingURL=welcome.css.map */