.info-section {
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* ボックスのスタイル設定 */

.info-section .box-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* 画面に収まりきらない場合、縦に並ぶ */
    justify-content: center;
    gap: 100px;
}

.info-section .box {
    width: 350px;
    padding: 50px 30px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: left;
    /* テキストを左揃えに */
}


/* 背景画像とマスクの設定 */

.info-section .box.red {
    background-image: url('../../img/toshojuku_muryosodan_background.png');
    /*background-color: rgba(192, 0, 18, 0.75);*/
    /* 赤の半透明マスク */
    background-blend-mode: overlay;
}

.info-section .box.blue {
    background-image: url('../../img/toshojuku_shiryoseikyu_background2.png');
    /*background-color: rgba(04, 19, 146, 0.75);*/
    /* 青の半透明マスク */
    background-blend-mode: overlay;
}


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

.info-section .subtitle {
    font-size: 12px;
    color: #fff;
}


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

.info-section .title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}


/* 画像のスタイル */

.info-section .box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}


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

.info-section .description {
    font-size: 12px;
    line-height: 1.5;
    color: #fff;
}

.info-section .title-cursor {
    font-size: 20px;
    margin-left: 5px;
}

@media (max-width: 960px) {
    .info-section .box-container {
        gap: 20px;
        /* ボックス間の間隔 */
        padding: 20px;
    }
}