@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/*--- mainTitle --*/
#mainTitle::before{
    background: url("../images/job/bg_title.jpg") right bottom / auto 100% no-repeat;
}

/*--- general --*/
#contents #general{
    background: url("../images/job/bg_job_01.jpg") center center / cover no-repeat;
}

/*--- jobBox --*/
#contents .jobBox{
    display: flex;
    justify-content: space-between;
    margin-bottom: max(120px, 7vw);
}
#contents .jobBox:last-child{
    margin-bottom: 0;
}
#contents .jobBox:first-of-type{
    margin-top: max(100px, 6vw);
}
#contents .jobBox .image{
    width: 42%;
    position: relative;
    background-size: cover;
    background-position: center center;
}
#contents .jobBox .image .numBox{
    width: 170px;
    height: 170px;
    background: #e21b13;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    right: -30px;
    top: -30px;
}
#contents .jobBox .image .numBox .caption{
    font-size: 8px;
    line-height: 1.5;
    opacity: 0.6;
}
#contents .jobBox .image .numBox .num{
    font-size: 17px;
    line-height: 1;
    padding-bottom: 3px;
    position: relative;
    display: table;
    margin: 12px auto;
}
#contents .jobBox .image .numBox .num::after{
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    content: "";
}
#contents .jobBox .image .numBox .title{
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
#contents .jobBox .info{
    width: 58%;
    padding-left: 90px;
    padding-right: calc((100vw - 1200px) / 2);
    padding-top: 60px;
    padding-bottom: 60px;
}
#contents .jobBox .info > .text{
    margin-bottom: 30px;
}
#contents .jobBox .info .jobList{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
#contents .jobBox .info .jobList li{
    width: 29%;
    margin: 0 2%;
    text-align: center;
}
#contents .jobBox .info .jobList li img{
    max-width: 120px;
    margin: 0 auto 10px;
}
#contents .jobBox .info .jobList li figcaption{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #e21b13;
    line-height: 1.5;
}
#contents .jobBox .info .important .title{
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 25px;
    color: #e21b13;
}
#contents .jobBox .info .important .title::after{
    width: 100%;
    height: 1px;
    background: #e21b13;
    content: "";
    display: block;
    margin-left: 1em;
}
#contents .jobBox .info .importantList{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
#contents .jobBox .info .importantList dt{
    color: #e21b13;
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#contents .jobBox .info .importantList dt::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e21b13;
}
#contents .jobBox .info .importantList dd{
    font-size: 14px;
    line-height: 1.5;
}


#contents .jobBox:nth-of-type(even){
    flex-direction: row-reverse;
}
#contents .jobBox:nth-of-type(even) .image .numBox{
    right: auto;
    left: -30px;
}
#contents .jobBox:nth-of-type(even) .info{
    padding-right: 90px;
    padding-left: calc((100vw - 1200px) / 2);
}



/*--- storeJobList --*/
#contents .storeJobList{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    align-items: stretch;
    padding-top: 30px;
}
#contents .storeJobList li{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#contents .storeJobList li .image{
    position: relative;
}
#contents .storeJobList li .num {
    background: #e21b13;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    line-height: 1;
    color: #fff;
    padding-top: 1%;
}
#contents .storeJobList li .info{
    background: #fff;
    padding: 40px;
    height: 100%;
}
#contents .storeJobList li .title{
    position: relative;
    padding: 15px;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
    line-height: 1.4;
    color: #e21b13;
}
#contents .storeJobList li .title::before,
#contents .storeJobList li .title::after{
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    aspect-ratio: 1 / 1;
}
#contents .storeJobList li .title::before{
    border-left: 1px solid #e21b13;
    border-top: 1px solid #e21b13;
    left: 0;
    top: 0;
}
#contents .storeJobList li .title::after{
    border-right: 1px solid #e21b13;
    border-bottom: 1px solid #e21b13;
    right: 0;
    bottom: 0;
}
#contents .storeJobList li .text{
    line-height: 1.8;
}


/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/



/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

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


/*----------------------------------------------------
	☆TOP UNDER 1320
----------------------------------------------------*/

@media screen and (max-width:1320px) {
    
    #contents .jobBox .info,
    #contents .jobBox:nth-of-type(even) .info{
        padding: 0 60px;
    }
    
}

/*----------------------------------------------------
	☆TOP UNDER 1200
----------------------------------------------------*/

@media screen and (max-width:1200px) {
    
    #contents .jobBox .image .numBox {
        width: 150px;
        height: 150px;
    }
    #contents .jobBox .image .numBox .title {
        font-size: 18px;
    }
    
    #contents .jobBox .info .jobList li img {
        max-width: 100px;
    }
    #contents .jobBox .info .jobList li figcaption {
        font-size: 16px;
    }
    #contents .jobBox .info .importantList{
        flex-direction: column;
        flex-wrap: wrap;
    }
    #contents .jobBox .info .importantList{
        width: 100%;
    }
    #contents .jobBox .info .importantList dt br{
        display: none;
    }
}

/*----------------------------------------------------
	☆TOP UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {  
    
    #contents .jobBox:first-of-type {
        margin-top: 0;
    }
    #contents .jobBox {
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 80px;
    }
    #contents .jobBox .image{
        width: 85%;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
    }
    #contents .jobBox .info{
        width: 100%;
        padding: 100px 7.5% 0 !important;
    }
    #contents .jobBox .image .numBox,
    #contents .jobBox:nth-of-type(even) .image .numBox{
        right: auto;
        top: auto;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 50%);
    }
    
    #contents .storeJobList{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    #contents .storeJobList li{
        max-width: 400px;
        width: 100%;
    }
}


/*----------------------------------------------------
	☆TOP UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    #contents .jobBox .image .numBox {
        width: 140px;
        height: 140px;
    }
    #contents .jobBox .info .important .title {
        font-size: 18px;
    }
    #contents .jobBox .info .important .title::after {
        margin-left: 0.5em;
    }
    #contents .jobBox .info .jobList li {
        width: 25%;
        margin: 0 4%;
    }
    
    #contents .storeJobList li .num {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    #contents .storeJobList li .title {
        padding: 15px 5px;
        font-size: 18px;
        margin: 0 auto 15px;
    }
    #contents .storeJobList li .info {
        background: #fff;
        padding: 30px;
    }
    
    
}

