@charset "utf-8";
/* CSS Document */

/*================================================
 *  スライドショー
 ================================================*/
.slide {
	width:100%;
	max-width:980px;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;

}

.slideInner {
	list-style:none;
	margin:0 0 5px 0;
	padding:0;

}
.slideInner li {
	position:absolute;
	width:100%;

	margin:0;
	padding:0;

}
.slideInner li img {
	width:100%;
	height:auto;

}

.slidePrev {
	position:absolute;
	width:35px;
	height:42px;
	left:0;
	cursor:pointer;
	z-index:100;
}

.slideNext {
	position:absolute;
	display:block;
	width:35px;
	height:42px;
	right:0;
	cursor:pointer;
	z-index:100;
}

.controlNav {
	  position:relative;
	  float:left;
	  left:50%;
}
.controlNav span {
	position:relative;
	left:-50%;
	float:left;
	margin:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	width:10px;
	height:10px;
	overflow:hidden;
	-webkit-box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset;
	-moz-box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset;
	box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset;
	background:#eee;
	text-indent:-9999px;
	vertical-align:middle;
}
.controlNav span:hover {
	background:#ccc;
	cursor:pointer;
}
.controlNav span.current {
	-webkit-box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset, 0 0 2px rgba(133, 209, 198, 0.5);
	-moz-box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset, 0 0 2px rgba(133, 209, 198, 0.5);
	box-shadow:1px 1px 2px rgba(0, 0, 0, 0.5) inset, 0 0 2px rgba(133, 209, 198, 0.5);
	background-color: #999;
}

