/* セクションのスタイル */

.interview-section {
    text-align: center;
    margin: 100px 0;
    margin-bottom: 150px;
    padding: 20px;
}


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

.interview-section .interview-title {
    font-size: 32px;
    color: #BD0013;
    font-weight: bold;
    letter-spacing: 6px;
}


/* 赤線のスタイル */

.interview-section .red-line {
    display: block;
    width: 100px;
    height: 2px;
    background-color: #BD0013;
    margin: 40px auto;
}


/* 説明文のスタイル */

.interview-section .description {
    color: black;
    font-size: 14px;
    margin-bottom: 40px;
}


/* ユーチューブリンクのスタイル */

.interview-section .youtube-videos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.interview-section .youtube-video {
    width: 300px;
    height: 200px;
}


/* バナー画像のスタイル */

.interview-section .banner {
    margin-top: 30px;
    width: 100%;
    max-width: 960px;
    height: auto;
}


/* スマホ表示用のメディアクエリ */

@media (max-width: 768px) {
    .interview-section .youtube-videos {
        flex-direction: column;
        align-items: center;
    }
    .interview-section .youtube-video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}