.header {
  background-color: #fff;
  left: 0;
  min-height: 72px;
  padding-inline: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header__contents {
  align-items: center;
  border-bottom: solid 1px rgba(34, 34, 34, 0.1);
  display: flex;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
  padding-block: 13px;
}

.header-logo {
  aspect-ratio: 170/54;
  flex-shrink: 0;
  width: 140px;
}
.header-logo a {
  display: block;
  height: 100%;
  width: 100%;
}
.header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

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

.header-nuv__list {
  display: none;
}

.header-nuv__item {
  color: #222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.header-contact__link {
  align-items: center;
  background-color: #ed1b24;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 13px;
  font-weight: bold;
  gap: 5px;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 120px;
}
.header-contact__link p {
  color: #fff;
}
.header-contact__link img {
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 17px;
}

.header-btn {
  align-items: center;
  background: #025ba7;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 42px;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 42px;
}
.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: #fff;
  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: #ffffff;
  height: calc(100vh - 75px);
  min-width: 275px;
  overflow: auto;
  padding-inline: 40px;
  padding-top: 7vh;
  position: fixed;
  right: 0;
  top: 72px;
  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%;
}

.header-drawer__item {
  border-bottom: 3px solid #025ba7;
  font-size: 15px;
  font-weight: 500;
  padding-block: 15px;
  text-align: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .header {
    min-height: 80px;
  }
  .header__contents {
    gap: 40px;
    margin-right: 10px;
  }
  .header-logo {
    width: 170px;
  }
  .header-nuv {
    gap: 40px;
  }
  .header-nuv__list {
    align-items: center;
    display: flex;
    gap: 15px;
  }
  .header-contact__link {
    gap: 7px;
    width: 150px;
  }
  .header-btn {
    display: none;
  }
  .header-drawer {
    display: none;
    width: 30%;
  }
}

@media (min-width: 1366px) {
  .header-nuv__list {
    gap: 29px;
  }
}