@charset "utf-8";
/**
 * movieLists
 */
.movieListsWrap {
	width: 880px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width:767px){
	.movieListsWrap {
		width: 100%;
		margin-top: 26px;
		padding: 0 20px;
	}
}

/* lists */
.movieLists {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* item */
.movieLists__item {
	width: calc((100% - 40px) / 2);
	margin-bottom: 40px;
}
@media screen and (max-width:767px){
	.movieLists__item {
		width: 100%;
		margin-bottom: 30px;
	}
}

/* link */
.movieLists__link {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}

/* icon */
.movieLists__link:before {
	content: "";
	background-color: rgba(255,255,255,.4);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	width: 120px;
	height: 80px;
	-webkit-mask-image: url(../img/common/icon_play.svg);
	mask-image: url(../img/common/icon_play.svg);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: -40px;
	z-index: 2;
	transition: background-color .2s ease;
}
.movieLists__link:hover:before {
	background-color: rgba(255,255,255,1);
	animation: flashAni .2s linear;
}

/* cover */
.movieLists__link:after {
	content: "";
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: opacity .4s ease;
}
.movieLists__link:hover:after {
	opacity: 0;
}

/* title */
.movieLists__title {
	font-size: 16px;
	margin-top: 20px;
	text-align: center;
}
@media screen and (max-width:767px){
	.movieLists__title {
		font-size: 14px;
		margin-top: 10px;
		text-align: center;
	}
}
