.product-slider-wrap {
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  overflow: hidden;
}

.product-slider {
  width: 100%;
  overflow: hidden;
  padding: 0 36px;
  box-sizing: border-box;
}

.product-slider .swiper-wrapper {
  display: flex;
}

.product-slider .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}

.product-slider__img {
  max-width: 400px;
  //aspect-ratio: 5 / 7;
  overflow: hidden;
}

.product-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-slider .swiper-slide{
  display: flex;
  justify-content: center;
}

/* 矢印 */
.product-slider .swiper-button-prev,
.product-slider .swiper-button-next {
  width: 28px;
  height: 28px;
  color: #002753;
}

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

.sub-img{
  margin: 2rem auto;
}

@media screen and (max-width: 767px) {
  .product-slider-wrap {
    width: 100%;
    max-width: 360px;
  }

  .product-slider {
    width: 100%;
    padding: 0 28px;
  }

  .product-slider__img {
    aspect-ratio: auto;
    height: auto;
  }
  .sub-img{
    display: flex;
    flex-direction: column;
  }
  
  .col-3{
    max-width: 100%
  }
}