@charset "utf-8";
/* CSS Document */
.swiper {
  float: left;
  width: 830px;
  height: auto;
}
.swiper-slide p {
	color: #333;
	margin-bottom: 2em;
	text-align: center
}
/* 前へ次への矢印カスタマイズ */
.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-image: url("../swiper/prev.png");
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url("../swiper/next.png");
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #009245;
}
