@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.8);
    --orange01: #ff9e00;
    --yellow01: #f9c400;
    --yellow02: #fef1aa;
    --yellow03: #ffdf50;
    --brown01: #42210b;
    --red01: #d51e21;
    --beige01: #ffeabf;
    --beige02: rgba(255, 234, 191, 0.9);
    --gray: #c3c3c3;


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


    --shadow01: 0 0 15px rgba(0, 0, 0, 0.10);



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

    /* 文字サイズ */
    --font15: 1.5rem;
    --font17: 1.7rem;
    --font18: 1.8rem;
    --font19: 1.9rem;
    --font20: 2rem;
    --font21: 2.1rem;
    --font23: 2.3rem;
    --font24: 2.4rem;
    --font26: 2.6rem;
    --font30: 3rem;
    --font32: 3.2rem;
    --font36: 3.6rem;
    --font39: 3.9rem;
    --font50: 5rem;
    --font100: 10rem;

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

    /* 行間 */
    --lineHight160: 1.6;
    --lineHight175: 1.75;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace005: 0.05em;

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

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --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;
        --font23: 2rem;
        --font24: 2.1rem;
        --font26: 2.4rem;
        --font30: 2.5rem;
        --font32: 2.6rem;
        --font36: 3rem;
        --font39: 3.5rem;
        --font50: 4.5rem;
        --font100: 8rem;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --font15: 1.4rem;
        --font17: 1.5rem;
        --font18: 1.6rem;
        --font19: 1.7rem;
        --font21: 1.8rem;
        --font20: 1.8rem;
        --font23: 1.8rem;
        --font24: 1.9rem;
        --font26: 2.2rem;
        --font30: 2.3rem;
        --font32: 2.4rem;
        --font36: 2.6rem;
        --font39: 3rem;
        --font50: 4rem;
        --font100: 6rem;


        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --font15: 1.3rem;
        --font17: 1.4rem;
        --font18: 1.5rem;
        --font19: 1.6rem;
        --font21: 1.7rem;
        --font21: 1.7rem;
        --font20: 1.7rem;
        --font24: 1.8rem;
        --font26: 2rem;
        --font30: 2.1rem;
        --font32: 2.2rem;
        --font36: 2.3rem;
        --font39: 2.5rem;
        --font50: 3rem;
        --font100: 4rem;


        --borderRadius20: 10px;
    }
}

@media screen and (max-width: 375px) {
    :root {
        --font23: 1.5rem;
        --font50: 2.5rem;
        --font100: 3rem;
    }
}



/*******************************************
common
*******************************************/
body {
    color: var(--brown01);
    font-family: var(--zenMaru);
    font-weight: var(--weight700);
    font-size: var(--font18);
}

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

.section {
    position: relative;
}

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

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

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

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

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: var(--font100);
    line-height: 1.5;
    z-index: 1;

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

    .ja {
        letter-spacing: var(--fontSpace005);
        font-size: max(0.26em, 14px);
        line-height: 1;
    }
}

.section__txt {
    position: relative;
    font-size: var(--font19);
    text-align: left;
    line-height: 2.6315;
    z-index: 1;
}

.section__top {
    position: relative;
    margin-top: 70px;

    .section__txt {
        padding-bottom: 40px;
    }

    .img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: min(100%, 710px);
        border-radius: var(--borderRadius20);
        overflow: hidden;
    }
}

.section__container {
    width: min(100%, 980px);
    margin-right: auto;
}

.itemTtl {
    position: relative;
    font-size: var(--font32);
    padding-left: 1.4em;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/icon01.svg);
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0.94em;
        aspect-ratio: 30.5/42;
    }
}

.section__top--reverse {
    .section__txt {
        text-align: right;
    }

    .img {
        left: 0;
    }
}

.wave01 {

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/wave.png);
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: 1400/54;
        width: 103%;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0);
    }
}

.wave01-reverse {
    &::before {
        transform: translate(-50%, -100%) rotate(180deg);
    }
}

.dot {
    position: relative;
    padding-left: 1em;

    &::before {
        position: absolute;
        content: "";
        aspect-ratio: 1;
        width: 3.5px;
        background-color: var(--brown01);
        top: 50%;
        left: 0.4em;
    }
}

