.hmbg_menu-area {
  display: none;
}
@media (max-width:767px) {
  .hmbg_menu-area {
    display: block;
    box-sizing: border-box;
  }
}
/* ハンバーガーメニューボタン */
#hmbg_menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  background: #263152;
  width: 80px;
  padding: 8px 24px;
  border-radius: 24px;
}
#hmbg_menu-button .hmbg_menu-icon {
  position: relative;
  width: 20px;
  height: 12px;
  margin: 0 auto;
}
#hmbg_menu-button .hmbg_menu-icon .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
nav.ud #hmbg_menu-button .hmbg_menu-icon .line {
  background-color: #ffffff;
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(1) {
  top: 20%;
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(2) {
  top: 50%;
}
#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) {
  width: 150%;
  top: 50%;
  transform: rotate(-20deg) translate(-3px, -3px);
  background-color: #ffffff;
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(3) {
  width: 150%;
  top: 100%;
  transform: rotate(20deg) translate(-6px, -6px) ;
  background-color: #ffffff;
}

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

/* メニュー内 */
.hmbg_menu-inner {
  margin: 10px;
  padding-inline: 20px;
  height: calc(100dvh - 20px);
  background-color: #ffffff;
  border-radius: 20px;
  overflow: auto;
}
.hmbg_menu-list {
  list-style: none;
  padding: 80px 10px;
  margin: 0;
}
.hmbg_menu-list li {
  margin-bottom: 10px;
  padding: 12px 0;
  text-align: left;
}
.hmbg_menu-list li a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #263152;
  text-decoration: none;
}
.hmbg_menu-list li a span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b4b4b4;
}
.hmbg_menu-title {
  display: flex;
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  color: #232427;
  margin: 30px 0 0 0px;
  padding: 0px 10px;
}
.hmbg_menu-text {
  line-height: 20px;
  padding-left: 20px;
  margin: auto 0;
}