/* 動画セクションの外枠 */
.video-section {
    margin: 40px 0;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #eee;
}

.video-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #ea1ace;
    font-size: 1.1rem;
}

/* 黄金比（または動画比率）を保つためのコンテナ */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 の比率 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}