@charset 'UTF-8';
/* Arrows */
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
	z-index: 1;
	transform: translate(0, -50%);
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
	font-size: 0;
    line-height: 0;
}
.slick-prev {
    left: -25px;
	width: 50px;
	height: 50px;
	background: url("../img/svc/icon_arrowL.svg") no-repeat center right / 50px;
}
.slick-next {
    right: -25px;
	width: 50px;
	height: 50px;
	background: url("../img/svc/icon_arrowR.svg") no-repeat center right / 50px;
}
/* Dots */
.slick-dots {
	margin-top: 5rem;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before {
    content: '';
	position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
	border: 1px solid #6E7AA2;
	border-radius: 50%;
	background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {background: #6E7AA2;}
@media only screen and ( max-width : 767px ) {
	.slick-dots {margin-top: 2rem;}
}