.marker {
    background: linear-gradient(transparent 75%, var(--yellow01) 75%);
}

.marker-yellow02 {
    background: linear-gradient(transparent 75%, var(--yellow02) 75%);
}

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

.bg-01 {
    background-image: url(../img/common/bg02.jpg);
    background-size: min(35.857%, 502px);
    background-repeat: repeat;
    background-position: center;
}

.bg-01-modal {
    background-image: url(../img/common/bg04.png);
}

.bg-02 {
    background-image: url(../img/common/bg03.jpg);
    background-size: min(17.86%, 250px);
    background-repeat: repeat;
    background-position: center;
}


.color-red01 {
    color: var(--red01);
}

.block768,
.block655,
.block337,
.block343,
.block385 {
    display: none;
}




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

        .img {
            width: 60%;
        }
    }
}

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

    .none1024 {
        display: none;
    }

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

    .section__top {
        margin-top: 40px;

        .section__txt {
            padding-bottom: 20px;
        }
    }
}

@media screen and (max-width:835px) {
    .none835 {
        display: none;
    }
}

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

    .none768 {
        display: none;
    }

    .block768 {
        display: block;
    }

    .section__ttl--center768 {
        align-items: center;
    }

    .section__txt {
        text-align: center;
        line-height: var(--lineHight20);
    }

    .section__top {
        margin-top: max(5%, 25px);
        display: flex;
        flex-direction: column;
        align-items: center;


        .section__txt {
            padding-bottom: 0;
        }

        .img {
            position: initial;
            width: min(100%, 500px);
            margin-top: 25px;
        }
    }

    .section__top--reverse {
        .section__txt {
            text-align: center;
        }
    }
}

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

}

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

    .none480 {
        display: none;
    }
}

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

    .none385 {
        display: none;
    }
}


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

    .none343 {
        display: none;
    }
}


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

    .none337 {
        display: none;
    }
}



/*******************************************
追従ボタン
*******************************************/
.main__inner {
    position: relative;
}

.topReturn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 60px;
    aspect-ratio: 1;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadiusCircle);
    background-color: var(--yellow01);
    border: 2px solid var(--brown01);
    transition: var(--transitionBase);
    z-index: 90;

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

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

}

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

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

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

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

@media screen and (max-width: 768px) {
    .topReturn {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 620px) {
    .topReturn {
        bottom: 12%;
    }
}

@media screen and (max-width:480px) {
    .topReturn {
        border: 1.5px solid var(--brown01);
    }

    .topReturn__link {

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


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

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-color: var(--red01);
    font-size: var(--font17);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transitionBase);
    cursor: pointer;
    line-height: var(--lineHight140);

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

.btn-orange {
    background-color: var(--orange01);
}

.btn-yellow {
    background-color: var(--yellow01);
}

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

.arrowBox {
    position: absolute;
    background-image: url(../img/common/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    top: 50%;
    right: 3%;
    aspect-ratio: 12/9;
    width: 12px;
}

.arrowBox-brown {
    background-image: url(../img/common/arrow-brown.svg);
}

@media screen and (max-width:768px) {
    .btn-outer {
        height: 50px;
    }
}

/*******************************************
entryBtnBox
*******************************************/
.entryBtnBox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;


    .btn {
        color: var(--brown01);
        letter-spacing: var(--fontSpace005);
    }
}

.entryBtnBox-fixed {
    flex: 1;
    margin-right: 30px;
}

@media screen and (max-width:1024px) {
    .entryBtnBox-fixed {
        margin-right: 10px;
    }


}


@media screen and (max-width:768px) {
    .entryBtnBox-fixed {
        position: fixed;
        flex: initial;
        justify-content: space-between;
        left: 50%;
        bottom: 2%;
        margin-right: 0;
        width: min(95%, 500px);
        transform: translateX(-50%);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: var(--transitionBase);

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

        .btn-outer {
            width: calc((100% - max(1vw, 5px))/2);
        }
    }
}

@media screen and (max-width:480px) {
    .entryBtnBox-fixed {
        margin-right: 0;
        width: min(98%, 500px);

        .btn {
            letter-spacing: initial;
        }
    }

    .entryBtnBox-header {
        gap: 10px !important;
    }


}

@media screen and (max-width:375px) {
    .entryBtnBox-fixed {
        .btn {
            font-size: 1.2rem;
        }
    }
}



/*******************************************
header
*******************************************/
.hamburger {
    display: none;
}

.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px 0 25px;
    height: 100px;
    z-index: 95;
    transition: var(--transitionBase);
}

.bg-white {
    background-color: transparent;

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

.header__logo {
    width: 106px;
    margin-right: 10px;

    a {
        display: inline-block;
        width: 100%;
        height: 100%;
        transition: var(--transitionBase);

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

.header__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.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: 65%;
        height: 2.4px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .4s;
        background-color: var(--orange01);

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

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

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





.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(--orange01);
    overflow: scroll;
}

.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(--orange01);
    transition: var(--transitionBase);

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


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

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

.entryBtnBox-header {
    flex-direction: column;
    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 {
        padding: 0 10px;
    }
}

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

    .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: 70px;
    }

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

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

    .headerNav__list {
        width: min(100%, 350px);
        margin: 0 auto;
        align-items: center;
        border: none;
    }

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


/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    border-radius: 0 0 6vw 6vw;
    overflow: hidden;
}

.mv__ttlBox {
    position: absolute;
    left: 47%;
    bottom: 17%;
    font-size: 3.57vw;
    width: 41.3%;
    z-index: 1;


    .main {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/mv/ttl-parts.png);
            background-size: contain;
            background-repeat: no-repeat;
            top: 0;
            left: 0;
            aspect-ratio: 268/132;
            width: 46.86%;
            transform: translate(-34%, -77%);
        }

        &>span {
            display: inline-block;
            width: 100%;
            text-align: center;
            background-color: var(--white02);
            margin-bottom: 0.3em;
            border-radius: 0.35em;
            padding: 0.1em 0;

            &:last-child {
                margin-bottom: 0.5em;
            }
        }
    }

    .sub {
        font-size: 0.39em;
        letter-spacing: var(--fontSpace005);
    }
}

