.header {
  left: 0;
  padding-inline: 20px;
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 999;
}

.header__contents {
  align-items: center;
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  padding: 10px;
}

.header-logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.header-logo__link {
  aspect-ratio: 145/52;
  flex-shrink: 0;
  overflow: hidden;
  width: 120px;
}
.header-logo__link img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header-logo__desc {
  color: #333;
  display: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(15 / 11);
  padding-left: 16px;
}
.header-logo__desc::before {
  background-color: #dddddd;
  content: "";
  height: 20px;
  width: 1px;
}

.header-nuv {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.header-nuv__list {
  display: none;
}
.header-nuv__item > p {
  color: #333;
  letter-spacing: 0.05em;
}

.header-btn {
  align-items: center;
  border: 1px solid #0082d8;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 46px;
  justify-content: center;
  margin-left: 4px;
  transition: opacity 0.3s ease;
  width: 46px;
}
.header-btn:hover {
  opacity: 0.7;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(1) {
  top: 9px;
  transform: rotate(35deg);
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(2) {
  display: none;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(3) {
  top: 9px;
  transform: rotate(-35deg);
}

.header-btn__bar {
  height: 20px;
  position: relative;
  width: 30px;
}

.header-btn__bar-line {
  background: #0082d8;
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 0.3s ease-in, top 0.3s ease-in;
  width: 30px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: 0;
}
.header-btn__bar-line:nth-of-type(2) {
  top: 10px;
}
.header-btn__bar-line:nth-of-type(3) {
  top: 20px;
}

.header-drawer {
  background-color: #0082d8;
  height: calc(100vh - 90px);
  min-width: 275px;
  opacity: 0;
  overflow: auto;
  padding-inline: 40px;
  padding-top: 7vh;
  position: fixed;
  right: 0;
  top: 90px;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.3s ease;
  width: 50%;
  z-index: 98;
}
.header-drawer.is-checked {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.header-drawer__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 250px;
  width: 100%;
}

.header-drawer__item {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding-block: 15px;
  text-align: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .header {
    padding-inline: 30px;
    top: 30px;
  }
  .header-logo__link {
    width: 145px;
  }
  .header-logo__desc {
    display: block;
  }
  .header-nuv {
    gap: 27px;
  }
  .header-nuv__list {
    display: flex;
    gap: 20px;
  }
  .header-btn {
    display: none;
  }
  .header-drawer {
    display: none;
    width: 30%;
  }
}