/*============================================================
  ヘッダーがロゴしかなく、フッターがないページ
  共通ＣＳＳ
*============================================================*/
body {
  overflow-y: auto;
}

/* ヘッダ
---------------------------------------- */
header.non-header-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

header.non-header-page .header-logo-name a {
  display: block;
  padding: 32px;
}

header.non-header-page .header-logo-name img {
  height: 40px;
  width: auto;
}

@media screen and (max-width:768px) {
  header.non-header-page .header-logo-name a {
    padding: 16px;
  }

  header.non-header-page .header-logo-name img {
    height: 32px;
  }

}