@charset "utf-8";

/*------ スライダーの横幅 ------*/
.slider{
  width:80%;
  margin:0 auto;
  
}

/*------ スライダー画像 ------*/
.slider img{
	width:100%;
    border-radius: 20px;/*角の丸み*/
}

/*-------- 高さ調整 ----------*/
.slider .slick-slide{
	height:auto!important;
}

/*---------- 矢印 ----------*/
.slider .slick-next{
    right:0!important;
}
.slider .slick-prev{
    left:0!important;
}
.slider .slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slider .slick-arrow:before{
    font-size: 30px!important;
}


@media screen and (max-width: 768px) {
 .slider{
  width:100%;  
}

}