/*---------------------------------

  共通

---------------------------------*/


@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

}

/*---------------------------------

  KV

---------------------------------*/

.kv_area{
    position: relative;
    gap: 40px;
/*    height: 1040px;*/
    overflow: hidden;
}
.kv_area .kv{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 510px);
    background: url(../img/home/kv_bg.png) center center / cover no-repeat;
    /*background: var(--sub)*/;
    border-radius: 30px;
}


.kv_area .kv .unit{
    width: 98%;
    max-width: 907px;
    aspect-ratio: 907 / 576;
    padding: 160px 20px 0;
    background: url(../img/common/shape_02.png) no-repeat center;
    background-size: contain;
    text-align: center;
}
.kv_area .kv .unit .ttl{
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: .2em;
}
.kv_area .kv .unit .txt{
    line-height: 2.7;
    letter-spacing: .02em;
}


.kv_area .pickup{
    width: 470px;
    padding: 30px 40px 40px;
    margin-top: 100px;
    background: var(--beige02);
    border-radius: 30px;
}
.kv_area .pickup .title{
    padding: 0 0 0 63px;
    background: url(../img/common/ico_pen.png) left center / 48px no-repeat;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.kv_area .pickup .title .en{
    display: inline-block;
    margin: 0 20px 0 0;
    font-size: 49px;
}
.kv_area .pickup .pic{
    width: 100%;
    margin-top: 40px;
    aspect-ratio: 37 / 21;
    border: 2px solid #000;
    border-radius: 16px;
    overflow: hidden;
}
.kv_area .pickup .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.kv_area .pickup .pic:hover img{
    transform: scale(1.1);
}
.kv_area .pickup .ttl{
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}
.kv_area .pickup .txt{
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.kv_area .kv .btn{
    position: absolute;
    bottom: 31px;
    right: 31px;
    display: block;
    width: 246px;
    height: 246px;
    background: linear-gradient(225.91deg, #C9F2B0 14.77%, #EBEBEB 47.63%, #C6F0FF 71.01%);
    border: 1px solid var(--text);
    border-radius: 50%;
}
.kv_area .kv .btn::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/home/kv_cta.png) center / contain no-repeat;
    
}
.kv_area .kv .btn img{
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width:767px){
    
    .kv_area{
        position: relative;
        gap: 40px;
        overflow: hidden;
    }
    .kv_area .kv{
        display: block;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        border-radius: 30px;
    }

    .kv_area .kv .unit{
        width: 100%;
        max-width: 907px;
        height: 800px;
        /*aspect-ratio: 907 / 576;*/
        padding: 180px 20px;
        background: none;
        /*background-size: 140%;*/
        text-align: left;
    }
    .kv_area .kv .unit .ttl{
        margin-bottom: 40px;
        font-size: 27px;
        font-weight: 900;
        line-height: 1.6;
        letter-spacing: .1em;
    }
    .kv_area .kv .unit .txt{
        padding: 2vw;
        background: rgba(255,255,255,.7);
        line-height: 1.7;
        letter-spacing: .02em;
        text-align: left;
    }

    .kv_area .pickup{
        width: 100%;
        padding: 30px 40px 40px;
        margin-top: 0;
        border-radius: 30px;
    }
    .kv_area .pickup .title .en{
        display: block;
    }
    .kv_area .kv .btn{
        bottom: -30px;
        right: 10px;
        width: 200px;
        height: 200px;
    }

}

/*---------------------------------

  bloc_services

---------------------------------*/

.bloc_services{
    position: relative;
    padding: 200px 0 0;
}
.bloc_services .title{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 430px;
    height: 253px;
    padding: 95px 0 0 45px;
    background: url(../img/home/services_title_bg.png) center / contain no-repeat;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
}
.bloc_services .title > *{
    display: block;
    transform: rotate(-5deg);
}
.bloc_services .title .en{
    display: block;
    margin-bottom: 10px;
    font-size: 50px;
    letter-spacing: .02em;
}
.bloc_services .service_list{
    justify-content: center;
    gap: 50px;
}
.bloc_services .service_list li{
    width: 370px;

}
.bloc_services .service_list li a{
    display: block;
    width: 100%;
    padding: 25px 25px 40px;
    background: #fff;
    border-radius: 30px;
}
.bloc_services .service_list li a .pic{
    width: 320px;
    height: 197px;
    margin-bottom: 20px;
    background: #EDEDED;
    border-radius: 16px;
    overflow: hidden;
}
.bloc_services .service_list li a .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.bloc_services .service_list li a .pic:hover img{
    transform: scale(1.1);
}
.bloc_services .service_list li a .ttl{
    position: relative;
    width: fit-content;
    padding: 0 30px;
    margin: 0 auto 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
}
.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;
}
.bloc_services .service_list li a .txt{
    line-height: 1.8;
    letter-spacing: .02em;
}


