/*---------------------------------

  共通

---------------------------------*/

.fix_bnr{
    position: fixed;
    right: 100px;
    bottom: 30px;
    z-index: 100;
}
.fix_bnr.hide{
    visibility: hidden;
}
.fix_bnr img{
    width: 280px;
}
.close_btn{
    content: '';
    position: absolute;
    top: -10px;
    right: -5px;
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/common/ico_x.png) no-repeat center;
    background-size: 16px;
    background-color: var(--btn);
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
}

@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

    .fix_bnr{
        position: fixed;
        right: 30px;
        bottom: 30px;
    }
    .fix_bnr img{
        width: 140px;
    }
    
}

/*---------------------------------

  KV

---------------------------------*/
.kv{
    position: relative;
    overflow: hidden;
    height: 850px;
}
.kv::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 110px;
    display: block;
    width: 314px;
    height: 314px;
    background: url(../img/common/parts_01.png) no-repeat;
    background-size: contain;
    z-index: 1;
}
.kv .catch{
    position: absolute;
    top: 180px;
    left: 7%;
    color: var(--main);
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    z-index: 2;
}
.kv .catch span{
    font-size: 75px;
}

.kv .kv_slide{
    position: absolute;
    right: 0;
    top: 0;
    height: 850px;
    width: 1044px;
    z-index: 1;
    text-align: right;
}
.kv .slide img{
    height: 850px;
    width: 100%;
    object-fit: contain;

}

.kv .kv_slide::before{
    content: 'SCROLL';
    position: absolute;
    bottom: 80px;
    right: 150px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.05em;
    transform: rotate(90deg);
    transform-origin: 0 100%;
    z-index: 1;
}
.kv .kv_slide::after{
    content: '';
    position: absolute;
    bottom: 0px;
    right: 200px;
    width : 1px;
    height : 80px;
    background: #7E7E7E;
    transform : translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.video{
    width: 100%;
    height: 100%;
    position: fixed;
}
.video::after{
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #32AE88;
    mix-blend-mode: overlay;
    z-index: 1;
}
.video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    
}

