@charset "utf-8";






.box {
	background: url("../img/movie/movie-bg.jpg") center center;
	background-size: cover;
	margin-bottom: 3em;
	text-align: center;
}


.box p {	/* 文字見えないのでsystemと同じ背景つける */
	background: rgba(54,16,34,0.7);
	padding: 1em .5em;
	border-top: 1px solid #c49a70;
	border-bottom: 1px solid #c49a70;
}

h2 {	/* 動画タイトル */
	text-align: center;
	text-shadow: 2px 2px 2px #000;
	font-weight: bold;
}
.col-md-12:nth-child(2) h2 {	/* ページタイトルは太字なし */
	text-shadow: none;
	font-weight: normal;
}



/* 動画のサムネ
----------------------------- */
.popup {
	position: relative;
	overflow: hidden;
	display: block;
	-moz-transition: all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	transition: all .2s ease-out;

	margin-bottom: 2em;
}
.popup img {
	margin: 0 auto .5em;

	border: 1px solid #333;
	box-shadow: 0 0 15px #000;

}
.popup:before{	/* 三角 */
	display: block;
	content: "▶";
	color: #fff;
	font-size: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-shadow: 1px 0 1px rgba(0,0,0,0.2),
				-1px 0 1px rgba(0,0,0,0.2),
				0 1px 1px rgba(0,0,0,0.2),
				0 -1px 1px rgba(0,0,0,0.2),
				5px 5px 5px rgba(0,0,0,0.7);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	-moz-transition: all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.popup:hover {
	opacity: .7;
}
.popup:hover:before{
	margin-top: -48px;
	text-shadow: 1px 0 1px rgba(0,0,0,0.2),
				-1px 0 1px rgba(0,0,0,0.2),
				0 1px 1px rgba(0,0,0,0.2),
				0 -1px 1px rgba(0,0,0,0.2),
				1px 1px 5px rgba(0,0,0,0.9);
}




