  /* main & message */

#topcontents{
    position: relative;
    z-index: 10;
    background-color: #FFF;
}

#message{
    position: relative; /*  */
    padding-bottom: 100px;
    z-index: 11;
}

@media screen and (min-width: 768px) {

    main {
        position: fixed;
        width: 100vw;
        height: 100vh;
        min-height: 600px;
        z-index: 1;
    }

    main div{
        position: relative;
        width: 100vw;
        height: 100%;
        z-index: 10;
    }

    main div::before{
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .3);
        z-index: 20;
    }

    main div ul{
        position: absolute;
        width: 100vw;
        height: 100%;
        top: 0;
        left: 0;
    }

    main div ul li{
        width: 50%;
        height: 100%;
       
    }

    main div ul li figure{
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center ;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    main div ul:nth-of-type(1){
        z-index: 10;
    }

    main div ul:nth-of-type(2){
        z-index: 9;
    }

    main div ul:nth-of-type(3){
        z-index: 8;
    }

    main div ul:nth-of-type(4){
        z-index: 7;
    }

    main div ul li:nth-child(1){
        width: 50%;
        height: 100%;
    }

    main div ul#mp_1 li:nth-child(1) figure{
        background-image: url(/recruit/img/main_1_l.webp);
    }

    main div ul#mp_1 li:nth-child(2) figure{
        background-image: url(/recruit/img/main_1_r.webp);
    }

    main div ul#mp_2 li:nth-child(1) figure{
        background-image: url(/recruit/img/main_2_l.webp);
    }

    main div ul#mp_2 li:nth-child(2) figure{
        background-image: url(/recruit/img/main_2_r.webp);
    }

    main div ul#mp_3 li:nth-child(1) figure{
        background-image: url(/recruit/img/main_3_l.webp);
    }

    main div ul#mp_3 li:nth-child(2) figure{
        background-image: url(/recruit/img/main_3_r.webp);
    }

    main div ul#mp_4 li:nth-child(1) figure{
        background-image: url(/recruit/img/main_4_l.webp);
    }

    main div ul#mp_4 li:nth-child(2) figure{
        background-image: url(/recruit/img/main_4_r.webp);
    }



    main div ul.active li:nth-child(1){
        animation: main_l_anime .6s forwards cubic-bezier(.2,.44,.35,1) 0s;
    }

    main div ul.active li:nth-child(2){
        animation: main_r_anime .6s forwards cubic-bezier(.2,.44,.35,1) 0s;
    }



    @keyframes main_l_anime{
        0% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }
        100% {
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }
    }

    @keyframes main_r_anime{
        0% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }
        100% {
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        }
    }

    main div ul.on li figure{
        animation: scale_big 4s forwards cubic-bezier(.2,.44,.35,1) .3s;
    }

    main aside{
        transition: all 1s 0s ease;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 30;
        left: 0;
        top: 0;
        opacity: 0;
        background: linear-gradient( 90deg, rgb(53, 181, 151) 0%, rgb(0, 160, 233) 100% );
    }

    main.mainbg aside{
        opacity: .95;
    }


    

    

    #message h1{
        display: block;
        line-height: 1;
        color: #FFF;
        font-size: 6.2vw;
        position: sticky;
        top:0;
        width: 49%;
        height: 100vh;
    }

    #message h1 div{
        position: absolute;
        bottom: 10vh;
        left: 5%;
    }


    #message h1 i strong{
        letter-spacing: -.5vw;
    }

    #message h1 i:nth-of-type(2) strong{
        letter-spacing: 0vw;
    }

    #message h1 i:nth-of-type(4) strong,
    #message h1 i:nth-of-type(5) strong{
        letter-spacing: -.1vw;
    }

    #message p{
        padding: calc(100vh + 250px) 0px 9vh;;
        width: 51%;
        color: #FFF;
        font-size: 20px;
    }

    #message p span{
        display: inline-block;
    }
}






@media screen and (max-width: 1200px) {

    #message h1{
        font-size: 5.7vw;
        width: 47%;
    } 

    #message p{
        width: 53%;
        font-size: 18px;
    }
}




