
/* CSS Document */

.button_container {
    position: fixed;
    top: 40px;
    right: 40px;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 101;
    transition: opacity 0.25s ease;
}
.button_container:hover {
}
.button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #fff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
    z-index: 101;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}
.waku {
    position: fixed;
    top: 20px;
    right: 20px;
    pointer-events: none;
    width: 76px;
    z-index: 102;
}
.overlay {
    position: fixed;
    background: #313c49;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 100;
}
.overlay.open {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}
.overlay.open li {
    -webkit-animation: fadeInRight 0.3s ease forwards;
          animation: fadeInRight 0.3s ease forwards;
    -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.overlay .logo {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
}
.overlay .qr {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 260px;
}
.overlay .qr ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.overlay .qr ul li {
    width: 40%;
}
.overlay .qr ul li img {
    width: 100%;
}
.overlay .logo img {
    width: 400px;
}
@media screen and (max-width : 1100px) {
    .overlay .logo {
        width: 40%;
        padding: 0 50px;
    }
    .overlay .logo img {
        width: 100%;
    }
}
.overlay nav {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
}
@media screen and (max-width : 1100px) {
    .overlay nav {
        width: 60%;
    }
}
.overlay ul {
    padding: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
    padding: 0 40px;
}
.overlay ul li {
    display: block;
    position: relative;
    opacity: 0;
    width: 48%;
    padding: 10px 0;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 160%;
    letter-spacing: .1em;
}
.overlay ul li a span {
    display: block;
    font-size: 40%;
    letter-spacing: .2em;
    line-height: 1em;
    padding-top: .5em;
}
.overlay ul li a::after {
    background: #E9FF2E;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.overlay ul li a:hover {
    color: #000;
}
.overlay ul li a:hover::after {
    transform: scale(1, 1);
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 10%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 10%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}