.breadcrumb {
  top: 10px;
}

.news {
  padding: 100px 20px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.news-item {
  display: block;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}

.news-item * {
  color: #1a1819;
}

.news-item__date-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.news-item__date {
  font-size: 14px;
  line-height: 1;
}

.news-item__category {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #870101;
  padding: 5px 15px;
  border: 1px solid #870101;
}

.news-item__title {
  margin-top: 12px;
  width: calc(100% - 41px);
}

.news-item__title h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
}

.news-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  background-image: url(../img/common/news-arrow.svg);
  background-size: contain;
  right: 0;
  bottom: 10px;
}

.pager {
  margin-top: 50px;
}

.news-page .h__ttl {
  display: none;
}

@media (min-width: 768px) {
  .news-page .h__ttl {
    display: block;
    margin-bottom: 77px;
  }
  .news {
    padding: 180px 20px 150px;
  }

  .news-list {
    gap: 45px;
    max-width: 896px;
  }

  .news-item {
    padding-bottom: 0;
    border-bottom: none;
  }

  .news-item a {
    display: flex;
    gap: min(77px, max(30px, calc(77px + 50vw - 508px)));
    padding-top: 0;
    border-bottom: none;
  }

  .news-item__date-category {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
  }

  .news-item__category {
    font-size: 14px;
    padding: 7px 14px;
    white-space: nowrap;
  }

  .news-item__date {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .news-item__date-year {
    font-size: 14px;
  }

  .news-item__date-date {
    font-size: 20px;
  }

  .news-item__title {
    position: relative;
    width: fit-content;
    max-width: calc(100% - min(304px, max(234px, calc(304px + 50vw - 508px))));
    height: 16px;
    margin-top: 15px;
  }

  .news-item__title h3 {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
  }

  .news-item__title::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .news-item:hover .news-item__title::after {
    opacity: 1;
  }

  .news-item::after {
    bottom: 0px;
    transition: all 0.3s;
  }

  .news-item:hover::after {
    filter: brightness(1.3);
  }

  .pager {
    margin-top: 40px;
  }

  .h__ttl {
    display: block;
    margin-bottom: 77px;
  }
}
