.s_news p{
    font-size: 12px;
    line-height: 40px;
}

.cat_wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}
.cat_wrapper .cat_content{
    padding: 20px;
    background-color: #f2f2f2;
}
.cat_wrapper .cat_content .cat_ttl{
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid #dadada;
}
.cat_wrapper .cat_content .cat_list{
    display: flex;
    flex-wrap: wrap;
}
.cat_wrapper .cat_content .cat_list > a{
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 20px;
    border-bottom: 2px solid #B99050;
}
.news_wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 100px;
    box-sizing: border-box;
}
.news_wrapper .news_contents{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #d3d3d3;
    padding: 20px 0;
    box-sizing: border-box;
}
.news_wrapper .news_contents:last-of-type{
    border-bottom: 1px solid #d3d3d3;
}
.news_wrapper .news_contents .left{
    width: 40%;
}
.news_wrapper .news_contents .left .bar{
    width: 40px;
    height: 2px;
    background-color: #B9904F;
}
.news_wrapper .news_contents .left .ttl{
    font-size: 16px;
    font-family: serif;
    padding: 18px 0 12px;
}
.news_wrapper .news_contents .left .news_cat{
    display: inline;
    margin-right: 10px;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #B9904F;
}
.news_wrapper .news_contents .left .news_cat:last-of-type{
    margin-right: initial;
}
.news_wrapper .news_contents .left .news_date{
    display: inline;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1px;
    color: #B9904F;
}
.news_wrapper .news_contents .left .news_txt{
    font-size: 10px;
    line-height: 18px;
    padding: 15px 0;
}
.news_wrapper .news_contents .left .detail{
    display: inline-block;
    font-size: 11px;
    font-family: serif;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}
.news_wrapper .news_contents .right{
    width: 50%;
    height: 100%;
}
.news_wrapper .news_contents .right > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat_img{
    width: 100%;
    height: 50vh;
}
.cat_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.s_news{
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 70px;
    box-sizing: border-box;
}
.s_news .ttl_wrapper{
    padding: 15px 0 10px;
    border-bottom: 1px solid #dadada;
    margin-bottom: 20px;
}
.s_news .ttl_wrapper > h1{
    font-size: 16px;
    margin-bottom: 10px;
    font-family: serif;
}
.s_news .ttl_wrapper .tags{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.s_news .ttl_wrapper .tags .cat{
    display: inline-block;
    font-size: 10px;
    line-height: 14px;
    color: #fff;
    background-color: #B9904F;
    padding: 6px 10px;
    box-sizing: border-box;
}
.s_news .ttl_wrapper .tags .update{
    font-size: 10px;
    line-height: 14px;
    color: #B9904F;
    letter-spacing: 1px;
}

@media screen and (max-width:768px){
    .cat_wrapper .cat_content {
        padding: 15px;
    }
    .cat_wrapper .cat_content .cat_list > a {
        font-size: 10px;
        margin-right: 15px;
    }
    .news_wrapper .news_contents {
        height: 150px;
    }
    .news_wrapper .news_contents .left {
        width: 60%;
    }
    .news_wrapper .news_contents .left .ttl {
        font-size: 13px;
        line-height: 20px;
        font-family: serif;
        padding: 12px 0 4px;
    }
    .news_wrapper .news_contents .left .news_cat {
        margin-right: 8px;
        padding: 4px 6px;
        font-size: 9px;
    }
    .news_wrapper .news_contents .left .detail {
        font-size: 9px;
        padding-bottom: 2px;
    }
    .news_wrapper .news_contents .right {
        width: 35%;
    }
}