html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-list .single-news {
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #D9D9D9;
}
.news-list .single-news:first-child {
  padding-top: 0;
}
.news-list .single-news .news-date {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  letter-spacing: 0.48px;
  margin-bottom: 8px;
}
.news-list .single-news .news-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

@media screen and (max-width: 768px) {
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .news-list .single-news {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #D9D9D9;
  }
  .news-list .single-news:first-child {
    padding-top: 0;
  }
  .news-list .single-news .news-date {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    letter-spacing: 0.48px;
    margin-bottom: 8px;
  }
  .news-list .single-news .news-title {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
  }
}/*# sourceMappingURL=news.css.map */