.treat{
    display: none;/*葉っぱを非表示*/
}

/*ブログ詳細*/

/*タイトル部分*/
.top_date{
    font-size: 1.125rem;
    font-weight: 700;
    margin-top:3.75rem;
}

.main_side{
    margin-top:1.875rem;
    display: flex;
    justify-content: space-between;
}
.main_content{
    width:885px;
}
.side_bar{
    width:255.5px;
}


/*カテゴリー表示あり*/
.date_cat{
    display: flex;
}
.cat_name{
    font-size: 1.125rem;
    font-weight: 700;
    margin-top:3.75rem;
    position: relative;
    left:1.25rem;
}
.cat_name a{
    color:#502200;
}
.cat_name::before{
    content:"/";
    display: block;
    position: absolute;
    top:0;
    left:-1rem;
}

/*投稿内容*/
.post_ttl{
    font-size: 1.875rem;
    font-weight: 700;
}

.post_content{
    margin-top:1.875rem;
}
.post_content p{
    font-weight: 400;
    line-height:1.75rem;
    margin-bottom: 30px;
}
.post_content h2{
    font-size: 1.5rem;
    background-color: #FAE9D2;
    padding:1.563rem 1.875rem;
    width:calc(100% - 0.125rem);
    text-align: left;
    margin-top:0;
    margin-bottom:2.813rem;
    position: relative;
    top: 0;
    z-index: 0;
}
.post_content h3{
    font-size: 1.25rem;
    color:#502200;
    line-height:1.75rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    border-left:solid 2px #502200;
    padding-left:1.75rem;
    margin:3.75rem 0 1.875rem 0;
}
.post_content img{
    width:100%;
    height:auto;
    margin-bottom:30px;
}



/*サイドバー*/
.side_bar .side_ttl .side_big_title{
    font-family: "Train One", system-ui;
    font-weight:normal;
    color:#F0B760;
    font-size: 2.25rem;
}
.side_bar .side_ttl .side_ttl_ja{
    font-size: 1.25rem;
    margin-top:0.919rem;
}


.side_content article{
    width:100%;
    margin-bottom:2.5rem;
}
.side_content article:first-of-type{
    margin-top:1.875rem;
}
.side_content article:last-of-type{
    margin-bottom:0;
}
.side_content article a{
    color:#502200;
}
.side_content article .date{
    font-size: 0.875rem;
}
.side_content article .post_ttl{
    font-size: 1.25rem;
}




/*カテゴリー*/
.cat{
    margin-top:6.813rem;
}
.category-list{
    margin-top:1.875rem;
}
.category-list li{
    position: relative;
    left:1.5rem;
    line-height:2.25rem;
    font-size: 1.125rem;
}
.category-list li::before{
    content:"●";
    position: absolute;
    top:0;
    left:-1.5rem;
}
.category-list li a{
    color: #000000;

}


/*記事ナビゲーション*/
.post_navigatioin{
    width:100%;
    border-top:solid 1px #F0B760;
    margin-top:7.469rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:3.781rem;
}
.post_navigatioin a{
    color:#502200;
    font-size: 1.125rem;
}
.link-unavailable{
    opacity: .6;
    pointer-events: none;
}

.archive_btn{
    margin:0 2.813rem;
}
.archive_btn a{
    display: inline-block;
    padding:1.375rem 0;
    width:277px;
    background-color: white;
    border:solid 1px #502200;
    border-radius: 99999px;
}
.archive_btn a p{
    text-align: center;
}








/*--------------------------------------------------------------------------------------------

1440px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:1440px){
    /*投稿内容*/
    .main_content {
        width: 75%;
    }
}

/*--------------------------------------------------------------------------------------------

1200px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:1200px){
    /*投稿内容*/
    .main_content {
        width: 70%;
    }
}

/*--------------------------------------------------------------------------------------------

1024px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:1024px){
    /*投稿内容*/
    .main_content {
        width: 68%;
    }
}


/*--------------------------------------------------------------------------------------------

890px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:890px){
    .main_side{
        flex-flow: column;
        position: relative;
    }

    /*投稿内容*/
    .main_content {
        width: 100%;
    }

    /*サイドバー*/
    .side_bar {
        width: 100%;
        position: absolute;
        bottom: -50%;
    }

    /*最新記事*/
    .post_navigatioin{
        margin-bottom: 70%;
    }

    /*イベント情報ページ サイドバー*/
    .side_bar.event{
        bottom: -75%;
    }
    .post_navigatioin {
        margin-bottom: 125%;
    }

}

/*--------------------------------------------------------------------------------------------

768px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:768px){

    /*サイドバー*/
    .side_bar{
        bottom: -730px;
    }

    /*最新記事*/
    .post_navigatioin {
        margin-bottom: 500px;
    }

    /*イベント情報ページ サイドバー*/
    .side_bar.event{
        bottom: -1050px;
    }
    .post_navigatioin {
        margin-bottom: 880px;
    }
}

/*--------------------------------------------------------------------------------------------

600px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:600px){
    /*投稿内容*/
    .post_ttl{
        font-size: 1.625rem;
    }
    .post_content h2{
        font-size: 1.25rem;
    }
    /*記事ナビゲーション*/
    .archive_btn {
        margin: 0 1.313rem;
    }
    .archive_btn a{
        width: 220px;
    }
}

/*--------------------------------------------------------------------------------------------

425px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:425px){

}

/*--------------------------------------------------------------------------------------------

375px以下

---------------------------------------------------------------------------------------------*/
@media(max-width:375px){

}