/*全体の指定*/

.swiper-container{
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position:absolute;
	top:0;
	left:0;
}
.swiper-wrapper{
	position:relative;
	}
/*dots*/
.swiper-pagination {
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}
.swiper-pagination-bullet-active {
	background: #333;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}
/*arrow*/
.swiper-button-prev,
.swiper-button-next {
	width: 25px;
	height: 50px;
	margin-top: -25px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background: url(prev.png) no-repeat center center / contain    !important;
	left:-40px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background: url(next.png) no-repeat center center / contain    !important;
	right:-40px;
}
@media only screen and (max-width:1280px){
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left:2%;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	right:2%;
}
}