 @charset "UTF-8";

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

.header__contents {
  align-items: center;
  display: flex;
  gap: 10px;
}

.header-logo {
  aspect-ratio: 144/54;
  flex-shrink: 0;
  overflow: hidden;
  width: 120px;
}
.header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nuv {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.header-nuv__list {
  display: none;
}
.header-nuv__item {
  align-items: center;
  display: flex;
  gap: 2px;
}
.header-nuv__item > p {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.header-nuv__item img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 12px;
}

a.header-bnr {
  align-items: center;
  background-color: #F4911E;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-weight: 600;
  gap: 8px;
  height: 45px;
  justify-content: center;
  letter-spacing: 0.05em;
  min-width: 140px;
  padding: 10px;
}
a.header-bnr img {
  aspect-ratio: 13/10;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 13px;
}

.header-btn {
  align-items: center;
  background: #1A96D5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 45px;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 45px;
}
.header-btn:hover {
  opacity: 0.7;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(1) {
  top: 22px;
  transform: translateX(-50%) 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: 22px;
  transform: translateX(-50%) rotate(-35deg);
}

.header-btn__bar {
  height: 100%;
  position: relative;
  width: 100%;
}

.header-btn__bar-line {
  background: #fff;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: transform 0.3s ease-in, top 0.3s ease-in;
  width: 25px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: 15px;
}
.header-btn__bar-line:nth-of-type(2) {
  top: 22px;
}
.header-btn__bar-line:nth-of-type(3) {
  top: 29px;
}

.header-drawer {
  background-color: #F4911E;
  border-radius: 20px 0 0 0;
  height: calc(100vh - 65px);
  min-width: 275px;
  overflow: auto;
  padding-inline: 40px;
  padding-top: 7vh;
  position: fixed;
  right: 0;
  top: 65px;
  transform: translateX(100%);
  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%;
}

a.header-drawer__item {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 2px;
  justify-content: center;
  padding-block: 15px;
  text-align: center;
  width: 100%;
}

.header-drawer__item > p {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.header-drawer__item img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 12px;
}
@media (min-width: 1024px) {
  .header {
    padding-inline: 30px 20px;
    top: 15px;
  }
  .header-logo {
    width: 144px;
  }
  .header-nuv {
    gap: 20px;
  }
  .header-nuv__list {
    display: flex;
    gap: 15px;
  }
  a.header-bnr {
    height: 47px;
    min-width: 160px;
    padding: 10px 25px;
  }
  .header-btn {
    display: none;
  }
  .header-drawer {
    display: none;
    width: 30%;
  }
}
@media (min-width: 1366px) {
  .header-nuv {
    gap: 40px;
  }
  .header-nuv__list {
    gap: 40px;
  }
}