/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #949DA3;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.pushy .pushy-content {
  visibility: hidden;
  text-align: left;
  width: 80%;
  margin: 80px auto 0 auto;
  padding-bottom: 360px;
}
@media (min-width: 768px) {
  .pushy .pushy-content__flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.pushy .pushy-content ul {
  margin: 15px 0 0 0;
}
@media (min-width: 768px) {
  .pushy .pushy-content ul {
    margin: 30px 0 0 0;
    width: 45%;
  }
}
.pushy .pushy-content ul li a {
  display: block;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.4vw;
  line-height: 120%;
  padding: 15px 0 10px 18px;
  text-decoration: none;
  position: relative;
}
@media (min-width: 480px) {
  .pushy .pushy-content ul li a {
    font-size: 1.5rem;
  }
}
.pushy .pushy-content ul li a::before {
  display: block;
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  top: calc(0.5em + 13px);
  left: 0;
}
.pushy .pushy-content ul li a::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  left: 0;
  bottom: -4px;
}
.pushy .pushy-content ul li ul.sub-list {
  margin: 15px 0 0 0;
}
@media (min-width: 768px) {
  .pushy .pushy-content ul li ul.sub-list {
    width: inherit;
  }
}
.pushy .pushy-content ul li ul.sub-list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.2vw;
  line-height: 120%;
  text-decoration: none;
  padding: 10px 0 5px 2em;
}
@media (min-width: 480px) {
  .pushy .pushy-content ul li ul.sub-list li a {
    font-size: 1.3rem;
  }
}
.pushy .pushy-content ul li ul.sub-list li a::before {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: calc(0.5em + 9px);
  left: 1em;
}
.pushy .pushy-content ul li ul.sub-list li a::after {
  background-color: inherit;
}
.pushy .pushy-content ul li ul.sub-list ul.sub-list__child {
  margin: 5px 0 0 1em;
}
.pushy .pushy-content ul li.sns {
  display: flex;
  justify-content: start;
}
.pushy .pushy-content ul li.sns a {
  font-size: initial;
  line-height: 1;
  padding: 30px 0 30px 10%;
}
.pushy .pushy-content ul li.sns a img {
  width: 40px;
  height: auto;
}
.pushy .reservation {
  padding: 0 0 60px 0;
}
.pushy .reservation .reservation-banner {
  width: 80%;
  max-width: 420px;
  margin: 0 auto;
}
.pushy .reservation .reservation-banner img {
  width: 100%;
  height: auto;
}

.pushy.pushy-left {
  left: 0;
}

.pushy.pushy-right {
  right: 0;
}

/* Menu Movement */
.pushy-left {
  transform: translate3d(-100vw, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  transform: translate3d(100vw, 0, 0);
}

.pushy-right {
  transform: translate3d(100vw, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  transform: translate3d(-100vw, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(51, 51, 51, 0.8);
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=pushy.css.map */