@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --green01: #007140;
    --pink01: #f24ea0;
    --pink02: #ffdcde;
    --pink03: #ffbbbf;
    --pink04: #ffebec;
    --pink05: #ffd9db;
    --pink06: #ffcccf;
    --pink07: #ffd7d9;
    --red01: #cc1302;
    --brown01: #c7b299;
    --blue01: #dff3fc;
    --beige01: #fffaeb;
    --beige02: rgba(255, 249, 233, 0.9);
    --gray: #c3c3c3;


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

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;

    /* 文字サイズ */
    --font15: 1.5rem;
    --font17: 1.7rem;
    --font18: 1.8rem;
    --font19: 1.9rem;
    --font21: 2.1rem;
    --font22: 2.2rem;
    --font32: 3.2rem;
    --font34: 3.4rem;
    --font56: 5.6rem;

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

    /* 行間 */
    --lineHight175: 1.75;
    --lineHight200: 2.0;

    /* 文字間 */
    --fontSpace050: 0.05em;
    --fontSpace100: 0.1em;

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

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

    --opacity07: .7;
}




@media screen and (max-width: 1024px) {
    :root {
        --font17: 1.6rem;
        --font18: 1.7rem;
        --font19: 1.8rem;
        --font21: 1.9rem;
        --font22: 2rem;
        --font32: 2.8rem;
        --font34: 2.9rem;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --font15: 1.4rem;
        --font17: 1.5rem;
        --font18: 1.6rem;
        --font19: 1.7rem;
        --font21: 1.8rem;
        --font22: 1.9rem;
        --font32: 2.6rem;
        --font34: 2.7rem;



        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --font15: 1.3rem;
        --font17: 1.4rem;
        --font18: 1.5rem;
        --font19: 1.6rem;
        --font21: 1.7rem;
        --font22: 1.8rem;
        --font32: 2.3rem;
        --font34: 2.5rem;


        --borderRadius30: 15px;
    }
}



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

body {
    color: var(--black);
    font-family: var(--notoSans);
    font-weight: var(--weight700);
    font-size: var(--font17);
}

p {
    text-align: justify;
    font-size: var(--font17);
    line-height: var(--lineHight200);
    font-weight: var(--weight400);
}

.section {
    position: relative;
}

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

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--font21);

    .en {
        position: relative;
        font-size: 1.81em;
        letter-spacing: var(--fontSpace100);
        color: var(--green01);
        font-weight: 900;
        line-height: var(--lineHight175);
        padding-left: 0.7366em;

        &::before {
            position: absolute;
            content: "";
            top: 50%;
            left: 0;
            width: 0.27em;
            aspect-ratio: 1;
            border-radius: var(--borderRadiusCircle);
            background-color: var(--green01);
            transform: translateY(-50%);
        }
    }

    .ja {
        letter-spacing: var(--fontSpace100);
        padding-left: 1.3334em;
    }
}

.list {
    li {
        position: relative;
        font-size: var(--font15);
        line-height: 1.666666;
        padding-left: 0.65em;

        &::before {
            position: absolute;
            content: "";
            top: 0.65em;
            left: 0;
            width: max(0.4em, 5px);
            aspect-ratio: 1;
            border-radius: var(--borderRadiusCircle);
            background-color: var(--pink01);

        }
    }
}

.marker {
    background: linear-gradient(transparent 88%, var(--pink02) 88%);
    padding-bottom: 5px;
}

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

.block768 {
    display: none;
}


@media screen and (max-width:1024px) {
    .push1024 {
        display: inline-block;
    }

    .none1024 {
        display: none;
    }

    .section__inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


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

    .none768 {
        display: none;
    }

    .block768 {
        display: block;
    }
}

@media screen and (max-width:480px) {
    .push480 {
        display: inline-block;
    }

    .none480 {
        display: none;
    }
}



/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 450px);
    height: 80px;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-color: var(--pink01);
    border: 2px solid var(--pink01);
    font-size: var(--font21);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius15);
    transition: var(--transitionBase);
    cursor: pointer;
    line-height: 1.35;

    &:hover {
        background-color: var(--white);
        color: var(--pink01);

        .arrow {
            background-color: var(--pink01);

            &::before,
            &::after {
                background-color: var(--pink01);
            }
        }

        .arrow02 {

            &::before,
            &::after {
                background-color: var(--pink01);
            }
        }
    }
}

.btn-red {
    background-color: var(--red01);
    border: 2px solid var(--red01);

    &:hover {
        color: var(--red01);
    }
}

