@charset "UTF-8";
/* CSS Document */
.section_news__count {
  margin: 16px 0 0;
  text-align: left;
  color: #4A5568;
  font-size: 1.3rem;
  text-align: center;
}
/*カテゴリー絞り込み*/
.section_news__filter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 16px;
}
.section_news__filter-label {
  flex-shrink: 0;
  padding-right: 16px;
  border-right: 1px solid #E2E8F0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #4A5568;
}
.section_news__filter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section_news__filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A5568;
  font-size: 1.3rem;
  text-decoration: none;
}
.section_news__filter-link::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D8DEE8;
  transition: background-color .15s ease;
}
.section_news__filter-link:hover::before {
  background: var(--category-color, #DC6A9A);
  opacity: .6;
}
.section_news__filter-link.is-active {
  font-weight: 600;
}
.section_news__filter-link.is-active::before {
  background: var(--category-color, #DC6A9A);
  opacity: 1;
}
.section_news__filter-select {
  display: none;
}
.section_news__results {
  transition: opacity .15s ease;
}
.section_news__results.is-loading {
  opacity: .4;
  pointer-events: none;
}
.news-filter-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: linear-gradient(to right, #DC6A9A, #BBA1CB, #718CC7, #004EA2);
  z-index: 9999;
}
@media (max-width: 768px) {
  .section_news__filter {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
  }
  .section_news__filter-label {
    display: none;
  }
  .section_news__filter-list {
    display: none;
  }
  .section_news__filter-select {
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 40px 12px 18px;
    border: 1px solid #CBD5E0;
    border-radius: 10px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    color: #4A5568;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: border-color .15s ease;
  }
  .section_news__filter-select:hover {
    border-color: #A0AEC0;
  }
  .section_news__filter-select:focus {
    outline: none;
    border-color: #A0AEC0;
  }
}
.section_news__empty {
  margin: 0;
  color: #4A5568;
  font-size: 1.4rem;
  text-align: center;
}
.section_news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  text-align: left;
}
.section_news__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section_news__item .category-pill {
  flex-shrink: 0;
}
.section_news__break-point {
  display: none;
}
@media (max-width: 768px) {
  .section_news__break-point {
    display: block;
  }
}
@media (max-width: 450px) {
  .section_news__list {
    gap: 8px;
  }
}
/*ページネーション*/
.pagination__list {
  text-align: center;
}
.pagination__item {
  margin: 0 2px;
  padding: 0;
  display: inline-flex;
  background: #DC6A9A;
  border: solid 2px #DC6A9A;
  text-align: center;
  position: relative;
  border-radius: 16px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .15s ease;
}
.pagination__item--active {
  background-color: #fff;
}
.pagination__item:hover {
  background-color: #fff;
}
.pagination__item--edge {
  width: 80px;
  height: 40px;
  text-align: center;
}
.pagination__link {
  vertical-align: middle;
  text-align: center;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 40px;
  width: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.pagination__link--current {
  color: #DC6A9A;
}
.pagination__link span {
  vertical-align: middle;
}
.pagination__item:hover .pagination__link {
  color: #DC6A9A;
}
@media (max-width: 768px) {
  .pagination__list {
    row-gap: 8px;
  }
  .pagination__item {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }
  .pagination__link {
    width: 32px;
    height: 32px;
  }
  .pagination__item--edge {
    width: 44px;
    height: 32px;
    border-radius: 16px;
  }
  .pagination__item--edge .pagination__link {
    width: 44px;
    height: 32px;
  }
}
