@charset "UTF-8";
.news-bar-container {
  font-family: "noto-sans", sans-serif;
  font-weight: 400;
  background-color: #000;
  letter-spacing: 0.5px;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-bar-container {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .news-bar-container {
    width: auto;
  }
}
.news-bar-container a {
  text-decoration: none;
  color: inherit;
  transition: none;
}
.news-bar-container a:hover {
  opacity: 1;
}
.news-bar-container a img {
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .news-bar-container a img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}
.news-bar-container button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  cursor: pointer;
  transition: none;
}
.news-bar-container button:hover {
  opacity: 1;
}
.news-bar-container figure {
  margin: 0;
}

.news-bar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* アニメーション定義 */
}
@media screen and (min-width: 1024px) {
  .news-bar-container {
    justify-content: flex-start;
  }
}
.news-bar-container .news-content {
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.news-bar-container .news-content .news-item {
  display: none; /* デフォルトは非表示 */
  color: #fff;
  text-decoration: none;
  width: 100%;
  /* フェードインアニメーション */
  animation: fadeIn 0.5s ease;
}
.news-bar-container .news-content .news-item.is-active {
  display: block;
}
.news-bar-container .news-content .news-item a {
  text-decoration: underline;
}
.news-bar-container .news-nav {
  display: none;
  color: #fff;
  cursor: pointer;
  padding: 0 15px;
  height: 100%;
  transition: background 0.3s;
  vertical-align: middle;
}
@media (any-hover: hover) {
  .news-bar-container .news-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.news-bar-container .news-nav::before {
  display: block;
  font-family: Arial, sans-serif; /* 記号が綺麗に出るフォントを指定 */
  font-size: 18px; /* 矢印の大きさ */
  line-height: 1;
}
.news-bar-container .news-nav.news-prev::before {
  content: "←"; /* ここで矢印を指定 */
}
.news-bar-container .news-nav.news-next::before {
  content: "→"; /* ここで矢印を指定 */
}
.news-bar-container.has-slider .news-nav {
  display: inline-block;
}
.news-bar-container.has-slider .news-content {
  width: 348px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=Common_Header-news_20251216.css.map */