.btn-white {
    background-color: var(--white);
    color: var(--pink01);

    &:hover {
        color: var(--white);
        background-color: var(--pink01);
    }
}

.arrowBox {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
}


.arrow {
    position: relative;
    display: inline-block;
    width: 16.8px;
    height: 1px;
    margin: 5.5px 0;
    border-radius: 9999px;
    background-color: var(--white);
    transition: var(--transitionBase);

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 0.5px);
        right: 0;
        width: 9.9px;
        height: 1px;
        border-radius: 9999px;
        background-color: var(--white);
        transform-origin: calc(100% - 0.5px) 50%;
        transition: var(--transitionBase);
    }

    &::before {
        transform: rotate(38.15deg);
    }

    &::after {
        transform: rotate(-38.15deg);
    }
}

.arrow02 {
    position: relative;
    display: inline-block;
    width: 13.2px;
    height: 7.8px;
    transition: var(--transitionBase);

    &::before,
    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 0.5px);
        width: 1.5px;
        height: 10.1px;
        border-radius: 9999px;
        background-color: var(--white);
        transform-origin: 50% calc(100% - 0.5px);
        transition: var(--transitionBase);
    }

    &::before {
        transform: rotate(41.9deg);
    }

    &::after {
        transform: rotate(-41.9deg);
    }
}

@media screen and (max-width: 768px) {
    .btn {
        &:hover {
            background-color: var(--pink01);
            color: var(--white);

            .arrow {
                background-color: var(--white);

                &::before,
                &::after {
                    background-color: var(--white);
                }
            }

            .arrow02 {

                &::before,
                &::after {
                    background-color: var(--white);
                }
            }
        }
    }

    .btn-red {
        &:hover {
            background-color: var(--red01);
        }
    }

    .btn-white {
        &:hover {
            background-color: var(--white);
            color: var(--pink01);
        }
    }

}

@media screen and (max-width: 480px) {
    .btn-outer {
        width: min(100%, 450px);
        height: 60px;
    }
}



/*******************************************
entryBtn
*******************************************/
.entryBtnBox {
    display: flex;
    flex-direction: column;
}

