.wrap-news {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
}
@media (max-width: 768px) {
  .news-list {
    display: block;
  }
}
.news-list a {
  color: #000;
}
.news-list figure {
  position: relative;
  overflow: hidden;
  width: 40%;
  padding-bottom: 28%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .news-list figure {
    padding-bottom: 60%;
    width: 100%;
  }
}
.news-list figure .img-center {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list figure .img-center img {
  max-height: 100%;
}
.news-list .news-info {
  position: relative;
  width: 59%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 768px) {
  .news-list .news-info {
    width: 100%;
    padding: 15px;
  }
}
.news-list .news-info .news-date {
  font-weight: bold;
}
.news-list .news-info .news-title {
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: bold;
}
.news-list .news-info .news-title a:hover {
  color: #75c265;
}
.news-list .news-info .news-text {
  font-size: 1rem;
  line-height: 1.7rem;
  color: #333;
}
.news-list:hover figure img {
  opacity: 0.7;
}

.news-btnbox {
  text-align: right;
}
@media (max-width: 768px) {
  .news-btnbox {
    margin-top: 30px;
  }
}

.news-btn {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.news-btn:hover {
  color: #75c265;
}
.news-btn:hover:before {
  width: 80px;
  background-color: #75c265;
}
.news-btn:before {
  position: absolute;
  left: -100px;
  top: 8px;
  content: "";
  width: 90px;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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