/* a-news
======================================= */
@media (max-width: 768px) {
  .a-news__inner {
    padding-top: 2.5em;
  }
}
.a-news__list {
  max-width: 1120px;
  margin: 0 auto 4em;
}
@media (max-width: 768px) {
  .a-news__list {
    margin-bottom: 2em;
  }
}
.a-news__btn {
  max-width: 500px;
  margin: auto;
}
.a-news__btn a {
  font-size: 1.125em;
  padding: 1.375em;
}
@media (max-width: 768px) {
  .a-news__btn a {
    font-size: 1em;
    padding: 1rem;
  }
}
.a-news__btn a::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.a-news__btn a:hover::after {
  -webkit-transform: translateY(0.25em) rotate(90deg);
          transform: translateY(0.25em) rotate(90deg);
}

.news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125vw;
  padding: 2em 7.375em 2em 0;
  border-bottom: 1px solid #BBBBBB;
  position: relative;
}
@media (max-width: 768px) {
  .news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    padding: 1em 1em 1em 0;
  }
}
.news__item a:hover {
  color: #FF5800;
}
.news__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.news__item-date {
  font-size: 1.125em;
  color: #787878;
}
@media (max-width: 768px) {
  .news__item-date {
    font-size: 0.875em;
  }
}
.news__item-title {
  font-size: 1.125em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .news__item-title {
    font-size: 0.9375em;
  }
}