.movie-wrap {
	position: relative;
	width: 100%;
	max-width: 300px; /* 必要に応じて調整 */
	/*aspect-ratio: 9 / 16; */
	padding-top: 100%;
    height: 0;
	justify-content: center;      /* 横方向の中央揃え */
	margin: 0 auto;              /* 前後中央 */
    overflow: hidden;
}
 
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}
