@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #000;
    --green01: #a7c662;
    --green02: #46aa41;
    --green03: #ebfdeb;
    --green04: rgba(100, 200, 95, 0.5);
    --green05: #64c85f;
    --green06: #d2e49b;
    --green07: #f0fdf0;
    --green08: rgba(70, 170, 65, 0.35);
    --green09: rgba(70, 170, 65, 0.7);
    --green10: #96c85f;
    --beige01: #faf8de;
    --beige02: #fcfadc;
    --beige03: #fcfad2;
    --yellow01: #ffde27;
    --yellow02: rgba(252, 230, 50, 0.5);
    --gray: #e9e9e9;


    /* ぼかし */
    --blur: blur(10px);

    /* 書式 */
    --zenMaru: "Zen Maru Gothic", sans-serif;

    /* 文字サイズ */
    --font18: clamp(13px, 0.45vw + 11.57px, 18px);
    --font19: clamp(14px, 0.45vw + 12.57px, 19px);
    --font21: clamp(15px, 0.54vw + 13.29px, 21px);
    --font24: clamp(16px, 0.71vw + 13.71px, 24px);
    --font28: clamp(17px, 0.98vw + 13.86px, 28px);
    --font30: clamp(18px, 1.07vw + 14.57px, 30px);
    --font38: clamp(21px, 1.52vw + 16.14px, 38px);
    --font45: clamp(23px, 1.96vw + 16.71px, 45px);
    --font50: clamp(25px, 2.23vw + 17.86px, 50px);

    /* ウェイト */
    --weight500: 500;
    --weight700: 700;

    /* 行間 */
    --lineHight120: 1.2;
    --lineHight160: 1.6;
    --lineHight175: 1.75;

    /* 文字間 */
    --fontSpaceMinus050: -0.05em;
    --fontSpace010: 0.01em;

    /* トランジションの変数　 */
    --transition01: all 0.5s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --borderRadius20: 20px;
    --borderRadius30: 30px;
    --borderRadiusCircle: 50%;

    --opacity07: .7;



}


@media screen and (max-width: 768px) {
    :root {
        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}



/*******************************************
common
*******************************************/

body {
    color: var(--black);
    font-family: var(--zenMaru);
    font-weight: var(--weight700);
    font-size: var(--font18);
    line-height: var(--lineHight120);
    /* font-feature-settings: "palt"; */

    a,
    .hamburger,
    .btn,
    .pagiBtn,
    .aco-click {
        transition: var(--transition01);

        &:hover {
            opacity: var(--opacity07);
        }
    }
}

p {
    text-align: justify;
    font-size: var(--font19);
    line-height: var(--lineHight160);
    font-weight: var(--weight500);
    letter-spacing: var(--fontSpaceMinus050);
}

.section {
    position: relative;
}

.section__inner {
    position: relative;
    width: min(100%, 1100px);
    margin: 0 auto;

    padding: clamp(50px, 7%, 100px) 0;

    @media screen and (max-width:1140px) {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(25px, 6.42vw, 90px);
    width: fit-content;
    font-size: var(--font45);

    .ja {
        font-size: 1em;
        color: var(--green02);
    }

    .en {
        font-size: var(--font30);
        margin-top: 0.5em;
    }

    @media screen and (max-width: 480px) {
        .en {
            margin-top: 0.2em;
        }
    }
}

.section__ttlParts {
    position: absolute;
    top: 0;
    left: 105%;
    width: 3.13em;
    transform: translateY(-20%);
}

.push {
    display: inline-block;
}

.thin {
    letter-spacing: -0.5em;
}

.checkList {
    li {
        position: relative;
        font-size: var(--font21);
        padding-left: 1.42em;
        font-weight: var(--weight500);
        margin-bottom: 0.7em;

        &:last-child {
            margin-bottom: 0;
        }

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/common/check01.svg);
            background-size: contain;
            background-repeat: no-repeat;
            width: 1.09em;
            aspect-ratio: 1;
            top: 0;
            left: 0;
            transform: translateY(10%);
        }
    }
}

.under-line01 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4em;
    text-decoration-color: var(--black01);
}

.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.kakko {
    display: inline-block;
    text-indent: -0.3em;
}

