@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --green01: #00a6ab;
    --green02: #3f9e90;
    --green03: #c2d921;
    --green04: #80af3f;
    --green05: #3f8e80;
    --green06: rgba(63, 142, 128, 0.2);
    --green07: #7ab243;
    --green08: rgba(122, 178, 67, 0.2);
    --green09: #cee2e2;
    --green10: #c9dcd9;
    --pink01: #ff4c6f;
    --pink02: #ff7b83;
    --pink03: rgba(255, 76, 111, 0.2);
    --pink04: #ffdde0;
    --orange01: #ffc483;
    --orange02: #ff801e;
    --orange03: rgba(228, 153, 59, 0.2);
    --orange04: #e4993b;
    --beige01: #f3e9c2;
    --beige02: #efe7b4;
    --yellow01: rgba(234, 228, 126, 0.3);
    --yellow02: #e8c400;
    --gray01: #b5b5b5;
    --gray02: #e1e4e7;
    --gray03: #666666;
    --gray04: #808080;
    --gray05: #e7eaeb;

    --gra01: linear-gradient(90deg, var(--pink02) 14.4531%, var(--orange01));
    --gra02: linear-gradient(140deg, var(--white), var(--beige02));

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

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --zenKaku: "Zen Kaku Gothic Antique", sans-serif;
    --zenMaru: "Zen Maru Gothic", sans-serif;
    --poppins: "Poppins", sans-serif;

    /* 文字サイズ */
    --font17: clamp(10px, 0.66vw + 7.54px, 17px);
    --font19: clamp(12px, 0.6573vw + 9.534px, 19px);
    --font21-10: clamp(10px, 1.03vw + 6.13px, 21px);
    --font21-12: clamp(10.24px, 0.85vw + 8.83px, 21px);
    --font21-13: clamp(11.09px, 0.75vw + 10.19px, 21px);
    --font21-15: clamp(12.8px, 0.56vw + 12.89px, 21px);
    --font23-12: clamp(10.24px, 1.03vw + 8.13px, 23px);
    --font23-13: clamp(11.09px, 0.94vw + 9.48px, 23px);
    --font23-15: clamp(12.8px, 0.75vw + 12.18px, 23px);
    --font24-12: clamp(10.24px, 1.13vw + 7.77px, 24px);
    --font24-15: clamp(12.8px, 0.85vw + 11.83px, 24px);
    --font25: clamp(12.8px, 0.99vw + 11.81px, 25.5px);
    --font28-14: clamp(12.37px, 1.31vw + 9.07px, 28px);
    --font28-18: clamp(15.36px, 0.94vw + 14.48px, 28px);
    --font29: clamp(11.95px, 1.41vw + 8.71px, 29px);
    --font32: clamp(13.65px, 1.5vw + 10.37px, 32px);
    --font33: clamp(17.92px, 1.13vw + 16.5px, 33px);
    --font34: clamp(17.92px, 1.96vw + 11.64px, 34px);
    --font35: clamp(20.28px, 1.31vw + 16.07px, 35px);
    --font36: clamp(15.36px, 1.69vw + 11.66px, 36px);
    --font43: clamp(17.92px, 2.07vw + 13.25px, 43px);
    --font62: clamp(26.45px, 2.91vw + 20.08px, 62px);
    --font84: clamp(24.75px, 5.16vw + 9.63px, 84px);

    /* ウェイト */
    --weight400: 400;
    --weight500: 500;
    --weight600: 600;
    --weight700: 700;
    --weight900: 900;

    /* 行間 */
    --lineHight125: 1.25;
    --lineHight133: 1.33;
    --lineHight153: 1.538;
    --lineHight175: 1.75;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace020: 0.02em;
    --fontSpace050: 0.05em;
    --fontSpace070: 0.07em;
    --fontSpace080: 0.08em;
    --fontSpace110: 0.11em;
    --fontSpace140: 0.14em;
    --fontSpace200: 0.2em;
    --fontSpace250: 0.25em;

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

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

    --opacity07: .7;


    --borderGray01: 1px solid var(--gray01);
}


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


}

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

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



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

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight700);
    font-size: var(--font17);
    line-height: var(--lineHight125);

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

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

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