.entryBtnBox-fixed {
    position: fixed;
    right: 0;
    bottom: 5%;
    gap: 25px;
    z-index: 5;
    width: min(100%, 210px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transitionBase);

    .btn-outer {
        width: 100%;
        height: 75px;
    }

    .btn {
        border-radius: var(--borderRadius10) 0 0 var(--borderRadius10);
        font-size: var(--font17);
        line-height: 1.35;
    }

    &.show {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width:1024px) {
    .entryBtnBox-fixed {
        width: min(95%, 800px);
        right: 50%;
        bottom: 3%;
        transform: translateX(50%);
        flex-direction: row;

        .btn {
            border-radius: var(--borderRadius10);
        }
    }
}

@media screen and (max-width:480px) {
    .entryBtnBox-fixed {
        gap: 15px;

        .btn-outer {
            height: 60px;
        }
    }
}

/*******************************************
header
*******************************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 0;
    z-index: 95;
    transition: var(--transitionBase);
}

.bg-white {
    background-color: transparent;

    .hamburger {
        background-color: var(--white);
    }
}

.header__logo {
    width: 314px;
    height: 120px;
    margin-right: 10px;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        width: 100%;
        height: 100%;
        border-radius: 0 0 var(--borderRadius30);

        img {
            width: 73.3%;
            transform: translateY(-10%);
            transition: var(--transitionBase);

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

            }
        }
    }
}

.hamburger {
    display: block;
    position: relative;
    width: 65px;
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 100;
    transition: var(--transitionBase);
    background-color: transparent;
    border-radius: 10px;

    .line {
        position: absolute;
        width: 67%;
        height: 2.4px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .4s;
        background-color: var(--green01);

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

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

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





.headerNav {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 95;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: none;
}

.headerNav__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: min(40%, 400px);
    height: 100%;
    padding: clamp(40px, 3svh, 100px) max(2%, 10px) 2vh;
    margin-left: auto;
    background-color: var(--white);
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    border-left: 2px solid var(--green01);
}

.headerNav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    font-size: 2rem;
    padding: 4vh 5px 3vh;
    border-bottom: 2px solid var(--green01);
    transition: var(--transitionBase);

    &:hover {
        color: var(--green01);
    }


    .en {
        letter-spacing: var(--fontSpace005);
    }

    .ja {
        font-size: 0.7em;
        letter-spacing: var(--fontSpace005);
    }
}

.entryBtnBox-header {
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
    gap: 20px;

    .btn-outer {
        width: min(100%, 300px);
    }
}

.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);
    }
}


@media screen and (max-width:1024px) {
    .header__logo {
        height: 100px;
    }
}

@media screen and (max-width:768px) {
    .header {
        position: absolute;
        top: 0;
        left: 0;
    }

    .header__logo {
        width: 250px;
    }


    .headerNav__list {
        width: 45%;
    }

    .headerNav_link {
        &:hover {
            color: var(--brown01);
        }
    }

    .hamburger {
        position: fixed;
        top: 45px;
        right: 1%;
        transform: translateY(-50%);
    }
}



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

    .headerNav__link {
        font-size: 1.7rem;
    }
}


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

    .header__logo {
        width: 150px;
        height: 70px;
    }


    .hamburger {
        width: 40px;
        top: 27.5px;
        border-radius: 5px;
    }

    .headerNav {
        background-color: var(--white);
    }

    .headerNav__list {
        width: 70%;
        margin: 0 auto;
        align-items: center;
        border: none;
    }

    .headerNav__link {
        font-size: 1.5rem;
        border-bottom: 1px solid var(--green01);
        padding: 2vh 5px;
    }
}


/*******************************************
mv
*******************************************/
.mv {
    position: relative;
}

.mv__ttl {
    position: absolute;
    width: 50.542%;
    top: 24%;
    left: 6%;
    z-index: 1;
}

.mv__parts {
    position: absolute;
    width: 25.849%;
    right: 13%;
    bottom: 4.5%;
    z-index: 1;
}

.mvSwiper-outer {
    position: relative;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .mv__ttl {
        width: 90%;
        top: 53%;
        left: 0;
    }

    .mv__parts {
        width: 35%;
        right: 2%;
    }
}


/*******************************************
about
*******************************************/
.about {
    .section__inner {
        padding: clamp(50px, 7%, 95px) 0 clamp(100px, 36%, 500px);
    }
}

.aboutBox {
    position: relative;
    margin: max(2.5%, 20px) 0 0 0;
}

.about__txt {
    margin-left: auto;
    width: min(100%, 585px);
}

.about__img {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-18%, 9%);
    width: min(48vw, 650px);
    z-index: 2;
}

.about__parts01 {
    position: absolute;
    width: 29.598%;
    top: -5%;
    left: -20%;
}

.about__parts02 {
    position: absolute;
    width: 67.35%;
    bottom: -6%;
    right: -19%;
    z-index: 1;
}

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

    .about {
        .section__inner {
            padding-bottom: max(20%, 50px);
        }
    }

    .about__txt {
        margin-left: auto;
        width: 100%;
    }

    .about__img {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: max(5%, 25px) auto 0;
        width: min(100%, 550px);
    }
}

@media screen and (max-width:768px) {
    .about__parts01 {
        width: max(20%, 100px);
        top: 0%;
        left: -4%;
    }

    .about__parts02 {
        bottom: 5%;
        right: -10%;
    }
}


/*******************************************
search
*******************************************/
.search {

    background-image: linear-gradient(0deg, var(--blue01), var(--white));

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

.search__container {
    position: relative;
    width: min(100%, 970px);
    background-color: var(--brown01);
    border-radius: var(--borderRadius20);
    padding: 63px 0 45px;
    z-index: 1;

    .section__ttl {
        align-items: center;

        .en {
            font-size: 2.6666em;
            padding: 0;

            &::before {
                display: none;
            }
        }
    }
}

.search__parts01 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -28%);
    width: 43.712%;
}

.search__parts02 {
    position: absolute;
    bottom: -9%;
    left: -42%;
    width: 93.58%;
}

.searchBox-outer {
    width: min(100%, 894px);
    margin: 0 auto;
    padding: 95px 55px 80px;
    background-color: var(--white);
}

.searchBox {
    margin-top: max(3.9%, 20px);


}

.searchItem {
    margin-bottom: max(8.94%, 35px);

    .ttl {
        font-size: var(--font32);
        text-align: center;
    }

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

.areaBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}

.map__list {
    position: relative;
    /* width: min(100%, 330px);
    aspect-ratio: 330/478; */
}

.map__item:not(:last-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transitionBase);

    img {
        transition: var(--transitionBase);
    }
}

.map__item.is-active {
    opacity: 1;
    visibility: visible;
}

