.drawer-off__button {
  position: fixed;
  top: 8px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: #B60005;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
}
.drawer-off__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.drawer-off__wrapper {
  display: flex;
  flex-direction: column;
}
.drawer-off__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.drawer-off__line span {
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
}
.drawer-off__title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer-on {
  width: 100%;
  height: 100dvh;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-on.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 100;
}
.drawer-on__inner {
  padding: 26px 20px;
  box-sizing: border-box;
}
.drawer-on__logo {
  display: block;
  width: 45%;
  margin-bottom: 30px;
}
.drawer-on__nav {
  margin-bottom: 30px;
}
.drawer-on__item a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
.drawer-on__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.drawer-on__link a {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}

.drawer-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #B60005;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.drawer-mail i, .drawer-mail span {
  color: #ffffff;
}
.drawer-mail span {
  font-size: 18px;
  font-weight: 500;
}

.drawer-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  padding: 10px 30px 20px;
  margin-bottom: 30px;
}
.drawer-tel__link {
  display: flex;
  justify-content: center;
  align-items: self-end;
  gap: 5px;
}
.drawer-tel__link i, .drawer-tel__link span {
  color: #B60005;
}
.drawer-tel__link i {
  margin-bottom: 8px;
}
.drawer-tel__link span {
  font-size: 32px;
  font-weight: 500;
}
.drawer-tel__caption {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  padding: 5px;
}

.drawer-sns__title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.drawer-sns__list {
  display: flex;
  gap: 5%;
}
.drawer-sns__item {
  width: 10%;
}