@media screen and (max-width:768px) {
    .mv {
        border-radius: 0 0 10vw 10vw;
    }

    .mv__ttlBox {
        left: 14%;
        bottom: 18%;
        font-size: 7vw;
        width: 85%;

        .main {
            position: relative;

            &::before {
                width: 40%;
            }
        }
    }
}




/*******************************************
message
*******************************************/
.message {

    .section__inner {
        padding: clamp(60px, 14.5%, 200px) 0 clamp(50px, 6.5%, 90px);
    }
}

.messageFlex {
    display: flex;
    width: min(100%, 1190px);
    margin-left: auto;
    margin-right: 0;
}

.messageFlex__txt {
    flex: 1;
    margin-right: 15px;
    padding-top: 5.45%;
}

.message__ttl {
    position: relative;
    font-size: var(--font50);
    line-height: var(--lineHight160);
}

.message__ttl-parts01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 50.78%;
    transform: translate(-33%, -30%);
    z-index: -1;
}

.message__ttl-parts02 {
    position: absolute;
    top: 0;
    right: 0;
    width: 29.12%;
    transform: translate(-35%, -90%);
    z-index: -1;
}

.message__txtBox {
    margin-top: 10.2%;
}

.message__txt {
    margin-bottom: 8.5%;

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

.messageFlex__img {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: min(100%, 598px);
}

.messageSlide {
    width: calc((100% - 35px)/2);
}

.loopSwiper01,
.loopSwiper02 {
    height: 1145px;
    overflow: hidden;
}

.loopSwiper__list {
    transition-timing-function: linear;

    .swiper-slide {
        height: auto;

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

@media screen and (max-width:1230px) {
    .message {
        .section__inner {
            padding-left: 20px !important;
            padding-right: 0 !important;
        }
    }

    .messageFlex__img {
        width: min(100%, 450px);
    }

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

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


    .loopSwiper01,
    .loopSwiper02 {
        height: 950px;
    }

    .messageFlex__img {
        width: min(100%, 350px);
    }
}

@media screen and (max-width:865px) {
    .messageFlex__img {
        width: min(100%, 250px);
    }
}

@media screen and (max-width:768px) {
    .message {
        .section__inner {
            padding-right: 20px !important;
        }
    }

    .messageFlex {
        display: block;
    }

    .message__txtBox {
        margin-top: max(6%, 25px);
    }

    .messageFlex__txt {
        padding: 0;
        margin: 0 0 30px;

    }

    .message__ttl {
        text-align: center;
    }

    .message__txt {
        margin-bottom: max(5%, 25px);
    }

    .loopSwiper01,
    .loopSwiper02 {
        height: auto;
        overflow: visible;
    }

    .messageFlex__img {
        width: 100vw;
        flex-direction: column;
        gap: 15px;
    }

    .messageSlide {
        width: 100%;
    }

    .message__ttl-parts01 {
        width: 30%;
        transform: translate(-50%, -30%);
    }

    .message__ttl-parts02 {
        width: 20%;
        transform: translate(-50%, -85%);
    }
}

@media screen and (max-width:480px) {
    .messageFlex__img {
        gap: 5px;
    }

    .loopSwiper__list {

        .swiper-slide {

            img {
                border-radius: 5px;
            }

        }
    }
}



/*******************************************
paginationFlex
*******************************************/
.paginationFlex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pagiBtn {
    cursor: pointer;
}

.arrow-circle {
    position: relative;
    width: 40px;
    aspect-ratio: 1;
    background-color: var(--red01);
    border-radius: var(--borderRadiusCircle);

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

.arrow-circle-brown {
    background-color: var(--brown01);
}


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

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

    .arrow-circle {
        width: 30px;
    }
}


/*******************************************
job
*******************************************/
.job {
    background-image: url(../img/job/job-bg.jpg);
    background-size: min(17.5%, 245px);
    background-repeat: repeat;
    background-position: center;
    padding: clamp(80px, 10%, 155px) 0 clamp(70px, 11%, 150px);
}


.job__inner {
    position: relative;
    width: min(100%, 1125px);
    margin-left: auto;
}

.job-parts01 {
    position: absolute;
    width: 37.6%;
    top: 0;
    left: 0;
    transform: translate(-45%, -70%) rotate(-15deg);
}

.job__container {
    margin-top: max(11.23%, 40px);
}

.jobItem {
    margin-bottom: max(10.7%, 40px);

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

    .itemTtl {
        margin-bottom: 0;
        letter-spacing: var(--fontSpace005);

        &:last-child {
            margin-bottom: 30px;
        }

        .sub {
            font-size: 0.625em;
            margin-left: 1em;
            letter-spacing: var(--fontSpace005);
        }
    }
}

.jobSwiper {
    overflow: visible;
}

/* .jobSwiper__list {
    .swiper-slide {
        height: auto;
    }
} */

.jobSwiper__flex {
    position: relative;
    display: flex;
    background-color: var(--white);
    border-radius: var(--borderRadius20);
    box-shadow: var(--shadow01);
    /* overflow: hidden; */

    .img {
        width: min(100%, 334px);

        img {
            height: 100%;
            object-fit: cover;
            border-radius: var(--borderRadius20) 0 0 var(--borderRadius20);
        }
    }

    &::before {
        position: absolute;
        content: "01";
        font-size: 8rem;
        font-weight: var(--weight700);
        line-height: 1;
        top: 0;
        left: 0;
        transform: translate(-20%, -46%);
        letter-spacing: 0.1em;
    }
}

.jobSwiper-slide02 {
    .jobSwiper__flex::before {
        content: "02";
    }
}

.jobSwiper-slide03 {
    .jobSwiper__flex::before {
        content: "03";
    }
}

.jobSwiper__detail {
    flex: 1;
    padding: 30px 30px 35px;

    dt {
        font-size: var(--font24);
        letter-spacing: var(--fontSpace005);
    }

    dd {
        margin-top: 30px;
    }
}

.schedule-outer {
    margin-top: 30px;
    overflow: hidden;
}

.schedule__list {
    width: min(100%, 926px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 25px;
}

.schedule__item {
    position: relative;
    width: calc((100% - 150px)/4);
    display: flex;
    align-items: center;
    flex-direction: column;

    &:nth-child(1) {
        .time-icon {
            overflow-x: hidden;
        }
    }

    &:nth-child(8) {
        .time-icon {
            overflow-x: hidden;
        }
    }

    &:nth-child(4),
    &:nth-child(6) {

        .schedule__txt {
            text-align: left;
        }
    }
}

.time-icon {
    position: relative;
    aspect-ratio: 1;
    width: 116px;
    margin-bottom: 15px;

    &::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        width: 325%;
        height: 3px;
        background-color: var(--red01);
        transform: translate(-50%, -50%);
    }

    .time {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: var(--red01);
        font-size: var(--font21);
        letter-spacing: var(--fontSpace005);
    }

    .kara {
        transform: rotate(90deg);
    }
}

.time-icon__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border: 3px solid var(--red01);
    border-radius: var(--borderRadiusCircle);
    z-index: 1;
}

.schedule__txt {
    font-size: var(--font15);
    text-align: center;
    line-height: 1.666;
}

.paginationFlex-job-sp {
    display: none;
}


@media screen and (max-width:1200px) {
    .job-parts01 {
        transform: translate(-18%, -80%) rotate(-15deg);
        width: 33%;

    }
}


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

@media screen and (max-width:930px) {
    .schedule__item {
        width: calc((100% - 60px)/4);
    }
}

@media screen and (max-width:835px) {
    .schedule__list {
        overflow: hidden;
        width: min(100%, 600px);
    }

    .schedule__item {
        width: 100%;
        flex-direction: row;
        gap: 20px;

        &:nth-child(1) {
            .time-icon {
                overflow-x: initial;
            }
        }

        &:nth-child(8) {
            .time-icon {
                overflow-x: initial;

                &::after {
                    display: none;
                }
            }
        }
    }

    .schedule__txt {
        flex: 1;
        text-align: left;
    }

    .time-icon {
        width: 100px;
        margin: 0;

        &::after {
            top: 90%;
            left: 50%;
            width: 3px;
            height: 100%;
            transform: translateX(-50%);
        }


    }
}

@media screen and (max-width:768px) {
    .job__inner {
        padding-right: 20px !important;
    }

    .jobSwiper__flex {

        .img {
            width: min(100%, 250px);
        }
    }


    .job-parts01 {
        transform: translate(-10%, -60%) rotate(-15deg);
    }
}

@media screen and (max-width:600px) {
    .jobSwiper-outer {
        width: min(100%, 400px);
        margin: 30px auto 0;
    }

    .jobSwiper__flex {
        flex-direction: column;
        align-items: center;

        .img {
            width: 100%;
            height: 250px;
            overflow: hidden;


            img {
                object-position: center;
                border-radius: var(--borderRadius20) var(--borderRadius20) 0 0;
            }
        }

        &::before {
            font-size: 5rem;
        }
    }

    .paginationFlex-job-sp {
        display: flex;
        margin-top: 15px;
    }

    .paginationFlex-job-pc {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .jobSwiper__detail {
        flex: initial;
        padding: 25px 10px;

        dd {
            margin-top: 20px;
        }
    }



    .schedule__item {
        gap: 10px;
    }

    .time-icon {
        width: 70px;

        &::after {
            width: 1.5px;
        }
    }

    .time-icon__inner {
        border: 1.5px solid var(--red01);
    }

    .time {
        font-size: 1.4rem !important;
    }
}

@media screen and (max-width:375px) {
    .jobSwiper__flex {

        .img {
            height: 200px;
        }

        &::before {
            font-size: 3rem;
        }
    }
}



/*******************************************
interview
*******************************************/
.interview {
    .section__inner {
        padding: clamp(30px, 8%, 110px) 0 clamp(60px, 9%, 120px);
    }

    .section__ttl {
        position: relative;
        align-items: center;
        width: fit-content;
        margin: 0 auto;
    }
}

.interview__top {
    margin-top: max(5.5%, 25px);

    .section__txt {
        padding: 0;
    }
}

.interview-parts {
    position: absolute;
    width: 47%;
    top: 0;
    right: 0;
    transform: translate(73%, -7%);
}

.interviewSwiper-outer {
    margin-top: max(3%, 20px);
}

.interviewSwiper {
    overflow: visible;
}

.interviewSwiper__list {
    .swiper-slide {
        cursor: pointer;
        transition: var(--transitionBase);

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

.interviewSwiper__imgBox {
    position: relative;
    border-radius: var(--borderRadius20);
    overflow: hidden;
}

.interviewSwiper__ttl {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: var(--font26);
    writing-mode: vertical-rl;

    &>span {
        display: block;
        background-color: var(--white02);
        border-radius: 0 0 0.38em 0.38em;
        padding: 0.5em 0.27em;
        height: fit-content;
        margin-left: 10px;

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

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

.interviewSwiper__nameBox {
    font-size: var(--font17);
    margin-top: 1.2em;

    .name {
        font-size: 1.47em;
        letter-spacing: var(--fontSpace005);
    }
}

.typeFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -0.7em;

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

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

@media screen and (max-width:410px) {
    .interviewSwiper__ttl {
        right: 10px;
        font-size: 4.4vw;

        &>span {
            margin-left: 5px;
        }
    }
}

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



/*******************************************
modal
*******************************************/
/* 共通
ーーーーーーーーーーーーーーーーーーー */
.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;
    z-index: -100;
    overflow: auto;
    transition: var(--transitionBase);
}

.modalBox-outer {
    /* 最大幅*/
    position: absolute;
    height: auto;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: var(--transitionBase);
    padding: clamp(40px, 10%, 140px) 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(--red01);
    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 {
        opacity: var(--opacity07);
    }
}

.btn-outer-modalLink {
    margin: max(7.7%, 40px) auto 0;

    .arrowBox {
        width: 1em;
        right: 8%;
    }
}

.btn-outer-modal {
    margin: 25px auto 0;

    .btn {
        cursor: pointer;

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

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

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





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

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

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


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


    .modalClose-top {
        width: 40px;

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

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

        }
    }

}


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

.modalMv__txtBox {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 40px;
}

.modalMv__ttl {

    p {
        background-color: var(--beige02);
        color: var(--brown01);
        font-size: var(--font36);
        border-radius: var(--borderRadius10);
        width: fit-content;
        margin-bottom: 0.34em;
        line-height: 1.7;
        padding: 0 0.5em;

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



.modalMv__detail {
    margin-top: auto;

    p {
        font-size: var(--font19);
        line-height: 1.47;
    }

    .name {
        font-size: 2.2em;

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

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

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


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

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

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

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

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

.q-icon {
    position: relative;
    display: block;
    width: 1.74em;
    aspect-ratio: 1;
    transform: translateY(-15%);
    background-color: var(--red01);
    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);
    }
}

@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;
        padding: 0;
    }

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

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

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

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

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

    .modalMv__ttl {
        p {
            font-size: 2rem;
        }
    }

    .modalMv__detail {
        p {
            font-size: 1.5rem;
        }

        .name {
            line-height: 1.15;
            font-size: 1.7em;

            .small {
                font-size: 0.5em;
                margin-left: 3px;
            }
        }
    }

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

@media screen and (max-width: 375px) {
    .modalMv__ttl {
        p {
            font-size: 1.8rem;
        }
    }

    .modalMv__detail {
        p {
            font-size: 1.4rem;
        }

        .name {
            font-size: 1.5em;
        }
    }
}

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




/*******************************************
environment
*******************************************/
.environment {
    padding: clamp(40px, 11%, 150px) 0 clamp(40px, 10%, 130px);

    .section__ttl {
        text-align: right;
    }
}

.environment__inner {
    position: relative;
    width: min(100%, 1136px);
    margin-right: auto;
}

.environment-parts01 {
    position: absolute;
    width: 15.94%;
    top: 0;
    left: 0;
    transform: translate(120%, -73%) rotate(-10deg);
}

.environment__container {
    width: min(100%, 800px);
    margin: max(11.2%, 40px) auto 0;

    .itemTtl {
        text-align: center;
        width: fit-content;
        margin: 0 auto max(6.3%, 30px);
    }
}

.environmentItem {
    margin-bottom: max(14%, 50px);
}

.supportBox {
    background-color: var(--white);
    border-radius: var(--borderRadius20);
    box-shadow: var(--shadow01);
    padding: 45px 40px 45px 50px;
    margin-bottom: max(7%, 30px);
}

.supportBox__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;

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

        .img {
            padding-top: 15px;
        }
    }

    .img {
        width: min(100%, 131px);

    }
}

.supportBox__detail {
    flex: 1;
    margin-left: 55px;

    dt {
        margin-bottom: 1em;
        letter-spacing: var(--fontSpace005);
        font-size: var(--font24);
    }
}

.voiceBox {
    position: relative;
    background-color: var(--yellow01);
    padding: 23px 35px 30px;
    border-radius: var(--borderRadius20);

    .ttl {
        text-align: center;
        letter-spacing: var(--fontSpace005);
        font-size: var(--font24);
        margin: 30px 0;
        line-height: 1.416;
    }

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translate(-50%, -97%);
        display: inline-block;
        width: 36.5px;
        aspect-ratio: 36.5/27;
        background: var(--yellow01);
        clip-path: polygon(0 100%, 50% 0, 100% 100%);
    }
}

.voiceBox-head {
    margin: 0 auto;
    display: block;
    font-size: var(--font20);
    background-color: var(--yellow02);
    text-align: center;
    /* width: min(100%, 167px); */
    width: fit-content;
    border-radius: var(--borderRadius01);
    padding: 0.45em 20px;
    text-align: center;
}

.career__txt {
    text-align: center;
}

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

.environmentSwiper-tab {
    width: min(100%, 620px);
    margin: 0 auto 25px;
}

.environmentSwiper-tab__list {
    justify-content: space-between;

    .swiper-slide {
        text-align: center;
        background-color: var(--white);
        cursor: pointer;
        transition: var(--transitionBase);
        font-size: var(--font17);
        line-height: 1.235;
        padding: 0.95em 5px;
        border-radius: 15px;
        width: calc((100% - 30px)/2);




        &.swiper-slide-thumb-active {
            background-color: var(--red01);
            color: var(--white);
        }

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

    }
}

.environmentSwiper-cont {
    overflow: visible;

}

.environmentSwiper-cont__list {
    .swiper-slide {
        background-color: var(--white);
        padding: 45px 45px 70px;
        border-radius: var(--borderRadius20);
        box-shadow: var(--shadow01);
    }
}

.environmentSwiper-cont__top {
    margin-bottom: max(10%, 30px);

    .ttl {
        font-size: var(--font24);
        line-height: 1.4166;
        letter-spacing: var(--fontSpace005);
    }

    .img {
        margin-top: -5%;
    }
}

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

.career02__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 20px;
    margin-top: 20px;
}

.career02__item {
    width: calc((100% - 40px)/3);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow03);
    border-radius: 5px;
    letter-spacing: var(--fontSpace005);
    font-size: var(--font19);
}



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

@media screen and (max-width:1024px) {
    .environment-parts01 {
        position: absolute;
        width: 15.94%;
        top: 0;
        left: 0;
        transform: translate(30%, -70%) rotate(-10deg);
    }
}

@media screen and (max-width:768px) {
    .environment__inner {
        padding-left: 20px !important;
    }

    .environment__container {
        width: min(100%, 600px);
    }

    .supportBox {
        padding: 35px 20px;
    }

    .supportBox__item {
        .img {
            width: min(100%, 90px);

        }
    }

    .supportBox__detail {
        margin-left: 20px;
    }

    .career02__item {
        height: 60px;
    }

}

@media screen and (max-width:480px) {
    .supportBox__item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;

        &:last-child {

            .img {
                padding-top: 0;
            }
        }
    }

    .supportBox__detail {
        margin: 15px 0 0;

        dt {
            text-align: center;
            margin-bottom: 15px;
        }
    }


    .voiceBox {
        padding: 25px 20px 30px;

        &::before {
            width: 20px;
        }

        .ttl {
            margin: 20px 0;
        }
    }

    .environmentSwiper-tab__list {
        justify-content: initial;

        .swiper-slide {
            padding: 0.7em 5px;
            border-radius: 10px;
            width: auto;
        }
    }

    .environmentSwiper-cont__list {
        .swiper-slide {
            padding: 35px 20px;
        }
    }

    .career02__list {
        gap: 10px;
    }

    .career02__item {
        width: calc((100% - 20px)/3);
    }
}

@media screen and (max-width:375px) {
    .environmentSwiper-cont__list {
        .swiper-slide {
            padding: 30px 10px;
        }
    }
}

/*******************************************
question
*******************************************/
.question {
    .section__inner {
        padding: clamp(40px, 6%, 80px) 0 clamp(50px, 7.3%, 100px);
    }

    .section__ttl {
        align-items: center;
        width: fit-content;
        margin: 0 auto;
    }
}

.question-parts {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(96%, 23%) rotate(18deg);
    width: 218px;
}

.question__container {
    margin-top: max(6%, 30px);
}

.question__item {
    margin-bottom: max(3%, 20px);
    overflow: hidden;

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

    dt,
    dd .dd-inner {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        font-size: var(--font17);
        padding: 1em;


        p {
            flex: 1;
            margin-left: 1em;
            margin-top: 0.6em;
        }
    }

    dt {
        position: relative;
        background-color: var(--beige01);
        border-radius: 0.5em;
        cursor: pointer;

        .q-icon {
            width: 2.82em;
            background-color: var(--white);
            transform: translateY(0);


            &::before {
                font-size: 1.4em;
                color: var(--red01);
            }
        }

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

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

    dd {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;

        .dd-inner {
            padding: calc(1em + 5px) 1em 1em;
        }

        p {
            line-height: 1.47;
        }
    }


}


.open.question__item {
    dt {
        &::before {
            transform: translateY(-50%) rotate(180deg);
        }

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

.a-icon {
    position: relative;
    display: block;
    width: 2.82em;
    aspect-ratio: 1;
    background-color: var(--red01);
    border-radius: var(--borderRadiusCircle);

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

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


    .question-parts {
        width: 128px;
    }

}

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

        & dt,
        & dd .dd-inner {
            p {
                margin-left: 10px;
                margin-top: 2px;
            }
        }

        dt {

            &::before,
            &::after {
                width: 20px;
            }

            .q-icon {
                width: 2em;

                &::before {
                    font-size: 1em;
                }
            }
        }

        dd {

            .dd-inner {
                padding: 1em;
            }

            .a-icon {
                width: 2em;

                &::before {
                    font-size: 1em;
                }
            }
        }
    }

    .question-parts {
        width: 100px;
        transform: translate(96%, -30%) rotate(18deg);
    }
}

@media screen and (max-width:380px) {
    .question__item {

        & dt,
        & dd .dd-inner {
            p {
                margin-left: 5px;
                margin-top: 2px;
                font-size: 12px;
            }
        }

        dt {
            padding: 10px 20px 10px 5px;

            &::before,
            &::after {
                right: 2%;
                width: 15px;
                height: 1px;
            }
        }

        dd {

            .dd-inner {
                padding: 10px 20px 10px 5px;
            }
        }
    }
}

@media screen and (max-width:375px) {
    .question-parts {
        width: 80px;
        transform: translate(80%, -30%) rotate(18deg);
    }
}






/*******************************************
section-entry
*******************************************/
.section-entry {
    .section__inner {
        padding: clamp(50px, 8.4%, 115px) 0 clamp(50px, 6%, 80px);
    }
}

.section-entry-parts {
    position: absolute;
    width: 101%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -1%);
}

.section-entry__ttl {
    position: relative;
    font-size: var(--font39);
    width: fit-content;
    margin: 0 auto max(7.66%, 30px);
    text-align: center;
    letter-spacing: 0.2em;

    &::before,
    &::after {
        position: absolute;
        content: "";
        width: 4px;
        height: 1.54em;
        left: -6%;
        bottom: 0;
        background-color: var(--brown01);
        transform: translateY(20%) rotate(-26deg);
    }

    &::after {
        left: auto;
        right: -6%;
        transform: translateY(20%) rotate(26deg);
    }
}

.btn-outer-section-entry {
    width: min(100%, 386px);
    height: 96px;
    margin: 0 auto;

    .btn {
        font-size: var(--font30);
        border-radius: var(--borderRadius20);
    }

    .arrowBox {
        width: 0.8em;
        right: 4%;
    }
}


@media screen and (max-width:655px) {
    .btn-outer-section-entry {
        width: min(100%, 260px);
        height: 70px;
    }
}


@media screen and (max-width:375px) {
    .section-entry__ttl {
        font-size: 2.2rem;
    }
}


@media screen and (max-width:325px) {
    .section-entry__ttl {
        font-size: 2rem;
    }
}






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

.footer {
    background-color: var(--brown01);
    padding: 50px 0 45px;
    position: relative;
    font-size: 12px;
    color: var(--white);
}

.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;
    font-size: 12px;
}



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

    .footer {
        padding-bottom: 100px;
    }

}


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

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

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