
/* カテゴリーリスト */
.category_list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.category_list li{
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  background: #e5e5e5;
  width: 230px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}
.category_list li:hover{
  background: #f39800;
  color: #fff;
}
.category_list .on,
.category_list li a:hover{
  color: #fff;
  background: #f39800;
  text-decoration: none;
}
.category_list li a{
  padding: 7px 0;
  display: block;
}
.pg_home .category_list li{
  padding: 7px 0;
  cursor: pointer;
}


/* 記事リスト */
.news{
  /*margin: 0 -50px;*/
}
.news .post_items{
  margin-top: 50px;
}
.post_items{
  padding: 0 0;
}
.post_items .item{
}
.post_items .item:nth-child(n+2){
  margin-top: 25px;
}
.post_items .item a{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 20px;
  transition: 0.2s;
}
.post_items .item a:hover{
  text-decoration: none;
  opacity: 0.7;
}
.post_items .item .img{

}
.post_items .item .date{
  margin-left: 30px;
  width: 130px;
  color: #5a5a5a;
  letter-spacing: 0.025em;
}
.post_items .item .category{
  width: 130px;
}
.post_items .item .category span{
  display: block;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 15px;
}
.post_items .item .category .cate_news{
  background: #22ac38;
}
.post_items .item .category .cate_others{
  background: #00a0e9;
}
.post_items .item .category .cate_believers{
  background: #eb6877;
}
.post_items .item .category .cate_event{
  background: #009e96;
}
.post_items .item .title{
  font-size: 16px;
  font-weight: 400;
  /*display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;*/
  margin-left: 27px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.post_items .item .title:before{
  content: "｜";
  padding-right: 18px;
}

.post_items .item.single_item{
  padding: 60px 95px 15px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #000;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .meta .category{
  width: 153px;
}
.post_items .item.single_item .meta .category span{
  margin-left: 23px;
  letter-spacing: 0.1em;
}
.post_items .item.single_item .meta .date{
  font-size: 15px;
  margin-left: 0;
  color: #000;
  letter-spacing: 0.075em;
}
.post_items .item.single_item .tt{
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  padding: 20px 0;
  border-bottom: 1px dotted;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 15px;
}
.post_items .post_content p{
  margin-top: 25px;
  line-height: 2.15;
}

.pg_in_news .pagination .btn{
  margin-top: 0;
}

@media(max-width:767px){
  .news{
    margin: 0;
  }
  .category_list li{
    width: 100%;
  }
  .post_items .item a {
    padding-bottom: 10px;
    flex-wrap: wrap;
  }
  .post_items .item .date{
    width: 135px;
  }
  .post_items .item .title{
    margin-left: 0px;
  }
  .post_items .item .title:before{
    display: none;
  }
  .post_items .item.single_item{
    margin: 0px 0px;
    padding: 10px 20px 0px;
  }

  .news_side_title {
    text-align: center;
    color: #fff;
    background: #f39800;
    padding: 5px 5px 6px;
  }
  select[name="category"],
  select[name="s_cat"]{
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    padding: 10px;
    height: 50px;
    border: 1px solid #DDD;
    border-radius: 0;
  }
}
@media(min-width:768px){
  .news{
    /*margin: 0 -25px;*/
  }
  .category_list li{
    width: 135px;
  }
  .post_items .item .category{
    width: 100px;
  }
  .post_items .item .date{
    margin-left: 10px;
    width: 130px;
  }
  .post_items .item .title{
    width: calc(100% - 100px - 135px);
    margin-left: 0px;
  }
  .post_items .item.single_item{
    margin: 0;
    padding: 30px 40px 10px;
  }
}
@media(min-width:1024px){
  .category_list li{
    width: 180px;
  }
  .post_items .item .category{
    width: 130px;
  }
  .post_items .item .date{
    margin-left: 17px;
    width: 135px;
  }
  .post_items .item .title{
    width: calc(100% - 130px - 132px - 27px);
  }
}
@media(min-width:1200px){
  .news{
    /*margin: 0 -50px;*/
  }
  .category_list li{
    width: 230px;
  }
  .post_items .item .date{
    margin-left: 30px;
    width: 132px;
  }
  .post_items .item .title{
    margin-left: 27px;
  }
  .post_items .item.single_item{
    padding: 60px 95px 15px;
  }
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin: 100px -45px 0;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 3px 13px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 250px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #000;
  padding: 10px 50px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  transition: 0.2s;
}
.pagination .nav-posts .page-prev a:before,
.pagination .nav-posts .page-next a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pagination .nav-posts .page-next a:hover,
.pagination .nav-posts .page-prev a:hover{
  opacity: 1;
  text-decoration: none;
  background: #EEE;
}

.pagination .nav-posts .page-prev a:before{
  content: "\f053";
  left: 17px;
}
.pagination .nav-posts .page-next a:after{
  content: "\f054";
  right: 17px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  padding: 15px 129px;
  background-size: 100% 100%;
  max-width: inherit;
}
@media(max-width:767px){
  .pagination{
    margin: 50px 0px 0;
  }
  /*.pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 80px;
  }
  .pagination .nav-posts .page-next a,
  .pagination .nav-posts .page-prev a{
    padding: 0px 10px;
    font-size: 10px;
  }
  .pagination .nav-posts .page-prev a:before{
    left: 5px;
  }
  .pagination .nav-posts .page-next a:after{
    right: 5px;
  }
  .pagination .nav-posts .page-archive a{
    font-size: 10px;
    width: 150px;
    padding: 5px 0px;
    background-size: contain;
  }
  .pagination .nav-posts .page-archive a:before,
  .pagination .nav-posts .page-archive a:after{
    background-size: contain;
    padding: 5px;
  }*/
  
  .pagination .nav-posts .page-archive a{
    padding: 15px 10px;
  }
  .pagination .nav-posts{
    flex-wrap: wrap;
  }
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev {
    min-width: inherit;
    max-width: 150px;
  }
  .pagination .page-prev{
    width: 45%;
    order: 1;
  }
  .pagination .page-next{
    width: 45%;
    order: 2;
  }
  .pg_in_news .pagination .btn{
    width: 100%;
    max-width: 350px;
    margin: 20px auto 0;
    order: 3;
  }
  .pagination .nav-posts .page-next a,
  .pagination .nav-posts .page-prev a {
    padding: 10px 28px;
    font-size: 14px;
  }
  .pg_news{
    padding-top: 30px;
    margin-top: -30px;
  }
}
@media(min-width:768px){
  .pagination{
    margin: 100px 0 0;
  }
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 180px;
  }
  .pagination .nav-posts .page-next a,
  .pagination .nav-posts .page-prev a{
    padding: 5px 25px;
  }
  .pagination .nav-posts .page-archive a {
    padding: 10px 85px;
  }
  .pg_news{
    padding-top: 50px;
    margin-top: -50px;
  }
}
@media(min-width:1024px){
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 200px;
  }
  .pagination .nav-posts .page-next a,
  .pagination .nav-posts .page-prev a{
    padding: 10px 50px;
    font-size: 16px;
  }
  .pagination .nav-posts .page-archive a {
    padding: 15px 129px;
  }
}
@media(min-width:1200px){
  .pagination{
    margin: 100px 0 0;
  }
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 250px;
  }
}