@charset "utf-8";
/* CSS Document */
.page-ttl{ margin-bottom: 100px;}
.section-title{
    position: relative;
    opacity: 0;
}
.section-title.slide_in{ opacity: 1;}
.sec-title--text{
    position: relative;
    font-size: 1.6rem;
    color: #073190;
    line-height: 1.3;
    padding: 25px 0 25px 15px;
    box-sizing: border-box;
}
.sec-title--text:before{
    position: absolute;
    top: 72%;
    left: -150px;
    display: block;
    content: '';
    width: 258px;
    height: 2px;
    background: #073190;
}
.sec-title--text span{
    display: block;
    font-size: 10.0rem;
    margin-left: -10px;
}


@media(max-width:767px) {
.page-ttl{ margin-bottom: 14%;}
    .sec-title--text{
        font-size: 1.3rem;
        padding: 3% 0;
    }
    .sec-title--text:before{
        top: 64%;
        left: -4%;
        width: 55px;
    }
    .sec-title--text span{
        font-size: 3.8rem;
        margin-bottom: 8px;
        margin-left: 0;
    }

}


/* ---------------------------------------------
  sec01
-----------------------------------------------*/
.sec01{
    padding-bottom: 190px;
    box-sizing: border-box;
}

.post-news.post-list{}
.post-news .post{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid #073190;
}
.post-news .post:first-of-type{ border-top: 1px solid #073190;}
.post .post-date{
    width: 210px;
    padding: 24px;
    background: #EFF3F9;
    box-sizing: border-box;
}
.post .post-date p{
    font-size: 1.6rem;
    line-height: 1.75;
}

.post .post-ttl{
    width: calc(100% - 210px);
    padding: 24px 45px;
    box-sizing: border-box;
}
.post .post-ttl a{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    color: #073190;
}

.pager{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pager li,
.pager span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    border: 1px solid #073190;
    box-sizing: border-box;
    transition: .4s;
}

.pager li:hover,
.pager .current{
    color: #FFF;
    background: #073190;
    text-decoration: none;
}

.pager li.previous,
.pager li.next{
    position: relative;
}
.pager li.previous:after,
.pager li.next:after{
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -6px;
    content: '';
    width: 21px;
    height: 12px;
}
.pager li.previous{ margin-right: 55px;}
.pager li.next{ margin-left: 55px;}

.pager li a {
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
}

.pager li.previous:after{
    right: 0;
    margin-right: -6px;
    border-bottom: 1px solid #073190;
    border-left: 1px solid #073190;
    transform: skew( -45deg);
}
.pager li.previous:hover:after{
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.pager li.next:after{
    left: 0;
    margin-left: -6px;
    border-bottom: 1px solid #073190;
    border-right: 1px solid #073190;
    transform: skew( 45deg);
}
.pager li.next:hover:after{
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
}

.pager li.previous:before,
.pager li.next:before{
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: 5px;
    content: '';
    width: 30px;
    height: 1px;
    background: #073190;
}

.pager li.previous:before{
    right: -30px;
}
.pager li.next:before{
    left: -30px;
}


@media(max-width:767px) {
    .sec01{
        padding-bottom: 18%;
        box-sizing: border-box;
    }
    .post-news .post{
        display: block;
    }
    .post .post-date{
        width: 100%;
        padding: 4%;
    }
    .post .post-date p{
        font-size: 1.4rem;
    }

    .post .post-ttl{
        width: 100%;
        padding: 5% 4%;
    }
    .post .post-ttl a{
        font-size: 1.4rem;
    }

    .pager{
        margin-top: 14%;
    }

    .pager li,
    .pager span{
        width: 28px;
        height: 28px;
        margin: 0 4px;
        font-size: 1.3rem;
    }

    .pager li.previous:after,
    .pager li.next:after{
        margin-top: -4px;
        width: 16px;
        height: 8px;
    }
    .pager li.previous{ margin-right: 25px;}
    .pager li.next{ margin-left: 25px;}

    .pager li.previous:after{
        margin-right: -4px;
    }
    .pager li.next:after{
        margin-left: -4px;
    }

    .pager li.previous:before,
    .pager li.next:before{
        margin-top: 3px;
        width: 15px;
    }

    .pager li.previous:before{
        right: -15px;
    }
    .pager li.next:before{
        left: -15px;
    }

}

/* ---------------------------------------------
 .post-detail
-----------------------------------------------*/
.post-detail{}

.post-detail .post-head{
    margin-bottom: 50px;
    padding: 0 15px;
    box-sizing: border-box;
}
.post-detail .post-head .post-date{
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.post-detail .post-head h2{
    font-size: 3.8rem;
    font-weight: 700;
    color: #073190;
}

.post-detail .post-cnts{
    padding: 0 15px;
    box-sizing: border-box;
}

.post-cnts p{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 45px;
}

.post-cnts h2{
    font-size: 2.4rem;
    line-height: 2;
    color: #073190;
    margin-bottom: 60px;
}
.post-cnts h3{
    font-size: 1.6rem;
    line-height: 2;
    color: #073190;
    margin-top: 100px;
    margin-bottom: 50px;
}

.post-cnts ul,
.post-cnts ol{
    position: relative;
    margin-bottom: 20px;
}
.post-cnts ol{ counter-reset: item;}

.post-cnts li{
    position: relative;
    padding-left: 30px;
    font-size: 1.6rem;
    line-height: 1.75;
    box-sizing: border-box;
}

.post-cnts li:before{
    position: absolute;
    left: 5px;
    top: 0;
    display: inline-block;
}
.post-cnts ul li:before{
    content: '・';
}
.post-cnts ol li:before{
    left: 10px;
    counter-increment: item;
    content: counter(item);
}

.post-cnts .aligncenter{
    display:block;
    margin:0 auto;
}

.post-cnts .alignright{
	float:right;
}

.post-cnts .alignleft{
	float:left;
}

.pageNav.btn_wrap{ margin-top: 80px;}


@media(max-width:767px) {
    .post-detail .post-head{
        margin-bottom: 10%;
        padding: 0 0;
    }
    .post-detail .post-head .post-date{
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .post-detail .post-head h2{
        font-size: 2.4rem;
    }

    .post-detail .post-cnts{
        padding: 0 0;
    }
    .post-cnts p{
        font-size: 1.4rem;
        margin-bottom: 8%;
    }

    .post-cnts h2{
        font-size: 2.0rem;
        margin-bottom: 8%;
    }
    .post-cnts h3{
        font-size: 1.4rem;
        margin-top: 14%;
        margin-bottom: 6%;
    }

    .post-cnts ul,
    .post-cnts ol{
        margin-bottom: 5%;
    }
    .post-cnts li{
        padding-left: 25px;
        font-size: 1.4rem;
    }
    .post-cnts img{
        width:100%;
        max-width: inherit;
        height:auto;
    }
    .post-cnts .alignright,
    .post-cnts .alignleft{
        float:none;
    }

    .pageNav.btn_wrap{ margin-top: 12%;}

}


