@charset "utf-8";

/* CSS Document */

.post-page .sec-header__fig{background-image: url(../images/post/post_fig_01.jpg);}
.post-page .cmn-blc{padding: 0 20px 120px;}

.post-blc{
  display: flex;
  margin: 0 0 35px;
  padding: 15px 25px;
  border-top: 1px solid rgba(0,101,164,1);
  border-bottom: 1px solid rgba(0,101,164,1);
  box-sizing: border-box;
  }
  .post-date{
    width: 110px;
    font-size: 18px;
    font-weight: bold;
    color: rgba(0,101,164,1);
    }
  .post-ttl{
    width: calc(100% - 110px);
    font-size: 1.7rem;
    font-weight: bold;
    }
.post-content{
  margin: 0 0 15px;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(0,101,164,1);
  }
  .post-content img{width: auto;}

.post-pager{
  display: flex;
  justify-content: space-between;
  margin: 0 0 50px;
  }
  .post-pager__btn a{
    font-size: 18px;
    color: rgba(0,101,164,1);
    position: relative;
    transition: .3s;
    }
    .post-pager__btn a:hover{opacity: .7;}
    .post-pager__btn a::before{
      width: 10px;
      height: 100%;
      font-size: 18px;
      color: rgba(0,101,164,1);
      line-height: .8;
      position: absolute;
      top: 3px;
      }
    .prev_btn a{padding: 0 0 0 15px;}
    .next_btn a{padding: 0 15px 0 0;}
    .prev_btn a::before{
      content: "«";
      left: 0;
      }
    .next_btn a::before{
      content: "»";
      right: 0;
      }

.post-btn{
  width: 160px;
  margin: 0 auto;
  }
  .post-btn .slid-btn{height: 38px;}
  .post-btn__txt{
    padding-right: 37px;
    font-size: 1.4rem;
    color: rgba(255,255,255,1);
    transition: .3s;
    position: relative;
    }
    .post-btn:hover .post-btn__txt{color: rgba(0,101,164,1);}

    .post-btn__txt::before,
    .post-btn__txt::after{
      content: "";
      width: 27px;
      height: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      position: absolute;
      top: 0;
      right: 0;
      transition: .3s;
      }
      .post-btn__txt::before{background-image: url(../images/common/arw-thin_ble_r.svg);}
      .post-btn__txt::after{background-image: url(../images/common/arw-thin_wht_r.svg);}
      .post-btn:hover .post-btn__txt::after{opacity: 0;}

@media screen and (max-width: 768px) {

.post-page .cmn-blc{padding: 0 20px 60px;}

.post-blc{
  flex-wrap: wrap;
  padding: 10px;
  }
  .post-date{width: 100%;}
  .post-ttl{width: 100%;} 

}/* max-width: 768px */