@charset "utf-8";
/* ===================================================================
CSS
 file name  :  movie.css
=================================================================== */
@media screen and (min-width: 769px) {
	h1.page_title{
		background-image: url("../images/movie/bg_title_movie.png");
	}
	.movie_wrap{
		margin: 20px auto auto;
		max-width: 1160px;
		padding: 0 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.movie_wrap .movie_box{
		width: 47%;
		aspect-ratio: 16 / 9;
		margin-top: 50px;
	}
	.movie_wrap .movie_box iframe{
		width: 100%;
		height: 100%;
	}
}
@media screen and (max-width: 768px) {
	.movie_wrap{
		margin: 10px auto;
		max-width: 680px;
		padding: 0 20px;
	}
	.movie_wrap .movie_box{
		margin-top: 20px;
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.movie_wrap .movie_box iframe{
		width: 100%;
		height: 100%;
	}
}