.kv .topic_box{
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    height: 112px;
    background: #fff;
    z-index: 2;
}
.kv .topic_box .title_underline{
    width: 66px;
    padding: 0 0 6px;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.kv .topic_box .txt{
    width: calc(100% - 96px);
}
.kv .topic_box .txt .date{
    display: inline-block;
    width: 80px;
    margin: 0 20px 0 0;
    color: #00803C;
    font-weight: 600;
    letter-spacing: .05em;
    vertical-align: 5px;
}
.kv .topic_box .txt a{
    position: relative;
    display: inline-block;
    width: calc(100% - 100px);
    padding: 0 70px 0 0;
    background: url(../img/common/arrow.png) no-repeat right 30px center;
    background-size: 10px;
    font-size: 16px;
    white-space: nowrap; /* 折り返し無しにする */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
.kv .topic_box .txt a::after{
}

@media screen and (max-width:1024px){
    
    .kv{
        height: 100vh;
        min-height: 600px;
    }
    .kv::before{
        bottom: 40%;
        width: 165px;
        height: 165px;
    }
    .kv .catch{
        top: 150px;
        left: 3%;
        line-height: 1.2;
        letter-spacing: 0;
    }
    .kv .catch span{
        font-size: clamp(2.313rem, 0.94rem + 5.86vw, 4.688rem) /* 375 1024 37px 75px*/;
    }
    .kv .kv_slide{
        position: absolute;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        z-index: 1;
        text-align: right;
    }
    .kv .slide img{
        height: 100vh;
        width: 100%;
        object-fit: cover;
        object-position: bottom left;
    }

    .kv .kv_slide::before{
        right: 0px;
        bottom: 180px;
    }
    .kv .kv_slide::after{
        right: 50px;
        bottom: 100px;
    }
    
    .kv .topic_box{
        display: block;
        height: auto;
        padding: 0;
        background: transparent;
    }
    .kv .topic_box .title_underline{
        width: 300px;
        padding: 20px;
        background: #fff;
    }
    .kv .topic_box .title_underline::after{
        left: 20px;
        bottom: 15px;
    }
    .kv .topic_box .txt{
        width: 100%;
        padding: 10px 20px;
        background: #fff;
    }
    .kv .topic_box .txt .date{
        display: block;
    }
    .kv .topic_box .txt a{
        position: relative;
        display: -webkit-box;
        width: 100%;
        padding: 0 40px 0 0;
        background: url(../img/common/arrow.png) no-repeat right 0px center;
        background-size: 10px;
        font-size: 14px;
        white-space: inherit;
        overflow: hidden; /* はみ出た部分を非表示 */
        text-overflow: ellipsis; /* 語尾を3点リーダーに */
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    
}

@media screen and (max-width:767px){
    


    
    
    
}

/*---------------------------------

  bloc_business

---------------------------------*/

.outer:has(.bloc_business){
    position: relative;
    padding: 60px 0 0;
    background: #fff;
    z-index: 1;
}
.bloc_business{
    position: relative;
    padding: 170px 0 400px;
    background: linear-gradient(180deg, rgba(234, 242, 240, 0) 0%, #EBFFFA 100%);
}
.bloc_business::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 0;
    height: 0;
    border-top: 338px solid #EEFBF8;
    border-left: 338px solid transparent;
    border-right: 338px solid #EEFBF8;
    border-bottom: 338px solid transparent;
}
.bloc_business::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 0;
    border-top: 338px solid transparent;
    border-left: 338px solid #DBF2EC;
    border-right: 338px solid transparent;
    border-bottom: 338px solid #DBF2EC;
}
.bloc_business .inner{
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.bloc_business .data{
    width: 50%;
}
.bloc_business .pic{
    position: relative;
    top: 85px;
    right: -70px;
    z-index: 0;
}
.bloc_business .pic img{
    width: 420px;
    height: 560px;
    object-fit: cover;
}
.bloc_business .pic::before{
    content: '';
    position: absolute;
    top: -118px;
    left: -153px;
    display: block;
    width: 304px;
    height: 203px;
    background: url(../img/home/business_img_02.png) no-repeat;
    background-size: cover;
    z-index: 1;
}
.bloc_business .pic::after{
    content: '';
    position: absolute;
    bottom: -220px;
    left: -290px;
    display: block;
    width: 426px;
    height: 284px;
    background: url(../img/home/business_img_03.png) no-repeat;
    background-size: cover;
    z-index: -1;
}
.bloc_business .title_underline{
    margin: 0 0 54px;
    font-size: 20px;
}
.bloc_business .title_underline .en{
    display: block;
    margin: 10px 0 0;
    font-size: 96px;
}
.bloc_business .ttl{
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
}
.bloc_business .txt{
    line-height: 2;
}
.bloc_business .button{
    margin: 72px 0 0;
}

@media screen and (max-width:1024px){
    
    .bloc_business .pic img{
        width: 300px;
        height: 560px;
        object-fit: cover;
    }
    .bloc_business .pic::before{
        top: -70px;
        left: -90px;
        width: 260px;
        height: 170px;
    }
    .bloc_business .pic::after{
        bottom: -40px;
        left: -100px;
        width: 240px;
        height: 150px;
    }
    .bloc_business .title_underline{
        font-size: 18px;
    }
    .bloc_business .title_underline .en{
        font-size: 72px;
    }
    
}

@media screen and (max-width:767px){
    
    .outer:has(.bloc_business){
        top: -100px;
    }
    .bloc_business{
        top: 60px;
        padding: 90px 0 200px;
    }
    .bloc_business::after{
        border-top: 150px solid transparent;
        border-left: 150px solid #DBF2EC;
        border-right: 150px solid transparent;
        border-bottom: 150px solid #DBF2EC;
    }
    .bloc_business .data{
        width: 100%;
    }
    .bloc_business .pic{
        top: 90px;
        right: -15%;
        width: 85%;
    }
    .bloc_business .pic img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .bloc_business .pic::before{
        top: -50px;
        left: -15%;
        width: 200px;
        height: 150px;
    }
    .bloc_business .pic::after{
        display: none;
    }
    .bloc_business .title_underline{
        margin: 0 0 40px;
        font-size: 16px;
    }
    .bloc_business .title_underline .en{
        font-size: 60px;
    }
    
    .bloc_business .ttl{
        margin: 0 0 32px;
        font-size: 28px;
    }
    .bloc_business .button{
        margin: 40px auto 0;
    }
    
}


/*---------------------------------

  bloc_services

---------------------------------*/

.bloc_services{
    position: relative;
    padding: 130px 0 180px;
    margin: 0 0 440px;
    background: #393939;
}
.bloc_services::before{
    content: '';
    position: absolute;
    top: -400px;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    border-top: 300px solid transparent;
    border-right: 300px solid rgba(214,214,214,.6);
    border-left: 300px solid transparent;
    border-bottom: 300px solid transparent;
    z-index: 1;
}
.bloc_services .inner{
    position: relative;
}

.bloc_services .title_underline{
    margin: 0 0 28px;
    padding: 0 0 32px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.bloc_services .title_underline .en{
    display: block;
    margin: 15px 0 0;
    font-size: 96px;
}
.bloc_services .intro{
    color: #fff;
    line-height: 2;
}

.bloc_services .button{
    position: absolute;
    bottom: 0;
    right: 0;
}

.bloc_services .box_scroll{
    padding: 110px 0 0;
/*    overflow: hidden;*/
}
/*
.bloc_services .box_scroll .flex{
    gap: 40px;
    position: relative;
    left: calc(50% - 536px);
    counter-reset: number 0;
}
*/
.bloc_services .box{
    margin: 0 20px;
}
.bloc_services .box a{
    position: relative;
    display: block;
    width: 516px;
    padding: 32px;
    background: #fff;
}
.bloc_services .box .ttl{
    position: relative;
    padding: 12px 0 12px 20px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    z-index: 1;
}
.bloc_services .box .ttl::before{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
}
.bloc_services .box .ttl::after{
    position: absolute;
    top: -30px;
    left: 0;
    color: #F7F7F7;
    font-size: 80px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    z-index: -1;
}

.bloc_services .service01 .ttl::after{
    content: '01'; 
}
.bloc_services .service02 .ttl::after{
    content: '02'; 
}
.bloc_services .service03 .ttl::after{
    content: '03'; 
}
.bloc_services .service04 .ttl::after{
    content: '04'; 
}
.bloc_services .service05 .ttl::after{
    content: '05'; 
}

.bloc_services .box_scroll .slide-dots {
    position: absolute;
    bottom: -60px;
    left: calc(50% - 536px);
    display: flex;
    align-items: center;
    gap: 8px;
}
.bloc_services .box_scroll .slide-dots li{
    display: block;
    width: 60px;
    height: 5px;
    margin: 0;
    background: #888888;
    cursor: pointer;
}
.bloc_services .box_scroll .slide-dots li.slick-active{
    background: var(--main);
}
.bloc_services .box_scroll .slide-dots li button{
    text-indent: -9999px;
}

.bloc_services .box .txt{
    line-height: 1.8;
}
.bloc_services .box .pic{
    margin: 30px 0 0;
}

.bloc_services .box a .view{
    position: absolute;
    top: 44px;
    right: 32px;
}
.bloc_services .box a:hover .view{
    background: var(--main);
    border-color: var(--main);
}

@media screen and (max-width:1200px){
    
    .bloc_services .box_scroll .slide-dots {
        left: 5%;
    }

}

@media screen and (max-width:1024px){

    .bloc_services .title_underline{
        font-size: 18px;
    }
    .bloc_services .title_underline .en{
        font-size: 72px;
    }

}

@media screen and (max-width:767px){
    
    .bloc_services{
        padding: 90px 0 90px;
        margin: 0 0 200px;
    }
    .bloc_services::before{
        top: -200px;
        border-top: 150px solid transparent;
        border-right: 150px solid rgba(214,214,214,.6);
        border-left: 150px solid transparent;
        border-bottom: 150px solid transparent;
    }
    .bloc_services .title_underline{
        margin: 0 0 28px;
        padding: 0 0 28px;
        font-size: 16px;
    }
    .bloc_services .title_underline .en{
        display: block;
        margin: 12px 0 0;
        font-size: 60px;
    }
    .bloc_services .button{
        position: inherit;
        margin: 40px auto 0;
    }
    
    .bloc_services .box_scroll{
        padding: 80px 0 0;
    }
    .bloc_services .box_scroll .flex{
        gap: 15px;
        left: 5vw;
    }
    .bloc_services .box a{
        width: 330px;
        padding: 20px;
    }
    .bloc_services .box .ttl{
        font-size: 21px;
        line-height: 1.6;
    }
    .bloc_services .box a .view{
        position: absolute;
        top: inherit;
        bottom: 32px;
        right: 32px;
    }

    
}

/*---------------------------------

  bloc_case

---------------------------------*/

.bloc_case{
    position: relative;
    padding: 60px 0 375px;
    background: #fff;
}
.bloc_case::before{
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    display: block;
    height: 100px;
    background: #fff;
    border-radius: 50px 50px 0 0;
}
.bloc_case .inner{
    position: relative;
    z-index: 1;
}
.bloc_case .title_underline{
    margin: 0 0 54px;
    font-size: 20px;
}
.bloc_case .title_underline .en{
    display: block;
    margin: 10px 0 0;
    font-size: 96px;
}

.bloc_case .flex{
    gap: 40px;
}

.bloc_case .flex .box{
    width: calc(50% - 20px);
    padding: 48px 32px;
    background: #fff;
    border: 1px solid #E8E8E8;
    transition: .3s;
}
.bloc_case .flex .box a{
    display: block;
    height: 100%;
}
.bloc_case .flex .box:has(a:hover){
    background: rgba(238, 252, 249, .8);
}
.bloc_case .flex .box .ttl{
    margin: 0 0 32px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}
.bloc_case .flex .box .ttl .category{
    position: relative;
    display: block;
    margin: 0 0 16px;
    padding: 0 0 0 16px;
    color: var(--main);
    font-size: 16px;
    line-height: 1.6;
}
.bloc_case .flex .box .ttl .category::before{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
    
}
.bloc_case .flex .box dt{
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}
.bloc_case .flex .box dd{
    color: #929292;
    line-height: 1.8;
}

.bloc_case .flex .box .list{
    gap: 10px;
    margin: 20px 0 0;
    color: var(--main);
}
.bloc_case .flex .box .list li{
    padding: 1px 5px;
    border: 1px solid var(--main);
    border-radius: 5px;
}


.bloc_case .flex .box a .view{
    margin: 30px 0 0;
}
.bloc_case .flex .box a:hover .view{
    background: var(--main);
    border-color: var(--main);
}

.bloc_case .button{
    position: absolute;
    top: 55px;
    right: 0;
}

@media screen and (max-width:1024px){

    .bloc_case .title_underline{
        font-size: 18px;
    }
    .bloc_case .title_underline .en{
        font-size: 72px;
    }
    .bloc_case .button{
        top: 40px;
    }

}

@media screen and (max-width:767px){
    
    .bloc_case{
        padding: 60px 0 140px;
    }
    .bloc_case::before{
        top: -50px;
        height: 50px;
        border-radius: 30px 30px 0 0;
    }
    .bloc_case .title_underline{
        margin: 0 0 40px;
        font-size: 16px;
    }
    .bloc_case .title_underline .en{
        font-size: 60px;
    }
    .bloc_case .flex .box{
        width: 100%;
        padding: 6vw;
    }
    
    .bloc_case .flex .box dt{
        font-size: 16px;
    }
    
    .bloc_case .button{
        position: inherit;
        margin: 40px auto 0;
    }

}

/*---------------------------------

  bloc_recruit

---------------------------------*/

.bloc_recruit{
    position: relative;
    padding: 195px 0 235px;
    background: linear-gradient(180deg, #F2F0EA 30%, #C9E6DF 100%);
    z-index: 0;
}
.bloc_recruit::before{
    content: '';
    position: absolute;
    top: -590px;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    border-top: 350px solid transparent;
    border-left: 350px solid rgba(42, 167, 129, .2);
    border-right: 350px solid transparent;
    border-bottom: 350px solid transparent;
}
.bloc_recruit::after{
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    display: block;
    width: 680px;
    height: 715px;
    background: url(../img/home/recruit_img_01.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.bloc_recruit .title_underline{
    margin: 0 0 28px;
    padding: 0 0 32px;
    font-size: 20px;
    font-weight: 500;
}
.bloc_recruit .title_underline .en{
    display: block;
    margin: 21px 0 0;
    font-size: 96px;
}

.bloc_recruit .button{
    margin: 80px 0 0;
}

@media screen and (max-width:1024px){

    .bloc_recruit .title_underline{
        font-size: 18px;
    }
    .bloc_recruit .title_underline .en{
        font-size: 72px;
    }

}

@media screen and (max-width:767px){
    
    .bloc_recruit{
        padding: 90px 0 120px;
    }
    .bloc_recruit::before{
        content: '';
        position: absolute;
        top: -190px;
        left: 0;
        display: block;
        width: 0;
        height: 0;
        border-top: 150px solid transparent;
        border-left: 150px solid rgba(42, 167, 129, .2);
        border-right: 150px solid transparent;
        border-bottom: 150px solid transparent;
    }
    .bloc_recruit::after{
        position: relative;
        top: inherit;
        right: 0;
        width: 100%;
        height: 300px;
        margin: 40px 0 0;
        background: url(../img/home/recruit_img_01.png) no-repeat center;
        background-size: contain;
    }
    .bloc_recruit .title_underline{
        margin: 0 0 28px;
        padding: 0 0 28px;
        font-size: 16px;
    }
    .bloc_recruit .title_underline .en{
        display: block;
        margin: 12px 0 0;
        font-size: 60px;
    }
    .bloc_recruit .button{
        margin: 40px auto 0;
    }
    
}


/*---------------------------------

  bloc_news

---------------------------------*/

.bloc_news{
    position: relative;
    padding: 60px 0 90px;
    background: #F8F8F8;
    
}
.bloc_news::before{
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    display: block;
    height: 50px;
    background: #F8F8F8;
    border-radius: 50px 50px 0 0;
}
.bloc_news .inner{
    position: relative;
}
.bloc_news .title_underline{
    margin: 0 0 54px;
    font-size: 20px;
}
.bloc_news .title_underline .en{
    display: block;
    margin: 10px 0 0;
    font-size: 96px;
}

.bloc_news .news_list li{
    align-items: center;
    width: 100%;
    min-height: 104px;
    padding: 37px 32px 32px;
    background: #fff;
    font-weight: 700;
    line-height: 2;
    transition: .3s;
}
.bloc_news .news_list li:has(a:hover){
    background: rgba(238, 252, 249, .8);
}
.bloc_news .news_list li .date{
    display: inline-block;
    width: 80px;
    text-decoration: none;
}
.bloc_news .news_list li .category{
    display: inline-block;
    width: 120px;
    height: 25px;
    margin: 0 20px;
    background: var(--main);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    text-align: center;
}
.bloc_news .news_list li a{
    width: calc(100% - 240px);
    padding: 0 50px 0 0;
    text-decoration: underline;
}
.bloc_news .news_list li + li{
    margin: 8px 0 0;
}
.bloc_news .news_list li .arrow_r_g::before{
    top: calc(50% - 20px);
    right: 0;
}

.bloc_news .button{
    position: absolute;
    top: 70px;
    right: 0;
}

@media screen and (max-width:1024px){

    .bloc_news .title_underline{
        font-size: 18px;
    }
    .bloc_news .title_underline .en{
        font-size: 72px;
    }
    .bloc_news .button{
        top: 45px;
    }

}

@media screen and (max-width:767px){
    
    .bloc_news{
        padding: 40px 0 80px;
    }
    .bloc_news::before{
        top: -30px;
        height: 30px;
        border-radius: 30px 30px 0 0;
    }
    .bloc_news .title_underline{
        margin: 0 0 40px;
        font-size: 16px;
    }
    .bloc_news .title_underline .en{
        font-size: 60px;
    }
    .bloc_news .news_list li{
        gap: 20px;
        padding: 6vw;
    }
    .bloc_news .news_list li a{
        width: 100%;
        padding: 0 50px 0 0;
        text-decoration: underline;
    }
    
    .bloc_news .button{
        position: inherit;
        margin: auto;
    }
    
}

/*----------------------

  コード例

.feature > .sec::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 430px;
    height: 450px;
    background: url(../img/common/feature_bg_img_03.svg) no-repeat;
    mix-blend-mode: multiply;
}

.feature > .sec ol li:nth-child(1){
    position: relative;
    left: 77px;
    width: 817px;
    height: 183px;
    padding: 60px 180px 0 155px;
    margin: 0 0 30px;
    background: url(../img/top/icon_01.png) no-repeat right 60px center , url(../img/top/feature01_box.svg) no-repeat;
    background-size: 92px , contain; 
}
---------------------------------*/