@charset "UTF-8";
/*---------------------------------------------------------- */
/* color */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* width */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* breakpoints */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* font */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* other */
/*---------------------------------------------------------- */
.swiper-container {
  width: 100%;
  padding: 0px 0 30px !important;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(1);
  opacity: 1;
}

.swiper-pagination {
  position: absolute !important;
  bottom: 70px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #C3C3C3 !important;
  border-radius: 50%;
  transition: background 0.3s;
}

.swiper-pagination-bullet-active {
  background: #B48437 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border: none !important;
  color: transparent !important;
  /* デフォルトの矢印を隠す */
  top: calc(50% - 45px) !important;
  /* 高さを30px上に調整 */
  position: absolute;
  /* 必要に応じて位置調整 */
}

.swiper-button-prev {
  background-image: url(../js/swiper/images/btn_prev.svg) !important;
  /* 左矢印の画像を設定 */
}

.swiper-button-next {
  background-image: url(../js/swiper/images/btn_next.svg) !important;
  /* 右矢印の画像を設定 */
}

.swiper-button-prev {
  left: 11% !important;
}

.swiper-button-next {
  right: 11% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 30px !important;
    height: 30px !important;
    z-index: 100 !important;
    top: calc(50% - 25px) !important;
  }

  .swiper-button-prev {
    left: 5% !important;
  }

  .swiper-button-next {
    right: 5% !important;
  }

  .swiper-pagination {
    bottom: 40px !important;
  }
}
