/**** body ****/
body {
  background-color: #EEF6E9;
}

/**** ニュース一覧 ****/
.news-module__background {
  background-color: #EEF6E9;
  padding-bottom: 200px;
  margin-top: 160px;
}

.news-module__title_text {
  margin: 0 auto 56px;
  text-align: center;
}

.news-module__title_text h1 {
  color: #68A759;
  border-bottom: solid 4px #68A759;
  padding-bottom: 10px;
  display: inline;
}

.news-module__contents_wrapper {
  margin: 0 auto;
  width: 70%;
  height: 100%;
  background-color: #ffffff;
  font-weight: bold;
  border: 2px #ffffff solid;
  border-radius: 30px;
}

.news-module__contents_wrapper ul {
  display: table;
  width: 100%;
  margin: 30px 0;
}

.news-module__contents_wrapper .news-list_title {
  width: 80%;
  overflow: hidden;
  padding-right: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-module__contents_wrapper li {
  display: flex;
  list-style: none;
  margin: 30px 150px;
  align-items: center;
}

.news-module__contents_wrapper a {
  text-decoration: none;
  letter-spacing: 2px;
  padding-right: 8px;
}

.news-module__contents_wrapper p {
  color: #3C3C3C;
  font-size: 13px;
  letter-spacing: 2px;
}

/* =====================================
            レスポンシブ対応
   ===================================== */
@media screen and (max-width: 1024px) {
  .news-module__contents_wrapper {
    width: 90vw;
  }

  .news-module__title_text h1 {
    font-size: 24px;
    border-bottom: 3px solid #68A759;
  }

  .news-module__contents_wrapper a {
    font-size: 14px;
    font-weight: 400;
  }

  .news-module__contents_wrapper p {
    font-size: 12px;
    font-weight: 400;
  }

  .news-module__contents_wrapper li {
    margin: 16px auto;
    height: 24px;
    width: 80vw;
  }

  .news-module__contact-module__background_img {
    height: 80px;
  }

}