/* pタグ以外の中黒に。 */
.nakaguro {
    margin-left: -0.2em;
    margin-right: -0.2em;
}

.block768 {
    display: none;
}

@media screen and (max-width: 768px) {
    .block768 {
        display: block;
    }

    .none768 {
        display: none;
    }
}



/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 400px);
    height: 70px;

    @media screen and (max-width: 768px) {
        width: min(100%, 300px);
        height: 60px;
    }

    @media screen and (max-width: 480px) {
        width: min(100%, 250px);
        height: 50px;
    }
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* letter-spacing: var(--fontSpace010); */
    color: var(--white);
    background-color: var(--green02);
    font-size: var(--font21);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transition01);
    cursor: pointer;
    line-height: var(--lineHight120);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        top: 50%;
        right: 5%;
        width: 9px;
        aspect-ratio: 9/15;
        transform: translateY(-50%);
    }

    @media screen and (max-width:480px) {
        &::before {
            width: 6px;
        }
    }
}

.btn-green02 {
    background-color: var(--green01);
}

.btn-green03 {
    background-color: var(--green05);
}

.btn-green04 {
    background-color: var(--green10);
}





/*******************************************
entryBtn
*******************************************/
.entryBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

    .btn-outer {
        width: 50%;
    }


}

.entryBtn-header {
    @media screen and (max-width:768px) {
        flex-direction: column;

        .btn-outer {
            width: 100%;
        }
    }

    @media screen and (max-width:480px) {
        width: min(100%, 300px) !important;
        flex-direction: row;

        .btn-outer {
            width: 50%;
        }

        .btn {
            font-size: 12px;
        }
    }
}

.entryBtn-fixed {
    flex: 1;
    max-width: 460px;
    gap: clamp(10px, 2.5vw, 20px);

    .btn {
        font-size: 1em;
    }

    @media screen and (max-width:768px) {
        position: fixed;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        max-width: initial;
        width: min(95%, 500px);
        gap: 5px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition01);

        .btn-outer {
            &:last-child {
                .btn {
                    border: 1px solid var(--white);
                }
            }
        }
    }

    @media screen and (max-width:480px) {
        font-size: 14px;
    }

    @media screen and (max-width:330px) {
        font-size: 12px;
    }
}


/*******************************************
header
*******************************************/
:root {
    --headerHeight: clamp(80px, 7.1428vw, 100px);
}

@media screen and (max-width:768px) {
    :root {
        --headerHeight: clamp(50px, 7.1428vw, 100px);
    }
}

.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 clamp(10px, 2.5vw, 35px);
    height: var(--headerHeight);
    z-index: 95;
    transition: var(--transition01);
    font-size: 17px;
    background-color: var(--white);

    @media screen and (max-width:1024px) {
        font-size: 15px;
    }

    @media screen and (max-width:768px) {
        position: relative;

    }
}

.header__left {
    width: clamp(200px, 33.57%, 470px);
    margin-right: 10px;
}

.header__logo {
    width: 100%;

    a {
        display: inline-block;
        width: 100%;
        height: 100%;
    }
}

.header__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 2.5vw, 35px);
}


.hamburger {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio: 60/37;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition01);
    background-color: transparent;


    .line {
        position: absolute;
        width: 100%;
        height: 3px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: var(--transition01);
        background-color: var(--green02);

        &:nth-of-type(1) {
            top: 0%;
        }

        &:nth-of-type(2) {
            top: 50%;
        }

        &:nth-of-type(3) {
            top: 100%;
        }
    }

    @media screen and (max-width:768px) {
        position: fixed;
        right: 1%;
        top: calc(var(--headerHeight)/2);
        transform: translateY(-50%);
        width: 40px;
    }

    @media screen and (max-width:480px) {
        width: 30px;

        .line {
            height: 2px;
        }
    }
}


.headerNav {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 95;
    background-color: var(--white02);
    backdrop-filter: blur(10px);
    transition: var(--transition01);
    opacity: 0;
    visibility: hidden;
}

