@charset "utf-8";
body {
  margin: auto;
  max-width: 1200px;
  background-color: #007bc6;
  font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
}
.top {
  background-color: #fff;
}
a:hover,
a:active {
  color: #fff !important;
}

.new_header {
  display: flex;
  background: #221714;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.new_header > a {
  display: flex;
  padding: 7px;
  color: #fff;
  align-items: center;
  width: 25%;
  justify-content: center;
  transition: 0.3s;
  font-size: 23px;
  font-weight: bold;
}

.new_header > a:not(:last-child) {
  border-right: 2px solid #fff;
}

.new_header > a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.new_header img {
  max-width: 100%;
  width: auto;
}

@media print, screen and (max-width: 767px) {
  .new_header {
    flex-wrap: wrap;
  }

  .new_header > a {
    width: calc(50% - 1px);
    padding: 3px 12px;
    font-size: 14px;
    line-height: 20px;
    min-height: 50px;
  }

  .new_header > a:nth-child(odd) {
    border-right: 2px solid #fff;
  }

  .new_header > a:nth-child(even) {
    border-right: none;
  }

  .new_header > a:nth-child(n + 3) {
    border-top: 2px solid #fff;
  }

  .new_header > a:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  .new_header img {
    max-width: 138px;
    width: auto;
  }
}
