@charset "UTF-8";
/*--------------------------------------------------
お知らせ / イベント紹介 一覧（共通）
--------------------------------------------------*/

.info-archive {
  background-color: #fff;
}

.info-list {
  background-color: #fff;
  color: #000;
  padding: 40px 0 100px;
}

.info-list__ul {
  border-top: 1px solid #e0e0e0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list__item {
  border-bottom: 1px solid #e0e0e0;
}

.info-list__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding: 25px 0;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-list__link:hover,
.info-list__link:focus-visible {
  opacity: 0.72;
}

.info-list__date {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.info-list__cat {
  display: inline-block;
  flex: 0 0 auto;
  width: 110px;
  padding: 6px 0;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.info-list__cat.bgInfo {
  background-color: #3fa9f5;
}

.info-list__title {
  flex: 1 1 200px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.info-list__link--title .info-list__title {
  flex: 1 1 auto;
  width: 100%;
}

.info-list__empty {
  margin: 0;
  padding: 60px 0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.info-list__pager {
  margin-top: 60px;
  text-align: center;
}

.info-list__pager .wp-pagenavi,
.info-list__pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.info-list__pager a,
.info-list__pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ccc;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.info-list__pager a:hover,
.info-list__pager a:focus-visible {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.info-list__pager .current,
.info-list__pager .wp-pagenavi span.current,
.info-list__pager .page-numbers.current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.info-list__pager .pages,
.info-list__pager .wp-pagenavi .pages {
  display: none;
}

@media screen and (max-width: 800px) {
  .info-list__link {
    gap: 10px 20px;
  }

  .info-list__title {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 500px) {
  .info-list {
    padding: 24px 0 70px;
  }

  .info-list__link {
    padding: 18px 0;
  }

  .info-list__date {
    font-size: 13px;
  }

  .info-list__cat {
    width: 100px;
    font-size: 12px;
  }

  .info-list__title {
    font-size: 15px;
    line-height: 1.5;
  }

  .info-list__pager {
    margin-top: 45px;
  }

  .info-list__pager a,
  .info-list__pager span {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 16px;
  }
}