.headerNav__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: min(50%, 600px);
    height: 100%;
    padding: clamp(20px, 10svh, 100px) min(5%, 20px) 2vh;
    margin-left: auto;
    background-color: var(--white);
    transform: translateX(100%);
    transition: var(--transition01);

    @media screen and (max-width:480px) {
        width: 100%;
        align-items: center;
    }
}

.headerNav__item {
    margin: 0 0 5svh;
    font-size: 20px;

    &:nth-last-child(2) {
        margin: 0;
    }

    &:last-child {
        margin: 8svh 0 0;
        width: 100%;
    }

    a:not(.btn) {
        display: inline-block;
        width: 100%;
        position: relative;
        color: var(--black);
    }

    @media screen and (max-width:768px) {
        font-size: 15px;
    }

}

.active {
    .line {

        &:nth-of-type(1) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        &:nth-of-type(2) {
            opacity: 0;
        }

        &:nth-of-type(3) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(-45deg);
        }
    }

    .headerNav {
        opacity: 1;
        visibility: visible;
    }

    .headerNav__list {
        transform: translateX(0);
    }
}





/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    margin-top: var(--headerHeight);
    font-size: 1.42857vw;
    padding-top: 1em;

    @media screen and (max-width:768px) {
        margin-top: 0;
        font-size: 2.0833vw;
        padding-top: 0em;
    }
}

.mv__inner {
    position: relative;
}

.mv__img {
    width: 57.5em;
    width: 48em;
    border-radius: 0 2.142vw 2.142vw 0;
    overflow: hidden;

    @media screen and (max-width:768px) {
        width: 40.43em;
    }
}

.mv__ttl {
    position: absolute;
    top: 1%;
    right: 3%;
    width: 7.225em;

    @media screen and (max-width:768px) {
        width: 8.25em;
        top: 10%;
        right: 1.8%;
    }
}

.mv__txt {
    position: absolute;
    left: 0;
    bottom: 6.4%;
    background-color: var(--green07);
    width: 30.5em;
    aspect-ratio: 601/53;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0.5em 0.5em 0;
    font-size: 1em;

    .thin {
        letter-spacing: -0.15em;
    }

    @media screen and (max-width:768px) {

        &.mv__txt-pc {
            display: none;
        }
    }
}



