/* サイドバー */
#left-sidebar {
    width: var(--left-sidebar-width);
    border-right: 1px solid #ddd;
    overflow-y:auto;
}
.list-group-item {
    background-color: unset;
}
@media (min-width: 992px) {
    #left-sidebar {
        position: fixed;
        top: var(--header-height);
        bottom: 0;
    }
    #main-content {
        /*margin-left: var(--left-sidebar-width);*/
    }
}
@media (max-width: 991.98px) {
    #sidebar.collapse {
        position: fixed;
        top: var(--header-height);
        bottom: 0;
        z-index: 1040;
    }
}
.offcanvas {
    background-color: #F1F0EC !important;
}