@charset "UTF-8";

/* --------------------------------
 * コンテンツ
 * -------------------------------- */

.contents {
	position: relative;
	max-width: 1240px;
	min-width: 740px;
	padding: 0 70px;
	margin: 0 auto;
	z-index: 1;
}

.contents:after {
	content:" ";
	display:block;
	clear:both;
}

.contents_lead {
	padding-top: 30px;
	font-size: 1.8rem;
	font-weight: 100;
	letter-spacing: 0.3rem;
	color: #666;
}

.contents_lead_inner {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: solid 0.5px #666;
	font-weight: thin;
	font-family: 'Droid Serif', serif;
}

/* --------------------------------
 * ムービー
 * -------------------------------- */

.movwrap {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: black;
	margin-top: 30px;
}

.contents .movwrap:nth-child(n+5) {
}

.register {
	text-align: right;
	font-size: 1.1rem;
	padding: 5px 0;
	color: #666;
}

.register a {
	color: #666;
}

.contents section:nth-child(n+1) {
	margin-bottom: 50px;
}

.contents section:nth-child(3) {
	margin-bottom: 30px;
}

.contents section:nth-child(4) {
	margin-bottom: 30px;
}

.movtitle {
	width: 100%;
	position: absolute;
	bottom: 40%;
	padding-bottom: 10px;
	text-align: center;
	vertical-align: middle;
	font-size: 2.3rem;
	font-weight: bold;
	color: white;
	-webkit-transform: translate3d(0%, -200%, 0);
	transform: translate3d(0%, -200%, 0);
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	opacity: 0;
}

.movwrap * {
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.movimg img {
	width: 100%;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	background-color: rgba(255, 255, 255, .01); /* 透明度を低く指定しました。 */
}

.movimg a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
}

.movimg:hover img,
.movimg.hover img {
	opacity: 0.2;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.movwrap:hover .movtitle,
.movwrap.hover .movtitle {
	-webkit-transform: translate3d(0%, 0%, 0);
	transform: translate3d(0%, 0%, 0);
	opacity: 0.9;
}