@charset "UTF-8";
/* ===================================
共通
=================================== */
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 767px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

/* ===================================
メイン
=================================== */
.page_ttl{
    max-width: 1100px;
    margin: auto;
    margin-top: 27px;
}

/* スライダー
=================================== */
.info_slider{
    overflow: hidden;
    margin: 45px -15px;
}

.info_box a{
    display: block;
    height: 100%;
    transition: .3s;
}
.info_box a:hover{
    opacity: .6;
}
.info_box .info_img{
    aspect-ratio: 3/2;
}
.info_box .info_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info_box .info_txt_box{
    margin-top: 14px;
}
.info_box .info_txt_box .info_ttl{
    font-size: 14px;
    letter-spacing: 0.12em;
}
.info_box .info_txt_box .info_tag_list{
    margin-top: 3px;
}
.info_box .info_txt_box .info_tag_list li{
    display: inline-block;
    margin-right: 4px;
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.12em;
}

/* 記事一覧
=================================== */
.info_inner{
    padding-top: 40px;
    padding-bottom: 80px;
}
.info_archive_box{
    margin-bottom: 60px;    
}
.sec_ttl{
    margin-bottom: 12px;
}

/* 新着記事 */
.info_archive_new{
    display: flex;
    flex-wrap: wrap;
}
.info_archive_new > li{
    width: 100%;
    margin-bottom: 10px;
}
.info_archive_new > li:last-of-type{
    margin-bottom: 0;
}

.info_archive_new > li a{
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 20px;
    transition: .3s;
}
.info_archive_new > li a:hover{
    opacity: .6;
}
.info_archive_new .info_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info_archive_new .info_img{
    width: 180px;
    aspect-ratio: 3/2;
}
.info_archive_new .info_txt_box{
    width: calc(100% - 180px);
    padding: 10px;
    padding-right: 0;
    padding-left: 30px;
}

.info_archive_new .info_txt_box .info_ttl{
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: -6px;
}
.info_archive_new .info_txt_box .info_tag_list li{
    display: inline-block;
    margin-right: 7px;
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.12em;
}

/* おすすめ記事 */
.info_archive{
    display: flex;
    flex-wrap: wrap;
}
.info_archive > li{
    width: calc((100% / 3) - 10px);
    margin-right: 15px;
    margin-bottom: 30px;
}
.info_archive > li:nth-of-type(3n){
    margin-right: 0;
}

.info_archive > li a{
    display: block;
    height: 100%;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 20px;
    transition: .3s;
}
.info_archive > li a:hover{
    opacity: .6;
}
.info_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info_archive .info_img{
    width: 100%;
    aspect-ratio: 3/2;
}
.info_archive .info_txt_box{
    margin-top: 15px;
}
.info_txt_box .info_ttl{
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: -6px;
}
.info_txt_box .info_tag_list li{
    display: inline-block;
    margin-right: 8px;
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.12em;
}

/* 一覧ボタン */
.archive_btn{
    margin-top: 20px;
}
.archive_btn a{
    position: relative;
    padding-left: 24px;
    font-size: 12px;
    letter-spacing: 0.12em;
    transition: .3s;
}
.archive_btn a:hover{
    opacity: .6;
}
.archive_btn a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 15px;
    height: 1px;
    background-color: #333;
}

@media screen and (max-width: 1150px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1100px) {
    .info_slider{
        margin: 45px -20px;
    }
}
@media screen and (max-width: 1023px) {
    /* スライダー */
    .info_box a:hover{
        opacity: 1;
    }

    /* 新着 */
    .info_archive_new > li a{
        padding: 12px;
    }
    .info_archive_new .info_txt_box{
        padding-left: 15px;
    }

    /* おすすめ */
    .info_archive > li{
        width: calc((100% / 2) - 5px);
        margin-right: 10px;
        margin-bottom: 15px;
    }
    .info_archive > li:nth-of-type(3n){
        margin-right: 10px;
    }
    .info_archive > li:nth-of-type(2n){
        margin-right: 0;
    }
    .info_archive > li a{
        padding: 12px;
        padding-bottom: 15px;
    }
    .info_archive .info_txt_box{
        margin-top: 8px;
    }
}
@media screen and (max-width: 767px) {
    .info_archive > li a{
        padding: 8px;
        padding-bottom: 15px;
    }
    .info_archive_new > li a{
        padding: 8px;
    }
    .info_archive_new .info_txt_box .info_ttl{
        line-height: 1.5em;
    }
}
@media screen and (max-width: 599px) {
    .info_slider{
        margin: 45px -15px 10px;
    }
    .info_archive_box:last-of-type{
        margin-bottom: 20px;
    }

    /* 新着 */
    .info_archive_new > li {
        width: calc((100% / 2) - 5px);
        margin-right: 10px;
        margin-bottom: 15px;
    }
    .info_archive_new > li:nth-of-type(2n){
        margin-right: 0;
    }
    .info_archive_new > li:nth-last-of-type(1),
    .info_archive_new > li:nth-last-of-type(2){
        margin-bottom: 0;
    }
    .info_archive_new > li a{
        flex-direction: column;
    }
    .info_archive_new .info_img{
        width: 100%;
    }
    .info_archive_new .info_txt_box{
        width: 100%;
        padding: 10px;
        padding-right: 0;
        padding-left: 0;
    }
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 370px) {
}


