/*---------------------------------

  共通

---------------------------------*/


@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

}

/*---------------------------------

  bloc_news_detail

---------------------------------*/

.bloc_news_detail{
    position: relative;
    padding: 144px 0 163px;
}

.bloc_news_detail .inner{
    position: relative;
}
.bloc_news_detail .title_underline{
    margin: 0 0 54px;
}

.bloc_news_detail .button{
    margin: 64px auto 0;
}
.bloc_news_detail .gray_box{
    padding: 56px;
}

@media screen and (max-width:767px){
 
    .bloc_news_detail .gray_box{
        padding: 6vw;
    }  
    
}

/*---------------------------------

  detail

---------------------------------*/

/*大見出し*/
.detail .title{
    margin: 0;
    font-size: 32px;
}
/*中見出し*/
.detail .sub_title{
    color: var(--main);
    font-size: 24px;
    font-weight: 700;
}

/*文章*/
.detail .text{

}

/*リスト1*/
.detail .list1 li{
    position: relative;
    padding: 0px 0 0px 20px;
}
.detail .list1 li::before{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
}

/*リスト2*/
.detail .list2 dt{
    position: relative;
    padding: 0 0 0 20px;
    font-size: 20px;
}
.detail .list2 dt::before{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
}
.detail .list2 dd{
    margin: 16px 0 0;
}

/*画像*/
.detail .sub_img{
    margin: 0 auto;
    max-width: 600px;
}

/*文章+画像*/
.detail .text_img{
    gap: 40px;
    flex-direction: row-reverse;
}
.detail .text_img .pic{
    width: calc(30% - 20px);
}
.detail .text_img .txt{
    width: calc(70% - 20px);
}

.detail .links a{
    color: var(--main);
}


.detail * + .title,
.detail * + .sub_title,
.detail * + .text,
.detail * + .text_free,
.detail * + .list1,
.detail * + .list2,
.detail * + .sub_img,
.detail * + .movie,
.detail * + .text_img,
.detail * + .links{
    margin-top: 48px;
}

@media screen and (max-width:767px){
 
    /*大見出し*/
    .detail .title{
        font-size: 26px;
    }
    /*中見出し*/
    .detail .sub_title{
        font-size: 20px;
    }
    
    /*リスト2*/
    .detail .list2 dt{
        font-size: 18px;
    }
    
    .detail * + .title,
    .detail * + .sub_title,
    .detail * + .text,
    .detail * + .text_free,
    .detail * + .list1,
    .detail * + .list2,
    .detail * + .sub_img,
    .detail * + .movie,
    .detail * + .text_img,
    .detail * + .links{
        margin-top: 28px;
    }
    
}

/*---------------------------------

  bloc_news

---------------------------------*/

.bloc_news{
    position: relative;
    padding: 144px 0 163px;
}

.bloc_news .inner{
    position: relative;
}
.bloc_news .title_underline{
    margin: 0 0 54px;
    font-size: 16px;
}
.bloc_news .title_underline .en{
    display: block;
    margin: 10px 0 0;
}

.bloc_news .green_box{
    align-items: center;
    gap: 20px 40px;
    padding: 32px;
    margin: 0 0 40px;
}
.bloc_news .green_box select{
    padding: 10px 40px 10px 10px;
    background: #fff;
}

.bloc_news .green_box .category_list{
    gap: 10px 20px;
}
.bloc_news .green_box li a{
    display: block;
    padding: 2px 10px;
    background: rgba(var(--main-rgb),1);
    border-radius: 5px;
    color: #fff;
    transition: .3s;
}
.bloc_news .green_box li a:hover{
    background: rgba(var(--main-rgb),.7);
}
/*
.bloc_news .green_box li.active a{
    background: var(--main);
    color: #fff;
}
*/
.bloc_news .news_list li{
    align-items: center;
    width: 100%;
    min-height: 104px;
    padding: 37px 32px 32px;
    background: #F8F8F8;
    font-weight: 700;
    line-height: 2;
    transition: .3s;
}
.bloc_news .news_list li:has(a:hover){
    background: rgba(238, 252, 249, .8);
}
.bloc_news .news_list li .date{
    display: inline-block;
    width: 80px;
    text-decoration: none;
}
.bloc_news .news_list li .category{
    display: inline-block;
    width: 120px;
    height: 25px;
    margin: 0 20px;
    background: var(--main);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    text-align: center;
}
.bloc_news .news_list li a{
    width: calc(100% - 240px);
    padding: 0 50px 0 0;
    text-decoration: underline;
}
.bloc_news .news_list li + li{
    margin: 8px 0 0;
}

@media screen and (max-width:767px){

    .bloc_news{
        padding: 80px 0 100px;
    }
    
    .bloc_news .green_box{
        padding: 6vw;
    }

    .bloc_news .green_box .category_list{
        gap: 10px 15px;
    }
    
    .bloc_news .news_list li{
        min-height: 104px;
        padding: 6vw;
    }
    .bloc_news .news_list li a{
        width: 100%;
        margin: 30px 0 0;
        padding: 0 50px 0 0;
        text-decoration: underline;
    }
    
}