.section {
    position: relative;
}

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

    padding: 100px 0;

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



.ttl-fukidashi-outer {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.ttl-fukidashi {
    /* 親要素にttl-fukidashi-outerを付与 */
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: var(--font24-12);
    transform: translate(130%, 250%);

    span {
        position: relative;
    }

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
        mask-image: url(../img/common/ttl-fukidashi.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
        background-color: var(--green03);
        width: 132%;
        aspect-ratio: 198/87;
        z-index: 0;
    }

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


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

.under-line-gra01 {
    background-image: var(--gra01);
    background-repeat: no-repeat;
    background-size: 100% 10px;
    background-position: 0 100%;
    padding-bottom: 10px;

    @media screen and (max-width:768px) {
        background-size: 100% 6px;
        padding-bottom: 6px;
    }

    @media screen and (max-width:480px) {
        background-size: 100% 4px;
        padding-bottom: 4px;
    }
}

.bg-bottom {
    position: relative;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/bg-bottom.png);
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: 2874/1330;
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 70%);
    }

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

        &::before {
            transform: translate(-50%, 57%);
        }
    }
}

.marker-point {
    position: relative;
    padding-left: 1.2em;

    &::before {
        position: absolute;
        content: "●";
        font-size: 1em;
        border-radius: var(--borderRadiusCircle);
        top: 0;
        left: 0;
        color: var(--pink01);
    }
}

.marker-diamond {
    position: relative;
    padding-left: 1.5em;
    display: inline-block;

    &::before {
        position: absolute;
        content: "◇";
        font-size: 1em;
        top: 0;
        left: 0;
    }
}

.marker-diamond-green {
    position: relative;
    padding-left: 1.1em;
    display: inline-block;

    &::before {
        position: absolute;
        content: "◆";
        font-size: 1em;
        top: 0;
        left: 0;
        color: var(--green05);
    }
}

.marker-disc {
    position: relative;
    padding-left: 1em;
    display: inline-block;

    &::before {
        position: absolute;
        content: "・";
        font-size: 1em;
        top: 0;
        left: 0;
    }
}

/* 。や「」の文字感狭め用 */
.thin {
    letter-spacing: -0.5em;
}

/* 折り返し綺麗になるように */
.push {
    display: inline-block;
}

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

.frame01 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--borderRadius01);
    border: 2px solid var(--black);
    text-align: center;
}

.frame02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    font-size: max(var(--font21-10), 15px);
    text-align: center;
}

/* Googleマップ埋め込み */
iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.block768 {
    display: none;
}

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

    .block768 {
        display: block;
    }

}

/*******************************************
文字色
*******************************************/
.font-pink01 {
    color: var(--pink01);
}

.font-green01 {
    color: var(--green05);
}


