/* ページ全体のコンテナ */

.youtube-container {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
}


/* YouTube動画のスタイル */

.youtube-video {
    width: 100%;
    max-width: 640px;
    /* 最大幅の設定 */
    aspect-ratio: 16/9;
    /* 動画のアスペクト比を維持 */
}


/* タイトルのスタイル */

.video-title {
    margin-top: 30px;
    font-size: 32px;
    color: #333;
    text-align: center;
    font-weight: bold;
}


/* レスポンシブ対応 */

@media (max-width: 550px) {
    .video-title {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .video-title {
        font-size: 18px;
    }
}