@charset "utf-8";
/*-----------------------------------------------
	secCmnHead
-----------------------------------------------*/
.secCmnHead {
    background: linear-gradient(to bottom, var(--bgColor) 52.7rem, transparent 20rem);
}
.secCmnHead:before{
    bottom: -2.7rem;
    z-index: -1;
}
.secCmnHead::after {
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    bottom: -10rem;
    left: 0;
    width: 118rem;
    height: 34.3rem;
    background: url(../img/common/imgCmnHero.png) center top / cover no-repeat;
    z-index: -2;
}
@media only screen and (max-width:1215px){
    .secCmnHead {
        background: linear-gradient(to bottom, var(--bgColor) 20rem, transparent 20rem);
    }
    .secCmnHead:before{
        bottom: auto;
    }
    .secCmnHead::after {
        bottom: -18rem;
        max-width: 40rem;
        width: 100%;
        height: 16.3rem;
        right: 0;
    }
}

/*-----------------------------------------------
	boxRecruitCmnTit
-----------------------------------------------*/
.boxRecruitCmnTit{
    border-bottom: 0.1rem solid var(--grayColor);
    padding-bottom: 3rem;
    margin-bottom: 8rem;
}
.boxRecruitCmnTit .tit{
    font-size: var(--pcFSTit);
    line-height: var(--pcLHTit);
    letter-spacing: var(--pcLSTit);
    font-weight: bold;
}
@media only screen and (max-width:1215px){
    .boxRecruitCmnTit{
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    .boxRecruitCmnTit .tit{
        font-size: var(--spFSSTit);
        line-height: var(--pcLHTit);
        letter-spacing: var(--spLSSTit);
    }
}


/*-----------------------------------------------
	boxDlTable
-----------------------------------------------*/
.boxDlTable{
    margin: -3rem auto 15rem;
    border-top: 0.1rem solid var(--grayColor);
}
.boxDlTable .tr{
    position: relative;
    display: flex;
    font-size: var(--pcFS18);
    line-height: var(--pcLH18_28);
    letter-spacing: var(--pcLS18_50);
    background-color: var(--whiteColor);
}
.boxDlTable .tr:before,
.boxDlTable .td:after,
.boxDlTable .th:after,
.boxDlTable .tr:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grayColor);
    opacity: 0.8;
    z-index: 1;
}
.boxDlTable .td:after,
.boxDlTable .th:after,
.boxDlTable .tr:after{
    width: 1px;
    height: 100%;
}
.boxDlTable .th:after,
.boxDlTable .td:after{
    left: auto;
    right: 0;
}
.boxDlTable .th{
    position: relative;
    width: 26rem;
    display: flex;
    align-items: center;
    font-weight: bold;
    background-color: var(--gray_lightColor);
}
.boxDlTable .th,
.boxDlTable .td{
    padding: 4rem;
}
.boxDlTable .td{
    flex: 1;
}
.boxDlTable .txtLink{
    text-decoration: underline;
    color: var(--linkColor);
}
@media only screen and (max-width:1215px){
    .boxDlTable{
        width: 100%;
        margin: 0 auto 6rem;
    }
    .boxDlTable .tr{
        flex-wrap: wrap;
        font-size: var(--spFS14);
        line-height: var(--spLH14_20);
        letter-spacing: var(--spLS14_0);
    }
    .boxDlTable .th,
    .boxDlTable .td{
        width: 100%;
        padding: 1rem 1.5rem;
    }
    .boxDlTable .th:after{
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
}