.sitemap-container > div > div > div > ul{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.sitemap-container > div > div > div > ul > li{
    margin-bottom: 0.5rem;
}
.sitemap-container > div > div > div > ul > li:last-of-type{
    margin-bottom: 0;
}

/* 警告ダイアログの表示 */
/* 警告ダイアログの入れ物 */
#sitemap-warning-wrapper{
    background-color: rgba(255,207,140, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1900;
}
/* 警告ダイアログ */
#sitemap-warning-dialog {
    position:fixed;
    border:3px solid #ffcf8c;
    background-color:#fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    padding: 40px 35px 30px 30px;
    width: 500px;
}
#sitemap-warning-close-button {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 2rem;
    cursor: pointer;
}