/* ページメーション
=================================== */
.archive-pager{
    margin: 42px auto 75px;
    color: #293271;
    font-size: 13px;
}
.nav-links{
    width: fit-content;
    margin: auto;
}
.page-numbers{
    margin-right: 2px;
    padding: 10px 13px;
    transition: .3s;
}
.page-numbers:hover{
    opacity: .6;
}
.page-numbers:last-of-type{
    margin-right: 0;
}
.page-numbers.dots{
    margin-right: 2px;
}
.page-numbers.dots:hover{
    opacity: 1;
}

.page-numbers.next{
    position: relative;
    padding-right: 30px;
}
.page-numbers.next::after {
    content: "";
    position: absolute;
    top: 53%;
    right: 16px;
    transform: translateY(-50%) rotate(-45deg);
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #293271;
    border-bottom: 1px solid #293271;
}
.page-numbers.prev{
    position: relative;
    padding-left: 30px;
}
.page-numbers.prev::after {
    content: "";
    position: absolute;
    top: 53%;
    left: 16px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    height: 5px;
    border-left: 1px solid #293271;
    border-bottom: 1px solid #293271;
}

.page-numbers.current{
    position: relative;
}
.page-numbers.current::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    display: block;
    width: 7px;
    height: 1px;
    background-color: #293271;
}
.page-numbers.current:hover{
    opacity: 1;
}

/* おすすめ記事
=================================== */
.recomend_wrap{
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #e2e2e2 transparent;
    padding-bottom: 5px;
}
.recomend_wrap::-webkit-scrollbar{
    height: 5px;
}
.recomend_wrap::-webkit-scrollbar-track{
    background-color: transparent;
}
.recomend_wrap::-webkit-scrollbar-thumb{
    background-color: #e2e2e2;
    border-radius: 10px;
}

.recomend_wrap .info_archive{
    flex-wrap: nowrap;
}
.recomend_wrap .info_archive > li{
    flex-shrink: 0;
    width: 260px;
    margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
    .recomend_wrap .info_archive > li:nth-of-type(2n){
        margin-right: 15px;
    }
}
@media screen and (max-width: 1023px) {
    .recomend_wrap .info_archive > li{
        width: 40%;
    }
}
@media screen and (max-width: 800px) {
    .recomend_wrap .info_archive > li{
        width: 65%;
    }
}


/* サイドバー
=================================== */
.stick_area{
    overflow-y: auto;
    height: 75vh;
    scrollbar-width: thin;
    scrollbar-color: #e2e2e2 transparent;
    padding-right: 10px;
}
.stick_area::-webkit-scrollbar{
    width: 7px;
}
.stick_area::-webkit-scrollbar-track{
    background-color: transparent;
}
.stick_area::-webkit-scrollbar-thumb{
    background-color: #e2e2e2;
    border-radius: 10px;
}
.s_a_box{
    margin-bottom: 50px;
}

.s_a_cat_list li{
    border-bottom: 1px solid #e2e2e2;
}
.s_a_cat_list li a{
    display: block;
    padding: 14px 10px;
    color: #293271;
    font-size: 14px;
    letter-spacing: 0.12em;
    transition: .3s;
}
.s_a_cat_list li a:hover{
    opacity: .6;
}

.s_a_tag{
    margin-top: 10px;
    padding: 0 10px;
}
.s_a_tag li{
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}
.s_a_tag li a{
    display: block;
    color: #999;
    font-size: 14px;
    letter-spacing: 0.12em;
    transition: .3s;
}
.s_a_tag li a:hover{
    opacity: .6;
}


