.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-200%);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: calc(100vh - 7.6rem);
    height: 100dvh;
    overflow: auto;
    z-index: 10001;
}

@media (max-width: 1280px) {
    .mobile-menu {
        display: flex;
    }
}

.mobile-menu.opened {
    transform: translateX(0%);
}

.mobile-menu__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 1.5rem;
    border-bottom: 1px solid var(--grey4);
}

@media (min-width: 768px) and (max-width: 1280px) {
    .mobile-menu__header {
        height: 9.6rem;
    }
}

@media (max-width: 767px) {
    .mobile-menu__header {
        height: 7.6rem;
    }
}

.mobile-menu__logo {
    width: 16.1rem;
    height: 4.4rem;
    flex: 0 0 auto;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .mobile-menu__logo {
        width: 29.8rem;
    }
}

.mobile-menu__logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu__close {
    flex: 0 0 auto;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .mobile-menu__close {
        width: 4.4rem;
        height: 4.4rem;
    }
}

@media (max-width: 767px) {
    .mobile-menu__close {
        width: 3rem;
        height: 3rem;
    }
}

.mobile-menu__close svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu__body {
    padding: 1.6rem;
    margin-bottom: auto;
}

.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu__btn {
    width: 100% !important;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu__link {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    line-height: 130%;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--grey4);
}

@media (min-width: 768px) and (max-width: 1280px) {
    .mobile-menu__link {
        font-size: 2.4rem;
        padding: 2.4rem 0;
    }
}

.mobile-menu__item:last-child .mobile-menu__link {
    border-bottom: 0;
    padding-bottom: 0;
}














/*****

 */
.mobile-menu__item.has-submenu {
    display: flex;
    flex-wrap: wrap;
}

.mobile-menu__item.has-submenu > .mobile-menu__link {
    width: calc(100% - 4.8rem);
    text-align: left;
    border-bottom: 1px solid var(--grey4);
}

.mobile-menu__toggle {
    width: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    border-bottom: 1px solid var(--grey4);
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
}

.mobile-menu__toggle svg {
    width: 14px;
    height: 14px;
    transition: transform .3s ease;
}

.mobile-menu__item.is-open > .mobile-menu__toggle svg {
    transform: rotate(180deg);
}

.mobile-menu__sublist {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}

.mobile-menu__item.is-open > .mobile-menu__sublist {
    display: block;
}

.mobile-menu__sublist .mobile-menu__item {
    display: block;
}

.mobile-menu__sublist .mobile-menu__link {
    text-align: left;
    padding: 1.2rem 2rem 1.2rem 3.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--grey4);
}

.mobile-menu__sublist .mobile-menu__item:last-child .mobile-menu__link {
    border-bottom: 0;
}