.modalWp{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 1000;
}
.modal{
	padding: 4vw;
	box-sizing: border-box;
	background: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 1000;
}

.modalClose{
	position: absolute;
	top: -4.5vw;
	right: -3.5vw;
	z-index: 1000;
	width: calc(86vw / 9);
	height: calc(86vw / 9);
	background: url("/anniversary/assets/img/common/modal_close.png") no-repeat;
	background-size: contain;
}
.modalClose:hover{cursor: pointer;}

.modalMovie{
	padding: 0;
	width: 90%;
	height: auto;
}

.modalMovie .movie-wrap {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}

.modalMovie .movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (min-width: 768px) {
	.modal{
		padding: 10px;
	}

	.modalClose{
		top: -20px;
		right: -20px;
		width: calc(86px / 2);
		height: calc(86px / 2);
	}

	.modalMovie{
		width: 80%;
	}
}/* end @media */


@media screen and (min-width: 1080px) {
	.modalMovie{
		width: 70%;
	}
}/* end @media */