@charset "UTF-8";

/*動画まわり*/

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}

@media screen and (min-width: 599px) {
	iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
	aspect-ratio: 16 / 9;
	width: 75%;
	height: auto;
  	
}

#movie-container {
	position: relative;
	height: 560px;
	margin-bottom:3em;
	
}
#movie-container iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:800px;
}

}