@charset "utf-8";


/* slider
--------------------------------------------------------- */
.slideFrame {
	position: relative;
	margin:0;
	overflow: hidden;
	overflow-x: auto;
	width: 100%;
	height: 160px;
}

.slideGuide {
	width: 100%;
	height: 100%;
	background:#333;
}

.slideCell {
	display: block;
	float: left;
	margin-right: 0;
	width: 160px;
	height: 100%;
	background: #FFF;
	color: #333;
	margin:0 0 16px 0;
	position: relative;
	overflow: hidden;
}

/* sample */
.slideCell a {
	display: block;
	width: 100%;
	height: 100%;
	background: skyblue;
}
.slideCell a:hover {
	background: yellow;
}

/* controller */
.slideCtrl {
	display: none;
	position: absolute;
	top: 0;
	width: 40px;
	height: 100%;
	color: #fff;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	opacity: 0.8;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	filter: alpha(opacity=80);
	z-index:99;
	/* 確認用 */	
	background: #555 url(hatch.png);

}

.slideCtrl.left { left: -5px; }
.slideCtrl.right { right: -5px; }


/* クラス名変更
--------------------------------------------------------- */
.cell {
	display: block;
	float: left;
	margin-right: 0;
	width: 200px;
	height: 100%;
	background: #FFF;
}

.controller {
	position: absolute;
	top: 0;
	width: 40px;
	height: 100%;
	padding-top: 0;
	background: #676767 url(hatch.png);
	text-align: center;
	cursor: default;
	opacity: 0.8;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	filter: alpha(opacity=80);
}

.controller.left { left: -5px; }
.controller.right { right: -5px; }


/* フィルム風
--------------------------------------------------------- */
#slide-07 {
	margin-top: 0;
	height: 120px;
}

#slide-07 .slideCell {
	width: 210px;
	background: #333;
}

#slide-07 .slideCell .line {
	border-top: 5px dashed #333;
	border-bottom: 5px dashed #333;
	background: #fff;
}

#slide-07 .slideCell .box {
	border: 5px solid #333;
	background: #fff;
	height: 100px;
	overflow: hidden;
	text-align: center;
}


/* drag & flick
--------------------------------------------------------- */
#slide-11 {
	cursor: url("open.cur"), default;
}



/*スライダキャプションのアニメーション設定*/

figcaption {
	color:#fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
figcaption h3,
figcaption p {
	position: absolute;
	left: -100%;
	width: 150px;
	-webkit-transition: .3s;
	transition: .3s;
}
figcaption h3 {
	top: 20px;
	line-height:1.1em;
}
figcaption p {
	top: 65px;
}
.slideCell:hover figcaption {
	opacity: 1;
}
.slideCell:hover figcaption h3,
.slideCell:hover figcaption p {
	left: 5px;
}
.slideCell:hover figcaption h3 {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.slideCell:hover figcaption p {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
