@charset "UTF-8";

.header {
  left: 0;
  position: fixed;
  top: 30;
  width: 100%;
  z-index: 999;
}

.header__contents {
  align-items: center;
  background-color: #ffffff;
  display: flex;
  height: 100px;
  justify-content: space-between;
  padding-bottom: 3px;
  padding-inline: 20px;
  padding-top: 11px;
  width: 100%;
}

.header-nuv {
  display: none;
}
.header-nuv__item > p {
  color: #36280C;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header-logo__link {
  aspect-ratio: 134/82;
  flex-shrink: 0;
  overflow: hidden;
  width: 134px;
}
.header-logo__link img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header-btn {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 11px;
  justify-content: flex-end;
}

.header-btn__test {
  color: #333;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header-btn__bar {
  cursor: pointer;
  height: 7px;
  position: relative;
  transition: opacity 0.3s ease;
  width: 30px;
}
.header-btn__bar:hover {
  opacity: 0.7;
}
.header-btn__bar.is-open .header-btn__bar-line:nth-of-type(1) {
  top: 2.5px;
  transform: rotate(20deg);
}
.header-btn__bar.is-open .header-btn__bar-line:nth-of-type(2) {
  top: 2.5px;
  transform: rotate(-20deg);
}

.header-btn__bar-line {
  background: #36280C;
  height: 2px;
  left: 0;
  position: absolute;
  transition: transform 0.1s ease-in, top 0.1s ease-in;
  width: 30px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: 0;
}
.header-btn__bar-line:nth-of-type(2) {
  top: 5px;
}

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

.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%;
}
.header-drawer__item:hover {
  color: #fff;
}
@media (min-width: 1024px) {
  .header__contents {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .header-nuv {
    align-items: center;
    display: flex;
    gap: 15px;
  }
  .header-drawer {
    width: 30%;
  }
}
@media (min-width: 1366px) {
  .header__contents {
    padding-inline: 35px;
  }
  .header-nuv {
    gap: 34px;
  }
}