@charset "UTF-8";
/* page-hero  ================================= */
.page-hero--news {
  background-image: url(../../images/news/hero_sp.jpg);
  background-position: 0 50%;
}

@media (min-width: 768px) {
  .page-hero--news {
    background-image: url(../../images/news/hero_pc.jpg);
  }
}
.news-year-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, 80px);
  gap: 20px;
}

.news-year-nav li {
  font-size: 0;
}

.news-year-nav li a {
  font-size: var(--fontsize-18);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.777em;
}
.news-year-nav li a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid var(--color-69472f);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.news-year-nav li a:hover {
  color: var(--color-69472f);
  opacity: 0.5;
}

.news__list {
  max-width: 1000px;
  margin: 0 auto;
}

.news__item {
  position: relative;
}
.news__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: var(--decoration-dotted-line);
  background-size: auto 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
}

.news__link {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "date category" "title title";
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px;
}
.news__link:hover {
  background-color: var(--color-f9f6f1);
  color: var(--color-69472f);
}

.news__date {
  font-size: var(--fontsize-14);
  grid-area: date;
  font-weight: 600;
}

.news__category {
  width: 100px;
  font-size: var(--fontsize-12);
  text-align: center;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 5px;
  grid-area: category;
}

/* タクソノミー別 */
.news__category--info {
  border: 1px solid var(--color-e60012);
  color: var(--color-e60012);
}

.news__category--campaign {
  border: 1px solid var(--color-ff8200);
  color: var(--color-ff8200);
}

.news__category--event {
  border: 1px solid #0071bb;
  color: #0071bb;
}

.news__title {
  font-size: var(--fontsize-14);
  grid-area: title;
}

/* pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.pagination > a {
  text-decoration: none;
}
.pagination > a:hover {
  color: var(--color-ffffff);
  background-color: var(--color-69472f);
}

.page-numbers {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: var(--color-f9f6f1);
  font-size: var(--fontsize-10);
  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;
}

.page-numbers.prev,
.page-numbers.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination__arrow {
  font-size: 14px;
}

.pagination__arrow--prev {
  margin-right: 4px;
}

.pagination__arrow--next {
  margin-left: 4px;
}

.page-numbers.prev::before {
  content: "◀";
}

.page-numbers.next::after {
  content: "▶";
}

.page-numbers.current {
  color: var(--color-ffffff);
  background-color: var(--color-e60012);
}

@media (min-width: 768px) {
  .news__link {
    grid-template-columns: 100px 120px 1fr;
    grid-template-areas: "date category title";
    gap: 24px;
    padding: 20px 5px;
  }
  .news__date {
    font-size: var(--fontsize-20);
  }
  .news__category {
    width: 120px;
    font-size: var(--fontsize-14);
    padding: 4px 10px;
  }
  .news__title {
    font-size: var(--fontsize-20);
  }
  .pagination {
    margin-top: 60px;
    gap: 16px;
  }
  .page-numbers {
    width: 45px;
    height: 45px;
    font-size: var(--fontsize-18);
    border-radius: 10px;
  }
}/*# sourceMappingURL=news.css.map */