/*******************************************
btn
*******************************************/
:root {
    --btnBorder: 3.45px;
}

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

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

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


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

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-color: var(--black);
    font-size: max(var(--font23-13), 14px);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transition01);
    cursor: pointer;

    &::before {
        position: absolute;
        content: "";
        mask-image: url(../img/common/arrow.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        top: 50%;
        right: 5%;
        width: max(0.65em, 13px);
        aspect-ratio: 15/14.5;
        transform: translateY(-50%);
        background-color: var(--white);
    }

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



.btn-pink01 {
    background-color: var(--pink02);
    border: var(--btnBorder) solid var(--white);
}

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


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

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

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

.btn-outer {
    &:has(.btn-white01) {
        /* 子要素にbtn-white01がある場合 */
        padding: var(--btnBorder);
        background: var(--gra01);
        border-radius: var(--borderRadius01);
        transition: var(--transition01);

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

.btn-white01 {
    border: 0;
    background-color: var(--white);
    color: var(--black);

    &:hover {
        opacity: 1 !important;
    }


    &::before {
        background: var(--gra01);
    }

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



/*******************************************
entryBox
*******************************************/
.entryBox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 5px;
    font-size: var(--font24-12);

    .btn-outer {
        width: 50%;

    }

    .btn {
        text-align: center;
        line-height: 1.116;
        font-weight: var(--weight500);
        font-size: 1em;
        border: 1px solid var(--white);
    }
}

.entryBox-fixed {
    position: fixed;
    bottom: 50%;
    right: 0;
    transform: translateY(50%);
    flex-direction: column;
    width: fit-content;
    z-index: 10;
    gap: 0;
    transition: var(--transition01);
    opacity: 0;
    visibility: hidden;

    .btn-outer {
        aspect-ratio: 1;
        height: auto;
        width: 4.375em;

        &:first-child {
            border-bottom: none;
        }
    }

    .btn {
        border-radius: 0;

        &::before {
            display: none;
        }
    }


    @media screen and (max-width:768px) {
        flex-direction: row-reverse;
        width: 100%;
        gap: 0;
        height: 50px;
        transform: none;
        bottom: 0;

        .btn-outer {
            height: 100%;
            aspect-ratio: auto;
            width: 50%;
        }

        .btn {
            border: none;
        }

    }
}


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

:root {
    --headerHeight: 90px;
}

@media screen and (max-width: 1024px) {
    :root {
        --headerHeight: 55px;
    }
}

.hamburger {
    display: none;
}

.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 35px 0 20px;
    height: var(--headerHeight);
    z-index: 95;
    font-size: 15px;
    transition: var(--transition01);
    font-weight: var(--weight500);
}

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

.header__left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    font-size: clamp(6px, 0.694vw, 10px);
    width: max(26.6em, 177px);

}

.header__logo {
    padding-right: 1.9em;
    border-right: 1px solid var(--green01);

    a {
        display: inline-block;
        width: 9em;
    }
}

.header__recruit {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: max(0.8em, 8px);

    .txtLogo {
        width: 13.6em;
        margin: 0 0 1em auto;
    }

    .txt {
        font-size: 1em;
        text-align: right;
        letter-spacing: var(--fontSpace250);
        line-height: 1;
    }
}


.headerNav {
    flex: 1;
}

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

.headerNav__item {
    margin-left: clamp(15px, 1.736vw, 35px);

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

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

}


.entryBox-header {
    display: none;

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


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

    .header {
        height: var(--headerHeight);
        position: relative;
        padding: 0 0 0 clamp(5px, 2.6vw, 20px);
    }

    .bg-white {
        background-color: transparent;
        backdrop-filter: initial;
    }

    .header__logo {
        a {
            width: 10em;
        }
    }



    .hamburger {
        display: block;
        position: fixed;
        right: 1%;
        top: calc(var(--headerHeight)/2);
        width: 60px;
        aspect-ratio: 6/3;
        border-radius: var(--borderRadius01);
        cursor: pointer;
        background-color: var(--green02);
        transform: translateY(-50%);
        z-index: 100;
        transition: var(--transition01);

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

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

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

        }
    }

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

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

    .headerNav__item {
        margin: 0 0 5svh;

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

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

    .active {

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

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

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

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

}


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

    .header__recruit {
        .txtLogo {
            width: 15em;
        }

        .txt {
            padding-right: 0.5em;
        }
    }
}





/*******************************************
requirements（募集要項）
*******************************************/
.requirements {
    background-color: var(--gray02);

    .section__inner {
        width: min(100%, 1100px);
        padding: clamp(35px, 10%, 135px) 0 clamp(40px, 5%, 70px);
    }
}

.requirement__ttl,
.requirementsBox__ttl {
    font-size: var(--font34);
    text-align: center;
    letter-spacing: var(--fontSpace200);
}

.requirement__ttl {
    margin: 0 auto 0.3em;
}

.requirementsBox__ttl {
    margin-bottom: 1.38em;
}

.requirementsDetail {
    dt {
        font-size: var(--font21-12);
        color: var(--green05);
        letter-spacing: var(--fontSpace080);
    }

    dd {
        font-size: var(--font17);
        line-height: 1.64;
        letter-spacing: var(--fontSpace080);
        font-weight: var(--weight500);
        text-align: left;
    }

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

        dt,
        dd {
            letter-spacing: 0;
        }
    }
}

