@charset "utf-8";
/* CSS Document */
@media print, screen and (min-width: 1010px) { /*ウィンドウ幅が1000px以上の場合に適用*/
  #menu {
    width: 200px;
    margin-bottom: 30px;
    background: linear-gradient(130deg, #ffb540, #ff9c00);
  }
  #menu li {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 180px;
    padding: 0 10px;
    position: relative;
  }
  #menu li a {
    text-decoration: none;
    width: 180px;
    padding: 15px 0px 15px 15px;
    color: #fff;
    align-items: center;
    line-height: 130%;
    border-bottom: 1px solid #ffcd80;
    position: relative;
      
  }
  #menu li:before {
    position: absolute;
    top: 43%;
    left: 10px;
    transform: rotate(45deg);
      box-sizing: border-box;
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
      z-index: 1;
  }
  #menu li.border_none a {
    border-bottom: none;
  }
  #menu li a:hover {
    transition: 0.3s;
    color: #fcff98;
  }
}
.drawer_menu a {
  color: inherit;
  text-decoration: none;
}
.drawer_menu a:visited {
  color: inherit;
}
/*+++ Default Button Color +++*/
.drawer_menu .drawer_button {
  color: #fff;
  /* ハンバーガーメニュー文字色 */
  display: none;
}
.drawer_menu .drawer_button .drawer_bar {
  background-color: #fff;
  /* ハンバーガーメニュー三本線の色 */
}
/* 999px以下 */
@media (max-width: 1009px) {
  .drawer_menu .drawer_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: #ff9c00;
    display: none;
    top: 0;
    left: 0;
  }
  .drawer_menu .drawer_button {
    display: block;
    background-color: #ff9c00;
    border: none;
    padding: 5px 10px;
    width: 50px;
    letter-spacing: 0.1em;
    cursor: pointer;
    /*position: fixed;*/
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 1001;
    text-align: center;
    outline: none;
    border-radius: 5px;
  }
  .drawer_menu .drawer_button.active .drawer_bar {
    width: 32px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    transform: rotate(45deg);
    margin-left: 2px;
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    transform: rotate(-45deg);
    margin-left: 0px;
  }
  .drawer_menu .drawer_bar {
    display: block;
    height: 3px;
    margin: 8px 0px;
    transition: all 0.2s;
    transform-origin: 0 0;
    border-radius: 3px;
  }
  .drawer_menu .drawer_nav_wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    transform: translate(100%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    /*background-color: #;*/
    /* ドロワーメニュー内背景色 */
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer_menu #menu {
    display: block;
    position: relative;
    margin: 85px 10px 0 10px
  }
  .drawer_menu #menu li {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
  }
  .drawer_menu #menu li a {
    text-decoration: none;
    width: 320px;
    padding: 20px 0 20px 25px;
    color: #fff;
    align-items: center;
    display: flex;
    margin: 0 auto;
    position: relative;
    line-height: 150%;
    border-bottom: 1px solid #ffcd80;
  }
.drawer_menu #menu li a:before {
    position: absolute;
    top: 43%;
    left: 10px;
    transform: rotate(45deg);
      box-sizing: border-box;
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
      z-index: 1;
  }
  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .drawer_menu.left .drawer_button {
    right: auto;
    left: 32px;
  }
  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-250px);
    right: auto;
    left: 0;
  }
  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }
}