.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 21px 0 22px 0px;
}

.header-container {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.header-logo {
  flex-shrink: 0;
  width: 240px;
}

.header-logo img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.header-contact {
  width: 268px;
}


/* SP */
@media screen and (max-width: 768px) {
  .header {
    position: relative;
    width: 100%;
    padding: 60px 0 22px 0px;
  }

  .header-container {
    width: 100%;
    max-width: 1280px;
    justify-content: center;
  }

  .header-logo {
    width: 50.26%;
  }

  .header-contact {
    display: none;
  }
}