.modalInlineOpen:hover{cursor: pointer;}

.modalInlineWp{
	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: 2000;
}
.modalInline{
	/* padding: 4vw; */
	box-sizing: border-box;
	/* background: #fff; */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 2000;
}

.modalInlineClose{
	position: absolute;
	top: -4.5vw;
	right: -3.5vw;
	z-index: 2000;
	width: calc(86vw / 9);
	height: calc(86vw / 9);
	background-color: #3c3c3c;
	border-radius: 50%;
	border: 0.4vw solid #fff;
}
.modalInlineClose::before{
	width: 60%;
	height: 0.6vw;
	content: '';
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modalInlineClose::after{
	width: 60%;
	height: 0.6vw;
	content: '';
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modalInlineClose:hover{cursor: pointer;}

.modalInlineMovie{
	padding: 0;
	width: 90%;
	height: auto;
}

.modalInlineMovie .movie-wrap {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}

.modalInlineMovie .movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (min-width: 750px) {
	.modalInline{
		/* padding: 10px; */
	}

	.modalInlineClose{
		top: -16px;
		right: -16px;
		width: calc(86px / 2);
		height: calc(86px / 2);
		border-width: 2px;
		}
		.modalInlineClose::before{
			height: 3px;
		}
		.modalInlineClose::after{
			height: 3px;
		}

	.modalInlineMovie{
		/* width: 80%; */
		max-width: 1080px;
	}
}/* end @media */


@media screen and (min-width: 1080px) {
	.modalInlineMovie{
		/* width: 70%; */
	}
}/* end @media */