.swiper-slide img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 46px;
}

.swiper-button-next,
.swiper-button-prev {
  top: unset;
  position: absolute;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/arr_left.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/arr_right.svg);
}

.swiper-pagination-bullet {
  background: #fff;
  border: 1px solid #707070;
  opacity: 1;
  position: relative;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-bullet-active::after {
  content: '';
  background: #0076FF;
  width: 4px;
  height: 4px;
  display: block;
  position: relative;
  left: 1px;
  top: 1px;
  border-radius: 50%;
}

.swiper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width:768px) {
  .swiper-wrap {
    max-width: 286px;
  }
}