@charset "UTF-8";
.styleWrap .swiper-operation {
  width: 48vw;
  aspect-ratio: 180/15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -4.8vw;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
@media screen and (min-width: 1025px) {
  .styleWrap .swiper-operation {
    width: 180px;
    bottom: -18px;
  }
}
.styleWrap .swiper-button-prev,
.styleWrap .swiper-button-next {
  width: fit-content;
  height: fit-content;
  margin-top: 0;
  position: static;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .styleWrap .swiper-button-prev:hover,
  .styleWrap .swiper-button-next:hover {
    opacity: 0.6;
  }
}
.styleWrap .swiper-button-prev::after,
.styleWrap .swiper-button-next::after {
  color: #707070;
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .styleWrap .swiper-button-prev::after,
  .styleWrap .swiper-button-next::after {
    font-size: 12px;
  }
}
.styleWrap .swiper-pagination {
  font-size: 2.6666666667vw;
  position: static;
}
@media screen and (min-width: 1025px) {
  .styleWrap .swiper-pagination {
    font-size: 10px;
  }
}

.realWrap .swiper-scrollbar {
  width: 64vw;
  height: 2px;
  margin-top: 12vw;
  margin-inline: auto;
  background-color: #D3DCE0;
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .realWrap .swiper-scrollbar {
    width: 400px;
    height: 70px;
    margin-top: 12px;
    background-color: transparent;
  }
}
@media screen and (min-width: 1025px) {
  .realWrap .swiper-scrollbar::before {
    content: "";
    width: 400px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D3DCE0;
  }
}
.realWrap .swiper-scrollbar-drag {
  background-color: #4B4942;
}
@media screen and (min-width: 1025px) {
  .realWrap .swiper-scrollbar-drag {
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
  }
}

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

.slideUp {
  opacity: 0;
  transform: translateY(8vw);
  transition: all 1s;
}
@media screen and (min-width: 1025px) {
  .slideUp {
    transform: translateY(30px);
  }
}
.slideUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.slideToRight {
  opacity: 0;
  transform: translateX(-8vw);
  transition: all 1s;
}
@media screen and (min-width: 1025px) {
  .slideToRight {
    transform: translateX(-30px);
  }
}
.slideToRight.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.slideToLeft {
  opacity: 0;
  transform: translateX(8vw);
  transition: all 1s;
}
@media screen and (min-width: 1025px) {
  .slideToLeft {
    transform: translateX(30px);
  }
}
.slideToLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.fadeToRight {
  color: transparent;
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  --duration: 2.0s;
  --ease: ease-out;
}
.fadeToRight.is-inview {
  background-image: linear-gradient(to right, #4B4942 30%, rgba(255, 255, 255, 0) 60%);
  background-position: left 100% center;
  animation: toRight var(--duration, 0.4s) var(--ease) forwards;
  -webkit-animation: toRight var(--duration, 0.4s) var(--ease) forwards;
}

@keyframes toRight {
  100% {
    background-position: left 0% center;
  }
}
.fadeUpRotate {
  opacity: 0;
  transform: rotateY(180deg);
  transition: all 1s;
}
.fadeUpRotate.is-inview {
  opacity: 1;
  transform: rotateY(0);
}

.p-section__title.is-inview::after {
  transform: translateX(-50%) scaleX(1);
  transition-delay: 0.6s;
}

.p-section__buyImage .item img {
  transform: scale(1.2);
}
.p-section__buyImage .item.is-inview img {
  animation: zoomAnimation 2s ease-in-out forwards;
}

@keyframes zoomAnimation {
  100% {
    transform: scale(1);
  }
}
.p-section__commentTxt .highlight.is-inview {
  background-size: 100% 120%;
}

.delay-2.is-inview {
  transition-delay: 0.2s;
}

.delay-4.is-inview {
  transition-delay: 0.4s;
}

.delay-6.is-inview {
  transition-delay: 0.6s;
}

.delay-8.is-inview {
  transition-delay: 0.8s;
}

.delay-10.is-inview {
  transition-delay: 1s;
}

.delay-12.is-inview {
  transition-delay: 1.2s;
}

.creditAjax_price__proper::before,
.creditAjax_price__sale::before {
  content: "¥";
}

.creditAjax_item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}/*# sourceMappingURL=trigger.css.map */