@charset "utf-8";
@keyframes scroll-movietext {
	from {
		background-position:0 center;
	}
	to {
		background-position:324px center;
	}
}
@keyframes scroll-movietext-s {
	from {
		background-position:0 center;
	}
	to {
		background-position:51.84vw center;
	}
}
.content__title {
	height:160px;
	background:#d84f7c url(../img/movie/title.svg) repeat-x 0 center / 324px auto;
	animation: color-gradient 7.5s linear infinite,scroll-movietext 6s linear infinite;
}
@media screen and (max-width:768px){
	.content__title {
		height:25.6vw;
		background:#d84f7c url(../img/movie/title.svg) repeat-x 0 center / 51.84vw auto;
		animation: color-gradient 7.5s linear infinite,scroll-movietext-s 6s linear infinite;
	}
}
.movie__wrap {
	padding:80px 0;
	border-bottom:1px solid #000;
	background:#FFF;
}
.movie__lists {
	width:1040px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.movie__lists li {
	width:480px;
	margin-bottom:80px;
}
.movie__thumb {
	position: relative;
	padding-top:56.25%;
}
.movie__thumb a {
	display: block;
	position: absolute;
	background-position:center center;
	background-repeat: no-repeat;
	background-size:cover;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow: hidden;
}
.movie__thumb a span {
	display: block;
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:rgba(0,0,0,.4);
	text-indent: -9847px;
	transition:all 0.3s ease;
}
.movie__thumb a:hover span {
	transform: scale(1.2);
}
.movie__thumb a span:before {
	content:'';
	position: absolute;
	left:50%;
	top:50%;
	width:78px;
	height:78px;
	background:url(../img/common/icon_playcircle.svg) no-repeat center center / contain;
	margin-left:-39px;
	margin-top:-39px;
	animation: rotate 16s linear infinite;

}
.movie__thumb a span:after {
	content:'';
	position: absolute;
	left:50%;
	top:50%;
	width:36px;
	height:40px;
	background:url(../img/common/icon_playbtn.svg) no-repeat center center / contain;
	margin-top:-21px;
	margin-left:-13px;
}
.movie__name {
	padding-top:20px;
	text-align: center;
	font-size:16px;
	color:#000;
}
@media screen and (max-width:768px){
	.movie__wrap {
		padding:6.4vw 0;
	}
	.movie__lists {
		width:87.2vw;
	}
	.movie__lists li {
		width:87.2vw;
		margin-bottom:6.4vw;
	}
	.movie__thumb a span:before {
		width:15.6vw;
		height:15.6vw;
		margin-left:-7.8vw;
		margin-top:-7.8vw;
	}
	.movie__thumb a span:after {
		width:7.4666vw;
		height:8.5333vw;
		margin-top:-4.2666vw;
		margin-left:-2.5333vw;
	}
	.movie__name {
		padding-top:3.2vw;
		font-size:1.3rem;
	}
}