@charset "UTF-8";
/* CSS Document */
@media screen and (max-width: 959px) {
  .navbar_brand {
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .contact {
    display: none;
  }
  .tel {
    background-color: #333333;
    display: none;
  }
  nav {
    width: 100%;
    height: 70px;
    position: relative;
    background: #F6F6F6;
    z-index: 1000;
  }
  .drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 64px;
    padding: 0 1em;
    z-index: 1000;
  }
  .navbar_toggle {
    z-index: 9999;
    z-index: 1000;
  }
  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: #5c6b80;
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 1000;
  }
  .navbar_toggle_icon:nth-child(1) {
    top: 0;
    z-index: 1000;
  }
  .navbar_toggle_icon:nth-child(2) {
    margin: 8px 0;
    z-index: 1000;
  }
  .navbar_toggle_icon:nth-child(3) {
    top: 0;
    z-index: 1000;
  }
  /*OPEN時の動き*/
  .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1000;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    z-index: 1000;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 1000;
  }
  .menu {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 1000;
    background-color: #fff;
    opacity: 0.9;
    height: 1000px;
    text-align: center;
  }
  .menu ul li {
    padding: 2rem;
    border-bottom: 1px solid #CCC;
    z-index: 1000;
  }
  /*OPEN時の動き*/
  .menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 960px) {
  .contact {
    background-color: #82C3E0;
    padding: auto;
    max-height: 140px;
    width: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tel {
    width: 26vw;
    margin-left: 1rem;
    background-color: #333333;
    max-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    opacity: 0.9;
    background-color: #fff;
  }
  .navbar_toggle {
    display: none;
  }
  .menu {
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu ul {
    max-height: 140px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }
  .menu ul li {
    padding: 0 0.8%;
    border-bottom: none;
    font-size: 1.2vw;
  }
  .navbar_brand {
    max-height: 140px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .navbar_brand img {
    width: auto;
  }
  .drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-height: 140px;
    padding: 0 1rem;
    z-index: 1000;
  }
}