#news {
  padding-top: 10rem;
  padding-bottom: 14rem;
  width: 74rem;
  margin: 0 auto;
}
#news ul {
  border-top: 1px solid #E0E0E0;
}
#news ul li {
  list-style: none;
}
#news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2rem 6rem 2rem 3rem;
  border-bottom: 1px solid #E0E0E0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
#news ul li a:after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../images/common/arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 3.2rem;
  right: 2.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#news ul li a .news_date {
  width: 11.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}
#news ul li a .news_txt {
  width: calc(100% - 11.5rem);
}
#news ul li a .news_ttl {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 700;
  color: #14629B;
  text-decoration: underline;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#news ul li a .news_desc {
  font-size: 1.4rem;
  line-height: 1.78;
  padding-top: 1rem;
  display: block;
}
#news ul li a:hover {
  border-color: #00A0A3;
}
#news ul li a:hover .news_ttl {
  color: #7C8C98;
}
#news ul li a:hover:after {
  right: 2.3rem;
}

@media screen and (max-width: 767px) {
  #news {
    padding-top: 7rem;
    padding-bottom: 10rem;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #news ul li a {
    padding: 1.8rem 4rem 2rem 0.5rem;
  }
  #news ul li a:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1rem;
  }
  #news ul li a .news_date {
    width: 100%;
    padding-top: 0;
  }
  #news ul li a .news_txt {
    width: 100%;
  }
  #news ul li a .news_desc {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  #news ul li a:hover:after {
    right: 1rem;
  }
}