/* ▼全ページ共通 */
.bgGradient {
    position: relative;
    overflow: visible;
    border-radius: 10rem;
    padding-top: 0.6rem;
}
.bgGradient::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #fffdfd 15%, #d8e5f7 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -999;
    pointer-events: none;
}
@media only screen and (max-width:1215px) {
    .bgGradient {
        order: 1;
        padding-top: 11.4rem;
    }
    .bgGradient::before {
        background-image: linear-gradient(to bottom right, #fffdff 15%, #d8e5f7 100%);
    }
}

.cmnRecruit_title .title_jpn {
    margin-left: 5rem;
}
@media only screen and (max-width:1215px) {
    .cmnRecruit_title .title_jpn {
        margin-left: 0rem;
    }
}

/*-----------------------------------------------
    secBusiness
-----------------------------------------------*/
.secBusiness{
    margin-top: 14.4rem;
    padding-bottom: 20rem;
}
.secBusiness .boxLink{
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.secBusiness .wrapperLink{
    box-shadow: 0 0px 10px var(--box-shadow_Color_10);
    background: var(--Colorwhite);
    border-radius: 10rem;
}
.secBusiness .itemLink{
    width: 100%;
    height: 100%;
    padding: 8rem;
    display: flex;
    gap: 10rem;
    justify-content: flex-end;
    align-items: center;
}
.secBusiness .wrapperLink:nth-child(2n) .itemLink{
    flex-direction: row-reverse;
}
.secBusiness .linkTitEng{
    font-size: var(--pcFontSize22);
    letter-spacing: 0;
    font-weight: bold;
    background: linear-gradient(90deg, #2d78e8, #3dd583); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 3.6rem;
    display: inline-block;
}
.secBusiness .linkTit{
    font-size: var(--pcFontSize48);
    letter-spacing: var(--pcLetterSpacing48_50);
    font-weight: bold;
    margin-bottom: 4rem;
}
.secBusiness .linkTxt{
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing18_50);
    line-height: var(--pcLineHeight18_34);
    margin-bottom: 4.2rem;
}
.secBusiness .wrapperLink .boxImg{
    width: 54.2169%;
    max-width: 90rem;
    border-radius: 5rem;
    overflow: hidden;
}
.secBusiness .viewMoreButton {
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.2);
}
.secBusiness .itemLink:hover .viewMoreButton::before {
    transform: translateY(-50%) scale(2.86);
}

@media only screen and (max-width:1215px) {
    .secBusiness {
        margin-top: 5.4rem;
        padding-bottom: 12rem;
    }
    .secBusiness .wrapperLink {
        border-radius: 4.5rem;
    }
    .secBusiness .itemLink {
        padding: 6rem 0rem;
        gap: 4rem;
        flex-direction: column;
    }
    .secBusiness .linkTitEng {
        font-size: var(--spFontSize18);
        margin-bottom: 2.3rem;
        display: inline-block;
    }
    .secBusiness .linkTit {
        font-size: var(--spFontSize30);
        letter-spacing: var(--spLetterSpacing30_50);
        margin-bottom: 2.3rem;
    }
    .secBusiness .linkTxt {
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing14_50);
        line-height: var(--spLineHeight14_26);
        margin-bottom: 2.5rem;
    }
    .secBusiness .viewMoreButton {
        margin: 0 auto;
    }
    .secBusiness .wrapperLink .boxImg {
        width: calc((350 / 390) * 100%);
        max-width: unset;
        border-radius: 2rem;
    }
    .secBusiness .boxLink {
        gap: 3.2rem;
    }
    .secBusiness .wrapperLink:nth-child(2n) .itemLink {
        flex-direction: column;
    }
}
