/* カテゴリ */
.posts_category{
  margin: 141px -17px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.posts_category .cat_btn{
  width: 25%;
  padding: 0 15px;
  text-align: center;
}

.posts_category .cat_btn a{

  letter-spacing: 0.2em;
  display: block;
  border: 1px solid #3ca7d9;
  border-radius: 30px;
  padding: 13px;
  position: relative;
  font-size: 15px;
  font-weight: 400;

}
.posts_category .cat_btn a:before,
.posts_category .cat_btn a:after{
  position: absolute;
}
.posts_category .cat_btn a:before{
  content: "";
  border: 1px solid #3ca7d9;
  border-radius: 30px;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
.posts_category .cat_btn a:after{
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.posts_category .on a{
  color: #fff;
  background: #3ca7d9;
}
.posts_category .on a:before{
  border: 1px solid #fff;
}
.posts_category .on a:after{
  color: #fff;
}


/* 記事リスト */
.acn .post_items{
  margin-top: 80px;
}
.acn .post_items .item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  line-height: 1;
  padding-bottom: 20px;
}
.acn .post_items .item:nth-child(n+2){
  margin-top: 27px;
}
.acn .post_items .item a{
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  line-height: 1.1;
  overflow: hidden;
}
.acn .post_items .item .img{

}
.acn .post_items .item .date{
  width: 195px;
  text-align: center;
  letter-spacing: 0.075em;
  border-right: 1px solid;
  padding-right: 5px;
}
.acn .post_items .item .category{
  width: 130px;
}
.acn .post_items .item .category span{
  font-size: 15px;
  display: block;
  border: 1px solid #3ca7d9;
  border-radius: 13px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  width: 130px;
}
.acn .post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 195px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.acn .post_items .item .title a{
  overflow: hidden;
}




/* ページ送り(一覧) */
.acn .pagination{
  margin-top: 115px;
}
.pagination{
  text-align: center;
  margin-top: 30px;
}
.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: 0px 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-evenly;
  align-items: center;
}
.pg_inner_news div#sec1 {
  padding-top: 122px;
}
.pg_inner_news .post_items .item .date {
  font-family: Noto Sans JP;
  font-size: 15px;
  padding-left: 50px;
}
.pg_inner_news .post_items {
  border-top: 1px solid #3ca7d9;
  padding-top: 47px;
}
.pg_inner_news .post_items .item .category {
  width: 140px;
  padding-left: 12px;
}
.pg_inner_news .post_items .item.single_item .title {
  width: 100%;
  font-size: 16px;
  padding-top: 15px;
  padding-left: 53px;
  margin-bottom: -40px;
  letter-spacing: 0.075em;
  border-bottom: none;
  font-family: Noto Sans JP;
  white-space: normal;
}
.pg_inner_news .page-prev {
  display: flex;
  justify-content: flex-end;
}
.pg_inner_news .post_content p:nth-child(1) {
  display: none;
}
.pg_inner_news .post_items .post_content {
  margin-top: 30px;
  padding: 0px 4% 6px 4%;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #3ca7d9;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #3ca7d9;
  position: relative;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  padding: 0px;
}

.pagination .nav-posts .page-next a:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  padding-left: 10px;
  transform: translateY(-50%);
}

.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  padding-right: 10px;
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}

.pagination .nav-posts .page-archive a {
  display: block;
  background: #3ca7d9;
  color: #ffffff;
  padding: 13px 137px;
  font-size: 14px;
  font-family: Noto Sans JP;
  letter-spacing: 0.075em;
  font-weight: 500;
  border-radius: 5px;
}
.pg_inner_news .post_content img {
  margin-top: 10px;
  border-radius: 10px;
}
.pg_inner_news .pagination {
  text-align: center;
  margin-top: 85px;
}

@media(max-width:375px){
  .pagination .nav-posts .page-archive a {
    padding: 11px 19px;
  }
}
@media(max-width:425px){
  .pg_inner_news .post_items .item .date {
    width: 160px;
    padding-left: 23px;
    border-right: 1px solid;
  }
  .pg_inner_news .post_items .item.single_item .title {
    padding-left: 20px;
  }
  .pg_news {
    padding-top: 35px;
  }

}
@media(min-width:425px){
  .pagination .nav-posts .page-archive a {
    padding: 11px 50px;
  }

}
@media(max-width:767px){
  .posts_category{
    display: none;
  }
  .posts_category_sp [name="category"]{
    width: 100%;
    padding: 5px 10px;
  }
  .acn .post_items{
    margin-top: 30px;
    white-space: normal;
  }
  .acn .post_items .item{
    flex-wrap: wrap;
  }
  .acn .post_items .item .date{
    width: 160px;
    border-right: none;
    padding-right: 0px;
  }
  .acn .post_items .item .title{
    width: 100%;
  }

  .pagination .nav-posts {
    flex-wrap: wrap;
  }

 .pagination .nav-posts .page-next, .pagination .nav-posts .page-prev {
        min-width: 50px;
    }
  .pagination .nav-posts .page-prev {
    min-width: 50px;
    text-align: left;
  }

}
@media(min-width:768px){
  .posts_category .cat_btn{
    padding: 0 5px;
  }
  .acn .post_items{
    margin-top: 50px;
  }
  .acn .post_items .item .date{
    width: 170px;
    padding-right: 0px;
  }
  .post_items .item .title {
    width: calc(100% - 130px - 170px);
    padding-left: 25px;
  }
  .pg_inner_news .post_items .item .date {
    width: 170px;
    padding-left: 30px;
  }
  .pg_inner_news .post_items .item.single_item .title {
    padding-left: 30px;
  }
  .pg_inner_news .pagination .nav-posts .page-archive a {
    padding: 13px 80px;
  }
    .pagination .nav-posts .page-next, .pagination .nav-posts .page-prev {
        min-width: 60px;
    }
}



@media(max-width:1024px){
  .pg_inner_news div#sec1 {
    padding-top: 35px;
  }
}

@media(min-width:1024px){
  .posts_category .cat_btn{
    padding: 0 10px;
  }
  .acn .post_items{
    margin-top: 80px;
  }
  .acn .post_items .item .date {
    width: 195px;
    padding-right: 30px;
    font-size: 16px;
    letter-spacing: 0.075em;
    margin-left: 0px;
  }
  .post_items .item .title {
    width: calc(100% - 130px - 195px);
  }
  .pg_inner_news .pagination .nav-posts .page-archive a {
    padding: 13px 137px;
  }
  .post_items .item.single_item .meta {
    padding-left: 15px;
  }
  .pg_inner_news .post_items .item.single_item .title {
    padding-left: 45px;
  }
}



@media(min-width:1200px){
  .posts_category .cat_btn{
    padding: 0 15px;
  }
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}



/* **********************************
 *  
 * ********************************* */

@media(max-width:767px){

}
@media(min-width:768px){

}
@media(min-width:1024px){

}
@media(min-width:1200px){

}