@charset "utf-8";
.movieListsWrap {
	width: var(--common-in-width);
	max-width: 1600px;
	margin: min(5vw,60px) auto 0;
}
.movieLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: min(3.33333vw,40px);
}
.movieLists > li {
	width: min(calc(300 / 1200 * 100vw), 300px);
}
@media screen and (max-width:767px){
	.movieListsWrap {
		max-width: 100%;
		margin: 8vw auto 0;
	}
	.movieLists {
		gap: 4.5vw;
		justify-content: left;
	}
	.movieLists > li {
		width: calc((100% - 4.5vw) / 2);
	}
}

/* a */
.movieLists > li > a {
	color: var(--color-blue);
	text-decoration: none;
}

.movieLists__thumbWrap {
	width: 100%;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}
.movieLists__thumbWrap:before {
	content: "";
	background: rgb(var(--color-blue));
	background: linear-gradient(0deg, rgba(var(--color-blue),.9) 0%, rgba(var(--color-green),.64) 40%, rgba(var(--color-green),0) 100%);
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	transition: opacity .3s ease;
}
.movieLists > li > a:hover .movieLists__thumbWrap:before {
	opacity: 0;
}
.movieLists__thumbWrap:after {
	content: "";
	background-color: #fff;
	-webkit-mask: url(../img/common/icon/icon_play.svg) no-repeat 0 0 / 100%;
	mask: url(../img/common/icon/icon_play.svg) no-repeat 0 0 / 100%;
	width: min(2.66666vw,32px);
	height: min(3.25vw,39px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 4%;
	z-index: 2;
	transition: opacity .3s ease;
}
@media screen and (max-width:767px){
	.movieLists__thumbWrap:after {
		width: 4.4vw;
		height: 5.2vw;
	}
}
.movieLists > li > a:hover .movieLists__thumbWrap:after {
	opacity: 0;
}
.movieLists__thumb {
	background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transition: transform .3s ease;
}
.movieLists > li > a:hover .movieLists__thumb {
	transform: scale(1.15);
}

/* title */
.movieLists__title {
	font-size: min(calc(16 / 1200 * 100vw), 16px);
	letter-spacing: 0.01em;
	margin-top: 0.8em;
	line-height: 1.6;
}
@media screen and (max-width:767px){
	.movieLists__title {
		font-size: calc(20 / 750 * 100vw);
	}
}
