@charset "utf-8";
.movie_item {
		max-width: 840px;
		margin: 0 auto 25px;
		position: relative;
}
.movie_item iframe {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
}
.movie_item_thumb {
		position: relative;
		overflow: hidden;
}
.movie_item_thumb img {
		width: 100%;
		height: auto;
		border-radius: 8px;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media(max-width: 767px) {
		.movie_item_thumb img {
				border-radius: 4px;
		}
}
.movie_item_thumb::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 50px);
		left: calc(50% - 50px);
		width: 100px;
		height: 100px;
		border-radius: 50%;
		border: 1px solid #E4002B;
		box-sizing: border-box;
		pointer-events: none;
		z-index: 10;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.movie_item_thumb::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 16px);
		left: calc(50% - 9px);
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 16px solid transparent;
		border-bottom: 16px solid transparent;
		border-left: 28px solid #E4002B;
		border-right: 0;
		z-index: 10;
		pointer-events: none;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.movie_item_thumb:hover img {
				transform: scale(1.06)
		}
		.movie_item_thumb:hover::before {
				transform: scale(1.3);
		}
}
@media(max-width: 767px) {
		.movie_item_thumb::before {
				top: calc(50% - 29px);
				left: calc(50% - 29px);
				width: 58px;
				height: 58px;
		}
		.movie_item_thumb::after {
				top: calc(50% - 8px);
				left: calc(50% - 6px);
				border-top: 8px solid transparent;
				border-bottom: 8px solid transparent;
				border-left: 14px solid #E4002B;
		}
}
/* ==================== */
#movieOverLay {
		background: rgba(255, 255, 255, 0.96);
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		display: none;
}
.movie_close {
		position: absolute;
		right: 50px;
		top: 30px;
		width: 48px;
		height: 48px;
		cursor: pointer;
		border: 1px solid #E4002B;
		border-radius: 50%;
}
.movie_close .movie_close_bar {
		position: absolute;
		width: 20px;
		height: 1px;
		top: 23px;
		left: 14px;
}
.movie_close .movie_close_bar:first-child {
		transform: rotate(-45deg);
}
.movie_close .movie_close_bar:last-child {
		transform: rotate(45deg);
}
.movie_close_bar::after {
		content: '';
		display: block;
		width: 20px;
		height: 1px;
		background: #E4002B;
		position: absolute;
		top: 0;
		left: 0;
		transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
		transform-origin: right center;
		transform: scaleX(0);
}
.movie_close .movie_close_bar:first-child::after {
		transition-delay: 0.3s;
}
.movie_close .movie_close_bar:last-child::after {
		transition-delay: 0.45s;
}
.movie_close.isActive .movie_close_bar::after {
		transform: scaleX(1);
}
.movie_popup_player {
		width: 70%;
		margin: auto;
		position: absolute;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 10;
}
#player_box {
		width: 100%;
		height: 100%;
}
@media(max-width: 1500px) {
		.movie_close {
				right: 30px;
		}
		.movie_popup_player {
				width: 80%;
		}
}
@media (max-width: 767px) {
		.movie_popup_player {
				width: 100%;
				aspect-ratio: 16 / 9;
				object-fit: cover;
				margin: auto;
		}
		.movie_close {
				right: 20px;
				top: 20px;
		}
}
/* =================  */

.play::before, .play::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
}
.movie_item_thumb {
		position: relative;
		overflow: hidden;
}
.movie_item_thumb img {
		width: 100%;
		height: auto;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.play::before {
		border-radius: 50%;
		border: 1px solid #E4002B;
		box-sizing: border-box;
		pointer-events: none;
		z-index: 10;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.play::after {
		top: calc(50% - 16px);
		left: calc(50% - 9px);
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 16px solid transparent;
		border-bottom: 16px solid transparent;
		border-left: 28px solid #E4002B;
		border-right: 0;
		z-index: 10;
		pointer-events: none;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media(max-width: 767px) {
		.play::before {
				top: calc(50% - 29px);
				left: calc(50% - 29px);
				width: 58px;
				height: 58px;
		}
		.play::after {
				top: calc(50% - 8px);
				left: calc(50% - 6px);
				border-top: 8px solid transparent;
				border-bottom: 8px solid transparent;
				border-left: 14px solid #E4002B;
		}
}
.special_section .movie_item {
		overflow: hidden
}