.wrap-news {
  max-width: 1000px;
  margin: 0 auto;
}
.news-list {
  display: flex;
  border: solid 1px #e2e0e0;
  border-radius: 6px 6px 6px 6px;
  transition: all 0.2s;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .news-list {
    display: block;
  }
}
.news-list a {
  color: #000;
}
.news-list figure {
  position: relative;
  overflow: hidden;
  width: 44%;
}
@media (max-width: 768px) {
  .news-list figure {
    padding-bottom: 50%;
    width: 100%;
  }
}
.news-list figure .img-center {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news-list figure .img-center img {
  max-height: 100%;
}
.news-list .news-info {
  position: relative;
  width: 55%;
  padding: 15px 15px 15px 60px;
}
@media (max-width: 768px) {
  .news-list .news-info {
    width: 100%;
    padding: 15px;
  }
}
.news-list .news-info .news-title {
  margin-top: 27px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.news-list .news-info .news-title a:hover {
  color: #A7C127;
}
.news-list .news-info .news-text {
  margin: 10px 0;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.5rem;
  color: #333;
}
.news-list:hover {
  transform: scale(0.98);
  box-shadow: 0px 5px 6px #d6d6d6;
}
.news-list:hover figure img {
  opacity: 0.7;
}

.news-btnbox {
  text-align: center;
  margin-top: 16px;
}

.news-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 0.8rem;
  font-weight: 200;
  color: #333;
  background-color: #D9D9D9;
  border: solid 1px #adadad;
  border-radius: 3px;
  transition: all 0.5s;
}
.news-btn:hover {
  background: #A7C127;
  color: #fff;
  border: solid 1px #265200;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  margin: 0 auto;
  max-width: 1024px;
  font-size: 0.9rem;
  line-height: 2rem;
}
.wrap-news-detail a:hover {
  color: #fabc3d;
}
.wrap-news-detail ul, .wrap-news-detail ol {
  padding-left: 20px;
}

.news-detail-h1 {
  max-width: 1170px;
  margin: 0 auto;
}
.news-detail-h1 h1 {
  font-size: 1.8rem;
}