body::before{
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent), url(../images/recruit/header.webp);
}
article{
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
}
section:not(#job, #day){
    height: 100vh;
    height: 100dvh;
}

.link-btn{
    border: solid 1px rgb(255, 255, 255);
    position: relative;
    font-weight: 300;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5em;
    width: 300px;
    display: block;
}
.link-btn::before{
    content: "";
    background: rgb(255, 255, 255);
    width: 30px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: -15px;
}
.link-btn:hover{
    background: rgb(100, 100, 100);
}
/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    section, footer{
        scroll-snap-align: none;
    }
    .link-btn{
        width: 200px;
        font-size: 0.8rem;
    }
}



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

second-view

--------------------------------------------*/
#second-view {
    background: linear-gradient(rgba(0, 0, 0, 0) ,rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding: 5%;
}
#second-view h2{
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    text-align: center;
    line-height: 1.8em;
}
#second-view p{
    font-size: 1rem;
    text-align: center;
    line-height: 2em;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
}
/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    #second-view h2{
        font-size: 1.5rem;
    }
    #second-view p{
        font-size: 0.8rem;
        line-height: 1.8em;
    }
}

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

job, day

--------------------------------------------*/
#job , #day{
    padding: 5%;
    padding-top: calc(5% + 60px);
    min-height: 100vh;
    min-height: 100dvh;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#job hgroup, #day hgroup{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 50px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
#job hgroup h2, #day hgroup h2{
    font-size: 2rem;
    letter-spacing: 0.5em;
    font-weight: 500;
    line-height: 1.8em;
}
#job hgroup p, #day hgroup p{
    letter-spacing: 0.5em;
}

/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {

}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    #job , #day{
        padding-top: calc(5% + 100px);
    }
    #job hgroup, #day hgroup{
        width: 100%;
    }
    #job hgroup h2, #day hgroup h2{
        font-size: 1.5rem;
    }
}

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

job

--------------------------------------------*/
#job{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) ,rgba(0, 0, 0, 0.8));
}
.job-content{
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
.job-content dl{
    display: flex;
    gap: 50px;
    border-bottom: solid 1px rgb(255, 255, 255);
    padding: 30px 0;
}
.job-content dl:first-child{
    border-top: solid 1px rgb(255, 255, 255);
}
.job-content dl dt{
    width: 7em;
    white-space: nowrap;
}

/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {

}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    .job-content{
        width: 90%;
    }
    .job-content dl{
        gap: 25px;
    }
}

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

day

--------------------------------------------*/
#day{
    padding-bottom: 100px;
}
.day-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}
.day-time{
    padding-left: calc(2em + 5px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 1rem;
}
.day-time dl{
    display: flex;
    justify-content: flex-start;
    position: relative;
    gap: 15px;
}
.day-time dl.long{
    padding-bottom: 30px;
}
.day-time dl::before{
    content: "";
    width: 1em;
    aspect-ratio: 1 / 1;
    background: rgb(255, 255, 255);
    position: absolute;
    left: calc(-2em - 5px);
    top: 5px;
    border-radius: 50%;
}
.day-time dl::after{
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    top: calc(1em + 3px);
    left: -1.85em;
    background: rgb(255, 255, 255);
    height: calc(100% + 30px);
}
.day-time dl:last-child::after{
    content: none;
}
.day-img{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.day-img img{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {
    .day-img img{
        aspect-ratio: 4 / 3;
    }
}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    .day-content{
        gap: 0;
        width: 100%;
    }
    .day-img{
        width: 80%;
    }
}
/*--------------------------------------------
max-width 600
--------------------------------------------*/
@media (max-width: 600px) {
    #day hgroup h2 span{
        display: block;
    }
    .day-img{
        width: 50%;
        gap: 15px;
    }
    .day-time{
        gap: 10px;
    }
    .day-content dl{
        font-size: 0.8rem;
    }
    .day-time dl::after{
        height: calc(100% + 10px);
    }
    .day-time dl dd span{
        display: block;
    }
}

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



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


/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {

}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {

}

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



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


/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {

}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {

}

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



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


/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {

}

/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {

}