@media screen and (max-width:767px){
    
    .bloc_services{
        padding: 140px 0 0;
    }
    .bloc_services .title{
        left: -30px;
        width: 300px;
        height: 190px;
        padding: 70px 0 0 45px;
        font-size: 16px;
    }
    .bloc_services .title .en{
        font-size: 42px;
    }

}

/*---------------------------------

  bloc_gallery

---------------------------------*/

.bloc_gallery{
    padding: 200px 0 140px;
}
.bloc_gallery .title_main{
    width: 100%;
    margin-bottom: 120px;
}
.bloc_gallery .title_main.ta-center .en::after{
    content: '';
    position: absolute;
    top: -35px;
    right: -75px;
    display: block;
    width: 106px;
    height: 106px;
    background: url(../img/common/ico_new.png) no-repeat;
    background-size: 106px;
    z-index: -1;
}
.bloc_gallery .gallery_list{
    gap: 85px 3.5%;
}
.bloc_gallery .gallery_list li{
    width: 31%;
    text-align: center;
}
.bloc_gallery .gallery_list li .date{
    display: inline-block;
    margin-right: 20px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .05em;
}
.bloc_gallery .gallery_list li .label{
    display: inline-block;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.bloc_gallery .gallery_list li .label::before{
    content: '#';
    display: inline-block;
    margin-right: 3px;
}
.bloc_gallery .gallery_list li .label-works{
    background: #72D8E1;
}
.bloc_gallery .gallery_list li .label-gallery{
    background: #F2CD35;
}
.bloc_gallery .gallery_list li .pic{
    width: 100%;
    aspect-ratio: 16/9;
    margin: 20px 0;
    border: 1px solid #000;
    border-radius: 30px;
    overflow: hidden;
}
.bloc_gallery .gallery_list li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}
.bloc_gallery .gallery_list li .pic:hover img{
    transform: scale(1.1);
}
.bloc_search{
    display: none;
    padding: 140px 0 0;
}
.bloc_search .tag_list{
    gap: 15px 8px;
}
.bloc_search .tag_list li{
    display: inline-block;
    width: fit-content;
}
.bloc_search .tag_list li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 30px;
    background: #fff;
    border-radius: 60px;
}

.bloc_gallery .type_list{
    display: none;
    gap: 40px;
    padding: 50px;
    margin-top: 200px;
    background: #fff;
    border-radius: 130px;
}
.bloc_gallery .type_list li{
    width: calc(50% - 20px);
}
.bloc_gallery .type_list li a{
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 25px 60px;
    background: var(--gray);
    border: 2px solid var(--text);
    border-radius: 70px;
}
.bloc_gallery .type_list li .en{
    display: block;
    width: fit-content;
    font-size: 40px;
}

@media screen and (max-width:767px){

    .bloc_gallery{
        padding: 100px 0 70px;
    }
    .bloc_gallery .title_main{
        margin-bottom: 60px;
    }
    .bloc_gallery .gallery_list{
        gap: 60px 3.5%;
    }
    .bloc_gallery .gallery_list li{
        width: 100%;
    }

}

/*---------------------------------

  bloc_aboutus

---------------------------------*/

.bloc_aboutus{
    position: relative;
    padding: 200px 0;
    background: #fff url(../img/home/aboutus_bg_pic.png) top 138px right 0 / 950px no-repeat;
}
.bloc_aboutus::before{
    content: '';
    position: absolute;
    top: 138px;
    right: 50px;
    display: block;
    width: 877px;
    height: 335px;
    background: url(../img/home/aboutus_bg_grass.png) center / contain no-repeat;
}
.bloc_aboutus .flex{
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px 0;
}
.bloc_aboutus .title_main{
    width: 100%;
    margin-bottom: 130px;
}
.bloc_aboutus .txt{
    font-size: 18px;
    line-height: 3.2;
    letter-spacing: .05em;
}

.bloc_aboutus .choose_list{
    padding: 0 70px 0 0;
    counter-reset: number 0;
}
.bloc_aboutus .choose_list li{
    position: relative;
    padding: 24px 0 24px 140px;
    font-size: 18px;
    line-height: 1.6;
}
.bloc_aboutus .choose_list li::before{
    counter-increment: number 1;
    content: '0'counter(number);
    position: absolute;
    bottom: 16px;
    left: 0;
    color: var(--main);
    font-family: "Caprasimo", serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
}
.bloc_aboutus .choose_list li strong{
    display: block;
    color: var(--main);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
}
.bloc_aboutus .box_choose{
    width: 100%;
    padding: 20px 30px 25px 60px;
    margin-top: 130px;
    background: var(--gray);
    border: 2px solid var(--text);
    border-radius: 70px;
    line-height: 1;
}
.bloc_aboutus .box_choose .en{
    display: block;
    margin-bottom: 10px;
    font-size: 40px;
}

