/*---------------------------------

  共通

---------------------------------*/


@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

}

/*---------------------------------

  bloc_news_detail

---------------------------------*/

.bloc_news_detail{
    padding: 130px 0;
}
.bloc_news_detail .title{
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    margin: auto;
    border-bottom: 5px dashed var(--main);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .05em;
}

.bloc_news_detail .box{
    width: 100%;
    max-width: 1000px;
    padding: 40px 60px;
    margin: 50px auto 0;
    background: #fff;
    border-radius: 30px;
}

.bloc_news_detail .btn_index{
    margin: 60px auto 0;
}

@media screen and (max-width:767px){

    .bloc_news_detail{
        padding: 65px 0;
    }
    .bloc_news_detail .title{
        width: 100%;
        max-width: 1000px;
        padding: 15px;
        margin: auto;
        border-bottom: 3px dashed var(--main);
        font-size: 24px;
    }
    .bloc_news_detail .box{
        padding: 40px 5%;
        margin: 50px auto 0;
        border-radius: 30px;
    }    

}

/*---------------------------------

  detail

---------------------------------*/

/*大見出し*/
.detail .detail_title{
    margin: 0;
    font-size: 32px;
}
/*中見出し*/
.detail .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 * + .detail_title,
.detail * + .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 .detail_title{
        font-size: 26px;
    }
    /*中見出し*/
    .detail .detail_sub_title{
        font-size: 20px;
    }
    
    /*リスト2*/
    .detail .list2 dt{
        font-size: 18px;
    }
    
    .detail * + .detail_title,
    .detail * + .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_index

---------------------------------*/

.bloc_news_index{
    padding: 130px 0;
}
.bloc_news_index .category_list{
    gap: 8px;
    margin-bottom: 32px;
}
.bloc_news_index .category_list li a{
    display: block;
    min-width: 90px;
    min-height: 32px;
    padding: 8px 14px 0;
    background: #3E3E3E;
    border-radius: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.bloc_news_index .category_list li.active a{
    background: var(--main);
}

.bloc_news_index .news_list{
    width: 100%;
    padding: 10px 60px;
    background: #fff;
    border-radius: 30px;
}
.bloc_news_index .news_list li + li{
    border-top: 1px solid #C0C0C0; 
}
.bloc_news_index .news_list li a{
    align-items: center;
    gap: 50px;
    padding: 25px 0;
}
.bloc_news_index .news_list li a .pic{
    width: 248px;
    height: 140px;
    border-radius: 30px;
    overflow: hidden;
}
.bloc_news_index .news_list li a .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bloc_news_index .news_list li a .data{
    width: calc(100% - 300px);
}
.bloc_news_index .news_list li a .data .date{
    margin-right: 20px;
    font-weight: 600;
}
.bloc_news_index .news_list li a .data .category{
    display: inline-block;
    width: fit-content;
    padding: 3px 15px;
    margin-bottom: 10px;
    background: var(--sub);
    color: var(--black);
    font-size: 13px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:767px){

    .bloc_news_index{
        padding: 65px 0;
    }
   .bloc_news_index .news_list li a .data{
        width: 100%;
    } 
    
    
}
