.modalOpen:hover{cursor: pointer;}
.modal{display: none;}

.modalView{
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: none;
	z-index: 9000;
}

.modalBg{
	width: 100%;
	height: 100%;
	background-color: rgba(0 0 0 / 0.6);
}

.modalWrap{
	padding: 4vw;
	box-sizing: border-box;
	background: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}


.modalClose{
	position: absolute;
	top: -4.5vw;
	right: -3.5vw;
	z-index: 1000;
	width: calc(86vw / 9);
	height: calc(86vw / 9);
	background-color: #3c3c3c;
	border-radius: 50%;
	border: 0.4vw solid #fff;
}
.modalClose::before{
	width: 60%;
	height: 0.6vw;
	content: '';
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modalClose::after{
	width: 60%;
	height: 0.6vw;
	content: '';
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modalClose:hover{cursor: pointer;}

.modalMovie{
	padding: 0;
	width: 90%;
	height: auto;
}

.modalMovie .movieWrap {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}

.modalMovie .movieWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (min-width: 750px) {
	.modalWrap{
		padding: 50px;
	}

	.modalClose{
		top: -16px;
		right: -16px;
		width: calc(86px / 2);
		height: calc(86px / 2);
		border-width: 2px;
		}
		.modalClose::before{
			height: 3px;
		}
		.modalClose::after{
			height: 3px;
		}

	.modalMovie{
		width: 80%;
	}
}/* end @media */


@media screen and (min-width: 1080px) {
	.modalMovie{
		width: 70%;
	}
}/* end @media */