.display {
  display: none;
}

@media (max-width: 700px) {
  .display {
    display: block;
  }
  .bg-m {
    width: 30px;
    height: 30px;
    background-color: orange;
    position: fixed;
    left: 87.6%;
    top: 10px;
    z-index: 500;
    border-radius: 5px;
  }
  #toggle {
    display: block;
    position: fixed;
    width: 28px;
    height: 43px;
    left: 87.7%;
    margin-top: 20px;
    z-index: 1000;
    transform: scale(0.8, 0.8);
  }
  .box0 > a {
    display: none;
  }
  #toggle span:after,
  #toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
  }
  #toggle span:after {
    top: 9px;
  }
  #toggle span {
    position: relative;
    display: block;
  }
  #toggle span,
  #toggle span:after,
  #toggle span:before {
    z-index: 100;
    width: 100%;
    height: 4px;
    background-color: white;
    transition: all 0.3s;
    border-radius: 2px;
  }
  /* on activation */
  #toggle.on span {
    background-color: transparent;
  }
  #toggle.on span:before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #toggle.on span:after {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
    animation: menu-anim 0.5s ease-in forwards;
  }
  @keyframes menu-anim {
    0% {
      transform: translate(100%, 0);
    }
    100% {
      transform: translate(0%, 0);
    }
  }
  /* menu appearance*/
  #menu {
    overflow: scroll;
    z-index: 11;
    position: fixed;
    background-color: white;
    width: 90%;
    top: 50px;
    left: 10%;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.746);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    font-weight: 200;
    z-index: 400;
    border: solid 1px orange;
  }
  .li-box {
    height: 8.3vh;
    margin-top: 2px;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: solid 1px orange;
    padding-left: 5%;
    align-items: center;
    justify-content: center;
  }
  .li2 {
    flex: 50%;
  }
  .li-right {
    border-left: solid 1px orange;
  }
  .li-img {
    flex: 40%;
  }
  .li-a {
    flex: 70%;
    font-family: ab-babywalk, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    padding-bottom: 2%;
    color: #2f7abf;
    text-align: left;
  }
  .list-i {
    width: 40%;
    padding-left: 0%;
  }
  .list-i.parkour {
    padding-top: 5%;
  }
  .list2 {
    display: flex;
  }
  a.li2 {
    flex: 50%;
  }
  .li {
    width: 100%;
    list-style: none !important;
  }
  li a {
    padding: 5px;
    color: black;
    text-decoration: none;
    transition: all 0.2s;
  }
  li a:hover,
  li a:focus {
    color: black;
  }
  .li-box2 {
    padding-left: 0 !important;
  }
  .list-i2 {
    width: 60% !important;
  }
  .list-i3 {
    width: 70% !important;
    margin: 0 auto;
  }
  .li-a2 {
    font-size: 11px;
    font-weight: 400;
  }
  .li-a3 {
    font-size: 20px;
  }
  .li-a4 {
    font-size: 15px;
  }
  .sns-box {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    margin-top: 4%;
    margin-bottom: 2%;
  }
  .sns-box2 {
    display: flex;
    align-items: center;
  }
  .sns-img {
    flex: 40%;
    padding-right: 3%;
  }
  .sns-a {
    flex: 60%;
    text-align: left;
    font-family: ab-babywalk, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    padding-bottom: 2%;
    color: #2f7abf;
  }
  .sns-i {
    width: 35%;
    margin-left: auto;
  }
}/*# sourceMappingURL=menu.css.map */