@charset "utf-8";
/**
 * worldLists
 */
.movieLists {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
	margin-bottom: 80px;
}
.movieLists__item {
	width: calc((100% - 80px) / 2);
}
.movieLists__link {
	display: block;
	text-decoration: none;
}
@media screen and (max-width:767px){
	.movieLists {
		gap: 0;
		margin-bottom: 16vw;
	}
	.movieLists__item {
		width: 100%;
	}
	.movieLists__item:not(:first-child) {
		margin-top: 8vw;
	}
}

/* thumb */
.movieLists__thumbWrap {
	flex: none;
	width: 100%;
	aspect-ratio: 48 / 27;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.movieLists__thumbWrap {
		width: 100%;
		max-width: 100%;
	}
}
.movieLists__thumb {
	background-image: url(../img/common/noimg/noimg2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
	transition: transform .3s ease;
}
.movieLists__link:hover .movieLists__thumb {
	transform: scale(1.15);
}
.movieLists__thumb:before {
	content: "";
	background-color: rgba(0,0,0,.2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.movieLists__thumb:after {
	content: "";
	margin: auto;
	width: 80px;
	height: 80px;
	-webkit-mask-image: url(../img/common/icon/icon_play.svg);
	mask-image: url(../img/common/icon/icon_play.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
@media screen and (max-width:767px){
	.movieLists__thumb:after {
		width: min(12.8vw, 96px);
		height: min(12.8vw, 96px);
	}
}

/* deco */
.movieLists__thumbWrap:before {
	content: "";
	border: 1px solid #fff;
	box-sizing: border-box;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.movieLists__thumbWrap:after {
	content: "";
	background: url(../img/common/deco/deco_frame3.svg) no-repeat center / 100%;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

/* text */
.movieLists__caption {
	color: #fff;
	font-size: min(1.33333vw, 16px);
	margin-top: 20px;
	text-align: center;
}
@media screen and (max-width:767px){
	.movieLists__caption {
		font-size: 3.2vw;
		margin-top: 2vw;
	}
}
