/*============
nav ハンバーガーメニュー
=============*/
.menu_nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 6;
  opacity: 0;
  font-size: 0.785rem;
}


.menu-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #ddd;
}


.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list a {
  color: #000000!important;
  text-decoration: none !important;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.menu-item i:first-child {
  color: #F6B42C;
}

.menu-item i {
  color: #999;
}

.menu-item span {
  flex: 1;
  margin-left: 10px;
}

.menu-item .badge {
  background-color: #ff5722;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  /* font-size: 12px; */
}

.menu-section {
  padding: 10px 15px;
  background-color: #f5f5f5;
  color: #999;
  /* font-size: 14px; */
}

.menu-item .status {
  /* font-size: 12px; */
  padding: 5px 8px;
  border-radius: 12px;
}

.menu-item img {
  width: 20px;
}



.open .menu_nav {
  left: 0;
  opacity: 1;
}


@media screen and (max-width: 767px) {
  .menu_nav {
    left: -220px;
    width: 220px;
  }
  .menu_nav .inner ul li a {
    font-size: 0.785rem;

  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 10px;
  left: 15px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 6;
  color: #ffffff;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #000000;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
  width: 16px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translate(-1px,4px) rotate(-45deg);
  transform: translate(-1px,4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translate(-1px,-4px) rotate(45deg);
  transform: translate(-1px,-4px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 270px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 5;
  cursor: pointer;
}
/*============
main
=============*/

.open main {
  margin-left: 300px;
}
