.drawer_button * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  text-decoration: none;
  list-style: none;
}

.drawer_button {
  display: block;
  padding: 0;
  width: 42px;
  height: 26px;
  position: relative;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
}

.drawer_button .drawer_bar {
  display: block;
  width: 42px;
  height: 5px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.drawer_button .drawer_bar1 {
  top: 0;
}

.drawer_button .drawer_bar2 {
  top: 50%;
}

.drawer_button .drawer_bar3 {
  top: 100%;
}

.drawer_button.active .drawer_bar {
  width: 36.77px;
  left: 8px;
}

.drawer_button.active .drawer_bar1 {
  transform: rotate(0.7853981634rad) translateY(-50%);
  top: 0px;
}

.drawer_button.active .drawer_bar2 {
  opacity: 0;
}

.drawer_button.active .drawer_bar3 {
  transform: rotate(-0.7853981634rad) translateY(-50%);
  top: calc(100% - 0px);
}

.drawer_button.active .drawer_menu_text {
  display: none;
}

.drawer_button.active .drawer_close {
  display: block;
}

.drawer_text {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  text-align: center;
  font-size: 10px;
}

.drawer_close {
  letter-spacing: 0.08em;
  display: none;
}

/*+++ Default Button Color +++*/

.drawer_button {
  color: #333;
}

.drawer_button .drawer_bar {
  background-color: #333;
}

/* === Hambuerger Button's Style End === */

.drawer_menu .drawer_button {
  /*+++ Hamburger Button Position +++*/
  position: absolute;
  /*　position: fixed;　*/
  top: 23px;
  right: 30px;
  z-index: 1001;
}

@media only screen and (max-width:768px) {
  .drawer_menu .drawer_button {
    position: fixed;
    top: 23px;
    right: 20px;
    z-index: 1001;
  }
}

.drawer_menu a {
  color: inherit;
  text-decoration: none;
}

.drawer_menu a:visited {
  color: inherit;
}

.drawer_menu .drawer_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  top: 0;
  left: 0;
}

.drawer_menu .drawer_nav_wrapper {
  width: 90%;
  max-width: 350px;
  height: 100%;
  transition: all 0.2s;
  transform: translate(350px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #999;
}

.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(-350px);
  right: auto;
  left: 0;
}

.drawer_menu.left .drawer_nav_wrapper.open {
  transform: translate(0);
}

/*+++ Default Navigation CSS +++*/

.drawer_menu .drawer_nav {
  padding: 112px 24px;
}

.drawer_menu .drawer_nav a li {
  font-size: 18px;
  padding: 18px 20px;
  border-bottom: solid 1px #ccc;
  background-image: url("../img/arrowR.svg");
  background-repeat: no-repeat;
  background-position: right center;
}

.drawer_menu .drawer_nav a:first-child li {
  border-top: solid 1px #fff;
}

.drawer_menu .drawer_nav a li:hover {
  background-color: #888;
  display: block;
}

.drawer_menu .drawer_nav li.commingsoon {
  font-size: 18px;
  padding: 16px 20px;
  border-bottom: solid 1px #ccc;
  color: #ddd;
  background-image: none;
}

.drawer_menu .drawer_nav li:hover.commingsoon {
  background-color: #999;
  display: block;
}

.drawer_menu .drawer_nav li.commingsoon span.soon {
  margin: 0px 0 0px 10px;
  display: inline-block;
  padding: 3px 10px;
  border: solid 1px #ddd;
  font-size: 11px;
  color: #ddd;
  font-weight: bold;
}

.drawer_menu .drawer_nav li span {
  font-size: 12px;
  color: #fff;
}

@media only screen and (max-width:578px) {
  .drawer_menu .drawer_nav {
    padding: 65px 15px;
  }
  .drawer_menu .drawer_nav a li {
    font-size: 15px;
    padding: 15px 12px;
    border-bottom: solid 1px #ccc;
    background-image: url("../img/arrowR.svg");
    background-repeat: no-repeat;
    background-position: right center;
  }
  .drawer_menu .drawer_nav li.commingsoon {
    font-size: 15px;
    padding: 12px 12px;
  }
}

.drawer_menu .drawer_nav li.commingsoon span.soon {
  margin: 5px 0 0px 10px;
  display: inline-block;
  padding: 2px 10px;
  border: solid 1px #ddd;
  font-size: 11px;
  color: #ddd;
  font-weight: bold;
}

.drawer_menu .drawer_nav li span {
  font-size: 12px;
}
