html {
  font-size: 100%;
}

body {
  max-width: 1360px;
}

a {
  cursor: pointer;
}

.header {
  background-color: #7B7A7A;
}

.section-title {
  padding-top: 250px;
  text-align: center;
  font-size: 63px;
  font-weight: bold;
  font-family: "Noto Serif", serif;
  color: #444444;
}
@media screen and (max-width: 1029px) {
  .section-title {
    font-size: 36px;
  }
}

.newslist {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newslist__item {
  border-top: solid 1px #D9D9D9;
  padding: 50px;
}

.neslist__item:last-child {
  border-bottom: solid 1px #D9D9D9;
}

.newslist__link {
  cursor: pointer;
}

.news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-thumbnail {
  margin-right: 80px;
}
@media screen and (max-width: 1029px) {
  .news-thumbnail {
    margin-right: 0;
    width: 100px;
  }
}

.newslist__category {
  padding: 3px 10px;
  background-color: #EECF40;
  border-radius: 5px;
  color: #035414;
  font-size: 14px;
  display: inline-block;
  margin-right: 21px;
  margin-bottom: 22px;
}

.newslist__date {
  font-size: 14px;
  letter-spacing: 3px;
  color: #444444;
}

.newslist__title {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
  color: #444444;
}

.newslist__excerpt {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
}

.newslist__img {
  width: 100px;
  height: 100px;
  margin-right: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__list-pagination {
  margin-left: 200px;
  font-size: 28px;
}