@charset "utf-8";
/*--京access.css--*/
/* ##########PC########## */
.page_body .subject_list{
    display: flex;
    gap: 2em;
    line-height: 1.5;
}

    .page_body .subject_list > li{
        box-sizing: border-box;
        width: calc((100% - 2em) / 2);
        padding: 1em 1.5em;
        border: 1px solid rgba(0,0,0,0.2);
        font-weight: 500;
        text-indent: 0.8em;
        border-radius: 0.5rem;
    }

    .page_body .subject_list > li::before{
        font-family: FontAwesome;
        content:"\f0d7";
        background: none;
        width: auto;
        height: auto;
        top: 0.8em;
        left: 0.2em;
        color: #0f228b;
    }

        .page_body .subject_list > li ul{
            margin: 0.3em 0 0 0;
        }

        .page_body .subject_list > li ul li{
            text-indent: 0;
        }

            .page_body .subject_list > li ul li::before{
                top: 0.55em;
            }

.map_legends{
    margin-top: 3em;
}

    .map_legends > ol{
        list-style: none;
        counter-reset: map_no 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1em 2em;
    }

        .map_legends > ol > li{
            width: calc((100% - 2em) / 2);
            box-sizing: border-box;
            margin: 0;
            padding-left: 2em;
            padding-bottom: 0.5em;
            position: relative;
            font-weight: 500;
            border-bottom: 1px solid rgba(0,0,0,0.2);
        }

        .map_legends > ol > li::before{
            box-sizing: border-box;
            content: counter(map_no);
            counter-increment: map_no 1;
            display: inline-flex;
            justify-content: center;
            align-items: center;   
            width: 1.5rem;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            background: #0f228b;
            color: #fff;
            position: absolute;
            top: 0;
            left: 0;
            line-height: 1;
            font-size: 0.84em;
            padding-top: 0.2em;
        }

        .map_legends > ol > li > ul{
            font-weight: normal;
            margin-top: 0.5em;
        }


@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){


}

/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .page_body .subject_list{
        flex-direction: column;
        gap: 0.5em;
    }

    .page_body .subject_list > li{
        width: 100%;
    }


}


/* ##########印刷用########## */
@media print{

}