@charset "utf-8";
/*--京sitemap.css--*/
/* ##########PC########## */
.siemap_list > ul{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

    .siemap_list > ul > li{
        box-sizing: border-box;
        border-bottom: 1px dotted #aaa;
        padding-bottom: 0.5em;
        padding-left: 1.8rem;
        position: relative;
    }

    .siemap_list > ul > li::before{
        content: "";
        display: inline-block;
        border-radius: 0;
        width: 1.25rem;
        height: auto;
        aspect-ratio: 1 / 1;
        background: none;
        background-image: url(../shared/fig_h4.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0.2em;
        left: 0;
    }

    .siemap_list > ul > li > a{
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 1.1em;
    }

    .siemap_list > ul > li > a:hover{
        text-decoration: underline;
    }

    .siemap_list > ul > li .child_nav{
        margin-top: 0.5em;
    }

        .siemap_list > ul > li .child_nav > ul{
            display: flex;
            flex-wrap: wrap;
            gap: 0.3em 2em;
        }

            .siemap_list > ul > li .child_nav > ul > li{
                box-sizing: border-box;
                width: calc((100% - 4em) / 3);
                padding-left: 0.7em;
            }

                .siemap_list > ul > li .child_nav > ul > li::before{
                    font-family: FontAwesome;
                    content:"\f105";
                    width: auto;
                    height: auto;
                    border-radius: 0;
                    background: none;
                    top: 0.2em;
                    left: 0;
                    color: #555;
                    font-size: 0.8em;
                }

                .siemap_list > ul > li .child_nav > ul > li a[href="#"]{
                    text-decoration: none;
                    color: #333;
                    font-weight: 500;
                    pointer-events: none;
                }

                .siemap_list > ul > li .child_nav > ul > li > ul{
                    margin-top: 0.3em;
                }


            

@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) {
    .siemap_list > ul > li .child_nav > ul{
        
    }

    .siemap_list > ul > li .child_nav > ul > li{
        width: calc((100% - 2em) / 2);
    }

}


/* ##########印刷用########## */
@media print{

}