
/* 記事リスト */
.post_items{
    padding: 0 0;
}
.post_items .item{
    /*background: #f0f0f0;*/
    padding: 10px;
    border-top: 1px solid #CCC;
    display: flex;
    align-items: center;
    position: relative;
}
.post_items .item:last-child{
    border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
    width: 130px;
    font-size: 15px;
    color: #5a5a5a;
}
.post_items .item .category{
    width: 150px;
    padding: 0 10px;

}
.post_items .item .category span{
    display: block;
    background: #f3fafd;
    color: #6c6969;
    padding: 3px;
    margin: 2px;
}
.post_items .item .title{
    font-weight: 500;
    width: calc(100% - 130px - 150px);
    /*width: -moz-available;
    width: -webkit-fill-available;
    width: available;*/
}
.post_items .item .title a{
    display: block;
    position: relative;
    padding-right: 1em;
}
.post_items .item:after{
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.post_items .item.single_item{
    display: flex;
    flex-wrap: wrap;
    border: none;
    border-top: 15px solid #d3d3d3;
    /*    border-bottom: 1px solid #d3d3d3;
        border-left: 1px solid #d3d3d3;
        border-right: 1px solid #d3d3d3;*/
}
.post_items .item.single_item:after{
    display: none;
}
.post_items .item.single_item .meta{
    display: block;
    /*    display: flex;
        align-items: center;
        width: 100%;*/
}
.post_items .item.single_item .title{
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    font-family: "Kiwi Maru";
    letter-spacing: 0.075em;
    padding-bottom: 20px;
    border-bottom: 2px solid #eb5f2a;
}
.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: 30px;
    margin-top: 27px;
    margin-inline: 7px;
}

/* ページ送り(一覧) */
.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: 4px 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: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
    display: block;
    border: 1px solid #c0c0c0;
    padding: 10px 50px;
    position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after,
.pagination .nav-posts .page-archive 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:before{
    content: "\f053";
    left: 10px;
}
.pagination .nav-posts .page-prev a:after{
    content: "\f054";
    right: 10px;
}
.pagination .nav-posts .page-archive a{
    position: relative;
    display: block;
    height: 47px;
    background: #fbca07;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Kiwi Maru";
    line-height: 1;
    letter-spacing: 0.075em;
    border-radius: 23.5px;
    padding: 10px 100px;
}
.pagination .nav-posts .page-archive a:after{
    content: "\f054";
    right: 10px;
}

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

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
    display: none;
    position: fixed;
    right: 10px;
    bottom: 60px;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 42px;
    height: 42px;
    text-align: center;
}
.pagetop a i{
    font-size: 40px;
}


.breadcrumb{
    display: flex;
    list-style: none;
    margin-bottom: 20px;
    font-size: 14px;
    overflow-x: auto;
    overflow-y: hidden;
}
.breadcrumb li{
    display: inline;
    white-space: nowrap;
}
.breadcrumb li + li{
    margin-left: 10px;
}
.breadcrumb li:last-child{
    font-weight: 500;
}
.breadcrumb li a{
    position: relative;
    padding-right: 15px;
}
.breadcrumb li a:after{
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/



/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}





/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
}
.pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
}
.pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
}


/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){

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

    }
    .pg_xxx .section.sec1{
        padding-top: 0;
        padding-bottom: 0;
    }
    .pg_xxx .section.sec2{
        padding-top: 0;
        padding-bottom: 0;
    }
    .pg_xxx .section.sec3{
        padding-top: 0;
        padding-bottom: 0;
    }


}

/* **********************************
 *  お知らせ
 * ********************************* */

