/* ヘッダーのスタイル */

.image-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.image-row img {
    width: 30%;
}

.image-single {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.image-single img {
    width: 60%;
    max-width: 2400px;
    height: auto;
}

.video-container {
    margin: 20px auto; /* 上下に20pxのマージンを追加し、左右を自動で中央揃え */
    width: 48%;
    max-width: 1200px;
    position: relative;
    padding-bottom: 27%; /* 16:9 アスペクト比のためのスペーサー */
    height: 0;
    overflow: hidden;
    display: flex; /* 子要素をフレックスボックスで配置 */
    justify-content: center; /* 子要素を中央揃え */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#description {
    width: 60%;
    margin: 20px auto;
    text-align: left;
}

#description ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

#description ul li {
    margin-bottom: 10px;
    text-align: left;
}

#description ul li a {
    text-decoration: none;
    color: #000;
}

#description ul li a:hover {
    text-decoration: underline;
}

#description .highlight {
    color: #ff69b4;
}

