.overlayMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #f39518;
    z-index: 100000;
}

.menu_anime {
    animation-name: menu;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.menu_back {
    animation-name: menu_back;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes menu {
    0% {
        width: 0;
        /*
        opacity: 0;
        visibility: hidden;
*/
    }

    100% {
        width: 80%;
        /*
        opacity: 1;
        visibility: visible;
*/
    }
}

@keyframes menu_back {
    0% {
        width: 80%;
    }

    100% {
        width: 0;
    }
}

.overlay_blank {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: 10000;
    animation-name: blank;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;

}

@keyframes blank {
    0% {
        background-color: transparent;
    }

    30% {
        background-color: transparent;
    }

    80% {
        background-color: rgba(0, 0, 0, 0.8);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

.overlayContainer {
    display: none;
    opacity: 0;
    width: 75%;
    height: 95%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100001;
    transform: translateY(1200px);
    padding: 0 2.5% 2.5% 2.5%;
    /*    background-color: #f39518;*/
}

.overlayTransform {
    animation-name: trans;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes trans {
    0% {
        transform: translateY(1200px);
    }

    99.9%,
    to {
        transform: translateY(0);
    }
}

.overlayContainer > ul {
    margin-top: 7.5%;
}

.overlayContainer > ul > li {
    list-style-type: none;
    display: block;
}

.overlayContainer > ul > li > a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 2.5% 0 2.5% 2.5%;
    font-size: calc(1.5rem + 0.25vw);
}

@media (max-width:700px) {
    .overlayContainer > ul > li > a {
        height: 10vh;
    }
}

.hidden {
    display: none;
    opacity: 0;
    transition: 1s ease;
}

.fixed {
    overflow: hidden;
    height: 100%;
}


.menuBtn {
    position: fixed;
    top: 5vh;
    right: 3vw;
    display: block;
    z-index: 1000000;
    background-color: #ffffff;
    padding: 2%;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

.menu_line,
.menu_line span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu_line {
    position: relative;
    width: 5vw;
    height: 5vw;
    z-index: 1000001;
    outline: none;
    max-width: 50px;
    max-height: 44px;
}

.menu_line span {
    position: absolute;
    left: 5%;
    width: 90%;
    height: 4px;
    background-color: #f39518;
    border-radius: 4px;
    outline: none;
}

.menu_line span:nth-of-type(1) {
    top: 10%;
}

.menu_line span:nth-of-type(2) {
    top: calc(50% - 2px);
}

.menu_line span:nth-of-type(3) {
    bottom: 10%;
}

.sns_icon {
    position: absolute;
    bottom: 10%;
    right: 7.5%;
    width: auto;
}

.sns_icon {
    /*    transform: translateX(20%);*/
    position: absolute;
    bottom: 10%;
    right: 0;
}

.sns_icon > a {
    text-decoration: none;
    float: left;
    width: 10vw;
    height: auto;
}

.sns_icon > a > i {
    color: #ffffff;
    font-size: calc(2.5rem + 0.25vw);
    float: left;
    /*    padding: 50%;*/
}
