@charset "utf-8";
/*====================================================
# News
====================================================*/
.list_news {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.list_news li + li {
  border-top: 1px dashed #000;
}
.list_news a {
  position: relative;
  display: flex;
  padding: 20px 40px 20px 10px;
  width: 100%;
  text-decoration: none;
  line-height: 1.25;
}
.list_news a .post_date {
  width: 100px;
  flex-shrink: 0;
  margin-right: 12px;
}
.list_news a .post_title {
  width: 100%;
  font-weight: bold;
}
.list_news a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(../images/img_list_arrow.png) no-repeat center / contain;
}
@media (hover: hover) and (pointer: fine) {
  .list_news a {
    transition: background-color 0.3s ease;
  }
  .list_news a:hover {
    background-color: #EAEEF5;
  }
}
@media only screen and (max-width: 767px) {
  .list_news a {
    display: block;
    padding: 10px 30px 10px 10px;
  }
  .list_news a::after {
    width: 8px;
    height: 16px;
  }
  .list_news a .post_date {
    margin-bottom: 5px;
  }
}
.empty_message {
  padding: 20px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  text-align: center;
}