.mv__txtBox-sp {
    display: none;

    @media screen and (max-width:768px) {
        display: block;
        position: absolute;
        left: 0;
        bottom: 6.4%;

        .mv__txt {
            position: relative;
            font-size: 3.5vw;
            width: 18em;
            text-align: left;
            padding: 0 0.5em;
            line-height: 1.3;
            margin-bottom: 0.1em;
            justify-content: flex-start;
            width: fit-content;
            aspect-ratio: initial;
            height: 2em;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}





.mv__map {
    position: absolute;
    width: 14.75em;
    bottom: -8%;
    left: 62%;

    @media screen and (max-width:768px) {
        width: 16.8125em;
        bottom: -14.8%;
        left: 60%;
    }
}




/*******************************************
about
*******************************************/
.about {
    z-index: 1;

    .section__inner {
        padding-bottom: clamp(50px, 10%, 140px);
    }

    .section__ttl {
        margin-bottom: max(6.3%, 25px);
    }

    @media screen and (max-width:768px) {
        .section__inner {
            padding-top: max(14%, 70px);
        }

        .section__ttlParts {
            transform: translateY(20%);
        }
    }

    @media screen and (max-width:400px) {
        .section__ttlParts {
            left: auto;
            right: 0;
            transform: translate(80%, 39%);
            width: 2.5em;
        }
    }

    @media screen and (max-width:330px) {
        .section__ttlParts {
            transform: translate(60%, 50%);
        }
    }
}

.about__flex {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    @media screen and (max-width:800px) {
        display: block;
    }
}

.about__flexLeft {
    position: relative;
    width: 100%;
}

.about__txtBox {
    position: relative;
    padding-top: 1em;

    p {
        position: relative;
        margin-bottom: 1.6em;
        z-index: 1;
        font-size: min(var(--font19), 18px);
        text-align: left;
    }

    @media screen and (max-width:800px) {
        padding: 0;
    }

}

.about__circleTxt {
    position: absolute;
    font-size: min(var(--font21), 20px);
    aspect-ratio: 1;
    width: 10.5em;
    top: 0;
    right: 0;
    transform: translateY(-82%);
    z-index: 1;

    .txt {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/about/parts01.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 100%;
            height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        span {
            position: relative;
            display: block;
            color: var(--green02);
            line-height: var(--lineHight160);
            text-align: center;
            letter-spacing: var(--fontSpaceMinus050);
        }
    }

    @media screen and (max-width:800px) {
        transform: translate(-20%, 20%);
    }

    @media screen and (max-width:650px) {
        transform: none;

        &.about__circleTxt--pc {
            display: none;
        }

    }
}



.about__circleTxt--sp {
    display: none;

    @media screen and (max-width:650px) {
        display: block;
        transform: translateY(-30%);
    }

    @media screen and (max-width:400px) {
        font-size: 3.5vw;
        transform: translateY(-50%);
    }
}

.about__imgBox {
    position: absolute;
    top: 0;
    right: 0;
    width: 497px;
    width: clamp(300px, 35.5vw, 497px);

    @media screen and (max-width:800px) {
        position: relative;
        width: min(100%, 500px);
        margin: 70px auto 0;
    }
}

.about__img01,
.about__img02 {
    border-radius: var(--borderRadius20);
    overflow: hidden;
}

.about__img01 {
    position: relative;
    width: 92.56%;

    @media screen and (max-width:800px) {
        width: 55%;
        z-index: 1;
    }
}

.about__img02 {
    width: 60.36%;
    margin-left: auto;

    @media screen and (max-width:800px) {
        width: 45%;
        margin-top: -10%;
        transform: translateX(-20%);
    }
}

.about__foodFlex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 4.02%;

    @media screen and (max-width:800px) {
        position: absolute;
        left: 0;
        bottom: 0;
        margin: 5% 0 0 10%;
        width: 60%;

        .about__food01 {
            margin-right: 5%;
        }

    }

}

.about__food01 {
    width: 12.58%;
    margin-right: 12.88%;
    margin-left: 18%;
}

.about__food02 {
    width: 20.93%;
}



/*******************************************
job 
*******************************************/
.job {
    background-color: var(--green03);

    .section__inner {
        padding: clamp(80px, 14%, 190px) 0 clamp(50px, 14%, 190px);
    }

    .section__ttl {
        margin-bottom: max(9%, 30px);
    }

    .section__ttlParts {
        transform: translateY(-48%);
    }
}

.job-parts01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.job-parts02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.jobSwiper {
    width: 100%;
    overflow: visible;

    @media screen and (max-width:1024px) {
        width: min(100%, 600px);
        margin: 0 auto;

    }
}

.jobSwiper__list {
    display: block;

    .swiper-slide {
        padding-top: 3.7%;
        position: relative;
        margin-bottom: 60px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    @media screen and (max-width:1024px) {
        display: flex;

        .swiper-slide {
            padding-top: 0;
            margin-bottom: 0;
            height: auto;
            display: flex;
            flex-direction: column;
        }

    }
}

.jobSwiperTop__img {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(200px, 28.5714vw, 400px);
    border-radius: var(--borderRadius20);
    overflow: hidden;
    z-index: 1;

    @media screen and (max-width:1024px) {
        &.jobSwiperTop__img--pc {
            display: none;
        }
    }
}

.jobSwiperTop__img--sp {
    display: none;

    @media screen and (max-width:1024px) {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 400px);
        margin: 0 auto 30px;
    }

    @media screen and (max-width:480px) {
        width: min(100%, 300px);
        margin: 0 auto 25px;
    }
}

.jobSwiper__item {
    position: relative;
    background-color: var(--white);
    width: 79.09%;
    margin-left: auto;
    padding: 80px 35px 90px;
    border-radius: var(--borderRadius20);

    @media screen and (max-width:1024px) {
        width: 100% !important;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    @media screen and (max-width:768px) {
        padding: 50px 15px 60px;
    }
}

.jobSwiper__number {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--green04);
    display: block;
    font-size: var(--font50);
    padding-right: 0.5em;

    @media screen and (max-width:1024px) {
        right: auto !important;
        left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0.5em !important;
    }
}


.jobSwiperTop__detail {
    width: min(100%, 490px);
    margin-left: auto;
    margin-right: 15%;

    dt {
        position: relative;
        font-size: var(--font38);
        margin-bottom: 1.184em;
        padding-left: 0.789em;
        color: var(--green05);

        &::before {
            position: absolute;
            content: "";
            width: 5px;
            height: 100%;
            background-color: var(--green05);
            top: 0;
            left: 0;
            width: max(0.342em, 8px);
        }
    }

    @media screen and (max-width:1024px) {
        width: 100%;
        margin-right: auto;
        margin-left: auto !important;

        dt {
            margin-bottom: 15px;
        }
    }

    @media screen and (max-width:480px) {
        dd {
            p {
                min-height: calc(var(--lineHight160)*3em);
            }
        }
    }

    @media screen and (max-width:380px) {
        dd {
            p {
                min-height: calc(var(--lineHight160)*4em);
            }
        }
    }

}

.jobSwiperMain {
    margin: max(15%, 50px) auto 0;

    @media screen and (max-width:1024px) {
        margin: 30px 0 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
}

.jobSwiperMain__box {
    margin-bottom: 50px;

    &:last-child {
        margin-bottom: 0;
    }

    @media screen and (max-width:768px) {
        margin-bottom: 30px;
    }

    @media screen and (max-width:480px) {
        margin-bottom: 20px;
    }
}


.jobSwiperMain__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--borderRadius01);
    border: 1px solid var(--green05);
    font-size: var(--font28);
    color: var(--green05);
    padding: 0.53em 1.4em 0.58em;
    width: fit-content;
    margin: 0 auto;
    line-height: 1;
}

