@charset "utf-8";
/*-----------------------------------------------
 * sub_page - Movie
-------------------------------------------------*/
.sub-movie {
	position: relative;
	z-index: 2;
}
.sub-movie:before {
	content: "";
	background-color: var(--color-pink-bg);
	border-radius: min(calc(100 / var(--vw-min) * 100vw), 100px) 0 0 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.sub-movie__inner {
	width: var(--common-in-width);
	max-width: var(--common-in-maxwidth);
	margin: 0 auto;
	padding: min(calc(120 / var(--vw-min) * 100vw), 120px) 0;
	position: relative;
	z-index: 1;
}
.sub-movie__cont {
	position: relative;
	z-index: 1;
}
@media screen and (max-width:768px){
	.sub-movie:before {
		border-radius: calc(40 / var(--vw-min) * 100vw) 0 0 0;
	}
	.sub-movie__inner {
		padding: calc(50 / var(--vw-min) * 100vw) 0 calc(60 / var(--vw-min) * 100vw);
	}
}

/*-----------------------------------------------
 * contents
-------------------------------------------------*/
.movieListsWrap {
	margin-top: min(calc(80 / var(--vw-min) * 100vw), 80px);
	position: relative;
	z-index: 1;
}
.movieLists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: min(calc(40 / var(--vw-min) * 100vw), 40px) min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.movieLists__item {
	position: relative;
	width: 100%;
}
@media screen and (max-width:768px){
	.movieListsWrap {
		margin-top: calc(24 / var(--vw-min) * 100vw);
	}
	.movieLists {
		grid-template-columns: 1fr;
		gap: calc(30 / var(--vw-min) * 100vw);
	}
}

/* thumb */
.movieLists__thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
}
.movieLists__thumb a {
	border-radius: min(calc(16 / var(--vw-min) * 100vw), 16px);
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.movieLists__thumb a:before {
	content: "";
	background-color: var(--color-blue);
	border-radius: min(calc(16 / var(--vw-min) * 100vw), 16px);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	mix-blend-mode: multiply;
}
@media screen and (max-width:768px){
	.movieLists__thumb a {
		border-radius: calc(10 / var(--vw-min) * 100vw);
	}
	.movieLists__thumb a:before {
		border-radius: calc(10 / var(--vw-min) * 100vw);
	}
}
.movieLists__item:nth-child(3n+1) .movieLists__thumb a:before {
	background-color: var(--color-green);
}
.movieLists__item:nth-child(3n+2) .movieLists__thumb a:before {
	background-color: var(--color-pink);
}
.movieLists__item:nth-child(3n) .movieLists__thumb a:before {
	background-color: var(--color-blue);
}
.movieLists__thumb img {
	background-color: #000;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
@media screen and (hover: hover) and (pointer: fine) {
	.movieLists__thumb img {
		transition: transform .4s var(--easing-easeinoutback);
	}
	.movieLists__thumb a:hover img {
		transform: scale(1.15);
	}
}

/* icon */
.movieLists__icon {
	width: 34%;
	aspect-ratio: 1;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
}
.movieLists__icon:before {
	content: "";
	background-color: var(--color-blue-bg);
	-webkit-mask: url(../img/common/icon_deco/icon_play.svg) no-repeat center / contain;
	mask: url(../img/common/icon_deco/icon_play.svg) no-repeat center / contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	animation: rotate 20s ease infinite;
}
.movieLists__icon:after {
	content: "";
	background-color: var(--color-blue-bg);
	-webkit-mask: url(../img/common/icon_deco/deco_foot.svg) no-repeat center / contain;
	mask: url(../img/common/icon_deco/deco_foot.svg) no-repeat center / contain;
	width: 50%;
	height: auto;
	aspect-ratio: 100 / 88;
	margin: auto;
	position: absolute;
	top: -1%;
	right: 0;
	bottom: 0;
	left: -1%;
}
.movieLists__item:nth-child(3n+1) .movieLists__icon:before,
.movieLists__item:nth-child(3n+1) .movieLists__icon:after {
	background-color: var(--color-green-bg);
}
.movieLists__item:nth-child(3n+2) .movieLists__icon:before,
.movieLists__item:nth-child(3n+2) .movieLists__icon:after {
	background-color: var(--color-pink-bg);
}
.movieLists__item:nth-child(3n) .movieLists__icon:before,
.movieLists__item:nth-child(3n) .movieLists__icon:after {
	background-color: var(--color-blue-bg);
}
@media screen and (hover: hover) and (pointer: fine) {
	.movieLists__thumb a:hover .movieLists__icon:after {
		animation: kaku 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
}

/* title */
.movieLists__title {
	font-size: min(calc(15 / var(--vw-min) * 100vw), 15px);
	font-weight: 800;
	line-height: 1.6;
	text-align: center;
	margin-top: 1em;
}
@media screen and (max-width:768px){
	.movieLists__title {
		font-size: calc(10 / var(--vw-min) * 100vw);
	}
}