@charset "UTF-8";
/*Typekit FOUT防止*/
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
/*Typekit FOUT防止ここまで*/
header {
  width: 100%;
  height: 80px;
  background-color: #222;
  position: relative;
}
header .logo {
  width: 200px;
  position: absolute;
  top: 12px;
  left: 3%;
}
header .logo img {
  width: 100%;
}
header h1 {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 3%;
}
@media screen and (min-width:700px) and (max-width:1050px) {
  header {
    width: 100%;
    height: 80px;
    background-color: #222;
    position: relative;
  }
  header .logo {
    width: 200px;
    position: absolute;
    top: 12px;
    left: 3%;
  }
  header .logo img {
    width: 100%;
  }
  header h1 {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    position: absolute;
    top: 15px;
    right: 3%;
  }
}
@media screen and (max-width:700px) {
  header {
    width: 100%;
    height: auto;
    background-color: #222;
    position: relative;
    padding: 10px 0;
  }
  header .logo {
    width: 150px;
    position: static;
    margin: 0 auto;
  }
  header .logo img {
    width: 100%;
  }
  header h1 {
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    font-weight: normal;
    position: static;
    margin: 0 auto;
    text-align: center;
  }
}
@media all and (-ms-high-contrast:none) {
  header h1 {
    position: absolute;
    top: 20px;
  }
}