/*---------------------------------

  共通

---------------------------------*/


@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

}

/*---------------------------------

  bloc_blog_detail

---------------------------------*/

.bloc_blog_detail{
    padding: 130px 0;
}

.bloc_blog_detail .main_image{
    margin-bottom: 70px;
    border: 1px solid var(--text);
    border-bottom-width: 5px;
    border-radius: 45px;
    overflow: hidden;
}

.bloc_blog_detail .category{
    display: inline-block;
    padding: 4px 20px;
    margin-right: 30px;
    background: #72D8E1;
}
.bloc_blog_detail .date{
    font-size: 20px;
}

.bloc_blog_detail .title{
    width: 100%;
    max-width: 1000px;
    padding: 20px 0 0;
    margin: auto;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .05em;
}


.bloc_blog_detail .detail{
    width: 100%;
    max-width: 955px;
    padding: 0;
    margin: 10px auto 0;
}

.bloc_blog_detail .btn_index{
    margin: 80px auto 0;
}

@media screen and (max-width:767px){

    .bloc_blog_detail{
        padding: 65px 0;
    }
    .bloc_blog_detail .title{
        width: 100%;
        max-width: 1000px;
        padding: 15px;
        margin: auto;
        border-bottom: 3px dashed var(--main);
        font-size: 24px;
    }
    .bloc_blog_detail .detail{
        padding: 40px 5%;
        margin: 50px auto 0;
        border-radius: 30px;
    }    

}

/*---------------------------------

  詳細パターンリッチ

---------------------------------*/

/*共通*/
.detail * .highlight{
    background: linear-gradient(transparent 60%, #ffff8e 0);
    font-weight: 900;
}

.detail * strong{
    font-weight: inherit;
}



/*大見出し*/
.detail .detail_title{
    margin: 0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-sub);
    color: #A9F3C9;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
}
/*中見出し*/
.detail .detail_sub_title{
    position: relative;
    width: fit-content;
    max-width: 1000px;
    padding: 0 0 10px;
    border-bottom: 4px dashed var(--main);
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
}

/*見出し*/
.detail .detail_catch{
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px 20px 40px;
    margin: auto;
    border-bottom: 5px dashed var(--main);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
}
.detail .detail_catch::before{
    content: '“';
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--main);
    font-size: 60px;
    font-family: "Cherry Bomb One", system-ui;
    font-weight: 400;
    font-style: normal;
}

/*文章*/
.detail .text{
    line-height: 2;
}

.detail .text + .text{
    margin-top: 30px;
}

/*リスト1*/

.detail .detail_sub_title + .list1{
    margin-top: 30px;
}

.detail .list1 li{
    position: relative;
    padding: 0px 0 0px 20px;
}
.detail .list1 li::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
}
.detail .list1 li + li{
    margin-top: 16px;
}

/*リスト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 + dt{
    margin-top: 30px;
}
.detail .list2 dd{
    margin: 10px 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 > .ttl{
    margin-bottom: 5px;
    font-size: 18px;
}
.detail .links a{
    color: var(--main);
}
.detail .links a:has(.pic){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--text-sub);
    border-radius: 8px;
    transition: var(--time) ease;
}
.detail .links a:has(.pic):hover{
    border: 1px solid var(--orange);
}
.detail .links a .pic{
    width: 160px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
}
.detail .links a .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--time) ease;
}
.detail .links a:hover .pic img{
    transform: scale(1.1);
}
.detail .links a .data{
    width: calc(100% - 180px);
    color: var(--text);
    font-size: 14px;
}
.detail .links a .data strong{
    font-size: 17px;
    font-weight: 700;
}

/*テーブル*/
.detail .table th{
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    color: var(--main);
} 

.detail .table td{
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
} 

/*CTA*/
.detail .bloc_cta .ttl{
    font-size: 28px;
}
.detail .bloc_cta .cta_text{
    margin-bottom: 20px;
}
.detail .bloc_cta .box{
    justify-content: center;
    gap: 30px;
}
.detail .bloc_cta .box .flex{
    width: 100%;
}

/*余白*/
.detail * + .detail_title{
    margin-top: 80px;
}
.detail * + .detail_sub_title,
.detail * + .detail_catch,
.detail * + .text,
.detail * + .text_free,
.detail * + .list1,
.detail * + .list2,
.detail * + .sub_img,
.detail * + .movie,
.detail * + .text_img,
.detail * + .links,
.detail * + .tables{
    margin-top: 50px;
}

.detail * + .to_contact{
    margin-top: 80px;
}

@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;
    }

    /*CTA*/
    .detail .bloc_cta .ttl{
        font-size: 18px;
    }

    /*余白*/
    .detail * + .detail_title,
    .detail * + .detail_sub_title,
    .detail * + .detail_catch,
    .detail * + .text,
    .detail * + .text_free,
    .detail * + .list1,
    .detail * + .list2,
    .detail * + .sub_img,
    .detail * + .movie,
    .detail * + .text_img,
    .detail * + .links,
    .detail * + .tables,
    .detail * + .to_contact{
        margin-top: 28px;
    }
    .detail .text + .text{
        margin-top: 15px;
    }

}

/*---------------------------------

  bloc_blog_index

---------------------------------*/

.bloc_blog_index{
    padding: 130px 0;
}
.bloc_blog_index .title_sub{
    padding-bottom: 56px;
    margin-bottom: 80px;
    background: url(../img/common/title_bg_01.png) center bottom / 74px no-repeat;
}
.bloc_blog_index .gallery_list{
    gap: 60px 3.5%;
    margin-top: 100px;
}
.bloc_blog_index .gallery_list li{
    position: relative;
    width: 31%;

}
.bloc_blog_index .gallery_list li .pic{
    width: 100%;
    margin-bottom: 15px;
    aspect-ratio: 16 / 9;
    border: 1px solid #000;
    border-radius: 30px;
    overflow: hidden;
}
.bloc_blog_index .gallery_list li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.bloc_blog_index .gallery_list li .pic:hover img{
    transform: scale(1.1);
}

.bloc_blog_index .gallery_list li .label{
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: fit-content;
    padding: 8px 20px;
    background: var(--sub);
    border: 1px solid var(--black);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.bloc_blog_index .gallery_list li .label:not(.label-works){
    display: none;
}

@media screen and (max-width:767px){
    
    .bloc_blog_index{
        padding: 65px 0 0;
    }
    .bloc_blog_index .gallery_list li{
        width: 100%;

    }

}



/*---------------------------------

  bloc_services

---------------------------------*/

.bloc_services{
    padding: 0 0 200px;
}
.bloc_services .service_list{
    gap: 10px;
    margin-top: 130px;
}
.bloc_services .service_list li{
    width: calc(100%/3 - 20px/3);
}
.bloc_services .service_list li a{
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
    padding: 20px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
}
.bloc_services .service_list li a .pic{
    width: 80px;
    height: 80px;
    background: #EDEDED;
    border: 1px solid #000;
    border-radius: 16px;
    overflow: hidden;
}
.bloc_services .service_list li a .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width:767px){
    
    .bloc_services{
        padding: 0 0 100px;
    }
    .bloc_services .service_list{
        margin-top: 60px;
    }
    .bloc_services .service_list li{
        width: 100%;
    }
    .bloc_services .service_list li a{
        min-height: 100px;
        padding: 15px;
        font-size: 16px;
    }
    .bloc_services .service_list li a .pic{
        width: 70px;
        height: 70px;
    }

}