
main .news-list {
  padding: 0 40px;
  margin: 0 auto 140px;
}
main .top.news-list {
  margin: 0 auto 40px;
}
.news-item {
  border-bottom: 1px solid #c1e571;
  padding: 24px 0;
  font-size: 1.6rem;
}
.top .news-item {
  font-size: inherit;
}
.news-item:first-child {
  border-top: 1px solid #c1e571;
}
.news-item__link {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  transition: all .3s;
}
.news-item__date {
  font-weight: 700;
  color: #01568f;
}
.news-pagenation {
  display: block;
  margin: 50px 0 0;
  text-align: center;
}
.news-pagenation__number {
  color: #000;
  display: inline-block;
  margin: 0 6px;
  text-decoration: underline;
  transition: all .3s;
}
.news-pagenation__number.current {
  font-weight: 700;
  text-decoration: none;
}
.news-list .cmp-more-btn {
  margin: 32px auto 0;
}

@media screen and (min-width: 960px) {
  main .news-list {
    max-width: 1000px;
    margin: 0 auto 140px;
  }
  main .top.news-list {
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .news-item__link {
    display: block;
  }
  .news-item__link:hover {
    opacity: 0.7;
  }
  .news-item__date {
    margin-right: 30px;
  }
  .news-pagenation__number {
    transition: all .3s;
  }
  .news-pagenation__number:hover {
    opacity: 0.7;
  }
  .news-list .cmp-more-btn {
    margin: 40px auto 0;
  }
}

/* top page news */
.news {
  margin-top: 90px;
}

/* news detail */
.news-detail-mv {
  padding-bottom: 40px;
}
.news-detail {
  width: 1000px;
  margin: 0 auto;
}
.news-detail .news-header {
  border-left: 3px #a1be60 solid;
  padding-left: 20px;
}
.news-detail .news-date {
  font-weight: 700;
  color: #01568f;
}
.news-detail .news-title {
  margin-top: 4px;
  font-size: 2rem;
}
.news-detail .news-main-text {
  margin-top: 60px;
  margin-bottom: 100px;
}
.news-detail .news-paragraph {
  margin: 30px 0;
  line-height: 2.6;
}
.news-detail .news-paragraph--em {
  font-weight: 700;
}
.news-detail .news-image {
  margin: 30px 0;
}
.news-detail .news-image img {
  width: 100%;
}
.news-link {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.news-link:hover {
  text-decoration: none;
  opacity: .7;
}
@media screen and (max-width: 959px) {
  .news-detail {
    width: 90%;
  }
  .news-detail .news-date {
    font-size: 1.6rem;
  }
  .news-detail .news-main-text {
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .news-detail .news-paragraph {
    margin: 30px 0;
    font-size: 1.6rem;
    line-height: 2.2;
  }
  .news-detail .news-image {
    width: 100%!important;
  }
}