.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 110px;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 70px;
    padding: 10px 20px;
  }
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 70px;
}

.header-logo a {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 0.6818181818;
}
@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 16px;
  }
}

.header-nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .header-nav__list {
    gap: 0 10px;
  }
}
.header-nav__list > li > a {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .header-nav__list > li > a {
    padding: 0px;
    font-size: 14px;
  }
}

.header-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 15px;
}
@media screen and (max-width: 1090px) {
  .header-buttons {
    display: none;
  }
}
.header-buttons__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 172px;
  padding: 10px;
  font-family: "Zen Maru Gothic", serif;
  border: 1px solid #707070;
  border-radius: 5px;
  line-height: 1;
}