@media screen and (max-width: 767px) {

    main {
        position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: 1;
    }

    main div{
        position: relative;
        width: 100vw;
        height: 100%;
        z-index: 10;
    }

    main div::before{
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .3);
        z-index: 20;
    }

    main div ul{
        position: relative;
        display: block;
        height: 100%;
    }

    main div ul li{
        position: absolute;
        display: flex;
        width: 100vw;
        height: 100%;
        top: 0;
        left: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    main div ul li figure{
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center ;
        
    }

    main div ul li:nth-child(1){
        z-index: 10;
    }

    main div ul li:nth-child(2){
        z-index: 9;
    }

    main div ul li:nth-child(3){
        z-index: 8;
    }

    main div ul li:nth-child(4){
        z-index: 7;
    }

    main div ul li#ms_1 figure{
        background-image: url(/recruit/img/mainsp_1.webp);
    }

    main div ul li#ms_2 figure{
        background-image: url(/recruit/img/mainsp_2.webp);
    }

    main div ul li#ms_3 figure{
        background-image: url(/recruit/img/mainsp_3.webp);
        background-position: center bottom ;
    }

    main div ul li#ms_4 figure{
        background-image: url(/recruit/img/mainsp_4.webp);
    }

    main div ul li#ms_5 figure{
        background-image: url(/recruit/img/mainsp_5.webp);
    }

    main div ul li#ms_6 figure{
        background-image: url(/recruit/img/mainsp_6.webp);
    }

    main div ul li#ms_7 figure{
        background-image: url(/recruit/img/mainsp_7.webp);
    }

    main div ul li#ms_8 figure{
        background-image: url(/recruit/img/mainsp_8.webp);
    }

    main div ul li.active{
        animation: main_sp_anime .6s forwards cubic-bezier(.2,.44,.35,1) 0s;
    }

    @keyframes main_sp_anime{
        0% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }
        100% {
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }
    }


    main aside{
        transition: all 1s 0s ease;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 30;
        left: 0;
        top: 0;
        opacity: 0;
        background: linear-gradient( 90deg, rgb(53, 181, 151) 0%, rgb(0, 160, 233) 100% );
    }

    main.mainbg aside{
        opacity: .95;
    }



    #message h1{
        display: block;
        line-height: 1.2;
        color: #FFF;
        font-size: 11vw;
        position: relative;
        top:0;
        width: 100%;
        height: 100dvh;
    }

    #message h1 div{
        position: absolute;
        bottom: 100px;
        left: 5%;
    }


    #message h1 i strong{
        letter-spacing: -.5vw;
    }

    #message h1 i:nth-of-type(2) strong{
        letter-spacing: 0vw;
    }

    #message h1 i:nth-of-type(4) strong{
        letter-spacing: -.9vw;
    }
    #message h1 i:nth-of-type(5) strong{
        letter-spacing: -1vw;
    }

    #message p{
        width: 100%;
        padding: 0px 5% 100px;
        color: #FFF;
        font-size: 20px;
    }

    #message p span{
        display: inline-block;
    }
}


@media screen and (max-width: 480px) {

    #message p{
        font-size: 4.2vw;
    }

}


#message h1 i{
    display: inline-block;
    opacity: 0;
    transform: scale(1.4);
}

.astart #message h1 span:nth-of-type(1) i:nth-child(1){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1s ,alpha_100 .5s forwards linear 1s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(2){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.15s ,alpha_100 .5s forwards linear 1.15s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(3){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.3s ,alpha_100 .5s forwards linear 1.3s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(4){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.45s ,alpha_100 .5s forwards linear 1.45s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(5){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.6s ,alpha_100 .5s forwards linear 1.6s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(6){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.75s ,alpha_100 .5s forwards linear 1.75s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(7){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.9s ,alpha_100 .5s forwards linear 1.9s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(8){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.05s ,alpha_100 .5s forwards linear 2.05s;
}

.astart #message h1 span:nth-of-type(1) i:nth-child(9){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.2s ,alpha_100 .5s forwards linear 2.2s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(1){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 1.9s ,alpha_100 .5s forwards linear 1.9s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(2){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.05s ,alpha_100 .5s forwards linear 2.05s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(3){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.2s ,alpha_100 .5s forwards linear 2.2s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(4){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.35s ,alpha_100 .5s forwards linear 2.35s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(5){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.5s ,alpha_100 .5s forwards linear 2.45s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(6){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.2s ,alpha_100 .5s forwards linear 2.5s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(7){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.35s ,alpha_100 .5s forwards linear 2.55s;
}

