.navbar--mobile .wrapper {
    position: fixed;
    top: 0;
    z-index: 1;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
}
.navbar--mobile #active:checked ~ .wrapper {
    left: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}
.navbar--mobile .menu-btn {
    position: absolute;
    z-index: 2;
    right: 20px;
    /*left: 20px; */
    top: 0px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    /*color: #fff;*/
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
}
.navbar--mobile .menu-btn span,
.navbar--mobile .menu-btn:before,
.navbar--mobile .menu-btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid #000;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navbar--mobile .menu-btn:before {
    transform: translateY(-8px);
}
.navbar--mobile .menu-btn:after {
    transform: translateY(8px);
}

.navbar--mobile .close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.6s;
}

/* closing animation */
.navbar--mobile #active:checked + .menu-btn span {
    transform: scaleX(0);
}
.navbar--mobile #active:checked + .menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}
.navbar--mobile #active:checked + .menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}
.navbar--mobile .wrapper ul {
    position: relative;
    list-style: none;
    text-align: center;
    height: 100vh;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.navbar--mobile .wrapper ul li {
    height: auto;
    padding: 0px 0px 33px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar--mobile .wrapper ul li hr {
    opacity: 1;
    margin: auto;
    margin-top: 8px;
    width: 50%;
    display: none;
    border-color: #252525;
    border-width: 1px;
    border-radius: 50%;
}

.navbar--mobile .wrapper ul li a {
    text-decoration: none;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    padding: 5px 60px;
    color: #fff;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.login--btn-mobile a {
    border: 2px solid var(--color-theme) !important;
    border-radius: 0px !important;
}

.login--btn-mobile a:after {
    background: transparent !important;
}

.login--btn-mobile a:hover:after,
.login--btn-mobile a:focus:after {
    background: var(--color-theme) !important;
}

.login--btn-mobile a:hover,
.login--btn-mobile a.active {
    color: white !important;
}

.navbar--mobile .wrapper ul li a:after {
    position: absolute;
    content: "";
    background: #fff;
    /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
    /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s ease;
}
.navbar--mobile .wrapper ul li a:hover:after,
.navbar--mobile .wrapper ul li a.active:after {
    transform: scaleY(1);
}
.navbar--mobile .wrapper ul li a:hover,
.navbar--mobile .wrapper ul li a.active {
    color: #000000;
}
.navbar--mobile input[type="checkbox"] {
    display: none;
}
.navbar--mobile .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    width: 100%;
    color: #202020;
}
.navbar--mobile .content .title {
    font-size: 40px;
    font-weight: 700;
}
.navbar--mobile .content p {
    font-size: 35px;
    font-weight: 600;
}

.navbar--mobile #active:checked ~ .wrapper ul li a {
    opacity: 1;
}
.navbar--mobile .wrapper ul li a {
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}
.navbar--mobile #active:checked ~ .wrapper ul li a {
    transform: none;
    transition-timing-function: ease, cubic-bezier(0.1, 1.3, 0.3, 1); /* easeOutBackを緩めた感じ */
    transition-delay: 0.6s;
    transform: translateX(-100px);
}