.jobSwiperMain__inner {
    width: min(100%, 780px);
    margin: 0 auto;
}

.flowList {
    display: flex;
    justify-content: space-between;
    margin: 40px auto 0;

    @media screen and (max-width:480px) {
        flex-direction: column;
        justify-content: flex-start;
        width: fit-content;
        margin: 20px auto 0;
    }
}

.flowList__item {
    position: relative;
    width: calc(100%/5);
    text-align: center;
    letter-spacing: var(--fontSpaceMinus050);
    font-weight: var(--weight500);
    font-size: var(--font18);
    padding-top: clamp(20px, 7%, 55px);
    line-height: 1.5;


    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        aspect-ratio: 1;
        width: max(1.22em, 10px);
        border: 3px solid var(--green09);
        background-color: var(--green06);
        border-radius: var(--borderRadiusCircle);
        z-index: 1;
    }

    &::after {
        position: absolute;
        content: "";
        top: calc(max(1.22em, 10px)/ 2);
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: var(--green05);
    }

    &:last-child {
        &:after {
            display: none;
        }
    }

    @media screen and (max-width:480px) {
        width: 100%;
        padding: 0 0 30px 1.8em;
        text-align: left;

        &:last-child {
            padding-bottom: 0;
        }

        &::before {
            left: 0;
            transform: none;
        }

        &:after {
            width: 1.5px;
            height: 100%;
            left: calc(max(1.22em, 10px)/ 2);
            top: 0.5em;
            transform: translateX(-50%);
        }
    }
}

.jobSwiperMain__recommendation {
    @media screen and (max-width:1024px) {
        margin-top: auto;
    }
}


.recommendationBox {
    position: relative;
    background-color: var(--beige01);
    padding: 35px 15px;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/job/recommendation01.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 28.08%;
        aspect-ratio: 1;
        bottom: 0;
        right: 0;

    }

    .checkList {
        width: fit-content;
        margin: 20px auto 0;
    }

    @media screen and (max-width:480px) {
        padding: 20px 15px 30px;

        .checkList {
            margin: 15px auto 0;
        }
    }
}

.job-character01 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(100px, 14vw, 196px);
    transform: translate(-10%, -16%);
}

.job-character02 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 17.7vw, 248px);
    transform: translate(26%, 0%);

    @media screen and (max-width:1280px) {
        transform: translate(15%, 0%);
    }
}

.job-character03 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 13.57vw, 190px);
    transform: translate(26%, -10%);

    @media screen and (max-width:1280px) {
        transform: translate(15%, 0%);
    }
}

