@charset "UTF-8";

/* お知らせ 251211追加 */
.news-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}
.news-item {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 800px;
  color: #fff;
}
.news-label {
  margin-right: 50px;
  position: relative;
  white-space: nowrap;
}
/* ラベル横の縦線 */
.news-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-date {
  font-size: 76%;
  margin-bottom: 3px;
}
.news-title {
    line-height: 1.5;
}

@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-label {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .news-label::after {
    display: none;
  }
}