@charset "utf-8";
/**動画モーダル**/
#EMP{
	margin: 0 auto;
	position: relative;
	width: 98%;
	z-index: 300;
}
#EMP .close{
	display: block;
	position: absolute;
	top:-30px;
	right:0;
	width:30px;
	height:30px;
	cursor: pointer;
	background: url("../img/all/x.png") no-repeat center center;
	background-size: cover;
	z-index: +2;
}
@media only screen and (min-width: 901px) {
	#EMP{
		width:900px;
		height:506.25px;
	}
}
@media only screen and (max-width: 900px)  and (min-width: 641px) {
	#EMP{
		width:90vw;
		height:50.625vw;
	}
}
@media only screen and (max-width: 640px) {
	#EMP{
		width:100vw;
		height:56.25vw;
	}
}
#EMP iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	box-shadow: 0px 0px 6px 4px rgba(0,0,0,0.03);
}

#MWRAP{
	display: flex;
	justify-content: center;
	align-items: center;
	position:fixed;
	top:0;bottom:0;
	left:0;right:0;
	z-index:-100;
	opacity: 0;
	transition:all .3s linear;
	background-color: rgba(0,0,0,0);
}
#MWRAP.activ{
	z-index: +200;
	opacity: 1.0;
	background-color: rgba(0,0,0,0.75);
}