.astart #message h1 span:nth-of-type(2) i:nth-child(8){
    animation: start_moji .8s forwards cubic-bezier(.2,.44,.35,1) 2.5s ,alpha_100 .5s forwards linear 2.6s;
}



@keyframes start_moji {
	0% {
		transform: scale(1.4);
	}
	100% {
		transform: scale(1);
	}
}



/* main & message */



/* news */



#news{
    background-color: #FFF;
    line-height: 1;
    padding: 35px 0px;
}

#news strong{
    width: 160px;
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
}

#news ul{
    width: calc(100% - 160px) ;
    padding-top: 5px;
    font-size: 16px;
}

#news ul li{
    border-bottom: #000 solid 1px;
    padding-bottom: 5px;
}

#news ul li:nth-child(n+2){
    padding-top: 15px;
}

#news ul li div{
    width: 120px;
    font-weight: 400;
    line-height: 1.4;
}

#news ul li p{
    width: calc(100% - 120px) ;
    line-height: 1.4;
}

#news ul li p a{
    transition: all 500ms 0s ease;
    display: inline;
    color: #23afb7;
}

.pc #news ul li p a:hover{
    background-color: #23afb7;
    color: #FFF;
}


@media screen and (max-width: 1000px) {

    #news{
        padding: 25px 0px 35px;
    }

    #news strong{
        width: 120px;
        font-size: 32px;
    }
    
    #news ul{
        width: calc(100% - 120px) ;
        padding-top: 3px;
        font-size: 14px;
    }

    #news ul li div{
        width: 100px;
        font-weight: 300;
       
       
    }
    
    #news ul li p{
        width: calc(100% - 100px) ;
       
    }

}


@media screen and (max-width: 767px) {

    #news article.flex{
        display: block;
    }

    #news strong{
        font-size: 28px;
    }

    #news ul{
        width: 100%;
        padding-top: 3px;
    }

    #news ul li{
        padding-top: 15px;
        padding-bottom: 7px;
    }


}


/* news */




/* common */

.contentbox{
    padding: 140px 0px 140px;
}

.ctitle{
    display: inline-block;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 40px;
}

.ctitle span{
    display: inline-block;
    line-height: 1;
}

.stitle{
    font-size: 36px;
    font-weight: 300;
}

.ptxt{
    line-height: 1.8;
    font-size: 16px;
    padding-bottom: 25px;
}

.controller{
    width: 115px;
}

.controller li{
    transition: all 500ms 0s ease;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}

.controller li::before,
.controller li::after{
    content: "";
    position: absolute;
    display: block;
    width: 6px;
    height: 1px;
    background-color: #000;
     transform-origin: center center;
     cursor: pointer;
}

.controller li.btsc_perv::before{
    top: calc(50% - 2px) ;
    left: 40%;
    transform: rotate(135deg);
}

.controller li.btsc_perv::after{
    bottom: calc(50% - 2px) ;
    left: 40%;
    transform: rotate(-135deg);
}

.controller li.btsc_next::before{
    top: calc(50% - 2px) ;
    right: 45%;
    transform: rotate(45deg);
}

.controller li.btsc_next::after{
    bottom: calc(50% - 2px) ;
    right: 45%;
    transform: rotate(-45deg);
}

.pc .controller li:hover{
    opacity: .7;
}

.linkbox figure{
    border-radius: 10px;
    overflow: hidden;
    background-color: #FFF;
}

.linkbox figcaption{
    font-size: 18px;
    line-height: 1;
    padding-top: 18px;
    letter-spacing: -.5px;
}

.linkbox figcaption strong{
    display: block;
    font-size: 16px;
    padding-bottom: 8px;
}

.linkbox figcaption small{
    display: block;
    font-size: 14px;
    padding-top: 3px;
}

.linkbox a svg{
    width: 24px;
    padding-right: 6px;
    transform: translateY(2px);
}

.bttindex a{
    transition: all 500ms 0s ease;
    position: relative;
    width: 150px;
    height: 34px;
    border-radius: 17px;
    background-color: #FFF;
    color: #23afb7;
    font-size: 18px;
    line-height: 1;
    padding: 7px 0px 0px 30px;
}

