@charset "utf-8";

/* ==================================== 
mainVisual
=====================================*/
.mainVisual {
    position: relative;
}

.mainVisual::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
}

.mv__Sp1 {
    display: block;
    width: 100%;
    margin-top: 93px;
}

.mv__Sp2 {
    display: block;
    width: 100%;
    margin-top: 93px;
}

.mv__Sp3 {
    display: block;
    width: 100%;
    margin-top: 93px;
}

.mainVisual__pcBox {
    display: none;
}

.mv__topic {
    position: absolute;
    top: 43.8%;
    left: 20.5%;
    z-index: 15;
}

.mainVisual__topic1 {
    display: block;
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 10.6vw;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.mainVisual__topic2 {
    display: block;
    color: var(--primary-white);
    font-family: "Roboto";
    font-size: 10.6vw;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media screen and (min-width:769px) {
    .mainVisual {
        position: relative;
    }

    .mainVisual::before {
        content: "";
        width: 91.6%;
        height: 100%;
        position: absolute;
        top: 0; 
        left: 8.3%;
        background-color: rgba(0,0,0,0.3);
        border-radius: 50px 0 0 50px;
        z-index: 10;
    }

    .mainVisual__spBox {
        display: none;
    } 

    .mainVisual__pcBox {
        display: block;
        margin-top: 115px;
        margin-bottom: 70px;
        width: 91.6%;
        margin-left: auto;
        border-radius: 50px 0 0 50px;
    }

    .mv__Pc1 {
        display: block;
        border-radius: 50px 0 0 50px;
    }
    
    .mv__Pc2 {
        display: block;
        border-radius: 50px 0 0 50px;
    }
    
    .mv__Pc3 {
        display: block;
        border-radius: 50px 0 0 50px;
    }

    .mv__topic {
        position: absolute;
        top: 36.8%;
        left: 40.5%;
    }

    .mainVisual__topic1 {
        font-size: 4.8vw;
    }

    .mainVisual__topic2 {
        font-size: 4.8vw;
    }
}

/* ==================================== 
section--recruitment
=====================================*/
.section--recruitment {
    padding: 60px 4.2%;
    background-color: var(--primary-sectionPink);
}

.recruitment__wrapper {
    background-color: var(--primary-basewhite);
    border-radius: 20px;
    padding: 48px 4.2%;
}

.topic__recruitment {
    font-size: 2.2rem;
    max-width: 154px;
    line-height: 1.5;
    position: relative;
}

.topic__recruitment::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 20px;
    height: 3px;
    background-color: var(--primary-orange);
}

.topic__recruitment::after {
    position: absolute;
    top: 16px;
    right: 0;
    content: "";
    width: 20px;
    height: 3px;
    background-color: var(--primary-orange);
}

.topic__subTxt {
    font-size: 1.7rem;
    line-height: 1.5;
}

.recruitment__contentsBox {
    margin-top: 40px;
}

.table {
    margin: 0 auto;
    width: 80%;
}

.table tr {
    border-bottom: 1px solid #b5b1b1;
    align-items: center;
}

.table th,
.table td {
    width: 100%;
    display: block;
    color: var(--primary-black);
    font-size: 1.4rem;
}

.table th {
    width: 100%;
    padding-top: 10px;
}

.table td {
    padding-top: 0;
    padding-bottom: 10px;
}

.recruitment__btn {
    display: block;
    margin-top: 24px;
    max-width: 206px;
}

.recruitment__privacy {
    font-size: 1.2rem;
    margin: 24px auto 0;
}

@media screen and (min-width:769px) {
    .section--recruitment {
        padding: 120px 20px;
    }

    .recruitment__wrapper {
        margin: 0 auto;
        max-width: 1200px;
        padding: 80px 261px;
    }

    .topic__recruitment {
        font-size: 3rem;
        max-width: 256px;
    }   
    
    .topic__recruitment::before {
        top: 20px;
        left: 0;
        width: 50px;
    }

    .topic__recruitment::after {
        top: 20px;
        right: 0;
        width: 50px;
    }

    .topic__subTxt {
        font-size: 2.2rem;
        line-height: 1.5;
    }

    .table tr {
        border-bottom: 1px solid #b5b1b1;
        display: flex;
        width: 100%;
        padding: 10px 0;
    }
    
    .table th,
    .table td {
        padding: 0;
        border: none;
        width: 100%;
        text-align: center;
        font-size: 1.6rem;
    }

    .table td {
        text-align: left;
    }
    
    .table th {
        width: 60%;
    }

    .recruitment__btn {
        max-width: 234px;
    }
}