.areaBtn__list {
    flex: 1;
    max-width: 350px;
}

.areaBtn__item {
    margin-bottom: 30px;

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

    .btn {
        letter-spacing: var(--fontSpace100);
    }
}



.typeBox {
    margin-top: 50px;
}

.typeBtn__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.typeBtn__box {
    width: calc((100% - 70px)/2);

    .btn {
        letter-spacing: var(--fontSpace100);
    }
}



.aco__list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border-radius: var(--borderRadius15);
}

.aco__item {
    a {
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 25.4px 0;
        color: var(--black);
        font-size: var(--font21);
        background-color: var(--pink02);
        letter-spacing: var(--fontSpace100);
        border-bottom: 2px solid var(--pink03);
        transition: var(--transitionBase);

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

        .arrow {
            background-color: var(--black);

            &::before,
            &::after {
                background-color: var(--black);
            }
        }
    }

    &:last-child {
        a {
            border-bottom: 0;
        }
    }
}

.open {
    .arrowBox {
        .arrow02 {
            transform: rotate(180deg);
        }
    }


}

@media screen and (max-width:970px) {
    .search__container {
        padding: 40px 15px;
    }

    .search__parts01 {
        transform: translate(-50%, -38%);
    }
}

@media screen and (max-width:768px) {
    .searchBox-outer {
        padding: 14% max(3%, 5px) 12%;
    }

    .searchItem {
        .ttl {
            margin-bottom: max(8%, 25px);
        }
    }

    .map__list {
        display: none;
    }

    .areaBox {
        gap: 0;
        margin: 0;
    }

    .typeBox {
        margin: 0;
    }

    .areaBtn__list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: none;
        gap: 30px;
    }

    .areaBtn__item,
    .typeBtn__box {
        width: calc((100% - 30px) / 2);
        margin-bottom: 0;
    }
}

@media screen and (max-width:480px) {
    .search__container {
        padding: 30px max(4%, 10px);
    }

    .search__parts01 {
        width: max(45%, 150px);
        transform: translate(-50%, -30%);
    }

    .areaBtn__list {
        gap: 15px;
    }

    .areaBtn__item,
    .typeBtn__box {
        width: calc((100% - 15px) / 2);
    }
}

@media screen and (max-width:450px) {
    .search {
        .section__inner {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
    }

    .search__container {
        & .section__ttl {

            .en {
                font-size: 2em;
            }
        }
    }

    .searchBox {
        margin-top: 10px;
    }

    .searchItem {
        .ttl {
            line-height: var(--lineHight175);
        }
    }

    .areaBtn__list,
    .typeBtn__list {
        width: min(100%, 250px);
        margin: 0 auto;
    }

    .typeBtn__list {
        flex-wrap: wrap;
        gap: 15px;
    }

    .areaBtn__list {
        flex: initial;
    }



    .areaBtn__item,
    .typeBtn__box {
        width: 100%;
    }
}

@media screen and (max-width:330px) {
    .search__container {
        & .section__ttl {
            .en {
                font-size: 1.9em;
            }
        }
    }
}


/*******************************************
job
*******************************************/
.job {
    background-color: var(--beige01);
    background-image:
        radial-gradient(circle, var(--white) clamp(5px, 0.714vw, 15px), transparent clamp(5px, 0.714vw, 15px)),
        radial-gradient(circle, var(--white) clamp(5px, 0.714vw, 15px), transparent clamp(5px, 0.714vw, 15px));
    background-position:
        0 0,
        clamp(17.5px, 2.5vw, 52.5px) clamp(17.5px, 2.5vw, 52.5px);
    background-size:
        clamp(35px, 5vw, 105px) clamp(35px, 5vw, 105px);


    .section__inner {
        padding: clamp(50px, 7.3%, 100px) 0 clamp(55px, 9%, 120px);
    }
}

.jobSwiper {
    margin-top: max(4.5%, 30px);
}

.jobSwiper-tab {
    margin-bottom: 23px;
}

.jobSwiper-tab__list {
    .swiper-slide-thumb-active {
        .btn {
            background-color: var(--pink01);
            color: var(--white);
        }
    }

    .btn-outer {
        width: 100%;
    }

}

.jobSwiper-cont__list {
    .swiper-slide {
        border-radius: var(--borderRadius20);
        background-color: var(--pink04);
        padding: 45px 45px 70px;
    }
}

.jobSwiper__ttl {
    background-color: var(--pink01);
    color: var(--white);
    border-radius: var(--borderRadius15);
    text-align: center;
    font-size: var(--font32);
    padding: 0.37em 0;
}

.jobSwiper__txt {
    margin: 30px 0;
    text-align: center;
}

.jobFlex {
    display: flex;
    justify-content: space-between;
}



.jobFlex__item {
    position: relative;
    width: calc((100% - 50px)/3);
    border-radius: var(--borderRadius10);

    .img {
        margin-bottom: 15px;
        border-radius: var(--borderRadius10);
        overflow: hidden;
    }
}

.jobFlex-point {
    .jobFlex__item {
        background-color: var(--white);
        padding: 35px 21px 25px;
    }
}

.job__detail {
    dt {
        text-align: center;
        font-size: var(--font22);
        margin-bottom: 15px;
    }

    dd {
        font-weight: var(--weight400);
        line-height: 1.666666;
        text-align: justify;
        font-size: var(--font15)
    }
}

.pointBox__ttl {
    position: relative;
    background-color: var(--pink01);
    color: var(--white);
    text-align: center;
    padding: 0.05em 0;
    border-radius: 5px;
    width: min(100%, 188px);
    margin: 20px auto 30px;
    letter-spacing: var(--fontSpace100);
    font-weight: var(--weight700);
    font-size: var(--font19);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/job/icon01.svg);
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 55/42;
        width: 2.897em;
        bottom: 0;
        left: 0;
        transform: translate(-12%, -5%);
    }
}