.bttindex:not(.bttwindow) a::before,
.bttindex:not(.bttwindow) a::after{
    content: "";
    position: absolute;
    display: block;
    width: 6px;
    height: 1px;
    background-color: #23afb7;
    transform-origin: center center;
    cursor: pointer;
}

.bttindex a::before{
    top: calc(50% - 2px) ;
    left: 15px;
    transform: rotate(45deg);
}

.bttindex a::after{
    bottom: calc(50% - 2px) ;
    left: 15px;
    transform: rotate(-45deg);
}

.pc .bttindex a:hover{
    opacity: .7;
}



.bttindex.bttwindow a svg{
    position: absolute;
    width: 14px;
    fill: #FFF;
    left: 11px;
    top: 11px;
}


@media screen and (max-width: 767px) {

    .contentbox{
        padding: 15vw 0px 15vw;
    }

    .ctitle{
        font-size: 38px;
        padding-bottom: 30px;
    }

    .stitle{
        font-size: 33px;
        font-weight: 300;
    }
    
    .ptxt{
        line-height: 1.8;
        font-size: 14px;
        padding-bottom: 20px;
    }

}


@media screen and (max-width: 480px) {
    

    .contentbox{
        padding: 20vw 0px 20vw;
    }

    .ctitle{
        font-size: 32px;
    }

    .stitle{
        font-size: 28px;
        font-weight: 300;
    }

    .linkbox figcaption{
        font-size: 16px;
        padding-top: 15px;
    }

    .linkbox figcaption strong{
        display: block;
        font-size: 14px;
    }
    
    .linkbox figcaption small{
        display: block;
        font-size: 13px;
    }

}

@media screen and (max-width: 360px) {

    .ctitle{
        font-size: 8.8vw;
        padding-bottom: 15px;
    }

    .stitle{
        font-size: 7.5vw;
        font-weight: 300;
    }

    .ptxt{
        line-height: 1.8;
        font-size: 13px;
        padding-bottom: 20px;
    }

}



/* common */




/* company */


#company{
    background-color: #f5f5f5;
}

#company article{
    position: relative;
    min-height: 490px;
}

#company .titlebox{
    width: 410px;
    padding-top: 50px;
}

#company .titlebox .pbox{
    display: inline-block;
}

#company .linkbox{
    position: absolute;
    width: calc(50% + 130px) ;
    height: 490px;
    left: calc(50% - 130px) ;
    top: 0;
    overflow: hidden;
}

#company .controller{
    margin: 0 0 0 auto;
}

#company #slick_company a{
    margin-right: 40px;
}

#company #slick_company figure{
    width: 280px;
}

#company #slick_company figure img{
    max-width: 100%;
    height: auto;
}

#company .controller li{
    background-color: #23afb7;
}

#company .controller li::before,
#company .controller li::after{
    background-color: #FFF;
}


@media screen and (max-width: 1260px) {

    #company .linkbox{
        position: absolute;
        width: calc(95% - 437px) ;
        height: 490px;
        left: auto;
        right: 0% ;
        top: 0;
    }

}

@media screen and (max-width: 767px) {

    

    #company article{
        position: relative;
        min-height: auto;
    }

    #company .titlebox{
        width: 100%;
        padding-top: 0px;
    }
    
    #company .linkbox{
        position: relative;
        width: 100%;
        height: 300px;
        left: 0px;
        top: 0;
        padding-top: 30px;
        overflow: hidden;
    }

    #company .controller{
        margin: 0 auto 0 0;
    }

    #company #slick_company a{
        margin-right: 0px;
        margin-left: 3vw;
    }

    #company .slick-track {
        left: 3vw !important;
        width: 100%;
        opacity: 1;
    }

}


@media screen and (max-width: 480px) {


    #company #slick_company a{
        margin-right: 3.5vw;
        margin-left: 3.5vw;
    }

    #company .slick-track {
        left: 3.5vw !important;
        width: 100%;
        opacity: 1;
    }

    #company .linkbox{
        height: 250px;
        padding-top: 25px;
    }

    #company #slick_company figure{
        width: 260px;
    }

    
}

/* company */



/* project */

@media screen and (min-width: 768px) {

    #project{
        padding-top: 90px;
        padding-bottom: 100px;
    }

}