.requirementsDetail__item {
    margin-bottom: 15px;

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

    dt {
        margin-bottom: 10px;
    }

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

.requirementsDetail__flex {
    background-color: var(--white);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 35px;

    &:nth-child(even) {
        background-color: transparent;
    }

    dt {
        width: 17.57em;
        font-size: var(--font19);
    }

    dd {
        flex: 1;

        .frame01 {
            display: inline-block;
            width: 3.5em;
            line-height: 1.1;
            background-color: var(--black);
            color: var(--white);
            font-size: 0.7em;
        }

    }

    @media screen and (max-width:1024px) {
        dt {
            width: 12em;
        }
    }

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

        dt {
            margin-bottom: 5px;
        }
    }

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

/* flow */
.recruitmentFlow {
    margin: max(6%, 40px) auto 0;
}

.recruitmentFlow__ttl {
    padding: 0.62em 0;
    margin: 0 auto max(4%, 25px);

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

.recruitmentFlowPeriod {
    font-size: var(--font24-15);

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

.recruitmentFlowPeriod__inner {

    @media screen and (max-width:600px) {
        width: max(100%, 752px);
        padding-right: 50px;
    }
}

.recruitmentFlow__list {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
}


.recruitmentFlow__item {
    position: relative;
    background-color: var(--white);
    width: calc((100% - (4.55% * 3))/4);
    padding: 20px 5px;

    &::before {
        position: absolute;
        content: "";
        display: inline-block;
        width: 0.95em;
        aspect-ratio: 23/46;
        background: var(--green05);
        clip-path: polygon(0 0, 0 100%, 100% 50%);
        top: 50%;
        right: 0;
        transform: translate(165%, -50%);
    }

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

    .icon {
        width: max(4em, 60px);
        margin: 0 auto;
    }

    .txt {
        text-align: center;
        font-size: 1em;
        margin-top: 0.625em;
        letter-spacing: var(--fontSpace080);
    }
}

.recruitmentFlowPeriod__txt {
    position: relative;
    letter-spacing: var(--fontSpace080);
    font-size: 1em;
    text-align: center;
    margin-top: 1.04em;
    display: flex;
    justify-content: center;
    align-items: center;

    .arrow-line {
        flex: 1;
        height: 3px;
        background-color: var(--black);
    }

    &::before {
        position: absolute;
        content: "";
        width: 21px;
        aspect-ratio: 1;
        border-top: 3px solid var(--black);
        border-right: 3px solid var(--black);
        top: 50%;
        right: 0;
        transform: translate(-13%, -50%) rotate(45deg);
    }

    .txt {
        padding: 0 10px;
    }
}

.recruitmentFlow__detailBox {
    padding-top: max(3.6%, 30px);

    .requirementsDetail {
        padding-bottom: max(5%, 20px);
        margin-bottom: max(5%, 20px);
        border-bottom: 1px solid var(--gray03);

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





/*******************************************
modal
*******************************************/
/* 共通
ーーーーーーーーーーーーーーーーーーー */
.no-scroll {
    overflow: hidden;
}

.modalOpen,
.modalClose {
    transition: var(--transition01);
    cursor: pointer;

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

/* 背景 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1000;
    transition: var(--transition01);
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;

    &::before {
        position: fixed;
        content: "";
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background-color: var(--white);
        z-index: 0;
    }
}

/* 非表示の時触れないように */
.modal__inner,
.modalItem-outer {
    position: relative;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--transition01);
}

/* 開く時 */
.modal.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;

    .modal__inner,
    .modalItem-outer {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }
}

/* モーダル箱の最大幅 */
.modal__inner {
    position: relative;
    width: min(100%, 1440px);
    margin: 0 auto;
}

.modalItem-outer {
    background-color: var(--white);
    padding: 90px 0 75px;
}

.modalItem {
    width: 100%;
}

/* モーダルのコンテンツの最大幅 */
.modalItem__inner {
    width: min(100%, 1260px);
    margin: 0 auto;

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


.modalClose-top {
    position: absolute;
    width: 80px;
    aspect-ratio: 80/25;
    top: clamp(30px, 3.125vw, 45px);
    right: clamp(10px, 3.125vw, 45px);
    border-radius: var(--borderRadiusCircle);
    background-color: transparent;
    z-index: 1;

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        width: 100%;
        height: 2px;
        transform: translate(-50%, -50%) rotate(15deg);
        background-color: var(--black);
    }

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

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

.modalClose-bottom {
    width: min(52%, 285px);
    margin: 65px auto 0;

    @media screen and (max-width:480px) {
        height: 40px;
        margin: 45px auto 0;
    }
}




/*******************************************
modal-voice
*******************************************/
.voice-modal {

    .modalItem-outer {
        padding: 0 0 54vw;

        &::after {
            position: absolute;
            content: "";
            background-image: url(../img/part-time/modal/bg-bottom-pc.png);
            background-size: contain;
            background-repeat: no-repeat;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            aspect-ratio: 1440/673;
            left: 0;
            bottom: 0;
        }
    }

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

            padding-bottom: 90vw;

            &:after {
                background-image: url(../img/part-time/modal/bg-bottom-sp.png);
                aspect-ratio: 750/612;
            }
        }
    }

}


.modalItem-voice {
    position: relative;

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 20px;
        background-color: var(--green05);
    }




    .modalItem__inner {
        padding-top: 90px;
    }

    .marker-point {
        &::before {
            color: var(--green05);
        }
    }

    @media screen and (max-width:768px) {
        .modalItem__inner {
            padding-top: 50px;
        }
    }
}

.modalVoiceMv {
    position: relative;
    font-weight: var(--weight900);
}

.modalVoiceMv__number {
    position: absolute;
    top: 30px;
    left: 0;
    font-size: var(--font34);
    color: var(--green05);

    @media screen and (max-width:768px) {
        top: 0;
    }
}

.modalVoiceMv__img {
    width: clamp(300px, 45.13888vw, 650px);
    margin-left: auto;

    @media screen and (max-width:768px) {
        width: min(90.66vw, 400px);
        margin: 0 auto 15px;
    }
}

.modalVoiceMv__detail {
    position: absolute;
    top: 105px;
    left: 0;

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

.modalVoiceMv__ttl {
    font-size: min(4.097vw, 59px);
    line-height: 1.484;
    text-shadow:
        1px 0 var(--white),
        -1px 0 var(--white),
        0 1px var(--white),
        0 -1px var(--white),
        1px 1px var(--white),
        -1px -1px var(--white),
        1px -1px var(--white),
        -1px 1px var(--white);

    /* -webkit-text-stroke: 1px var(--white); */

    @media screen and (max-width:768px) {
        font-size: 5.6vw;
        line-height: 1.571;
    }
}

.modalVoiceMv__type {
    font-size: var(--font28-14);
    margin-top: 1.428em;

    li {
        margin-bottom: 0.7em;

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

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

.modalVoice__main {
    margin: 50px auto 0;

    @media screen and (max-width:768px) {
        margin: min(11%, 70px) auto 0;
    }
}

.modalVoice__question {
    margin: 0 auto max(11%, 55px);

    dt {
        position: relative;
        font-size: var(--font33);
        line-height: 1.2;
        margin-bottom: 0.57em;
        color: var(--green05);
        padding-left: 0.45em;

        &::before {
            position: absolute;
            content: "Q";
            font-family: var(--zenMaru);
            font-size: 3.6em;
            line-height: 1;
            top: 0;
            left: 0;
            color: var(--green06);
            transform: translateY(-50%);
        }
    }

    dd {
        font-size: var(--font21-15);
        line-height: 2;
        padding-bottom: 1.9em;
        border-bottom: var(--borderGray01);
        margin-bottom: max(2.6em, 40px);

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

    @media screen and (max-width:768px) {
        dt {
            line-height: 1.33;
            padding-left: 0;

            &::before {
                font-size: 3.42em;
                transform: translate(-50%, -47%);
            }
        }

        dd {
            padding-bottom: 1.33em;
            line-height: 1.73;
            font-weight: var(--weight500);
        }
    }
}





.flowBox {
    position: relative;
    border: 2px solid var(--green05);
    border-radius: var(--borderRadius30);
    padding: 90px 7.2% 85px;
    z-index: 1;

    @media screen and (max-width:768px) {
        padding: 12% 4.4%;
    }
}

.flowBox__ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--green05);
    font-size: var(--font29);
    width: min(100%, 13.1em);
    border: none;
    color: var(--white);
    line-height: 1;
    height: max(2.24em, 30px);
}

.flowBoxDetail__item {
    display: flex;
    align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;

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

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

    dt {
        width: min(100%, 5.1875em);
        font-size: var(--font32);
        aspect-ratio: 166/46;
        background-color: var(--green06);
        color: var(--green05);
        border: none;
        margin-right: max(0.625em, 10px);
    }

    dd {
        flex: 1;
        position: relative;
        font-size: var(--font28-14);
        padding-left: 1.42em;
        font-weight: var(--weight500);
        line-height: 1.73;

        &::before {
            position: absolute;
            content: "";
            left: 0;
            width: max(0.53em, 7.5px);
            aspect-ratio: 1;
            background-color: var(--green05);
            border-radius: var(--borderRadiusCircle);
        }

        &:after {
            position: absolute;
            content: "";
            left: calc(max(0.53em, 7.5px) / 2);
            width: 1px;
            height: 165%;
            background-color: var(--green05);
            transform: translateX(-50%);
        }

        &::before,
        &::after {
            top: 0.65em;

        }
    }

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

        dd {
            &:after {
                height: 170%;
            }
        }
    }

    @media screen and (max-width:375px) {
        dd {
            &:after {
                transform: translateX(-20%);
            }
        }
    }
}




/*******************************************
modal-voice 色変え
*******************************************/
.modalItem-voice-pink01 {

    &::before,
    .flowBox__ttl,
    .flowBoxDetail__item dd::before,
    .flowBoxDetail__item dd:after {
        background-color: var(--pink01);
    }

    .modalVoiceMv__number,
    .marker-point::before,
    .modalVoice__question dt,
    .flowBoxDetail__item dt {
        color: var(--pink01);
    }

    .modalVoice__question dt:before {
        color: var(--pink03);
    }

    .flowBox {
        border: 2px solid var(--pink02);
    }

    .flowBoxDetail__item {
        dt {
            background-color: var(--pink04);
        }

    }
}

.modalItem-voice-orange01 {

    &::before,
    .flowBoxDetail__item dd::before,
    .flowBoxDetail__item dd:after {
        background-color: var(--orange02);
    }

    .flowBox__ttl {
        background-color: var(--orange04);
    }

    .modalVoiceMv__number,
    .marker-point::before,
    .modalVoice__question dt,
    .flowBoxDetail__item dt {
        color: var(--orange02);
    }

    .modalVoice__question dt:before {
        color: var(--orange03);
    }


    .flowBox {
        border: 2px solid var(--orange02);
    }

    .flowBoxDetail__item {
        dt {
            background-color: var(--orange03);
        }

    }
}

.modalItem-voice-green01 {

    &::before,
    .flowBoxDetail__item dd::before,
    .flowBoxDetail__item dd:after,
    .flowBox__ttl {
        background-color: var(--green07);
    }


    .modalVoiceMv__number,
    .marker-point::before,
    .modalVoice__question dt,
    .flowBoxDetail__item dt {
        color: var(--green07);
    }

    .modalVoice__question dt:before {
        color: var(--green08);
    }


    .flowBox {
        border: 2px solid var(--green07);
    }

    .flowBoxDetail__item {
        dt {
            background-color: var(--green08);
        }

    }
}


/*******************************************
requirements 募集要項（色変え）
*******************************************/
.requirements-pink01 {
    .requirementsDetail {
        dt {
            color: var(--pink01);
        }
    }

    .recruitmentFlow__item {
        &::before {
            background: var(--pink01);
        }
    }

}




/*******************************************
footer
*******************************************/
.footer {
    background-color: var(--black);
    color: var(--white);

    .section__inner {
        padding: 50px 0;
    }

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

.copyright {
    text-align: center;
    font-size: 13px;
    letter-spacing: var(--fontSpace080);
    font-weight: var(--weight500);
}