.menu-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.menu-btn img {
  width: 60px;
  height: 60px;
  display: block;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1001;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: var(--drawer-w);
  height: 100vh;
  background: var(--color);
  color: #fff;
  z-index: 1002;

  transform: translateX(100%);
  transition: transform 260ms ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.menu-btn--close {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
}

.drawer-list {
  list-style: none;
  margin: 0;
  padding: 90px 24px 24px;
  display: grid;
  gap: 18px;
}

.drawer-list a {
  padding: 0 0 1rem;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 4% auto;
  border-bottom: #fff solid 1px;
}

.drawer-list a span {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}

body.is-locked {
  overflow: hidden;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .menu-btn {
    width: 50px;
    height: 50px;
  }

  .menu-btn img {
    width: 50px;
    height: 50px;
  }

  .drawer-list a {
    font-size: 5.333vw;
    /* 20px */
  }

  .drawer-list a span {
    font-size: 4.267vw;
    /* 16px */
  }

}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .drawer-list a {
    font-size: 22px;
  }

  .drawer-list a span {
    font-size: 16px;
  }
}