#project{
    position: relative;
    overflow: hidden;
    background: linear-gradient( 90deg, rgb(53, 181, 151) 0%, rgb(0, 160, 233) 100% );
}

#project .loopbox {
    position: absolute;
    display: flex;
    width: 100vw;
    line-height: 1;
    opacity: .15;
    top: -50px;
    z-index: 1;
    
}

#project .loop {
    flex: 0 0 auto;
    font-size: 180px;
    font-weight: 800;
    white-space: nowrap;
    padding-right: 75px;
    padding-left: 75px;
    color: #fff;
}

#project .loop:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}

#project .loop:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

#project #slick_project{
    max-height: 600px;
    overflow: hidden;
}

#project #slick_project a{
    margin-right: 55px;
}

#project #slick_project figure{
    width: 1000px;
}

#project .slick-track {
    left: calc(calc(100vw - 1200px)/2) !important;
    width: 100%;
    opacity: 1;
}

@media screen and (max-width: 1334px) {

    #project .slick-track {
        left: 5vw !important;
        width: 100%;
        opacity: 1;
    }

}

@media screen and (max-width: 1110px) {

    #project #slick_project a{
        margin-right: 5vw;
        width: 90vw;
    }

    #project #slick_project figure{
       width: 100%;
    }

}

@media screen and (max-width: 767px) {
    
    #project{
        padding-top: 10vw;
        padding-bottom: 10vw;
    }

    #project .loopbox {
        top: -40px;
    }
    

    #project .loop {
        flex: 0 0 auto;
        font-size: 140px;
    }
    

}


#project article{
    position: relative;
    z-index: 10;
}

#project article .titlebox,
#project article .pbox{
    display: flex;
}



#project article .ctitle{
    color: #FFF;
}

#project .controller{
    margin: 0 20px;
}

#project .controller li::before,
#project .controller li::after{
    background-color: #23afb7;
}

#project .bttindex{
    padding-top: 8px;
}

#project .linkbox .tbox{
    line-height: 1;
    color: #FFF;
    padding-top: 25px;
}

#project .linkbox .tbox div{
    font-size: 18px;
}

#project .linkbox .tbox h2{
    padding: 15px 0px 20px;
}

#project .linkbox .tbox p{
    line-height: 1.4;
}

@media screen and (max-width: 767px) {

    #project .slick-track {
        left: 0vw !important;
        width: 100%;
        opacity: 1;
    }

    #project #slick_project a{
        margin-right: 0vw;
        width: 100vw;
    }

    #project article .titlebox{
        display: block;
    }

    #project article .pbox{
        padding-bottom: 30px;
    }

    #project .controller{
        margin: 0 15px 0px 0px;
    }

    #project #slick_project figure{
        border-radius: 0px;
    }

    #project .linkbox .tbox{
        padding: 20px 7% 0px;
    }

    #project .linkbox .tbox div{
        font-size: 16px;
    }
    
    #project .linkbox .tbox h2{
        padding: 10px 0px 10px;
        line-height: 1.2;
    }

}

/* project */








/* person */

#person{
    background-color: #FFF;
}


#person #photobox{
    position: relative;
    /* height: 670px; */
    z-index: 1;
}

#person #photobox::before{
    content: "";
    display: block;
    padding-top: 670px;

}

#person #photobox ul{
    position: absolute;
}

#person #photobox ul li{
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    border-radius: 10px;
}

#person #photobox ul:nth-of-type(1){
    width: 250px;
    top: 0;
    left: 800px;
}

#person #photobox ul:nth-of-type(1)::before{
    content: "";
    display: block;
    padding-top: 100%;
}

#person #photobox ul:nth-of-type(2){
    width: 760px;
    /* height: 560px; */
    top: 70px;
    left: 0;
}

#person #photobox ul:nth-of-type(2)::before{
    content: "";
    display: block;
    padding-top: 73.684211%;
}


#person #photobox ul:nth-of-type(3){
    width: 420px;
    /* height: 420px; */
    left: 800px;
    top: 290px;
}

#person #photobox ul:nth-of-type(3)::before{
    content: "";
    display: block;
    padding-top: 100%;
}



#person #photobox ul li:nth-child(1){
    z-index: 3;
}

#person #photobox ul li:nth-child(2){
    z-index: 2;
}

#person #photobox ul li:nth-child(3){
    z-index: 1;
}