.jobFlex__number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: var(--weight700);
    color: var(--pink01);
    font-size: var(--font19);
}

.job__detail--point {
    dt {
        margin-bottom: 25px;
    }
}


.btn-outer-job {
    width: min(100%, 450px);
    margin: 60px auto 0;
}

.btn-outer-jobBack {
    width: min(100%, 223px);
    height: 50px;
    margin: 0 15px 0 auto;

    .btn {
        font-size: var(--font17);
        letter-spacing: var(--fontSpace050);
        border-radius: 0 0 var(--borderRadius10) var(--borderRadius10);
    }

    .arrow {
        width: 12px;
        height: 1.5px;
        transform: rotate(-90deg);

        &::before,
        &::after {
            top: calc(50% - 1px);
            width: 8px;
            height: 1.5px;
        }
    }
}

.job__parts01 {
    position: absolute;
    width: 17.9%;
    top: -1.5%;
    left: 91%;
}

.job__parts02 {
    position: absolute;
    width: 22.858%;
    bottom: 5.5%;
    left: -13%;
    z-index: 2;
}


@media screen and (max-width:768px) {
    .jobFlex {
        width: min(100%, 500px);
        margin: 0 auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        .img {
            width: min(100%, 300px);
            margin: 0 auto 10px;
        }
    }

    .jobFlex__item {
        width: 100%;
    }

    .job__detail {
        dt {
            margin-bottom: 5px;
        }
    }


    .job__detail--point {
        dt {
            margin-bottom: 15px;
        }
    }

    .pointBox__ttl {
        margin: max(8%, 30px) auto;
    }

    .job__parts01 {
        width: max(16%, 60px);
        top: -0.5%;
        left: 82%;
    }

    .job__parts02 {
        width: max(20%, 80px);
        bottom: 2%;
        left: 1%;
    }

}

@media screen and (max-width:480px) {
    .jobSwiper-tab {
        margin-bottom: 15px;
    }


    .jobSwiper-cont__list {
        .swiper-slide {
            border-radius: var(--borderRadius20);
            background-color: var(--pink04);
            padding: 30px max(5%, 10px) 55px;
        }
    }

    .jobSwiper__txt {
        margin: 20px 0;
        line-height: 1.4;
    }

    .jobFlex {
        width: min(100%, 300px);

        .img {
            width: min(100%, 250px);
            margin: 0 auto 10px;
        }
    }

    .jobFlex-point {
        .jobFlex__item {
            background-color: var(--white);
            padding: 25px 10px;
        }
    }

    .btn-outer-job {
        width: min(100%, 250px);
        margin-top: 40px;
    }

    .btn-outer-jobBack {
        width: min(100%, 150px);
        height: 50px;
        margin: 0 10px 0 auto;
    }

}




