@charset "UTF-8";
/* CSS Document */

header {
  width: 100%;
  background-color: #353535;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

#headerBox {
  margin: 0;
  width: 100%;
  height: 90px;
  position: relative;
}

#headerBox h1 {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
}

#headerBox h1 a {
  height: 70px;
  width: 82px;
  background-image: url("../img/logo-s.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

#headerBox h1 span {
  display: none;
}

@media screen and (min-width: 768px) {
  #headerBox {
    max-width: 1024px;
    margin: 0 auto;
    height: 110px;
  }

  #headerBox h1 a {
    width: 106px;
    height: 90px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}