@charset "utf-8";

/*////////////////////
 頻出テーマ要点講座（令和8年度後期筆記試験対策）CSS
///////////////////////*/

.course-box__content li {
    padding-left: 1em;
    text-indent: -1em;
}

.course-detail dt {
    color: #7C7C7C;
    font-weight: 600;
}

.course-detail-list li {
    display: flex;
}

.course-detail-list li > span:first-of-type {
    width: 170px;
}

.course-detail-schedule li {
    line-height: 2.125;
    padding: 5px 5px;
}

.course-detail-schedule__head {
    font-feature-settings: "palt";
}

@media only screen and (max-width: 799px) {

    .course-detail-list {
        font-size:clamp(0.813rem, 0.657rem + 0.78vw, 0.9rem)
    }
    .course-detail-list li > span:first-of-type {
        width: 43%;
        flex-shrink: 0;
        max-width: 170px;
    }
}

@media only screen and (min-width: 800px) {
    .course-detail-schedule__head {
        flex: 0 0 220px;
    }
}

