@charset "UTF-8";

/* --- スマホ用ドロワーメニュー --- */
.drawer-nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 80%;
    height: calc(100% - 75px);
    background: #fff;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.drawer-nav.is-active {
    left: 0;
}

.drawer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav li a {
    display: block;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.drawer-overlay {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    display: none;
}

.drawer-overlay.is-active {
    display: block;
}

@media (min-width: 641px) {

    .drawer-nav,
    .drawer-overlay {
        display: none !important;
    }
}