@charset "utf-8";
.mainContents{
	width: 100%;
	position: relative;
}
.contSection{
	width: 100%;
	max-width: calc(1200px * var(--max-percent));
	position: relative;
	padding-left: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	padding-right: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	margin: 0 auto;
}
.cont__secTitle{
	margin-left: max(calc(-30 / var(--vw-min) * 100vw), -30px);
}
.contSection___inner{
	position: relative;
	width: 100%;
	padding: min(calc(80 / var(--vw-min) * 100vw), 80px) min(calc(80 / var(--vw-min) * 100vw), 80px) 0;
	padding-left: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	padding-right: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
}
@media screen and (max-width:768px){
	.contSection{
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.cont__secTitle{
		margin-left: 0;
	}
	.contSection___inner{
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw) 0;
	}
}
.movieLists{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: min(calc(40 / var(--vw-min) * 100vw), calc(40px * var(--max-percent)));
	width: 100%;
}
.movieList{
	width: 100%;
}
.movieList__link{
	display: block;
	width: 100%;
	text-decoration: none;
	pointer-events: none;
}
.movieList__image{
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	pointer-events: auto;
}
.movieList__image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.movieList__title{
	margin-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
	font-weight: 700;
	line-height: 1.5;
	pointer-events: auto;
}
@media (hover: hover) and (pointer: fine){
	.movieList__image{
		overflow: hidden;
	}
	.movieList__image img{
		transition: transform .3s ease;
	}
	.movieList__image:after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,40%);
		opacity: 0;
		transition: opacity .3s ease;
	}
	.movieList__title{
		transition: color .4s ease;
	}
	.movieList__title span{
		background: linear-gradient(#000, #000) right bottom / 0 100% no-repeat;
		transition: background-size 0.4s ease;
	}
	.movieList__link:hover .movieList__image img{
		transform: scale(105%);
	}
	.movieList__link:hover .movieList__image:after{
		opacity: 1;
	}
	.movieList__link:hover .movieList__title{
		color: var(--color-main-yellow);
	}
	.movieList__link:hover .movieList__title span{
		background-size: 100% 100%;
		background-position: left bottom;
	}
}
@media screen and (hover:none){
	.s-icon_play{
		position: absolute;
		inset: 0;
		width: min(calc(100 / var(--vw-min) * 100vw), calc(100px * var(--max-percent)));
		height: min(calc(100 / var(--vw-min) * 100vw), calc(100px * var(--max-percent)));
		margin: auto;
		z-index: 2;
	}
	.s-icon_play:before,
	.s-icon_play:after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.s-icon_play:before{
		width: 100%;
		height: 100%;
		background: url(../img/common/txt_playmovie.svg) no-repeat center / contain;
		animation: ani_rotate360 16s linear infinite;
	}
	.s-icon_play:after{
		width: 64%;
		height: 64%;
		-webkit-mask: url(../img/common/icon/icon_sakamoto.svg) no-repeat center / contain;
		mask: url(../img/common/icon/icon_sakamoto.svg) no-repeat center / contain;
		background-color: #fff;
		margin: auto;
	}
}
@media screen and (max-width: 767px){
	#movie .contentIn{
		padding: var(--sp-size-96) var(--sp-size-48) 0;
		flex-direction: column;
	}
	.movieSeciton:not(:first-child){
		padding-top: var(--sp-size-80);
	}
	.movieSeciton .cont_subTitle{
		margin-bottom: var(--sp-size-48);
	}
	.movieLists{
		gap: var(--sp-size-24);
	}
	.movieList__image:after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,20%);
	}
	.s-icon_play{
		width: calc(120 / var(--min-ww) * 100vw);
		height: calc(120 / var(--min-ww) * 100vw);
	}
	.movieList__title{
		margin-top: var(--sp-size-12);
		font-size: var(--sp-size-24);
	}
}