@charset "UTF-8";
.news {
  width: 100%;
  height: auto;
  padding-top: 200px;
}
.news-box {
  width: 70%;
  display: block;
  margin: 0 auto;
  text-align: left;
}
.news-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: left;
  position: relative;
  color: #333; /* RGB */
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3.4rem;
  padding: 40px 0 60px;
}
.newslist_item {
  list-style: none;
}
@media screen and (max-width: 780px) {
  .news h2 {
    font-size: 5rem;
    width: 100%;
    padding-bottom: 0;
  }
  .news {
    padding-top: 170px;
  }
  .news-container {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .news {
    padding-top: 120px;
  }
  .news-container {
    font-size: 1.8rem;
    line-height: 3rem;
    padding-bottom: 40px;
  }
  .link-btn {
    min-width: 175px;
  }
}
