.top-news {
  background-color: #ffffff;
  padding: 40px 0;
}
.top-news__header {
  text-align: left;
  margin-bottom: 20px;
}
.top-news__subtitle {
  font-size: 14px;
  font-weight: bold;
  color: #666666;
  display: block;
  margin-bottom: 5px;
}
.top-news__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top-news__title-text {
  font-size: 32px;
  font-weight: 900;
  color: #287776;
  margin: 0;
  line-height: 1;
}
.top-news__link-all {
  font-size: 14px;
  font-weight: bold;
  color: #287776;
  text-decoration: none;
  border-bottom: 1px solid #287776;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.top-news__link-all:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #287776;
}
.top-news__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid #287776;
}
.top-news__list-item {
  border-bottom: 1px solid #eaeaea;
}
.top-news__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px 10px;
  transition: background-color 0.2s ease;
}
.top-news__item-link:hover {
  text-decoration: none;
  background-color: #f5faf9;
  box-shadow: inset 4px 0 0 0 #287776;
}
.top-news__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .top-news__item-content {
    flex-direction: row;
    align-items: center;
  }
}
.top-news__item-date {
  font-size: 16px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .top-news__item-date {
    margin-bottom: 0;
    margin-right: 20px;
    width: 90px;
  }
}
.top-news__item-badge {
  background-color: #287776;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 12px;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .top-news__item-badge {
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
  }
}
.top-news__item-title {
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
  flex: 1;
  text-align: left;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .top-news__item-title {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.top-news__item-arrow {
  color: #287776;
  font-size: 20px;
  line-height: 1;
  display: none;
}
@media (min-width: 768px) {
  .top-news__item-arrow {
    display: block;
    margin-left: auto;
  }
}
