@charset "UTF-8";
/* ==============================================
	ASSETS PC - base

	width: -webkit-calc(100% - 127px);
	width: calc(100% - 127px);
	transition: all .2s;
	@include mx.clearfix;
	@include mx.radius(5);
	============================================== */
#modal, #modal2 {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-color: rgba(247, 247, 243, 0.9);
	overflow: auto;
	display: none;
}
.modal__inner {
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
}
.modal__block {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 80px 0;
}
.modal__closeBg {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
}
.modal__button--close {
	width: 80px;
	height: 50px;
	position: absolute;
	right: 0px;
	top: -70px;
}
.modal__button--close a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	box-sizing: border-box;
}
.modal__button--close a::before, .modal__button--close a::after {
	content: "";
	display: block;
	width: 120%;
	height: 1px;
	background-color: #383834;
	position: absolute;
	left: 50%;
	top: 50%;
	transition: all 0.2s;
}
.modal__button--close a::before {
	transform: translate(-50%, -50%) rotate(30deg);
}
.modal__button--close a::after {
	transform: translate(-50%, -50%) rotate(-30deg);
}
.modal__button--close a:hover::before, .modal__button--close a:hover::after {
	transform: translate(-50%, -50%) rotate(0deg) scaleX(0.7);
}
.modal__movie {
	width: 1080px;
	margin: 0 auto;
	position: relative;
	text-align: left;
	display: none;
}
.modal__movie__inner {
	position: relative;
	zoom: 1;
}
.modal__movie__inner::after {
	content: "";
	clear: both;
	display: block;
}
.modal__movie__details__frame {
	line-height: 1em;
	width: 100%;
}
.modal__movie__details__frame iframe {
	width: 100%;
	height: 608px;
}
.modal__comment {
	width: 800px;
	margin: 0 auto;
	position: relative;
	text-align: left;
	background-color: #f3f3ee;
	box-sizing: border-box;
	display: none;
}
/* ==============================================
	ASSETS SP - base

	padding: 150px 0;
	padding: 40vw 0;
	@include mx.clearfix;
	@include mx.spimg(width, 200);
	============================================== */
@media screen and (max-width: 1199px) {
	.modal__block {
		padding: 0;
	}
	.modal__button--close {
		width: 10.6666666667vw;
		height: 8vw;
		right: 0px;
		top: -10.4vw;
	}
	.modal__button--close a::before, .modal__button--close a::after {
		height: 0.2666666667vw;
		background-color: #000000;
		transition: none;
	}
	.modal__button--close a::before {
		transform: translate(-50%, -50%) rotate(30deg);
	}
	.modal__button--close a::after {
		transform: translate(-50%, -50%) rotate(-30deg);
	}
	.modal__button--close a:hover::before {
		transform: translate(-50%, -50%) rotate(30deg) scaleX(1);
	}
	.modal__button--close a:hover::after {
		transform: translate(-50%, -50%) rotate(-30deg) scaleX(1);
	}
	.modal__movie {
		width: 90%;
	}
	.modal__movie__details__frame iframe {
		height: 54.6666666667vw;
	}
	.modal__comment {
		width: 100%;
		overflow: hidden;
	}
}

