@charset "UTF-8";

section.movie div.body > ul{/*リストの大くくり*/
	display: flex;
	flex-wrap: wrap;	
}

section.movie div.body > ul > li{/*動画一個*/
	width: 33.3%;
	height: 180px;
}

section.movie div.body > ul > li img{
	width: 320px;
}


/*===================================== responsive ===================================*/

@media only screen and (min-width: 769px) and (max-width: 1000px){

	section.movie div.body > ul > li{/*動画一個*/
		width: 33.3%;
		height: auto;
		margin-bottom: -3px;
	}

	section.movie div.body > ul > li img{
		width: 100%;
	}

}

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

	section.movie div.body > ul > li{/*動画一個*/
		width: 50%;
		height: auto;
		margin-bottom: -3px;
	}

	section.movie div.body > ul > li img{
		width: 100%;
	}

}

@media only screen and (max-width: 639px){
	
	/* サムネを画面いっぱいに */
	div.wrapper > section{
		padding: 0;
	}
	
	h2{
		margin-left: 5%;	
	}
	
	section.movie div.body > ul > li{/*動画一個*/
		width: 100%;
		height: auto;
		margin-bottom: -3px;
	}

	section.movie div.body > ul > li img{
		width: 100%;
	}
	
}

@media only screen and (max-width: 414px){
	
	h2 {
		margin-left: 0;
	}
	
}