html {
    font-size: 62.5%;
    color: #333;
    font-family: 'Kiwi Maru', serif;
}

.none {
    display: none;
}
/* --------------HEADER-------------- */
.header {
    height: 60px;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    position: fixed;
    background-color: rgba(255, 255, 266, 0.8);
    width: 100vw;
    z-index: 9999;
}
.header__logo {
    max-width: 100px;
}
.hamburger-container {
    width: 50px;
}
.hamburger-menu {
    height: 50px;
    width: 50px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    padding: 0;
    appearance: none;
}
.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background-color: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:nth-child(3) {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 80%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(3) {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }  
.navigation {
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 60px;
    left: 30vw;
    z-index: 9999;
    height: 100vh;
    width: 70vw;
    padding-top: 25vh;
    text-align: center;
    box-shadow: -10px 10px 10px rgba(000, 000, 000, 0.2);
}
.navigation__list-item {
    font-size: 1.6rem;
}
.navigation__list-item a {
    text-decoration: none;
    color: #242424;
    line-height: 5rem;
}

@media (min-width :960px) {
    .header {
        padding: 0 15vw;
    }
    .navigation {
        display: none;
        background-color: rgba(255, 255, 255, 0.7);
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 9999;
        height: 60px;
        width: 100vw;
        padding-top: 10px;
        text-align: center;
    }
    .navigation__list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .navigation__list-item {
        font-size: 1.6rem;
    }
    .navigation__list-item:not(:last-child)::after {
        content: "　　|　　";
    }
    .navigation__list-item a {
        text-decoration: none;
        color: #242424;
        line-height: 5rem;
        padding-bottom: 5px;
        position: relative;
    }
    .navigation__list-item a::before {
        background: #242424;
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    .navigation__list-item a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
}

/* -----------FOOTER-------------- */
.footer {
    margin-top: 80px;
}
.to-top-button {
    width: 30px;
    margin: 0 auto 30px;
    display: block;
}
.footer-container {
    background-color: #9D9383;
    padding-top: 20px;
}
.footer__logo {
    max-width: 50%;
    display: block;
    margin: 0 auto 20px;
}
.footer__nav {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 5rem;
    display: block;
}
.footer__nav a {
    text-decoration: none;
    color: #fff;
}
.insta-icon {
    width: 15px;
    margin-right: 4px;
}
.copyright {
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-size: 1.4rem;
    line-height: 4rem;
    margin-top: 30px;
}

@media (min-width: 960px) {
    .footer {
        padding-top: 50px;
    }
    .footer__logo {
        max-width: 250px;
    }
    .footer__nav {
        font-size: 1.6rem;
    }    
    .footer__nav ul {
        display: flex;
        justify-content: center;
        margin-bottom: 90px;
    }
    .footer__nav-items:not(:last-child)::after {
        content: "　　|　　";
        color: #fff;
    }
    .footer__nav-items a {
        padding-bottom: 5px;
        position: relative;
    }
    .footer__nav-items a::before {
        background: #fff;
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    .footer__nav-items a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
}