/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 48px;
  width: 48px;
  margin-top: 0;
}
.swiper-button-prev {
  top: 50%;
  left: -18px;
  transform: rotate(180deg) translateY(50%);
}
.swiper-button-next {
  right: -18px;
  transform: translateY(-50%);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 48px;
  margin: auto;
  width: 48px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url(../images/slider_arrow.png);
}
/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url(../images/slider_arrow.png);
}
/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -40px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-bullet {
  background-color: #cccccc;
  opacity: 1;
  height: 12px;
  width: 12px;
}
.swiper-pagination-bullet-active {
  background-color: #ff4c3e;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}