/*---------------------------------

  bloc_news_detail

---------------------------------*/

[class^="c-btn"]{
    margin: 80px auto 0;
}

/*---------------------------------

  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 * + .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 .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_index

---------------------------------*/

.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 li{
    padding: 10px 0 24px;
    border-bottom: 1px solid #E7E7E7;

}
.bloc_news_index .news_list li + li{
    margin-top: 8px;
}
.bloc_news_index .news_list li .date{
    font-weight: 500;
    line-height: 1.5;
}
.bloc_news_index .news_list li .category{
    display: inline-block;
    width: fit-content;
    min-height: 23px;
    padding: 4px 14px 0;
    margin: 0 0 0 10px;
    border: 1px solid var(--main);
    border-radius: 16px;
    color: var(--main);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}
.bloc_news_index .news_list li a{
    display: block;
    margin-top: 4px;
}



/*---------------------------------

  custom

---------------------------------*/