.mnu_cnt {
    display: grid;
    grid-template-columns: 1fr;
}

.bg_mnu {
    /* border: 1px dashed; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* visibility: hidden; */
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
    pointer-events: none;
    /* transform: translate3d(105%,0,0); */
    /* transition: transform 0.3s cubic-bezier(.7,.3,0,1); */
}

.hmb {
    /* border: 1px dashed; */
    position: relative;
    display: flex;
    /* align-items: center; */
    cursor: pointer;
}

.hmb div {
    /* border: 1px dashed; */
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.hmb div p {
    position: relative;
    display: block;
    width: 27px;
    height: 3px;
    background-color: #555;
    transition: transform 0.3s;
}

/* .hmb div p:nth-child(2) {
    transform-origin: left;
} */


.menu .mnubdy {
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-gutter: stable; 
}

.menu .title {
    /* border: 1px dashed; */
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.menu .cross {
    line-height: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

.menu .mnu_cnt a {
    /* border: 1px dashed; */
    text-decoration: none;
    color: unset;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}