#header_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
  color: #000;
  z-index: 1000;
  overflow: hidden;
}
#header_banner_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#header_banner_content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: header_scroll 15s linear infinite;
}
#header_banner_content a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#header_banner_content a:hover {
  color: #666;
}
#header_banner_content .header_banner_text {
  display: inline-block;
  min-width: 100vw;
  margin: 0;
  padding: 0 0 0 50px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: black;
}
@media (max-width: 768px) {
  #header_banner_content .header_banner_text {
    font-size: 14px;
    padding: 0 0 0 20px;
  }
}

@keyframes header_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#top_page {
  margin-bottom: 40px;
}

/*# sourceMappingURL=header_banner.css.map */