#person #photobox ul li.active figure{
    animation: scaleup 6s forwards linear 0s, alpha_0 1s forwards linear 4s;
}



@keyframes scaleup {

    0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}

}


@media screen and (max-width: 1285px) {
    /* wrapper 1,157px */
    
    #person #photobox::before{
        content: "";
        display: block;
        padding-top: 57.908384%;
    }

    #person #photobox ul:nth-of-type(1){
        width: 21.607606%;
        left: 69.144339%;
    }

    #person #photobox ul:nth-of-type(2){
        width: 65.687122%;
        top: 10.447761%;
    }

    #person #photobox ul:nth-of-type(3){
        width: 36.300778%;
        left: 69.144339%;
        top: 43.283582%;
    }
    
}

@media screen and (max-width: 767px) {

    #photobox.wrapper{
        width: 100vw;
    }

    #person #photobox::before{
        content: "";
        display: block;
        padding-top: 62%;
    }

    #person #photobox ul:nth-of-type(1){
        width: 28vw;
        left: 65vw;
    }

    #person #photobox ul:nth-of-type(2){
        width: 62vw;
        top: 10vw;
    }

    #person #photobox ul:nth-of-type(3){
        width: 35vw;
        left: 65vw;
        top: 31vw;
    }

}




#person article{
    position: relative;
    min-height: 520px;
    z-index: 5;
}

#person .titlebox{
    width: 430px;
    padding-top: 70px;
    margin: 0 0 0 auto;
}

#person .titlebox .pbox{
    display: inline-block;
}

#person .linkbox{
    position: absolute;
    width: calc(50% + 110px) ;
    height: 520px;
    right: calc(50% - 110px) ;
    top: 0;
    overflow: hidden;
}

#person .controller{
    margin: 15px auto 0 0;
}

#person #slick_person a{
    margin-left: 40px;
}

#person #slick_person figure{
    width: 280px;
}

#person #slick_person figure img{
    max-width: 100%;
    height: auto;
}

#person #slick_person figcaption{
    float: none;
    text-align: left;
}


#person .controller li{
    background-color: #23afb7;
}

#person .controller li::before,
#person .controller li::after{
    background-color: #FFF;
}

#person .bttindex{
    padding-top: 8px;
}

#person .bttindex a{
    width: auto;
    background-color: #23afb7;
    color: #FFF;
}

#person .bttindex a::before,
#person .bttindex a::after{
    background-color: #FFF;
}



@media screen and (max-width: 1334px) {

    #person .linkbox{
        position: absolute;
        width: calc(95% - 490px) ;
        height: 520px;
        right: auto;
        left: 0% ;
        top: 0;
    }

}


@media screen and (max-width: 1000px) {

    #person .titlebox{
        width: 400px;
    }
    
    #person .linkbox{
        width: calc(50% + 130px) ;
        right: calc(50% - 130px) ;
    }

    #person .linkbox{
        width: calc(95% - 440px) ;
    }

}




@media screen and (max-width: 767px) {

    

    #person article{
        position: relative;
        min-height: auto;
    }

    #person .titlebox{
        width: 100%;
        padding-top: 0px;
    }
    
    #person .linkbox{
        position: relative;
        width: 100%;
        height: 300px;
        left: 0px;
        top: 0;
        padding-top: 30px;
        overflow: hidden;
    }
    

    #person #slick_person a{
        margin-right: 0px;
        margin-left: 3vw;
    }

    #person .slick-track {
        left: 3vw !important;
        width: 100%;
        opacity: 1;
    }

}


@media screen and (max-width: 480px) {


    #person #slick_person a{
        margin-right: 3.5vw;
        margin-left: 3.5vw;
    }

    #person .slick-track {
        left: 3.5vw !important;
        width: 100%;
        opacity: 1;
    }

    #person .linkbox{
        height: 300px;
        padding-top: 25px;
    }

    #person #slick_person figure{
        width: 260px;
    }

    
}









/* person */







/* workstyle */

@media screen and (min-width: 768px) {

    #workstyle{
        padding-bottom: 130px;
    }

}


#workstyle {
    background-color: #f5f5f5;
}


