.hmbg_menu-area {
  display: grid;
  box-sizing: border-box;
  place-content: center;
}

#hmbg_menu-button {
  position: relative;
  display: none;
  z-index: 100000;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  width: 50px;
  padding: 2px 0;
}
@media screen and (max-width: 767px) {
  #hmbg_menu-button {
    display: grid;
    place-content: center;
    width: clamp(33.4px, 13.04vw, 100px);
    height: clamp(33.4px, 13.04vw, 100px);
    background: linear-gradient(#3a75bb 0%, rgba(30, 37, 54, 0.61) 100%);
    border-radius: 50%;
  }
}
#hmbg_menu-button .hmbg_menu-icon {
  position: relative;
  width: 50px;
  height: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #hmbg_menu-button .hmbg_menu-icon {
    display: grid;
    place-content: center;
    width: clamp(13.36px, 5.22vw, 40px);
    height: clamp(6.01px, 2.35vw, 18px);
  }
}
#hmbg_menu-button .hmbg_menu-icon .line {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  height: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #hmbg_menu-button .hmbg_menu-icon .line {
    height: 2px;
  }
}
#hmbg_menu-button .hmbg_menu-icon .line:nth-of-type(1) {
  top: 0%;
}
#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: 100%;
}
#hmbg_menu-button.active .hmbg_menu-icon {
  width: clamp(9.35px, 3.65vw, 28px);
  height: clamp(9.35px, 3.65vw, 28px);
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(1) {
  width: 180%;
  transform: rotate(-45deg) translate(-8px, 0px);
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(2) {
  display: none;
}
#hmbg_menu-button.active .hmbg_menu-icon .line:nth-of-type(3) {
  width: 180%;
  transform: rotate(45deg) translate(-10px, -2px);
}

#hmbg_menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
  width: 100%;
  height: 100dvh;
  background-color: #3a75bb;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #hmbg_menu {
    top: -100%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}
#hmbg_menu.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0s 0s;
}
@media screen and (max-width: 767px) {
  #hmbg_menu.active {
    top: 0%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}
#hmbg_menu .logo {
  display: none;
}
@media screen and (max-width: 767px) {
  #hmbg_menu .logo {
    display: block;
    top: 7px;
    left: 20px;
    width: 50px;
  }
}
#hmbg_menu .hmbg_menu-inner {
  padding-inline: 20px;
  width: max(33%, 400px);
  height: 100%;
  overflow: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #hmbg_menu .hmbg_menu-inner {
    padding-inline: 0;
    width: 100%;
  }
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list {
  list-style: none;
  padding: 80px 40px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  #hmbg_menu .hmbg_menu-inner .hmbg_menu-list {
    position: absolute;
    top: 0;
    padding: 32.5% calc(clamp(19.2px, 2.5vw, 40px) * 2);
    margin: 0;
    height: 100%;
  }
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ffffff;
  position: relative;
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li:first-of-type {
  border-top: 1px solid #ffffff;
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li::after {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  right: clamp(3.34px, 1.3vw, 10px);
  width: clamp(11.69px, 4.56vw, 35px);
  height: clamp(11.69px, 4.56vw, 35px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 35' fill='%233a75bb'%3E%3Cpath d='M12 8l14 9.5-14 9.5' stroke='%233a75bb' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li .hmbg {
  border: 1px solid rgba(69, 69, 69, 0.25);
}
@media screen and (max-width: 767px) {
  #hmbg_menu .hmbg_menu-inner .hmbg_menu-list li .hmbg {
    position: absolute;
    width: calc(100vw - 40px);
  }
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li a {
  display: block;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #hmbg_menu .hmbg_menu-inner .hmbg_menu-list li a {
    padding: clamp(13.36px, 5.22vw, 40px) 0;
    font-size: clamp(13.36px, 5.22vw, 40px);
    color: #ffffff;
  }
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-list li a span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b4b4b4;
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-title {
  display: flex;
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  color: #232427;
  margin: 50px 0 0 0;
}
#hmbg_menu .hmbg_menu-inner .hmbg_menu-text {
  line-height: 20px;
  padding-left: 20px;
  margin: auto 0;
}/*# sourceMappingURL=hmbg_menu.css.map */