.posts_layout{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.posts_layout_box1{
    width: 100%;
}
.posts_layout_box2{
    width: 100%;
}

.news_side_title{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: #eb5f2a;
    padding: 10px;
    height: 48px;
}
.news_side_wrap .dates, .news_side_wrap .date.date{
    padding: 20px 10px;
}
.news_side_wrap .dates li, .news_date_item li{
    list-style: none;
}
.news_side_wrap .dates li + li{
    margin-top: 15px;
}
.news_side_wrap .dates li a, .news_date_item li a{
    font-size: 15px;
    font-weight: normal;
    /*letter-spacing: 0.1em;*/
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 33px;
    vertical-align: baseline;
}
.news_side_wrap .dates li a:before, .news_date_item li a:before{
    content: "■";
    position: absolute;
    left: 0px;
}
.news_side_wrap:last-child{
    margin-top: 75px;
}

.posts_layout_box2 select, .posts_category_sp select{
    width: 100%;
    height: 50px;
    padding: 8px;
    border-radius: 0;
    box-shadow: 0;
    border: 1px solid #000000;
}
.posts_category_sp{
    margin-bottom: 50px;
}
.posts_category_sp .news_side_title{
    margin-bottom: 20px;
}

.pg_news .news_list{
    margin: 0 -8px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.news_list .item a {
    transition: 0.5s;
}
.news_list .item a:hover {
    opacity: 0.7;
    text-decoration: none;
}
.news_list .item .img{
    border-radius: 10px 10px 0px 0px;
    background-color: #d9d9d9;
}
.news_list .item .img:before{
    content: "";
    padding-top: 78.8%;
    display: block;
}
.news_list .item .inner{
    position: relative;
    padding: 0px;
    background: #fcf7f0;
    min-height: 170px;
    border-radius: 0px 0px 10px 10px;
}
.news_list .item .inner::after{
    position: absolute;
    bottom: 10px;
    right: 7px;
    content: "\f138";
    font-size: 20px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.news_list .item .meta{
    display: flex;
    justify-content: space-between;
    height: 28px;
}
.news_list .item .date{
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    width: 41%;
    background: #fd6f31;
}
.news_list .item .category{
    width: 59%;
    font-size: 15px;
    font-weight: 500;
    /*line-height: calc(50 / 15);*/
    letter-spacing: 0.075em;
    text-align: center;
    background: #f3fafd;
    font-family: "Kiwi Maru";
}
.news_list .item .category span,
.post_items .item.single_item .category span{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-align: center;
    /*width: 75px;*/
    /*border-radius: 12px;*/
    display: block;
    line-height: 1.85;
}
.news_list .item .title{
    font-size: 16px;
    line-height: calc(30/16);
    letter-spacing: 0.075em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 3; /* 行数を制限 */
    padding: 11px 12px 0px;
}
.news_list .item .content{
    font-size: 15px;
    line-height: 1.95;
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pg_news .news_list{
    margin: 0 -8px;
}
.pg_news .news_list .item{
    width: calc((100% - 30px * 2) / 3);
    /*padding: 0 15px;*/
}
.pg_news .news_list .item:nth-child(n+4){
    margin-top: 30px;
}

/*詳細*/
.post_items .item.single_item{
    border-top: 15px solid #eb5f2a;
    background: #fcf7f0;
    color: #181818;
}
.post_items .item.single_item .meta{
    padding-left: 7px;
}
.post_items .item .date{
    font-size: 16px;
    font-weight: 500;
    font-family: "Kiwi Maru";
    line-height: calc(24/16);
    letter-spacing: 0.075em;
    padding-top: 15px;
    padding-left: 7px;
    /*color: #a5a5a5;*/
}
.post_items .item.single_item .title{
    letter-spacing: 0.065em;
}
.post_items .item .category{
    width: auto;
    padding: 0px;
}
.post_items .post_content{
    font-size: 16px;
    padding: 0 5px;
    font-weight: normal;
    letter-spacing: 0.065em;
    line-height: 1.875em;
    text-align: justify;
    color: #181818;
    min-height: 573px;
}
.post_content p {
    margin-bottom: 21px;
}
.pagination .nav-posts .page-archive a{
    padding: 14px 10px;
}
.pagination .nav-posts .page-next, .pagination .nav-posts .page-prev{
    min-width: 120px;
}
.pagination .nav-posts .page-next a, .pagination .nav-posts .page-prev a{
    padding: 13px 10px;
    font-size: 13px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
    .posts_layout_box2{
        margin-top: 50px;
    }
    .post_items .item{
        padding: 0px;
    }
    .post_items .item.single_item .meta {
        padding-left: 0px;
    }
    .post_items .item .category span{
        margin: 0px;
    }
    .post_items .item .date{
        padding-left: 7px;
    }

    .pg_news .pagination .nav-posts .page-next,
    .pg_news .pagination .nav-posts .page-prev {
        min-width: 100px;
    }
    .pagination .nav-posts .page-next a,
    .pagination .nav-posts .page-prev a,
    .pagination .nav-posts .page-archive a {
        padding: 5px 10px;
        font-size: 13px;
        height: auto;
    }
    .pagination .nav-posts .page-next a:before,
    .pagination .nav-posts .page-prev a:after,
    .pagination .nav-posts .page-archive a:after{
        content: "";
    }
    .pagination .nav-posts .page-archive a{
        line-height: 2;
    }

    .pagination .nav-posts .page-next a:before, .pagination .nav-posts .page-prev a:after{
        font-size: 10px;
    }

    .post_items .item.single_item .title{
        font-size: 18px;
        margin: 0px 10px;
    }
    .news_side_wrap:last-child {
        margin-top: 35px;
    }
    .news_list .item .meta{
        flex-wrap: wrap;
    }
    .news_list .item .meta .date{
        order: 2;
        width: 100%;
        margin-top: 5px;
    }
    .news_list .item .meta .category{
        order: 1;
    }
    .news_list .item .inner{
        padding: 8px 2px 0;
    }
}
@media (min-width:768px){
    .pg_news{

    }
    .pg_news .section.sec1{
        padding-top: 0;
        padding-bottom: 0;
    }
    .pg_news .section.sec2{
        padding-top: 0;
        padding-bottom: 0;
    }
    .pg_news .section.sec3{
        padding-top: 0;
        padding-bottom: 0;
    }
    .posts_category_sp{
        display: none;
    }
    .posts_layout_box1{
        width: 73.7%;
    }
    .posts_layout_box2{
        width: 23.1%;
        margin-top: 0;
    }

    .pg_news .news_list .item:nth-child(n+4){
        margin-top: 0;
    }
    .news_list .item .category span,
    .post_items .item.single_item .category span {
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        font-family: "Kiwi Maru";
        line-height: calc(24/14);
        letter-spacing: 0.075em;
        text-align: center;
        min-width: 120px;
        height: 24px;
        padding: 0px;
        margin: 0px;
    }
    .news_list .item .date {
        font-size: 10px;
        font-weight: 500;
        text-align: center;
        line-height: 3;
        letter-spacing: 0.075em;
        font-family: "Kiwi Maru";
    }

    /*詳細*/
    .post_items .item{
        padding: 10px 31px 0px;
    }
    .post_items .item.single_item .title{
        padding: 12px 14px 7px;
    }
    .pg_news .pagination{
        margin-top: 60px;
    }
    .pagination .nav-posts .page-archive a{
        padding: 14px 40px;
        transition: 0.5s;
    }
    .pagination .nav-posts .page-archive a:hover,
    .pagination .nav-posts .page-next a:hover,
    .pagination .nav-posts .page-prev a:hover{
        opacity: 0.7;
        text-decoration: none;
    }
    .pagination .nav-posts .page-next, .pagination .nav-posts .page-prev{
        min-width: 100px;
    }
    .pagination .nav-posts .page-next a, .pagination .nav-posts .page-prev a{
        padding: 13px 30px;
        font-size: 15px;
        transition: 0.5s;
    }
    .pagination{
        margin-top: 96px;
    }
}
@media (max-width: 767px) {
    .pg_news .news_list {
        gap: 10px;
    }
    .pg_news .news_list .item {
        width: calc((100% - 10px) / 2);
        padding: 0 5px;
    }
    .pg_news .news_list .item:nth-child(n+3) {
        margin-top: 20px;
    }
    .news_list .item .inner {
        padding: 0px;
    }
    .news_list .item .meta .date{
        margin-top: 0px;
        text-align: center;
    }
    .news_list .item .meta .category {
        width: 100%;
    }
    .news_list .item .title {
        font-size: 15px;
        padding: 16px 12px 0px;
    }
    .pagination .nav-posts .page-archive a {
        padding: 10px 10px;
        font-size: 11px;
    }

}

@media (min-width:1024px) {
    .pg_news .news_list {
        margin: 0 8px;
    }
    .pg_news .news_list .item {
        width: calc((100% - 30px * 2) / 3);
        padding: 0px;
    }
    .posts_layout_box1 {
        width: 76.3%;
    }
    .posts_layout_box2 {
        width: 22%;
        margin-top: 0;
    }
    .news_list .item .date {
        font-size: 13px;
        line-height: 2;
        width: 41%;
    }
}
@media (min-width:1200px){


}