@media screen and (max-width:1440px){

    .bloc_aboutus{
        background: #fff url(../img/home/aboutus_bg_pic.png) top 80px right 0 / 60% no-repeat;
    }
    
}

@media screen and (max-width:767px){
    
    .bloc_aboutus{
        padding: 100px 0;
        background: #fff url(../img/home/aboutus_bg_pic.png) top 30px right 0 / 60% no-repeat;
    }
    .bloc_aboutus::before{
        top: 0;
        right: 50px;
        display: block;
        width: 500px;
        height: 250px;
    }
    .bloc_aboutus .flex{
        gap: 0;
    }
    .bloc_aboutus .title_main{
        margin-bottom: 60px;
    }
    .bloc_aboutus .txt{
        font-size: 16px;
        line-height: 2;
    }
    .bloc_aboutus .choose_list{
        padding: 40px 0 0;
    }
    .bloc_aboutus .choose_list li{
        padding: 24px 0 24px 0px;
        font-size: 14px;
    }
    .bloc_aboutus .choose_list li::before{
        position: absolute;
        top: 0;
        bottom: inherit;
        left: 0;
        font-size: 40px;
        opacity: .5;
    }
    .bloc_aboutus .choose_list li strong{
        font-size: 28px;
    }

    .bloc_aboutus .box_choose{
        justify-content: center;
        gap: 20px;
        padding: 25px 40px 25px;
        margin-top: 40px;
        border-radius: 70px;
    }
    .bloc_aboutus .box_choose .en{
        font-size: 32px;
    }
}

/*---------------------------------

  bloc_faq　※commonとの差分

---------------------------------*/

.bloc_faq{
    padding: 180px 0 50px;
}
.bloc_faq .title_main{
    margin-bottom: 70px;
    font-size: 28px;
}
.bloc_faq .title_main .en{
    display: inline-block;
    margin-right: 20px;
}
.bloc_faq .faq_list{
    margin: 0 0 80px;
}

@media screen and (max-width:767px){
    
    .bloc_faq{
        padding: 90px 0 25px;
    }

}

/*---------------------------------

  bloc_blog

---------------------------------*/

.bloc_blog{
    position: relative;
    padding: 160px 0;
}

.bloc_blog::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    width: calc(100% - 120px);
    height: 1px;
    background: var(--text);
}
.bloc_blog .title_main{
    margin-bottom: 130px;
}
.bloc_blog .blog_list_pickup{
    justify-content: center;
    gap: 15px;
}
.bloc_blog .blog_list_pickup li{
    width: 348px;
    padding: 20px 24px 40px;
    background: #fff;
    border: 1px solid var(--text);
    border-radius: 20px;
}

@media screen and (max-width:767px){
    
    .bloc_blog{
        padding: 80px 0;
    }


}

/*---------------------------------

  bloc_news

---------------------------------*/

.bloc_news{
    position: relative;
    padding: 160px 0;
}

.bloc_news .inner{
    max-width: 1380px;
}
.bloc_news .title_main{
    width: 330px;
}
.bloc_news .news_list{
    width: calc(100% - 330px);
    padding: 10px 60px;
    background: #fff;
    border-radius: 30px;
}
.bloc_news .news_list li + li{
    border-top: 1px solid #C0C0C0; 
}
.bloc_news .news_list li a{
    align-items: center;
    gap: 50px;
    padding: 25px 0;
}
.bloc_news .news_list li a .pic{
    width: 248px;
    height: 140px;
    border-radius: 30px;
    overflow: hidden;
}
.bloc_news .news_list li a .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.bloc_news .news_list li a .pic:hover img{
    transform: scale(1.1);
}
.bloc_news .news_list li a .data{
    width: calc(100% - 300px);
}
.bloc_news .news_list li a .data .date{
    margin-right: 20px;
    font-weight: 600;
}
.bloc_news .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;
}

.bloc_news .btn_more{
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width:767px){
    
    .bloc_news{
        padding: 80px 0;
    }
    .bloc_news .title_main{
        margin-bottom: 40px;
    }
    .bloc_news .news_list{
        width: 100%;
        padding: 10px 5%;
    }
    .bloc_news .news_list li a .data{
        width: 100%;
    }

    .bloc_news .btn_more{
        position: relative;
        bottom: -30px;
        left: 0;
    }
    
}

