
.c-video-grid h4 {
	text-align: center;
	padding-right: 20px;
}

.c-video-item p {
	text-align: center;
}

/* 動画グリッド（デスクトップ 2列） */
@media screen and (min-width: 1200px) {
	.c-video-grid--center {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 1rem;
		justify-items: center;
	}


	.c-video-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 1rem;
	}

}

@media screen and (max-width: 1200px) {
	.c-video {
	    position: relative;
	    max-width: 480px;
	    width: 100%;
	    margin: 0 auto;
	}

	.c-video iframe {
	    width: 100%;
	    height: 100%;
	    display: block;
	    margin: 0 auto;
	}
	
	/* 16:9 の比率 */
	.c-video[data-ratio="16/9"] {
	    aspect-ratio: 16 / 9;
	}
	
	/* 4:3 の比率 */
	.c-video[data-ratio="4/3"] {
	    aspect-ratio: 4 / 3;
	}
}