.pushy {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #083A84;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
}
.pushy .pushy-content {
  visibility: hidden;
  text-align: center;
  width: 70%;
  max-width: 824px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content {
    width: 90%;
  }
}
.pushy .pushy-content .pushy-nav {
  margin: 102px 0 0 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-nav {
    margin: 144px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .pushy .pushy-content .pushy-nav::after {
    display: block;
    content: "";
    width: 30%;
  }
}
.pushy .pushy-content .pushy-nav li {
  margin: 0 0 3em 0;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-nav li {
    width: 30%;
  }
}
.pushy .pushy-content .pushy-nav li a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  transition: 0.3s;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-nav li a {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .pushy .pushy-content .pushy-nav li a {
    font-size: 1.8rem;
  }
}
.pushy .pushy-content .pushy-nav li a::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.6em;
}
.pushy .pushy-content .pushy-nav li a:hover {
  opacity: 0.75;
}
.pushy .pushy-content .pushy-nav li.home {
  margin: 0 0 3em 0;
}
.pushy .pushy-content .pushy-nav li.home a {
  width: 80%;
  height: auto;
  aspect-ratio: 1/0.18548;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../../images/risaiku-logo-w.svg") no-repeat center center;
  background-size: cover;
}
.pushy .pushy-content .pushy-nav li .cilid-list li {
  border-top: none;
  padding: 0 0 0 1em;
  margin: 2em 0 2em 0;
}
.pushy .pushy-content .pushy-nav li .cilid-list li a {
  font-size: 1.5rem;
}
@media screen and (min-width: 1280px) {
  .pushy .pushy-content .pushy-nav li .cilid-list li a {
    font-size: 1.6rem;
  }
}
.pushy .pushy-content .pushy-nav li .cilid-list li a::after {
  display: block;
  background: #FFFFFF;
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  left: calc((1em - 5px) * -1);
  top: 0.5em;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-nav li .cilid-list li {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .pushy-nav-left {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .pushy-nav-right {
    margin-top: 80px;
    width: 55%;
  }
}

/* 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);
  opacity: 1;
}

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

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
}

.pushy-content {
  transition: visibility 0.65s cubic-bezier(0.85, 0, 0.15, 1);
}

/* 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 */