/* ============================================
   カテゴリーフィルター
============================================ */
.news-archive_filter {
    padding: 40px 0;
    margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
    .news-archive_filter {
        padding:0;
        margin-bottom: 24px;
    }
}

.news-archive_filter__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
@media screen and (max-width: 1024px) {
    .news-archive_filter__list {
        gap: 8px;
    }
}

.news-archive_filter__btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
    line-height: 1;
    white-space: nowrap;
}
@media screen and (max-width: 1024px) {
    .news-archive_filter__btn {
        padding: 8px 16px;
    font-size: 12px;
    }
}

.news-archive_filter__btn:hover {
    opacity: 0.75;
}

.news-archive_filter__btn.is-active {
    outline: 3px solid currentColor;
    outline-offset: 2px;
}

/* ============================================
   newsアーカイブ
============================================ */
.news-archive_list {
  list-style: none;
  padding: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.43);
  padding: 24px 64px;
  margin-bottom: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .news-archive_list {
    padding: 12px;
    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.43);
    margin-bottom: 20px;
  }
}
.news-archive_list__item {
  border-bottom: 1px solid #222;
}
.news-archive_list__item:last-of-type{
  border: unset;
}

.news-archive_list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  text-decoration: none;
  color: #3C3C3C;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
	.news-archive_list__link {
		gap: 40px;
	}
}
@media screen and (max-width: 768px) {
.news-archive_list__link {
	    padding: 24px 0;
      flex-wrap: wrap;
        gap: 8px;
        align-items: flex-start;
}
}

.news-archive_list__link:hover {
  opacity: 0.6;
}

.news-archive_list__date {
	width: 100px;
  font-size: 16px;
  font-weight: 700;
  color: #22428D;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-archive_list__cat {
    font-size: 12px;
    width: 132px;
    text-align: center;
    font-weight: 700;
    color: #FFFFFF;
    padding: 4px 14px;
    border-radius: 24px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    line-height: 1;
}
@media screen and (max-width: 768px) {
	.news-archive_list__cat {
		width: auto;
	}
}
.news-archive_list__title {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .news-archive_list__title {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1024px) {
  .news-archive_list__title {
	  width:100%;
  }
}

.news-archive_empty {
  text-align: center;
  padding: 60px 0;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .news-archive_empty {
    padding: 40px 0;
    font-size: 14px;
  }
}