#workstyle #slick_workstyle .flex div{
    width: 350px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1260px) {
    #workstyle #slick_workstyle .flex div{
        width: 30.8%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1080px) {
    #workstyle #slick_workstyle .flex div{
        width: 47%;
        margin-bottom: 50px;
    }
}


@media screen and (max-width: 767px) {
    #workstyle #slick_workstyle .flex div{
        width: 48%;
        margin-bottom: 50px;
    }
}


@media screen and (max-width: 560px) {

    #workstyle .linkbox{
        position: relative;
       
        width: 100%;
        height: 300px;
        left: 0px;
        top: 0;
        padding-top: 30px;
        overflow: hidden;
    }

    #workstyle #slick_workstyle.flex{
        display: block;
    }

    #workstyle #slick_workstyle .flex div{
        width: auto;
        margin-bottom: 0px;
    }

    #workstyle #slick_workstyle a{
        margin-right: 0vw;
        margin-left: 3vw;
    }

    #workstyle .slick-track {
        left: 3.5vw !important;
        width: 100%;
        opacity: 1;
    }
    
    #workstyle #slick_workstyle .flex div figure{
        width: 280px;
    }
    
    #workstyle #slick_workstyle .flex div figure img{
        max-width: 100%;
        height: auto;
    }

    #workstyle .controller li{
        background-color: #23afb7;
    }
    
    #workstyle .controller li::before,
    #workstyle .controller li::after{
        background-color: #FFF;
    }

}

@media screen and (max-width: 480px) {


    #workstyle #slick_workstyle a{
        margin-right: 3.5vw;
        margin-left: 3.5vw;
    }

    #workstyle .slick-track {
        left: 3.5vw !important;
        width: 100%;
        opacity: 1;
    }

    #workstyle .linkbox{
        height: 250px;
        padding-top: 25px;
    }

    #workstyle #slick_workstyl figure{
        width: 260px;
    }

}

/* workstyle */







/* discussion */


@media screen and (min-width: 768px) {

    #discussion{
        padding-top: 100px;
    }

}


#discussion figure{
    overflow: hidden;
    border-radius: 20px;
}





/* discussion */



/* recruit */

#recruit{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    color: #FFF;
}

@media screen and (min-width: 768px) {
    #recruit{
        background-image: url(/recruit/img/recruitbg.webp);
        height: 640px;
    }
}

#recruit .ptxt{
    padding-bottom: 60px;
}

#recruit .linkbox::after{
    content: "";
    display: block;
    width: 31.8%;
}

#recruit .linkbox li{
    position: relative;
    width: 31.8%;
    margin-bottom: 16px;
}

#recruit .linkbox li a{
    transition: all 500ms 0s ease;
    display: block;
    border-radius: 5px;
    background-color: #23afb7;
    font-size: 18px;
    line-height: 1;
    padding: 18px 16px;
    
}

#recruit .linkbox li a span{
    transition: all 500ms 0s ease;
    color: #FFF;
}

#recruit .linkbox li a svg{
    transition: all 500ms 0s ease;
    position: relative;
    fill: #FFF;
}

#recruit .linkbox li a aside{
    display: inline-block;
}

.pc #recruit .linkbox li a:hover{
    background-color: #FFF;
}

.pc #recruit .linkbox li a:hover span{
    background: -webkit-linear-gradient( 90deg, rgb(53, 181, 151) 20%, rgb(0, 160, 233) 80% );
    background: linear-gradient( 90deg, rgb(53, 181, 151) 20%, rgb(0, 160, 233) 80% );
    
    -webkit-background-clip: text;
	background-clip: text;
    color: transparent;
}

.pc #recruit .linkbox li a:hover svg{
    fill: rgb(53, 181, 151);
}


@media screen and (max-width: 960px) {

    #recruit .linkbox li{
        position: relative;
        width: 48.8%;
        margin-bottom: 16px;
    }

}

@media screen and (max-width: 767px) {
    #recruit{
        background-image: url(/recruit/img/recruitbg_sp.webp);
        color: #FFF;
        height: auto;
    }

    #recruit .ptxt{
        padding-bottom: 40px;
    }

}

@media screen and (max-width:640px) {

    #recruit .linkbox li{
        position: relative;
        width: 100%;
        margin-bottom: 16px;
    }

}

@media screen and (max-width:480px) {

    #recruit .linkbox li a{
        font-size: 16px;
    }
}

/* recruit */