/*******************************************
.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;

    .swiper-pagination-bullet {
        background-color: transparent;
        border: 1px solid var(--pink01);
        opacity: 1;
        transition: var(--transitionBase);
    }

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

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

    .arrowBox {
        right: 50%;
        transform: translate(50%, -50%);
    }

}

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


/*******************************************
environment
*******************************************/
.environment {
    .section__inner {
        padding: clamp(25px, 8%, 100px) 0 clamp(40px, 8%, 100px);
    }
}

.environment__parts {
    position: absolute;
    width: 12.5%;
    top: 4%;
    right: -2%;
}

.environmentSwiper-outer {
    margin-top: max(4.5%, 30px);
}

.environmentSwiper__list {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;

    .swiper-slide {
        width: calc((100% - 50px)/3);
        height: auto;
        background-color: var(--pink04);
        border-radius: var(--borderRadius15);
        padding: 20px 20px 30px;
    }
}

.environmentSwiper__ttl {
    font-size: var(--font22);
    font-weight: var(--weight700);
    text-align: center;
}

.environmentSwiper__main {
    margin-top: 5px;

    .img {
        margin-bottom: 10px;
    }

    .txt {
        font-size: var(--font15);
        line-height: 1.6666;
    }
}

.environmentSwiper-slide03 {
    .environmentSwiper__main {
        margin-top: 20px;
    }
}

.rank__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 5px;
    border-bottom: 2px solid var(--pink01);
    padding-bottom: 15px;

    &:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0px;
    }

    .icon {
        width: 55px;
    }
}

.rank__txt {
    flex: 1;
    font-size: var(--font21);
    line-height: 1.3333;
    font-weight: var(--weight700);
}

.paginationFlex-environment {
    display: none;
}

@media screen and (max-width:975px) {
    .rank__item {
        .icon {
            width: 40px;
        }
    }

    .rank__txt {
        font-size: 1.8vw;
    }
}

@media screen and (max-width:785px) {
    .rank__item {
        .icon {
            width: 35px;
        }
    }
}

@media screen and (max-width:768px) {
    .environment__parts {
        right: 1%;
    }

    .environmentSwiper {
        overflow: visible;
    }

    .environmentSwiper__list {
        flex-wrap: nowrap;
        justify-content: initial;
        row-gap: 0;

        .swiper-slide {
            width: initial;
            height: auto;
            padding: max(3%, 15px) max(3%, 5px);
        }
    }

    .environmentSwiper__main {
        width: min(100%, 250px);
        margin-left: auto;
        margin-right: auto;

        .img {
            margin: 0 auto;
        }
    }

    .rank__txt {
        font-size: 2.3vw;
    }

    .paginationFlex-environment {
        display: flex;
    }

}

@media screen and (max-width:600px) {
    .rank__txt {
        font-size: 1.7rem;
    }
}

@media screen and (max-width:480px) {
    .environmentSwiper__main {
        margin-top: 0;
    }

    .environmentSwiper-slide03 {
        .environmentSwiper__main {
            margin-top: 10px;
        }
    }
}

@media screen and (max-width:375px) {
    .rank__txt {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:360px) {
    .environment__parts {
        width: 10%;
        top: 16%;
    }
}

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

    .environment {
        .section__ttl {
            font-size: 5vw;
        }
    }

    .rank__txt {
        font-size: 1.5rem;
    }
}


/*******************************************
voice
*******************************************/
.voice {
    background-image: linear-gradient(0deg, var(--pink05), var(--white));
    border-bottom: 8px solid var(--green01);

    .section__inner {
        padding: clamp(20px, 7%, 90px) 0 clamp(50px, 10%, 135px);
    }
}

.voiceSwiper-outer {
    width: min(100%, 425px);
    margin-top: max(4.5%, 30px);
}

.voiceSwiper {
    overflow: visible;
}

.voiceSwiper__list {
    .swiper-slide {
        background-color: var(--white);
        border: 3px solid var(--pink06);
        border-radius: var(--borderRadius15);
        height: auto;
        cursor: pointer;
        transition: var(--transitionBase);
        padding: 40px 20px;

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

.quotationBox {
    position: relative;
    font-size: var(--font21);

    &::before,
    &::after {
        position: absolute;
        font-size: 3.57em;
        color: var(--pink07);
        line-height: 1;
    }

    &::before {
        content: "“";
        top: 0;
        left: 0;
        transform: translate(15%, -30%);
    }

    &::after {
        content: "”";
        bottom: 0;
        right: 0;
        transform: translate(15%, 28%);
    }
}

.voiceSwiper__ttl {
    position: relative;
    text-align: center;
    font-weight: var(--weight500);
    font-size: var(--font21);
    line-height: 1.714;
    z-index: 1;
}

.voiceSwiper__main {
    width: min(100%, 365px);
    margin: 0 auto;

    .img {
        border-radius: var(--borderRadius20);
        overflow: hidden;
        margin: 25px 0 20px;
    }
}

.voiceSwiper__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


.voiceSwiper__type {
    font-size: var(--font17);

    span {
        display: block;
    }

    .type {
        font-size: 1.41em;
        color: var(--pink01);
        margin-bottom: 10px;
    }

    .name {
        font-weight: var(--weight400);
    }
}

.arrowBox-voiceSwiper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: initial;
    background-color: var(--pink01);
    aspect-ratio: 1;
    width: 60px;
    border-radius: var(--borderRadiusCircle);
    transform: none;
}

.paginationFlex-voice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: max(4.5%, 30px);
}

