@charset "UTF-8";
/* CSS Document */
/*-------------------------------*/

/* RECRUIT */

/*------------------------------*/
/*------------------------------*/
/* 募集リード */
/*------------------------------*/
#recruit-lead .txt{
	font-size: var(--txt-reg);
	line-height: var(--lh-md);
	text-align: center;
}
#recruit-lead .txt span{
    display: block;
    margin-top: 1em;
}
/*------------------------------*/
/* PERSONA */
/*------------------------------*/
#recruit-persona.content__wrapper{
    margin-top: calc(80rem/16);
    width: 100%;
}
.recruit-persona__inner{
    margin-top: calc(80rem/16);
    width: 100%;

    display: flex;
    align-items: center;
}
/* 画像 */
.recruit-persona__photo-wrapper{
    width: calc(100% - calc(40vw + min(7vw, calc(120rem/16))));
    height: calc(640rem/16);
    min-height: calc(480rem/16);
    flex-grow: 1;
}
.recruit-persona__photo-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* テキスト */
.recruit-persona__txt-wrapper{
    width: 40vw;
    padding: 0 min(7vw, calc(120rem/16));
}
/* テーブル */
.recruit-persona__txt-wrapper > table{
    width: 100%;
}
.recruit-persona__txt-wrapper > table tr{
    display: flex;
}
.recruit-persona__txt-wrapper > table tr + tr{
    border-top: solid 1px var(--c-gray-light);
    margin-top: 1em;
    padding-top: 1em;
}
.recruit-persona__txt-wrapper > table tr th{
    display: inline-block;
    width: 30%;
    background-color: var(--c-main-dull);
    color: var(--c-white);
    padding: 0.5em 0;
    margin: auto 0;

    text-align: center;
    font-weight: 400;
}
.recruit-persona__txt-wrapper > table tr td{
    display: inline-block;
    width: 70%;
    text-align: left;

    margin: auto 0;
    padding-left: 1em;
}
.recruit-persona__txt-wrapper > table tr td .spam-txt{
    font-size: var(--txt-sm);
}
/* 人物像リスト */
.recruit-persona__list{
    margin-top: calc(40rem/16);

    width: 100%;
}
.recruit-persona__list li{
    width: 100%;
    padding-left: calc(0.7em + 5px);

    position: relative;
}
.recruit-persona__list li + li{
    margin-top: 2em;
    width: 100%;
}
.recruit-persona__list li h3{
    font-weight: 700;
    color: var(--c-main-dull);
}
.recruit-persona__list li .txt{
    margin-top: 0.5em;
}
.recruit-persona__list li span{
    position: absolute;
    top: 0;
    left: 0;

    display: block;
    content: "";
    height: 100%;
    width: 5px;
    background-color: var(--c-main-dull);
}
/*------------------------------*/
/* DOWNLOAD */
/*------------------------------*/


/*-------------------------------*/

/* Tablet 959px */

/*------------------------------*/
@media(max-width: 959px){
        /*------------------------------*/
        /* PERSONA */
        /*------------------------------*/
        .recruit-persona__inner{
            margin-top: calc(40rem/16);

            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* 画像 */
        .recruit-persona__photo-wrapper{
            width: 100%;
            height: auto;
            min-height: auto;

            position: relative;
        }
        .recruit-persona__photo-wrapper::before{
            content: "";
            display: block;
            padding-top: 56.25%;
        }
        .recruit-persona__photo-wrapper img{
            display: inline-block;
            width: 100%;
            height: 100%;
            object-fit: cover;

            position: absolute;
            top: 0;
            left: 0;
        }
        /* テキスト */
        .recruit-persona__txt-wrapper{
            margin-top: calc(40rem/16);
            width: 100%;
        }
}/*Tablet END*/



/*-------------------------------*/

/* Smartphone 559px */

/*------------------------------*/
@media(max-width:559px){
    /*-------------------------------*/
    /* 募集リード */
    /*------------------------------*/
    #recruit-lead .txt{
        text-align: justify;
    }
    /*------------------------------*/
    /* PERSONA */
    /*------------------------------*/
    .recruit-persona__inner{
        margin-top: calc(40rem/16);
    }
    /* テキスト */
    .recruit-persona__txt-wrapper{
        margin-top: calc(24rem/16);
    }
    /* テーブル */
    .recruit-persona__txt-wrapper > table{
        width: 100%;
    }
    /* .recruit-persona__txt-wrapper > table tr{
        display: flex;
        flex-direction: column;
        gap: 0.3em
    } */
    .recruit-persona__txt-wrapper > table tr th{
        width: 35%;
    }
    .recruit-persona__txt-wrapper > table tr td{
        width: 65%;
    }
    /* 人物像リスト */
    .recruit-persona__list{
        margin-top: calc(24rem/16);
    }
    .recruit-persona__list li + li{
        margin-top: 1.3em;
    }
}/*Smartphone END*/