@media screen and (max-width: 1150px) {
}
@media screen and (max-width: 1023px) {
    .page-numbers{
        padding: 10px 10px;
    }
}
@media screen and (max-width: 767px) {
    .cont_wrap{
        flex-direction: column;
    }
    .left{
        width: 100%;
    }
    .right {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    /* スライダー */
    .stick_area{
        height: fit-content;
        padding-right: 0;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 370px) {
    .page-numbers{
        padding: 10px 7px;
    }
}

/* ===================================
詳細
=================================== */
.info_inner .date_txt{
    margin-bottom: 15px;
    color: #999;
    font-size: 12px;
    letter-spacing: 0.12em;
}
.info_txt_box .date_txt{
    margin-bottom: 0px;
    color: #999;
    font-size: 12px;
    letter-spacing: 0.12em;
}
.info_archive_new .info_txt_box .date_txt{
    color: #999;
    font-size: 12px;
    letter-spacing: 0.12em;
}
h1{
    margin-top: -3px;
    color: #293271;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.5em;
}
.column_detail_box{
    margin-top: 12px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e2e2;
}
.cat_list li{
    display: inline-block;
    margin-right: 7px;
    color: #293271;
    font-size: 12px;
    letter-spacing: 0.12em;
}
.tag_list{
    /* margin-top: -7px; */
}
.tag_list li{
    display: inline-block;
    margin-right: 7px;
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.single_content{
    margin-top: 35px;
}
.single_content p{
    margin-top: 28px;
    font-size: 14px;
    letter-spacing: 0.12em;
}
.single_content h2{
    border-left: 3px solid #293271;
    margin-top: 74px;
    padding-left: 20px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.3em;
}
.single_content h3{
    position: relative;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding-left: 23px;
    line-height: 1.3em;
}
.single_content h3::before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 13px;
    height: 13px;
    background-image: url(../img/common/ttl_deco.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.single_content h4{
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.3rem;
}
.single_content figure{
    margin-top: 30px;
}
.wp-block-image figcaption{
    text-align: center;
}
.single_content a{
    text-decoration: underline;
    transition: .3s;
}
.single_content a:hover{
    opacity: .6;
}

.single_content h3 + p{
    margin-top: 20px;
}
.single_content h4 + p{
    margin-top: 20px;
}
.single_content h3 + h4{
    margin-top: 20px;
}
.single_content figure + h3{
    margin-top: 30px;
}

.single_content div{
    margin-top: 30px;
}
.single_content > a img{
    margin-top: 30px;
}

@media screen and (max-width: 1100px) {
}
@media screen and (max-width: 1023px) {
    h1{
        font-size: 24px;
        line-height: 1.35em;
    }
    .single_content h2{
        padding-left: 14px;
        font-size: 20px;
    }
    .single_content p + h2{
        margin-top: 60px;   
    }
    .single_content p + p{
        margin-top: 15px;
    }
}
@media screen and (max-width: 767px) {
    .single_content h3{
        line-height: 1.5em;
    }
    .single_content h3::before{
        top: 8px;
    }
    .info_txt_box .info_ttl{
        line-height: 1.5em;
    }
    .tag_list{
        margin-top: 0px;
    }
}
@media screen and (max-width: 599px) {
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 370px) {
}


/* シェアボタン */
.single_out_box{
    margin-bottom: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e2e2;
}

.sns_link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    margin-top: 55px;
    padding: 40px 0;
}
.share_txt{
    font-size: 16px;
    margin-right: 45px;
    font-weight: 500;
    letter-spacing: 0.12em;
}
.share_btn_box {
    display: flex;
}
.share_btn_box .share_link{
    width: 40px;
    margin-right: 20px;
    transition: .3s;
}
.share_btn_box .share_link:hover{
    opacity: .6;
}
.share_btn_box .share_link:last-of-type{
    margin-right: 0;
}

/* ページ送りボタン */
.column_btn_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 520px;
    margin: 53px auto;
}
.column_btn.prev,
.column_btn.next,
.column_btn.archive{
    font-size: 14px;
    letter-spacing: 0.12em;
}
.column_btn.prev .btn_text{
    position: relative;
    display: block;
    padding: 2px;
    padding-left: 27px;
}
.column_btn.prev .btn_text::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    height: 5px;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
}
.column_btn.next .btn_text{
    position: relative;
    display: block;
    padding: 2px;
    padding-right: 27px;
}
.column_btn.next .btn_text::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%) rotate(-45deg);
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}
.column_btn.prev a,
.column_btn.next a,
.column_btn.archive a{
    transition: .3s;
}
.column_btn.prev a:hover,
.column_btn.next a:hover,
.column_btn.archive a:hover{
    opacity: .6;
}
.column_btn.next.none,
.column_btn.prev.none{
    opacity: .3;
}

/* 関連記事 */
.info_archive_box.single{
    margin-bottom: 50px;
}
.info_archive_box.single:last-of-type{
    margin-bottom: 60px;
}

@media screen and (max-width: 1100px) {
}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 767px) {
    .info_inner{
        padding-bottom: 40px;
    }
    .single_out_box{
        margin-bottom: 50px;
        padding-bottom: 0;
    }
    .info_archive_box.single:last-of-type{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 599px) {
    .sns_link{
        flex-direction: column;
        padding: 20px 0;
    }
    .share_txt{
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .column_btn.prev .btn_text{
        padding-left: 20px;
    }
    .column_btn.next .btn_text{
        padding-right: 20px;
    }
}
@media screen and (max-width: 450px) {
}
@media screen and (max-width: 370px) {
}