@charset "UTF-8";
/* CSS Document */

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
}
/* 前へ次への矢印カスタマイズ */
.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:url("../img/swarrow.png") left top no-repeat;
	background-size: cover;
}
/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background:url("../img/swarrow.png") left top no-repeat;
	background-size: cover;
	transform: scale(-1, 1); 
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}