@charset "UTF-8";
#nav-drawer {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 100px;
}
#nav-drawer ul {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 800px;
  margin-right: auto;
  margin-left: auto;
}
#nav-drawer ul li {
    -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
    font-feature-settings:normal;
}
#nav-drawer .rogo {
  width: 100px;
}
#nav-drawer {}
#nav-drawer input, #nav-close {
  display: none;
}
.nav-logo {
  display: none;
}
/* ===============================================================================


media query


=============================================================================== */
@media screen and (max-width:750px) {
  header {
    position: fixed;
    top: 0px;
    left: 0px;
    margin-top: 0px;
    height: 50px;
    z-index: 5;
  }
  .nav-logo {
    display: block;
    padding: 30px 10px;
    margin: 0px;
    text-align: center;
    background-color: #FFFFFF;
  }
  .nav-logo img {
    width: 30%;
  }
  #nav-drawer {
    position: fixed;
    float: right;
    padding-top: 0px;
    top: 10px;
    right: 10px;
    background-color: transparent;
    z-index: 10;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  #nav-drawer .rogo {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 40px;
    height: 36px;
    vertical-align: middle;
  }
  /*ハンバーガーの形をCSSで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 5px; /*線の太さ*/
    width: 36px; /*長さ*/
    border-radius: 5px;
    background: #999;
    display: block;
    content: '';
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -12px;
  }
  #nav-open span:after {
    bottom: -24px;
  }
  /*閉じる用の薄黒箇所*/
  #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  /*メニューの中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px; /*最大幅（お好みで調整を）*/
    height: 100%;
    background: #fff;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }
  /*チェックがついたら表示させる*/
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  }
  .header-logo-menu {
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
  }
  #nav-drawer ul {
    display: block;
    width: 100%;
    border-top: thin solid #ccc;
  }
  #nav-drawer ul li {
    writing-mode: horizontal-tb;
    display: block;
    padding: 20px;
    border-bottom: thin solid #ccc;
  }
}