@charset "UTF-8";
.archive-news .page-mv {
  margin: auto;
  background: url("../img/news/mv-archive-news.webp") no-repeat center center/cover;
}

.news .inner {
  padding-bottom: 140px;
}
@media screen and (max-width: 960px) {
  .news .inner {
    padding-bottom: 80px;
  }
}

.news__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .news__list {
    margin-top: 0px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

@media screen and (min-width: 961px) {
  .news__item:nth-child(3n-1) {
    margin-top: 80px;
  }
}

.news__item-link:hover .news__thumbnail img {
  scale: 1.1;
}

.news__thumbnail {
  overflow: hidden;
  border-radius: 40px;
}
@media screen and (max-width: 960px) {
  .news__thumbnail {
    border-radius: 20px;
  }
}
.news__thumbnail img {
  background: #F5ECD1;
  border-radius: 40px;
  border: 1px solid #ffec4e;
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .news__thumbnail img {
    border-radius: 20px;
    aspect-ratio: 333/250;
  }
}

.news__meta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.news__date {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.8461538462;
  color: #7E5656;
}

.news__category {
  padding: 2px 16px;
  border-radius: 1000px;
  background: #ffec4e;
  border: 1px solid #ffec4e;
  font-size: 13px;
  line-height: 1.8461538462;
}

.news__title {
  margin-top: 10px;
  font-weight: normal;
}

/*======================================================
ページネーション
======================================================*/
.news__pagination {
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .news__pagination {
    margin-top: 60px;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  height: 100%;
}
.page-numbers.current {
  position: relative;
}
.page-numbers.current::before {
  background: url("../img/common/page-numbers-current.svg") no-repeat center center/contain;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 32px;
  z-index: -1;
}