/*---------------------------------

  共通

---------------------------------*/


@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

}

/*---------------------------------

  bloc_aboutus

---------------------------------*/

.bloc_aboutus{
    position: relative;
    padding: 130px 0 50px;
    overflow: hidden;
}
.bloc_aboutus .about_illustsquare{
    position: relative;
    top: -50px;
    padding: 187px 100px;
    background: url(../img/common/shape_01.png) no-repeat center;
    background-size: contain;
    text-align: center;
    z-index: 1;
}
.bloc_aboutus::before{
    content: '';
    position: absolute;
    top: 170px;
    left: calc(50% - 950px);
    display: block;
    width: 556px;
    height: 783px;
    background: url(../img/services/aboutus_bg_01.png) center center / contain no-repeat;
}
.bloc_aboutus::after{
    content: '';
    position: absolute;
    top: 170px;
    right: calc(50% - 950px);
    display: block;
    width: 628px;
    height: 783px;
    background: url(../img/services/aboutus_bg_02.png) center center / contain no-repeat;
    z-index: 0;
}
.bloc_aboutus .about_illustsquare .ttl{
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: .2em;
}
.bloc_aboutus .about_illustsquare .txt{
    line-height: 2.7;
    letter-spacing: .02em;
}

@media screen and (max-width:767px){
    
    .bloc_aboutus{
        padding: 65px 0 25px;
    }
    .bloc_aboutus::before{
        content: '';
        display: none;
    }
    .bloc_aboutus::after{
        content: '';
        display: none;
    }
    .bloc_aboutus .about_illustsquare{
        position: relative;
        top: 0;
        padding: 60px 0;
        background: none;
        text-align: center;
    }
    .bloc_aboutus .about_illustsquare .ttl{
        font-size: 28px;
        letter-spacing: .1em;
    }
    .bloc_aboutus .about_illustsquare .txt{
        line-height: 1.7;
        text-align: left;
    }
}

/*---------------------------------

  bloc_chooseus

---------------------------------*/

.bloc_chooseus .flex{
    gap: 70px;
}
.bloc_chooseus .flex .title_main{
    width: 100%;
}
.bloc_chooseus .flex .box{
    position: relative;
    width: calc(50% - 35px);
    padding: 60px 60px;
    background: #fff;
    border: 1px solid var(--text);
    border-radius: 30px;
    z-index: 1;
}
.bloc_chooseus .flex .box::before{
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -1px;
    right: -1px;
    background: #fff;
    border: 1px solid var(--text);
    border-radius: 30px;
    z-index: -1;
}
.bloc_chooseus .flex .box .ttl{
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--black);
    color: var(--black);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}
.bloc_chooseus .flex .box .ttl strong{
    display: block;
    color: var(--main);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
}
.bloc_chooseus .flex .box .txt{
    font-weight: 500;
    line-height: 2;
}

@media screen and (max-width:767px){
    
    .bloc_chooseus .flex .box{
        width: 100%;
        padding: 40px 5%;
        background: #fff;
        border: 1px solid var(--text);
        border-radius: 30px;
    }
     .bloc_chooseus .flex .box .ttl{
        padding-bottom: 20px;
        margin-bottom: 30px;
        font-size: 15px;
    }
    .bloc_chooseus .flex .box .ttl strong{
        font-size: 24px;
    }
    .bloc_chooseus .flex .box .txt{
        font-size: 14px;
        line-height: 1.7;
    }
    
}

/*---------------------------------

  bloc_services

---------------------------------*/

.bloc_services{
    padding: 200px 0;
}
.bloc_services .title_main{
    margin-bottom: 130px;
}

.bloc_services .service_list{
    justify-content: center;
    gap: 10px;
}
.bloc_services .service_list li{
    width: 348px;
    background: #fff;
    border: 1px solid var(--text);
    border-radius: 20px;
    text-align: center;
}

.bloc_services .service_list li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}
.bloc_services .service_list li .pic{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    background: #EDEDED;
    border: 1px solid #000;
    border-radius: 16px;
    overflow: hidden;
}
.bloc_services .service_list li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.bloc_services .service_list li .pic:hover img{
    transform: scale(1.1);
}

.bloc_services .service_list li a .ttl{
    position: relative;
    display: block;
    width: fit-content;
    padding: 0 30px;
    margin: auto;
    line-height: 1;
}
.bloc_services .service_list li a .ttl::before,
.bloc_services .service_list li a .ttl::after{
    color: var(--main);
    font-size: 30px;
    font-family: "Cherry Bomb One", system-ui;
    font-weight: 400;
    font-style: normal;
}
.bloc_services .service_list li a .ttl::before{
    content: '“';
    position: absolute;
    top: -3px;
    left: 0;
}
.bloc_services .service_list li a .ttl::after{
    content: '”';
    position: absolute;
    bottom: -10px;
    right: 0;
}

@media screen and (max-width:767px){
    
    .bloc_services{
        padding: 100px 0;
    }


}


