@charset "UTF-8";
/*---------------------------------------
サマースクール
-----------------------------------------*/
.pagetitle_wrap {
    background:url(../img/summer_img/pagetitle_bg.png) center center no-repeat color-mix(in srgb, var(--season-color), white 70%);
    background-size: cover;
}

/*dl table (div)-----*/
.dl_table {
    display: table;
    text-align: left;
    & > div {
        display: table-row;

        & + div {
            margin-top: 0.8em;
        }

        & > dt,
        & > dd {
            display: table-cell;
        }
        & > dt {
            white-space: nowrap;
            position: relative;
            padding-right: 1.5em;
            &::after {
                content: "：";
                display: inline-block;
                padding-left: 0.2em;
                position: absolute;
                inset: 0 0.5em auto auto;
            }
        }
    }
}

