@charset "utf-8";
body{margin:0;}
.splide{
	padding:0 18px;
}
.splide__slide img{
	width:100%;
	height:auto;
}
.button {
  height: 100%;
  width: 13px;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  bottom: 0;
  border:0;
  background-color:#b3b3b3;
  padding:0;
}
.splide__arrow--prev{
	left:0px;
  border-radius:4px 0 0 4px;
}
.button::before {
  background-repeat: no-repeat;
  background-size: 6px;
  background-position:0 0;
  border-radius:0;
  content: "";
  height: 12px;
  left: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  transform:translate(-50%,-50%);
  width: 6px;
}
.button:hover::before {
	background-position:0 -12px;
}
.splide__arrow--next{
	right:0px;
  border-radius:0 4px 4px 0;
}
.prev::before {
  background-image:url(../img/arrow_prev.png);
}
.next::before {
  background-image: url(../img/arrow_next.png);
}
.button:disabled::before {
  opacity: .5;
}
