.hmbg_menu-area {
  display: none;
}

@media (max-width:800px) {
  .hmbg_menu-area {
    display: block;
  }
}
.hmbg_menu-area.active {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin-top: -10px;
  background-color: #ffffff;
}
/* ハンバーガーメニューボタン */
#hmbg_menu-button {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100000;
  width: 52px;
  height: 52px;
  cursor: pointer;
  color: #2a2a2a;
  margin: 0 auto;
  text-align: center;
}
header.ud #hmbg_menu-button {
  color: #ffffff;
}

#hmbg_menu-button .hmbg_menu-text {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  padding-top: 7px;
}
#hmbg_menu-button .hmbg_menu-text.non-active{
  display: none;
}

#hmbg_menu-button .hmbg_menu-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
#hmbg_menu-button .hmbg_menu-icon .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2a2a2a;
}
header.ud #hmbg_menu-button .hmbg_menu-icon .line {
  background-color: #ffffff;
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(1) {
  top: 25%;
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(2) {
  top: 55%;
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(3) {
  top: 85%;
}

#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(1) {
  opacity: 0;
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(2) {
  top: 50%;
  transform: rotate(-45deg) translate(-10px, 9px);
  background-color: #ffffff;
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(3) {
  top: 100%;
  transform: rotate(45deg) translate(0px, 2px) ;
  background-color: #ffffff;
}

/* メニュー */
#hmbg_menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99999;
  width: 100%;
  height: 400px;
  background-color: #2a2a2a;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
#hmbg_menu.active {
  right: 0;
}

/* メニュー内 */
.hmbg_menu-inner {
  height: 100%;
  overflow: auto;
}
.hmbg_menu-title {
  display: inline-block;
  width: 120px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin: 20px 0 0 0px;
  padding: 0px 0 0 20px;
}
.hmbg_menu-list {
  list-style: none;
  padding: 30px 20px 10px 20px;
  margin: 0;
}

.hmbg_menu-list li {
  margin-bottom: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.hmbg_menu-list li a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}
.hmbg_menu-list li a:hover {
  color: #ddd;
}
.hmbg_contact {
  padding: 20px 60px 30px 10px;
  margin: 0;
}
.hmbg_contact .more {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}