.swiper-scrollbar-voice {
    position: initial !important;
    width: min(100%, 236px) !important;
    background-color: var(--white);
    margin-right: 35px;

    .swiper-scrollbar-drag {
        background-color: var(--pink01);
    }
}

.pagiBtnBox-voice {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.btn-outer-voice {
    width: min(100%, 410px);
    height: 115px;
    margin: max(16.84%, 50px) auto 0;

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

    .en {
        font-size: 2em;
    }

    .ja {
        font-weight: var(--weight500);
    }

    .arrow {
        height: 2px;
        width: 20px;

        &::before,
        &::after {
            top: calc(50% - 1px);
            height: 2px;
            width: 11.8px;
        }
    }
}

@media screen and (max-width:768px) {
    .voiceSwiper-outer {
        width: min(100%, 375px);
    }
}

@media screen and (max-width:480px) {
    .voice {
        border-bottom: 4px solid var(--green01);
    }

    .arrowBox-voiceSwiper {
        width: 40px;
    }

    .voiceSwiper__list {
        .swiper-slide {
            padding: 30px 15px;
            display: flex;
            flex-direction: column;
        }

        .quotationBox {
            flex-grow: 1;
        }
    }

    .voiceSwiper__main {
        width: min(100%, 300px);
    }

    .swiper-scrollbar-voice {
        width: min(100%, 200px) !important;
        margin-right: 15px;
    }

    .btn-outer-voice {
        width: min(100%, 300px);
        height: 80px;
    }
}

@media screen and (max-width:395px) {
    .voiceSwiper__ttl {
        font-size: 1.5rem;
    }

    .voiceSwiper__main {
        .img {
            margin: 10px 0 20px;
        }
    }

    .voiceSwiper__type {
        .type {
            font-size: 1.2em;
            margin-bottom: 5px;
        }
    }

}

/*******************************************
modal（voice）
*******************************************/
/* 共通
ーーーーーーーーーーーーーーーーーーー */
.no-scroll {
    overflow: hidden;

    body {
        overflow: scroll;
    }
}

.modal {
    /* 背景 */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: auto;
    background-color: var(--beige02);
    z-index: -100;
    overflow: auto;
    transition: var(--transitionBase);
}

.modalBox-outer {
    /* 最大幅*/
    position: absolute;
    width: min(100vw, 980px);
    height: auto;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: var(--transitionBase);
    padding: clamp(40px, 10%, 130px) 0;
    z-index: -100;
}

.modalBox {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    height: auto;
    border-radius: var(--borderRadius20);
}

.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;

    .show.modalBox-outer {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        z-index: 1001;
    }
}

.modal__inner {
    /* モーダル中身のインナー */
    width: min(100%, 850px);
    margin: 0 auto;
    padding: 75px 0;
}

.modalClose-top {
    position: absolute;
    content: "";
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--pink01);
    border: 1px solid var(--pink01);
    top: 0;
    right: 0;
    border-radius: var(--borderRadiusCircle);
    transform: translate(50%, -50%);
    z-index: 10;
    transition: var(--transitionBase);

    &::before,
    &::after {
        position: absolute;
        content: "";
        width: 50%;
        height: 2px;
        top: 50%;
        left: 50%;
        background-color: var(--white);
        transition: var(--transitionBase);
    }

    &::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    &::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    &:hover {
        background-color: var(--white);

        &::before,
        &::after {
            background-color: var(--pink01);
        }

    }
}

