.header__inner--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
}
.header__inner--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__area--top {
  padding: 0 45px;
}
.header__area {
  border-bottom: 1px solid #b4985a;
}
.header__util-item {
  width: 140px;
  border-bottom: 1px solid #b4985a;
  border-right: 1px solid #b4985a;
}
.header__util-text {
  font-size: 14px;
  line-height: 40px;
}
.header__link,
.header__util-link,
.nav__item-link {
  width: 100%;
  height: 100%;
  display: block;
}
.header__util-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  transition: 0.3s;
}
.header__util-link::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ico_qr.png);
}
.header__util-link--info::before {
  background-image: url(../img/common/ico_person.png);
}
.header__util-link--logout::before {
  background-image: url(../img/common/ico_logout.png);
}
.header__util-link--login::before {
  background-image: url(../img/common/ico_login.png);
}
.header__util-link--menu:before {
  background-image: url(../img/common/ico_ham.png);
}
.header__util-link--menu.on:before {
  background-image: url(../img/common/ico_ham_on.png);
}
.header__util-item--mobile {
  display: none;
}
@media (hover:hover) and (min-width:1024px) {
  .header__util-link:hover::before {
    background-image: url(../img/common/ico_qr_on.png);
  }
  .header__util-link--info:hover::before {
    background-image: url(../img/common/ico_person_on.png);
  }
  .header__util-link--logout:hover::before {
    background-image: url(../img/common/ico_logout_on.png);
  }
  .header__util-link--login:hover::before {
    background-image: url(../img/common/ico_login_on.png);
  }
  .header__util-link:hover {
    background-color: #0A8F3B;
    color: #fff;
  }
}
.header__util-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #b4985a;
  border-left: 1px solid #b4985a;
}
.header__nav {
  width: 1200px;
  max-width: calc(100% - 40px);
  position: relative;
  overflow: hidden;
}
.nav__indibar {
  position: absolute;
  background-color: #0A8F3B;
  height: 5px;
  transition: 1s;
  transform: translateY(-100%);
}
.nav__item-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.nav__item {
  text-align: center;
  line-height: 75px;
  font-size: 21px;
  font-weight: 400;
}
.nav__item--current > a {
  color: #0A8F3B;
}
@media screen and (min-width:1025px) {
  .depth02 {
    display: none !important;
  }
}
@media screen and (max-width:1024px) {
  .header__inner--between {
    padding: 0;
    min-height: 68px;
  }
  .header__area--top {
    padding: 0 20px;
  }
  .header__util-text {
    display: none;
  }
  .header__util-link {
    justify-content: center;
    padding: 0;
  }
  .header__util-item {
    width: auto;
    border: none;
  }
  .header__util-box {
    border: none;
    gap: 8px;
  }
  .header__util-link--info::before {
    background-size: 18px 18px;
  }
  .header__util-link--logout::before {
    background-size: 21px 19px;
  }
  .header__util-link--logi::before {
    background-size: 23px 20px;
  }
  .header__util-item--mobile {
    display: block;
  }
  .header__logo img {
    max-width: 170px;
    vertical-align: sub;
  }
  .header__nav {
    max-width: 100%;
  }
  .header__area--bot{
    min-height: auto;
    border-bottom: none;
  }
  .nav__item-list{
    display: none;
  }
  .nav__item-list.on {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: #fff;
    z-index: 5;
    width: 100%;
    top: 69px;
    height: calc(100vh - 69px);
    padding: 0 0 65px;
    overflow-y: auto;
  }
  .nav__item {
    border-bottom: 1px solid #d2d2d2;
    text-align: left;
    line-height: 58px;
    font-size: 18px;
  }
  .nav__item-link{
    padding: 0 20px;

  }
  .nav__indibar {
    display: none !important;
  }
}