/* コース紹介セクションのコンテナ */

.course-section {
    margin-top: 100px;
    margin-bottom: 30px;
    background-color: #fff;
    overflow: hidden;
}


/* メインコンテンツのスタイル */

.course-content {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: auto;
    max-width: 800px;
    aspect-ratio: 2 / 1;
    /* 800x400の比率を維持するための設定 */
    /* 横800,縦400の比率 */
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    /* 下揃え */
    padding: 20px;
    margin-bottom: 20px;
}


/* 1つ目の要素に適用 */

.course-content:first-of-type {
    background-image: url('../../img/toshojuku_course_shobo_pc_sp.png');
}


/* 2つ目の要素に適用 */

.course-content:nth-of-type(2) {
    background-image: url('../../img/toshojuku_course_keisatsu_pc_sp.png');
    /* 2つ目の画像に変更 */
}


/* 白文字部分のスタイル */

.course-content .text-content {
    max-width: 100%;
    margin-top: 0;
    color: #fff;
}

.course-content .small-text {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.course-content .large-text {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
}


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

.course-content .course-list {
    font-size: 0.7em;
    list-style: none;
    padding-left: 0;
}

.course-content .course-list li {
    margin-bottom: 5px;
}


/* 右上の「＃０１」スタイル */

.course-content .course-number {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
}


/* スマホ表示用のスタイル */

@media (max-width: 600px) {
    /* course-sectionの余白を小さく */
    .course-section {
        padding: 20px 10px;
        margin-bottom: 0px;
    }
    /* course-contentのスタイルを修正 */
    .course-content {}
    /* 数字の位置調整 */
    .course-content .course-number {
        font-size: 36px;
        /* フォントサイズを縮小 */
        top: 20px;
        /* 上部からの距離を調整 */
        right: 10px;
        /* 右側からの距離を調整 */
    }
    /* text-contentのマージンを調整 */
    .course-content .text-content {
        margin-top: 10px;
        /* 数字とコンテンツが重ならないように余白を追加 */
    }
    .course-content .small-text {
        font-size: 0.9em;
    }
    .course-content .large-text {
        font-size: 1.4em;
    }
    .course-content .course-list {
        font-size: 0.5em;
    }
}