.autoSlide .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-container {
  position: relative;
}

.swiper-pagination {
  width: 18.6666666667vw !important;
  aspect-ratio: 52/8;
  bottom: 5.3333333333vw !important;
  left: 6.4vw !important;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .swiper-pagination {
    width: 64px !important;
    bottom: 26px !important;
    left: 30px !important;
  }
}
.swiper-pagination-bullet {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  margin: 0 !important;
  background: #fff;
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.swiper-pagination-bullet-active {
  background-color: #FF8000;
}

.scrub {
  will-change: transform;
}

.fadeIn {
  opacity: 0;
  transition: all 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.slideUp {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}
.slideUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.2s;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes backgroundSwap {
  0% {
    background-image: url(../images/bg_sp-1.jpg);
  }
  50% {
    background-image: url(../images/bg_sp-2.jpg);
  }
  100% {
    background-image: url(../images/bg_sp-1.jpg);
  }
}
@keyframes backgroundSwapPc {
  0% {
    background-image: url(../images/bg_pc-1.jpg);
  }
  50% {
    background-image: url(../images/bg_pc-2.jpg);
  }
  100% {
    background-image: url(../images/bg_pc-1.jpg);
  }
}/*# sourceMappingURL=trigger.css.map */