@media screen and (max-width: 48em) {
  .menu-button {
    display: none;
  }
}
@media screen and (max-width: 45em) {
    .menu-button {
        width: 56px;
        height: 56px;
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        background: rgba(250, 117, 136,0.8);
        z-index: 3;

    }
    .menu-button span {
      display: block;
        text-align: center;
        padding-top: 30px;
        font-size: 1.4rem;
color: #FFF;
    }
    .menu-button i {
        display: block;
        width: 34px;
        height: 3px;
        border-radius: 3px;
        background: #fff;
        -webkit-transition: background 0.5s;
        transition: background 0.5s;
        position: relative;
        left: 13px;
        top: 24px;
    }
    .menu-button i:before, .menu-button i:after {
        content: "";
        display: block;
        width: 34px;
        height: 3px;
        border-radius: 3px;
        background: #fff;
        position: absolute;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.3s !important;
        transition: all 0.3s !important;
    }
    .menu-button i:before {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    .menu-button i:after {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .is-open .menu-button i {
        background: rgba(255, 0, 0, 0);
    }
    .is-open .menu-button i:after {
        -webkit-transform: translateY(0px) rotate(-45deg);
        transform: translateY(0px) rotate(-45deg);
    }
    .is-open .menu-button i:before {
        -webkit-transform: translateY(0px) rotate(45deg);
        transform: translateY(0px) rotate(45deg);
    }
    .gnav__inner {
    position: absolute;
    width: 100%;
    top: -735px;
    z-index: 2;
    -webkit-transition: 1.5s top;
    transition: 1.5s top;
}
.gnav__inner ul  {
  width: 100%;
  display: block;
}
.gnav__inner ul li {
  width: 100%;
    font-size: 2.2rem;
    border: none;
}
.gnav__inner ul li a {
    text-align: center;
    display: block;
    padding: 20px 0px;
    color: #fff;
}
.gnav__item:last-child {
    font-size: 2.2rem;
    border:none;
}
/*.is-open .gnav__inner {
    top: 0px;
}
*/
#js-cover {
    background: #000;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    opacity: 0;
    z-index: 1;
}
}