@media screen and (max-width:1024px) {

    .job-character01,
    .job-character02,
    .job-character03 {
        display: none;
    }
}



.btn-outer-job {
    margin: max(10%, 40px) auto 0;
}


/* 偶数のアイテム */
.jobSwiper__slide--even {

    .jobSwiperTop__img {
        left: auto;
        right: 0;
    }

    .jobSwiper__item {
        width: 79.09%;
        margin-left: 0;
    }

    .jobSwiper__number {
        right: auto;
        left: 0;
        padding-right: 0;
        padding-left: 1.2em;
    }

    .jobSwiperTop__detail {
        margin-left: 15%;
        margin-right: auto;
    }

    /* ↓↓↓色↓↓↓ */
    .jobSwiper__number {
        color: var(--green08);
    }

    .jobSwiperTop__detail dt,
    .jobSwiperMain__ttl {
        color: var(--green02);
    }

    .jobSwiperTop__detail dt::before,
    .flowList__item:after {
        background-color: var(--green02);
    }

    .jobSwiperMain__ttl {
        border: 1px solid var(--green02);
    }

    .recommendationBox {
        background-color: var(--beige02);
    }

    .checkList {
        &::before {
            background-image: url(../img/common/check02.svg);
        }
    }

    .recommendationBox {
        &::before {
            background-image: url(../img/job/recommendation02.png);
        }

    }
}


/*******************************************
pagination
*******************************************/
.paginationFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: max(5%, 20px);
    gap: 10px;
}

.pagiDot {
    width: fit-content !important;
    display: flex;
    gap: 5px;

    .swiper-pagination-bullet {
        background: var(--white);
        opacity: 1;
        border: 1px solid var(--green02);
        transition: var(--transition01);
    }

    .swiper-pagination-bullet-active {
        background-color: var(--green02);
        opacity: 1;
    }
}

.pagiBtn {
    position: relative;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--green02);
    border-radius: var(--borderRadiusCircle);
    cursor: pointer;

    &::before,
    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/common/arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        width: 9px;
        aspect-ratio: 9/15;
        transform: translate(-50%, -50%);
    }

}

.prevBtn {
    transform: rotate(180deg);
}

.paginationFlex-job {
    display: none;

    @media screen and (max-width:1024px) {
        display: flex;
    }
}

/*******************************************
.voice
*******************************************/
.voice {
    .section__inner {
        padding: clamp(50px, 9%, 120px) 0 clamp(50px, 10%, 140px);
    }

    .section__ttlParts {
        transform: translate(10%, -20%);
    }
}

.voice__item {
    width: min(90%, 980px);
    margin: 0 auto max(3.7%, 20px);

    img {
        border-radius: var(--borderRadius20);
    }

    &:last-child {
        margin-bottom: 0;
    }

    @media screen and (max-width:768px) {
        width: min(100%, 400px);
    }

    @media screen and (max-width:480px) {
        width: min(100%, 300px);
    }
}


/*******************************************
search
*******************************************/
.search {
    background-color: var(--beige02);

    &::before,
    &:after {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 97.5%;
        aspect-ratio: 1365/50;
        max-height: 50px;
        min-height: 20px;
        background: repeating-linear-gradient(to right,
                var(--yellow02) 0,
                var(--yellow02) clamp(5px, 1.0714vw, 15px),
                transparent clamp(5px, 1.0714vw, 15px),
                transparent calc(clamp(5px, 1.0714vw, 15px)*2));
    }

    &:after {
        top: auto;
        bottom: 0;
    }

    .section__inner {
        padding: clamp(80px, 11%, 145px) 0 clamp(80px, 15%, 200px);
    }

    .section__ttlParts {
        transform: translate(10%, -31%);
    }
}

.searchBox {
    background-color: var(--white);
    padding: 40px 20px 85px;
    border-radius: var(--borderRadius20);
    margin-bottom: max(4%, 20px);

    &:last-child {
        margin-bottom: 0;
    }

    @media screen and (max-width:480px) {
        padding: 30px 20px 40px;
    }
}

