@charset "UTF-8";

.header-nav {
    height: 60px;
}
.header-nav .nav-link {
    height: 60px;
}

.menu-nav a.nav-link {
    background-color: rgba(0, 0, 0, 0.075);
    position: relative;
    padding-left: calc(3rem - 10px);
    border-left: solid transparent 10px;
}
.menu-nav a.nav-link.active {
    background-color: #FFFFFF;
    border-color: #0D6EFD;
}
.menu-nav a.nav-link:hover {
    background-color: #FFDDDD;
    border-color: #DC3545;
}

.main-container {
    height: calc(100% - 60px);
    overflow-y: scroll;
}

.menu-notify {
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    left: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    display: none;
}



/* スマホ向け対応 */
@media screen and (max-width: 1024px) {
    .header-nav {
        height: 120px;
    }
}
@media screen and (max-width: 384px) {
    .header-nav {
        height: 180px;
    }
}