@charset "utf-8";

/* ============================
   お知らせ一覧ページ（/archives/category/news など）
   ============================ */
#pg-news .main-container .main-wrapper {
  margin: 0 auto;
  padding: 4% 4% 80px;
  max-width: 960px;
}
.newsLists {
  padding: 0 0 20px;
}
/* 1行全体をクリック可能に */
#pg-news .newsLists .news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
/* 行ごとのレイアウト */
#pg-news .newsLists .news-body {
  padding: 14px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e3e3e3;
  transition: background-color .15s ease;
}
/* ホバーでうっすら反応 */
#pg-news .newsLists .news-link:hover .news-body {
  background-color: #faf7f0;
}
/* 日付部分 */
#pg-news .newsLists .news-body .release {
  min-width: 7em;
  width: auto;
  font-size: 1.3rem;
  color: #787878;
  margin: 4px 0 0;
  padding: 0;
}
/* タイトル部分 */
#pg-news .newsLists .news-body .title {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: none;
  text-align: left;
  color: #222;
}
#pg-news .newsLists .news-body .title {
  margin-bottom: 0;
  padding: 0;
}
/* タイトルのみ下線 */
#pg-news .newsLists .news-link:hover .title {
  text-decoration: underline;
}
/* 予備のキャプション（使う場合用） */
#pg-news .newsLists .news-body .capton {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #666;
}
/* ============================
   スマホ表示調整（アーカイブ）
   ============================ */
@media screen and (max-width: 768px) {
  #pg-news .main-container .main-wrapper {
    padding: 6% 4% 60px;
  }
  #pg-news .newsLists .news-body {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }
  #pg-news .newsLists .news-body .release {
    width: 100%;
    min-width: 0;
    margin: 0;
    font-size: 1.2rem;
  }
  #pg-news .newsLists .news-body .title {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  #pg-news .newsLists .news-body .capton {
    font-size: 1.2rem;
  }
}
ul.pageList {
  padding: 60px 0;
}

.page_navi {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_navi li {
  margin: 0 6.5px;
  width: 48px;
  height: 48px;
  border: 1px solid #d0d0d0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_navi li a {
  width: 36px;
  height: 36px;
  text-align: center;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_navi li.current {
  color: #fff;
  font-weight: bold;
  padding: 4px 7px;
  background: #3c3b87;
  /* border: solid 1px #c52e2e; */
}
.page_navi li:hover {
  opacity: 0.8;
}
.page_navi li.page_nums span {
  color: #fff;
  padding: 3px 7px;
  background: #666;
  display: inline-block;
  border: solid 1px #333;
}
