@charset "utf-8";
*{
	margin:0;
	padding:0;
	box-sizing:border-box;	
}
#c-slider {
	margin:auto;
	width:85%;
	max-height:500px;
	max-width:900px;
	position:relative;
	overflow:hidden;	
	box-shadow:0 0 0 0px #fff,
				0 0px 25px;
}
#slider {
	display:flex;
	width:400%;	
}
#slider section{
	width:100%;	
}
.img{
	display:block;	
	width:100%;
	height:450px;	
}
#btn-prev, #btn-next {
	width:40px;
	height:40px;
	background:rgba(255,255,255,0.7);
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	line-height:40px;
	font-size:30px;
	font-weight:bold;
	text-align:center;
	border-radius:50%;
	cursor:pointer;
	font-family:monospace;
}

#btn-prev:hover, #btn-next:hover {
	background:rgba(255,255,255,1)
}

#btn-prev {
	left:4px;	
}

#btn-next {
	right:4px;	
}
@media(max-width:768px){
.img{
	display:block;	
	width:100%;
	height:300px;	
}
}
@media(max-width:480px){
.img{
	display:block;	
	width:100%;
	height:200px;	
}
}

