@charset "UTF-8";
body.post-type-archive {
  overflow: initial;
}

.archive-news .page-mv {
  background: url("../img/archive-news/mv-archive-news.webp") no-repeat center center/cover;
}
.archive-news .page-mv .page-mv__content {
  max-width: 378px;
}

.news-list {
  margin: 40px auto 0;
  max-width: 720px;
}
@media screen and (max-width: 960px) {
  .news-list {
    margin-top: 12px;
  }
}

.news-list__item:nth-child(1) .news-card__link {
  padding-top: 0;
}

.news-card__link {
  padding-top: 24px;
  padding-bottom: 14px;
  display: block;
  border-bottom: 1px solid #BBB;
}
@media screen and (max-width: 960px) {
  .news-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media (hover: hover) {
  .news-card__link:hover .news-card__image {
    scale: 1.1;
  }
  .news-card__link:hover .news-card__content {
    opacity: 0.7;
  }
}

.news-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .news-card__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 75px;
}
@media screen and (max-width: 960px) {
  .news-card__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}

.news-card__date {
  color: #E4027F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.news-card__badge {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75px;
  height: 14px;
  line-height: 14px;
  border-radius: 30px;
  color: #fff;
  background: #E4027F;
}
@media screen and (max-width: 960px) {
  .news-card__badge {
    font-weight: 400;
  }
}

.news-card__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

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

.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;
  color: #E4027F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  height: 100%;
  gap: 56px;
}
@media screen and (max-width: 960px) {
  .page-numbers {
    gap: 32px;
  }
}

ul.page-numbers {
  padding: 0 48px;
}
ul.page-numbers:has(.prev) {
  padding-left: 0;
}
ul.page-numbers:has(.next) {
  padding-right: 0;
}

@media (hover: hover) {
  .page-numbers li a:hover {
    opacity: 0.7;
  }
}

.page-numbers.current {
  position: relative;
  color: #FFF;
  isolation: isolate;
}
.page-numbers.current::after {
  content: "";
  display: block;
  width: 34px;
  height: 39px;
  background: #E4027F;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.page-numbers .next,
.page-numbers .prev {
  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;
  width: 40px;
  height: 40px;
}
.page-numbers .next svg,
.page-numbers .prev svg {
  display: block;
  width: 13px;
  height: 19px;
}
.page-numbers .next .screen-reader-text,
.page-numbers .prev .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.page-numbers .next {
  margin-left: 8px;
}

.page-numbers .prev {
  margin-right: 8px;
}