@charset 'utf-8';
.mv-modal{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,1);
	z-index: 9999;
	opacity: 0;
}
.modal-inner{
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.modal-close{
	width: 5.33%;
	height: 2.5vw;
	display: block;
	position: absolute;
	top: 3%;
	right: 1%;
	margin-right: 0px;
	margin-top: 0px;
	z-index: 9998;
	cursor: pointer;
}
.modal-close img{
	width: 100%;
	max-width: 82px;
}
.modal-iframe{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9997;
	cursor: default;
	max-width: 1344px;
	width: 80%;
}
.modal-iframe-player iframe{
	width: 85vw;
	height: 85vh;
}
/* sp */
@media screen and (max-width: 768px) {
	.modal-inner{
		position: absolute;
		width: 100%;
		height: auto;
		padding: 0 3%;
		top: 50%;
		left: 0;
		right: 0;
		transform: translate(0%, -50%);
	}
	.modal-close{
		width: 40px;
		height: 40px;
		right: 3%;
		top: -43vw;
	}
	.modal-iframe{
		width: 100%;
	}
	.modal-iframe-player{
	}
	.modal-iframe-player iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}