@charset "UTF-8";
/*============================
base
============================*/
/*モーダルを開くボタン*/
.modal-open {
	display: block;
	position: relative;
}
.modal-open img {
	border-radius: 5px;
	width: 100%;
	height: 100%;
}
.modal-open:hover {
	opacity: 1;
	cursor: pointer;
}
.modal-open:hover::before {
	background-color: rgba(0, 0, 0, 0);
}
.modal-open::before {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	border-radius: 5px;
}
.modal-open::after {
	content: " ";
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translate(50%, -50%);
	   -moz-transform: translate(50%, -50%);
	    -ms-transform: translate(50%, -50%);
	     -o-transform: translate(50%, -50%);
	        transform: translate(50%, -50%);
	background-image: url(../../assets/img/ic_play.svg);
	background-repeat: no-repeat;
	background-size: 40% 40%;
	background-position: center center;
	width: 100%;
	height: 100%;
	display: block;
}
/*モーダル枠外のキャプション*/
.modal-open_caption {
	display: block;
	text-align: right;
	width: 100%;
	line-height: 1.5;
	padding-top: 1em;
	font-size: 80%;
	color: #333;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, .8);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 1;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 600px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	top: -60px;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
	opacity: .6;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
	position: fixed; /*ハンバーガーメニューとのレイヤー調整用*/
	z-index: 99; /*ハンバーガーメニューとのレイヤー調整用*/
}
/*キャプション設定*/
.bl_movieCaption__wrap {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 5% 0;
}
.bl_movieCaption__wrap > .__caption, .bl_movieCaption__wrap > .__datetime {
	color: var(--c-brown);
	line-height: 1.75;
}
/*============================
header
============================*/
.bl_header__wrap {}
/*============================
youtube
============================*/
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}