@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap&subset=japanese);
.headerLogoArea {
  display: block;
  background: #284D17;
  margin: 0;
  text-align: center;
  padding: 5px 5px 10px;
}
.headerLogoArea__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
  padding-bottom: 5px;
}
.headerLogoArea__logo .logoImg {
  margin-right: 8px;
  /* ロゴの高さ1.0に対して上下左右に0.3の余白を取る */
}
@media screen and (min-width: 320px) {
  .headerLogoArea__logo .logoImg {
    --height: 20px;
    height: calc(var(--height) * 1.6);
    padding: calc(var(--height) * 0.3);
  }
}
@media screen and (min-width: 480px) {
  .headerLogoArea__logo .logoImg {
    --height: 23px;
    height: calc(var(--height) * 1.6);
    padding: calc(var(--height) * 0.3);
  }
}
@media screen and (min-width: 768px) {
  .headerLogoArea__logo .logoImg {
    --height: 26px;
    height: calc(var(--height) * 1.6);
    padding: calc(var(--height) * 0.3);
  }
}
@media screen and (min-width: 1200px) {
  .headerLogoArea__logo .logoImg {
    --height: 26px;
    height: calc(var(--height) * 1.6);
    padding: calc(var(--height) * 0.3);
  }
}
.headerLogoArea__logo .logoImg img {
  width: auto;
  height: 100%;
}
.headerLogoArea__logo .number {
  color: #999999;
}
@media screen and (min-width: 320px) {
  .headerLogoArea__logo .number {
    font-size: 2vw;
  }
}
@media screen and (min-width: 480px) {
  .headerLogoArea__logo .number {
    font-size: 12px;
  }
}
.headerLogoArea__text {
  color: #FFF;
  font-weight: bold;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media screen and (min-width: 320px) {
  .headerLogoArea__text {
    font-size: 2vw;
  }
}
@media screen and (min-width: 480px) {
  .headerLogoArea__text {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  .headerLogoArea__text {
    font-size: 16px;
  }
}
.headerLogoArea__text strong {
  margin: 0 2px;
}
@media screen and (min-width: 320px) {
  .headerLogoArea__text strong {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 480px) {
  .headerLogoArea__text strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .headerLogoArea__text strong {
    font-size: 20px;
  }
}
.headerLogoArea__text .c-skyblue {
  color: #579ED9;
}
.headerLogoArea__text .c-yellow {
  color: yellow;
}


/* トップバナー */

.topBannar {
  position: relative;
}

.topBannar img {
  width: 100%;
  height: auto;
}

.bannarText {
  position: absolute;
  top: 25%;
  left: 5%;
  line-height: 1.3;
}

#dateText {
  color: var(--green);
}

#latestText, .subText {
  color: #707070;
}


@media (max-width: 480px) {
  #dateText {
    font-size: 8vw;
  }

  #latestText, .subText {
    font-size: 6vw;
  }
}

@media (min-width: 768px) {
  #dateText {
    font-size: 36px;
  }

  #latestText, .subText {
    font-size: 30px;
  }
}