.btn-outer-modal {
    width: min(100%, 306px);
    margin: max(6.5%, 40px) auto 0;
    height: 70px;

    .btn {
        font-size: var(--font17);

        &::before,
        &::after {
            position: absolute;
            content: "";
            width: 8%;
            height: 1px;
            top: 50%;
            right: 2%;
            background-color: var(--white);
            transition: var(--transitionBase);
        }

        &::before {
            transform: translateY(-50%) rotate(45deg);
        }

        &::after {
            transform: translateY(-50%) rotate(-45deg);
        }

        &:hover {

            &::before,
            &::after {
                background-color: var(--pink01);
            }
        }
    }
}


@media screen and (max-width:1024px) {
    .modal__inner {
        padding: 80px 15px;
    }

    .modalClose-top {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

@media screen and (max-width:960px) {
    .modal__inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


@media screen and (max-width:768px) {
    .modalClose-top {
        width: 40px;

        &:hover {
            background-color: var(--pink01);

            &::before,
            &::after {
                background-color: var(--white);
            }

        }
    }

    .btn-outer-modal {

        .btn {

            &:hover {

                &::before,
                &::after {
                    background-color: var(--white);
                }
            }
        }
    }

}

@media screen and (max-width:480px) {
    .btn-outer-modal {
        width: min(100%, 200px);
    }
}


/* 共通
ーーーーーーーーーーーーーーーーーーー */
.modalMv {
    position: relative;
    margin: 0 auto max(8%, 35px);
}

.modalMv__txtBox {
    position: absolute;
    width: 100%;
    top: 9%;
    left: 0;
}

.quotationBox-modal {
    width: fit-content;

    &::before,
    &::after {
        font-size: 6.2em;
    }

    &::before {
        transform: translate(-20%, -35%);
    }

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

.modalMv__ttl {
    position: relative;
    font-size: var(--font32);
    line-height: 1.625;
    font-weight: var(--weight500);
    z-index: 1;
}

.modalMv__img {
    width: 66%;
    margin-left: auto;

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

.modalMv__detail {
    margin-top: 50px;

    p {
        font-size: var(--font17);
        line-height: 1.4117;
    }

    .name {
        font-size: var(--font34);
        margin-top: 10px;

        .small {
            font-size: 0.44em;
        }
    }
}

.modal__q {
    font-size: var(--font21);

    dt {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 10px;

        p {
            flex: 1;
            font-size: var(--font21);
            line-height: 1.217;
            font-weight: var(--weight500);
        }
    }

    dd {
        margin-bottom: max(6.396%, 30px);
        background-color: var(--pink04);
        padding: 20px;
        border-radius: var(--borderRadius10);

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

        p {
            line-height: var(--lineHight175);
            font-weight: var(--weight400);
        }
    }
}

.q-icon {
    position: relative;
    display: block;
    width: 1.74em;
    aspect-ratio: 1;
    transform: translateY(-15%);
    background-color: var(--pink01);
    border-radius: var(--borderRadiusCircle);

    &::before {
        position: absolute;
        content: "Q";
        font-size: 1em;
        color: var(--white);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
        font-family: var(--notoSan);
        font-weight: var(--weight500);
    }
}

@media screen and (max-width: 768px) {
    .modalMv {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: min(100%, 600px);
        margin-left: auto;
        margin-right: auto;
    }

    .modalMv__txtBox {
        position: initial;
    }

    .modalMv__img {
        width: min(100%, 400px);
        margin: 0 0 max(5%, 15px) 0;

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

    .modalMv__detail {
        margin-top: max(3%, 10px);
    }

    .modal__q {
        dd {
            padding: 15px 10px;
        }
    }
}




/* 共通↑↑↑
ーーーーーーーーーーーーーーーーーーー */

@media screen and (max-width: 768px) {
    .modalMv {
        width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;
    }

    .quotationBox-modal {
        width: 100%;

        &::before,
        &::after {
            font-size: 4em;
        }

        &::before {
            transform: translateY(-25%);
        }

        &::after {
            transform: translateY(55%);
            left: auto;
            right: 0;
        }
    }

    .modalMv__ttl {
        text-align: center;
    }

    .modalMv__detail {
        .name {
            margin-top: 5px;
        }
    }
}

@media screen and (max-width: 480px) {
    .modal__inner {
        padding: 60px 15px;
    }

    .btn-outer-modal {
        height: 50px;
    }
}


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

.footer {
    background-color: var(--white);
    padding: 45px 0;
    position: relative;
    font-size: 12px;
    color: var(--green01);
    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(--green01);
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    text-align: center;
    font-size: 12px;
}

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



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

    .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;
        }
    }
}