@-webkit-keyframes modal-video {
	from {
		opacity: 0;
	}to {
		opacity: 1;
	}
}@keyframes modal-video {
	from {
		opacity: 0;
	}to {
		opacity: 1;
	}
}@-webkit-keyframes modal-video-inner {
	from {
		transform: translate(0, 100px);
	}to {
		transform: translate(0, 0);
	}
}@keyframes modal-video-inner {
	from {
		transform: translate(0, 100px);
	}to {
		transform: translate(0, 0);
	}
}.modal-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	z-index: 1000000;
	cursor: pointer;
	opacity: 1;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-name: modal-video;
	animation-name: modal-video;
	transition: opacity 0.3s ease-out;
}.modal-video-close {
	opacity: 0;
}.modal-video-close .modal-video-movie-wrap {
	transform: translate(0, 100px);
}.modal-video-body {
	max-width: 1000px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: table;
}.modal-video-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}.modal-video-movie-wrap {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
	background-color: #333;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-name: modal-video-inner;
	animation-name: modal-video-inner;
	transform: translate(0, 0);
	transition: transform 0.3s ease-out;
}.modal-video-movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}.modal-video-close-btn {
	position: absolute;
	z-index: 2;
	top: -35px;
	right: 0;
	display: inline-block;
	width: 35px;
	height: 35px;
	overflow: hidden;
	border: none;
	background: transparent;
}.modal-video-close-btn:before {
	transform: rotate(45deg);
}.modal-video-close-btn:after {
	transform: rotate(-45deg);
}.modal-video-close-btn:before,
.modal-video-close-btn:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #fff;
	border-radius: 5px;
	margin-top: -6px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.modal-video-inner {
		padding: 0 15px;
		box-sizing: border-box;
	}
}