@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*-------------------------------------------------------------------------------- 
    新着情報(news)
--------------------------------------------------------------------------------*/
.sub_cover_image_wrap img{
    filter: saturate(120%);
}    
main{
    width:100%;
    background-color:  var(--base-color);
    font-size: var(--font-size-m);
}

.news_title_wrap{
    display: flex;
    flex-direction: row;
}

.news_contents_wrap{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.post_date{
    font-size: var(--font-size-l);
    font-weight: 700;
}
.news_contents{
    display: flex;
    flex-direction: row;
    box-shadow: 1px 1rem 1rem 1rem var(--gray1);
    box-sizing: border-box;
}

.image_wrap,
.contents_wrap{
    width: calc(100% / 2);
}

.image_wrap img{
    width:100%;
    height:auto;
    height:100%;
    object-fit:contain;
    /* object-fit:cover; */
    object-position: 50% 50%;
}

.contents_wrap{
    justify-content: flex-start;;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news_item_title{
    padding: 1rem;
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--main-color1);
    text-decoration: underline dot black;
    background-color: white;
    box-sizing: border-box;
}

.news_item_contents{
    padding: 1rem;
    font-size: var(--font-size-m);
    background-color: white;
    height:100%;
    box-sizing: border-box;
    min-height: calc(var(--font-size-m) * 15);
}
/* --------------------------------------------------
	以上が 1300pxを超えるＰＣ端末環境設定
----------------------------------------------------- */
/* --------------------------------------------------
	ここから 1300px以下のタPC端末環境設定
----------------------------------------------------- */
@media screen and (max-width: 1300px) {
    /*-------------------------------------------------------------------------------- 
        新着情報(news)
    --------------------------------------------------------------------------------*/
}

/* --------------------------------------------------
	ここから 768px以下のタブレッド端末環境設定
----------------------------------------------------- */
@media screen and (max-width: 768px) {
    /*-------------------------------------------------------------------------------- 
        新着情報(news)
    --------------------------------------------------------------------------------*/
    .news_title_wrap .h2_title{
        width: 100%;
    }
}
/* --------------------------------------------------
    ここから 375rem以下のモバイル端末環境設定
----------------------------------------------------- */
@media screen and (max-width:480px){
    /*-------------------------------------------------------------------------------- 
        新着情報(news)
    --------------------------------------------------------------------------------*/
    .news_contents{
        flex-direction: column;
    }

    .image_wrap,
    .contents_wrap{
        width: 100%;
    }

    .image_wrap img{
        width: 100%;
    }

    .news_item_title{
        width: 100%;
    }
}
