/* ------------------------------
   .slideWrap
------------------------------ */
.slideWrap {
	margin: 0 auto;
	padding: 70px 0 50px 0;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.slideWrap .btnPrev,
.slideWrap .btnNext {
	bottom: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	background: #000;
	border-radius: 30px;
	transition: all 0.2s ease-in-out;
	z-index: 10;
}

.slideWrap .btnPrev {
	left: 10px;
}

.slideWrap .btnPrev:after {
	content: '<';
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-sizet: 1.6em;
	font-weight: bold;
	text-align: center;
	display: block;
}

.slideWrap .btnNext {
	right: 10px;
}

.slideWrap .btnNext:after {
	content: '>';
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	display: block;
}

/* ------------------------------
   .carousel
------------------------------ */
.carousel {
	margin: 0 auto;
	width: 880px; /* リストが何個以上あったらスライドを実行させるかの基準値 */
	height: 200px;
	position: relative;
	visibility: hidden;
}

.carousel .movePanel {
	top: 0;
	left: 0;
	height: 250px;
	position: absolute;
}

.carousel ul {
	float: left;
	text-align: center;
}


.carousel ul li {
	width: 250px;
	height: auto;
	line-height: 1.2em;
	text-align: center;
	float: left;
	display: block;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
}

.carousel ul li a {
	display: block;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.carousel ul li a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.carousel ul li img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
    border: 7px solid #eee;
}

.carousel ul li p {
	padding: 20;
	color: #000;
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
}
.carousel ul li span {
	color: #000;
	font-size: 0.8em;
}
.carousel ul li.mainActive {
	z-index: 10;
	-webkit-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}

.carousel ul:after {
	content: "";
	display: none;
	clear: none;
}
.ken {
	font-size: 10px;
	display: block;
	padding-top: 10px;
}