.searchBox__ttl {
    text-align: center;
    width: 100%;
    margin-bottom: max(4.7%, 20px);
    font-size: var(--font28);

    span {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto;
        font-weight: var(--weight500);
        padding: 0 max(0.35em, 5px);

        &::before,
        &:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 0;
            width: max(1.42em, 20px);
            height: 4px;
            background-color: var(--yellow01);
            transform: translate(-100%, -50%);
        }

        &:after {
            left: auto;
            right: 0;
            transform: translate(100%, -50%);
        }
    }

    @media screen and (max-width:480px) {
        span {

            &::before,
            &:after {
                height: 2px;
            }
        }
    }


}

.search__btnList {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: min(100%, 978px);
    margin: 0 auto;

    .btn-outer {
        width: calc((100% - 60px)/4);
    }

    @media screen and (max-width:768px) {
        .btn-outer {
            width: calc((100% - 40px)/3);
        }
    }

    @media screen and (max-width:550px) {
        .btn-outer {
            width: calc((100% - 20px)/2);
        }
    }

    @media screen and (max-width:480px) {
        gap: 10px;

        .btn-outer {
            width: calc((100% - 10px)/2);
        }
    }

    @media screen and (max-width:375px) {
        width: min(100%, 200px);

        .btn-outer {
            width: 100%;
        }
    }

}

.search__btnList {
    .btn-outer {
        visibility: hidden;
        animation-duration: 1s;
        animation-fill-mode: both;
        animation-name: fadeInUp;

        &:nth-child(1) {
            animation-delay: 0.1s;
        }

        &:nth-child(2) {
            animation-delay: 0.2s;
        }

        &:nth-child(3) {
            animation-delay: 0.3s;
        }

        &:nth-child(4) {
            animation-delay: 0.4s;
        }

        &:nth-child(5) {
            animation-delay: 0.5s;
        }

        &:nth-child(6) {
            animation-delay: 0.6s;
        }

        &:nth-child(7) {
            animation-delay: 0.7s;
        }

        &:nth-child(8) {
            animation-delay: 0.8s;
        }

        &:nth-child(9) {
            animation-delay: 0.9s;
        }

        &:nth-child(10) {
            animation-delay: 1.0s;
        }

        &:nth-child(11) {
            animation-delay: 1.1s;
        }

        &:nth-child(12) {
            animation-delay: 1.2s;
        }
    }

    @media screen and (max-width:375px) {
        .btn-outer {
            animation-delay: 0 !important;
        }
    }
}





/*******************************************
apply
*******************************************/


.apply-container {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: flex;
    align-items: center;

    @media screen and (max-width:600px) {
        flex-direction: column;
        flex-direction: column-reverse;
    }
}

.apply__bg {
    width: 55.36%;

    @media screen and (max-width:600px) {
        width: 100%;
    }
}

.applyBox {
    flex: 1;
    font-size: var(--font38);

    @media screen and (max-width:600px) {
        padding: 15% 0 10%;
    }
}

.applyBox__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
}

.applyBox__ttl {
    width: 12.815em;
}

.btn-outer-apply {
    height: 90px;
    margin: 45px auto 0;

    .btn {
        font-size: var(--font24);
    }

    @media screen and (max-width:768px) {
        height: 70px;
        margin-top: max(5.85vw, 20px);
    }

    @media screen and (max-width:480px) {
        height: 60px;
    }


}


/*******************************************
footer
*******************************************/

.footer {
    background-color: var(--green02);
    padding: 50px 0;
    position: relative;
    color: var(--white);
    font-weight: var(--weight500);
}

.footer-nav {
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    gap: 30px;

    a {
        position: relative;

        &:hover {
            opacity: var(--opacity07);
        }
    }

    a:not(:first-child):before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--white);
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    text-align: center;
}

.footer,
.copyright {
    font-size: 16px;
}


@media screen and (max-width:1024px) {

    .footer,
    .copyright {
        font-size: 12px;
    }

}

@media screen and (max-width:768px) {
    .footer {
        padding-bottom: 100px;
    }
}

@media screen and (max-width:511px) {

    .footer {
        .inner {
            padding: 0 15px;
        }
    }

    .footer-nav {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 10px;


        & a:last-child::before {
            display: none;
        }

        & a:not(:first-child):before {
            left: -14px;
        }
    }
}