@charset 'UTF-8';
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 48%;
	display: block;
	width: 28px;
	height: 48px;
	padding: 0;
	cursor: pointer;
	z-index:1000;
}

.slick-prev{
	width: 14px;
	height: 24px;
	left: 5px;
	background:url(../img/icon_l.svg) no-repeat;
	background-size:100% 100% 
}

.slick-next{
	width: 14px;
	height: 24px;
	right: 5px;
	background:url(../img/icon_r.svg) no-repeat;
	background-size:100% 100% 
}

/* Dots */
.slick-dotted.slick-slider {margin-bottom: 1vw;}

.slick-dots {
	position: absolute;
	bottom: 1vw;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	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;
	color: #065A89;
}

.slick-dots li button:before {
	font-size: 18px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '●';
	text-align: center;
	text-shadow: 0 0 4px white;
	opacity: .50;
	color: #FFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: 1;
	color: #065A89;
}
