.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding: 0 40px;
  height: 80px;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
.logo a {
  display: block;
}
.corp-link a {
  font-size: 12px;
  font-weight: 700;
}
.corp-link a:hover {
  text-decoration: none;
}
.logo img {
  max-height: 100px;
}


@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 16px;
    height: 60px;
    justify-content: center;
  }
.nav-wrap {
    display: none;
  }
.corp-link {
    display: none;
  }
  .logo a img {
    height: 32px;
  }
  .corp-link {
    right: 16px;
  }
}