@charset "utf-8";

/* RESPONSIVE */
/* -------------------------------------------------- */
@media screen and (min-width: 1024px) {

	/* 980px以上用（PC用）の記述 */
	/* メインビジュアル */
	#fv::after {
		background: url(../../img/mv/mv_movie.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	#movieList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}

	#movieList li {
		width: 48%;
		padding-bottom: 30px;
	}

	#movieList li iframe {
		width: 100%!important;
	}
	
	.movieTit {
		font-size: 1.6rem;
		font-weight: bold;
	}

}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	/* 768px - 979px用（タブレット用）の記述 */
	/* メインビジュアル */
	#fv::after {
		background: url(../../img/mv/mv_movie.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}
	
	#movieList li {
		width: 100%;
		padding-bottom: 30px;
	}

	#movieList li iframe {
		width: 100%!important;
		height: 50vw!important;
	}


}

@media screen and (max-width: 767px) {

	/* 479px以下用（スマートフォン用）の記述 */
	/* メインビジュアル */
	#fv::after {
		background: url(../../img/mv/mv_movie.jpg) center center no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
	}

	
	#movieList li {
		width: 100%;
		padding-bottom: 30px;
	}

	#movieList li iframe {
		width: 100%!important;
		height: 50vw!important;
	}

}

