.video_btn {
	transition: .3s;
	opacity: 1;
	cursor: pointer;
}

.video_btn:hover {
	opacity: .7;
}

.video_modal {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: none;
}

.video_modal_inner {
	position: relative;
	z-index: 0;
	width: 100vw;
	height: 100vh;
}

.video_modal_inner_back {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
}

.video_modal_inner_main {
	position: absolute;
	max-width: 1000px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
}

.video_modal_inner_main_inner {
	width: 100%;
	position: relative;
}

.video_modal_inner_main_inner_cancel {
	width: 30px;
	position: absolute;
	right: 0;
	top: -40px;
	cursor: pointer;
	transition: .3s;
}

.video_modal_inner_main_inner_cancel:hover {
	opacity: .7;
}

.video_modal_inner_main_inner_contents {
	padding: calc(315 / 560* 100%) 0 0;
	position: relative;
	width: 100%;
	max-width: 1000px;
}

.video_modal_inner_main_inner_contents .video_modal_inner_main_inner_contents_video {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

@media screen and (max-width: 1160px) {
	.video_modal_inner_back {
		width: 1160px;
		height: calc(100vh * 1.5);
	}
	.video_modal_inner {
		width: 1160px;
		height: calc(100vh * 1.5);
	}
	.video_modal_inner_back {
		width: 1160px;
		height: calc(100vh * 1.5);
	}
}

@media screen and (max-width: 767px) {
	.video_modal_inner_back {
		width: 100vw;
		height: 100vh;
	}
	.video_modal_inner {
		width: 100vw;
		height: 100vh;
	}
	.video_modal_inner_back {
		width: 100vw;
		height: 100vh;
	}
	.video_modal_inner_main_inner {
		width: calc(100% - 40px);
		left: 20px;
	}
}