@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
.news_list {
  background: #fff;
  padding: 20px;
  margin: 40px 0 80px;
  border-radius: 4px;
}

.news_list li a {
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  font-size: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .news_list li a {
    font-size: 20px;
    padding: 30px 0;
  }
}
.news_list li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/icon_arrow.webp);
  width: 40px;
  height: 40px;
  background-size: cover;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news_list li a .news_date {
  font-size: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .news_list li a .news_date {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .news_list li a:hover::after {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
}
.news_list li:first-child a {
  border-top: 1px solid #e9e9e9;
}
/*# sourceMappingURL=news.css.map */