@charset "UTF-8";
.display {
  display: none;
}

#menu {
  display: none;
}

@media (max-width: 900px) {
  #menu {
    display: block;
  }
  .display {
    display: block;
  }
  .bg-m {
    width: 30px;
    height: 30px;
    background-color: white;
    position: fixed;
    right: 6px;
    top: 9.5px;
    z-index: 1000;
  }
  #toggle {
    display: block;
    position: fixed;
    width: 28px;
    height: 43px;
    top: 19px;
    right: 6.5px;
    margin-top: 0px;
    z-index: 1001;
    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: 3.5px;
    background-color: #009245;
    transition: all 0.3s;
    border-radius: 2px;
  }
  /* on activation */
  #toggle.on span {
    background-color: transparent;
  }
  #toggle.on span:before {
    transform: rotate(45deg) translate(6px, 6px);
  }
  #toggle.on span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
    animation: menu-anim 0.35s ease-in forwards;
  }
  @keyframes menu-anim {
    0% {
      transform: translate(0%, -100%);
    }
    100% {
      transform: translate(0%, 0);
    }
  }
  /* menu appearance*/
  #menu {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    position: fixed;
    background-color: white;
    width: 100%;
    height: 60%;
    right: 0%;
    top: 0;
    margin: auto;
    text-align: center;
    box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.746);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    padding-top: 50px;
    padding-bottom: 20px;
    font-weight: 200;
    z-index: 800;
    font-family: "fot-seurat-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
  }
  #menu a {
    color: black;
    text-decoration: none;
  }
  .menu-c {
    text-align: left;
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-top: 5%;
  }
  .title-container {
    padding-bottom: 1%;
    border-bottom: solid 1.5px #f7931e;
    font-family: "corporate-logo-ver2", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.05em;
    color: #8cc63f;
    font-size: 18px;
  }
  .menu-box {
    width: 95%;
    margin: 0 auto;
    border: solid 2px #8cc63f;
    margin-top: 3%;
    padding: 2%;
  }
  .menu-title {
    font-family: "corporate-logo-ver2", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 17px;
    padding-top: 4%;
    padding-bottom: 1%;
    letter-spacing: 0.05em;
    border-bottom: solid 1.5px #f7931e;
  }
  ul {
    padding-left: 5%;
    margin-top: 2%;
    margin-bottom: 2%;
  }
  li {
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    list-style: "▶︎ ";
  }
  .head-box .h1-box a {
    margin-top: 2px;
  }
}/*# sourceMappingURL=menu.css.map */