/* ---------------------------
お知らせ一覧ページ
---------------------------*/
.bl_news_cont{
  max-width: 800px;
  margin: auto;
}
.bl_news_item{
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.bl_news_ttl{
  font-family: 'Sawarabi Mincho', serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.bl_news_caption p{
  position: absolute;
  top: .5rem;
}
.bl_news_caption{
  display: flex;
}
.bl_news_caption p{
  position: relative;
  top: auto;
  margin-right: 16px;
}
/* 分類リスト */
.bl_news_kind{
  margin-bottom: 50px;
}
.bl_news_kind a,
.bl_tag a{
  color: black;
}
.bl_kind_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.bl_kind_list > li{
  margin-right: 30px;
  font-size: 16px;
}
.bl_kind_list li+li{
  padding-left: 30px;
  border-left: 1px solid #122795;
}
.kind_active a{
  color: #122795;
  border-bottom: 1px solid #122795;
}
@media screen and (max-width: 960px) {
  #ly_news .bl_sub_ttl{
    margin-bottom: 0;
  }
  .bl_news{
    background-color: white;
    padding-bottom: 90px;
  }
  .bl_news_cont{
    padding: 5%;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .bl_news_item{
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .bl_kind_list > li{
    margin-right: 20px;
  }
  .bl_kind_list li+li{
    padding-left: 20px;
  }
}
@media screen and (max-width: 560px) {
  
}

/* ---------------------------
お知らせ詳細ページ
---------------------------*/
.bl_news_d .bl_flexbox__start{
  position: relative;
  left: 4rem;
  margin-bottom: 10px;
}
.bl_news_d_ttl{
  color: black;
  margin-bottom: 25px;
  position: relative;
  left: 4rem;
}
.bl_news_d_day{
  margin-right: 25px;
}
.bl_news_d_cont{
  padding: 0 10%;
}
.bl_news_d figure{
  margin-top: 30px;
}
.bl_news_d img{
  width: auto;
}
@media screen and (max-width: 960px) {
  .bl_news_d{
    background-color: white;
    padding-bottom: 90px;
  }
  .bl_news_d_ttl{
    width: 85%;
    margin: auto;
    margin-bottom: 10px;
    font-size: 2.5rem;
    left: 0;
  }
  #ly_news_d .bl_sub_ttl{
    margin-bottom: 0;
  }
  .bl_news_d .bl_flexbox__start{
    left: 0;
    padding: 0 10%;
  }
  .bl_sub_ttl hr{
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  
}
/* ページネーション */
.p-posts-navigation__wrap{
  width: 400px;
  margin: 0 auto;
  position: relative;
}
.page-numbers{
  
  display: flex;
  justify-content: center;
  text-align: center;
}
.el_pagenation li{
  color: black;
  font-size: 1.6rem;
  margin-right: 40px;
}
.el_pagenation .current{
  border-bottom: 1px solid #122795;
}
.page_prev::before, .page_next::after{
  position: absolute;
}
.page_prev::before{
  content: url(../img/common/prev.svg);
  left: 0;
}
.page_next::after{
  content: url(../img/common/next.svg);
  right: 0;
}
@media screen and (max-width: 960px) {
  
}