.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: 10px;
	background: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 1000;
}

.modalClose{
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 1000;
	width: calc(86px / 2);
	height: calc(86px / 2);
	background: url("../img/modal_close.png") no-repeat;
	background-size: contain;
}
.modalClose:hover{
	cursor: pointer;
}

.modalMovie{
	padding: 0;
	width: 80%;
	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%;
}