@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #1A1A1A;
    --blue01: #325EA6;
    --blue02: #C4DEF5;
    --yellow01: #FFAB0B;
    --gray01: #A8A8A8;
    --gray02: #F5F5F5;
    --gray03: #E6E6E6;
    --gray04: rgba(168, 168, 168, 0.5);
    --gray05: #CDCDCD;

    --gra01: linear-gradient(90deg, #e9d7d8, #ffeded);

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

    /* 書式 */
    --lineSeed: "LINE Seed JP", sans-serif;
    --paytone: "Paytone One", sans-serif;

    /* 文字 */
    --font14: clamp(10.42px, 3.256vw + 0px, 14px);
    --font15: clamp(11.16px, 3.488vw + 0px, 15px);
    --font18: clamp(13.40px, 4.186vw + 0px, 18px);
    --font22: clamp(16.37px, 5.116vw + 0px, 22px);
    --font28: clamp(20.84px, 6.512vw + 0px, 28px);
    --font32: clamp(23.81px, 7.442vw + 0px, 32px);

    --size20: min(4.65vw, 20px);
    --size25: min(5.81vw, 25px);
    --size30: min(6.97vw, 30px);
    --size35: min(8.13vw, 35px);
    --size40: min(9.3vw, 40px);
    --size50: min(11.62vw, 50px);
    --size55: min(12.7vw, 55px);
    --size60: min(13.95vw, 60px);
    --size65: min(15.1vw, 65px);
    --size75: min(17.44vw, 75px);
    --size80: min(18.6vw, 80px);
    --size90: min(20.9vw, 90px);
    --size120: min(27.9vw, 120px);
    ;

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

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

    /* 文字間 */
    --fontSpace020: 0.02em;
    --fontSpace040: 0.04em;
    --fontSpace060: 0.06em;

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

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

    --opacity07: .7;

    --responsivePadding: clamp(15px, 4.16vw, 40px);


}

/*******************************************
layout
*******************************************/

body {

    &::before,
    &::after {
        position: fixed;
        content: "";
        background-repeat: no-repeat;
        background-size: contain;
        width: 500px;
        aspect-ratio: 500/385;
        z-index: -1;
    }

    &::before {
        background-image: url(../img/common/body-parts01.png);
        top: 0;
        left: 0;

    }

    &::after {
        background-image: url(../img/common/body-parts02.png);
        bottom: 0;
        right: 0;
    }
}


.layout {
    position: relative;
    overflow: hidden;

    @media screen and (min-width: 769px) {
        width: 100vw;
        height: 100dvh;
        display: grid;
        grid-template-columns: 1fr min(100%, 430px) 1fr;
    }
}

.layoutMain {
    position: relative;

    width: min(100%, 430px);
    margin: 0 auto;

    @media screen and (min-width: 431px) {
        border-left: 6px solid var(--black);
        border-right: 6px solid var(--black);
    }

    @media screen and (min-width: 769px) {
        /* height: 100dvh; */
        overflow: auto;
    }
}

.layoutLeft,
.layoutRight {
    @media screen and (min-width: 769px) {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
}



.layoutRight {
    position: absolute;
    width: min(100%, 430px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;


    @media screen and (min-width: 769px) {
        position: initial;
        width: auto;
        transform: none;
        z-index: 0;
        flex-direction: column;
    }
}

.layoutRight__ttl {
    display: none;

    @media screen and (min-width: 1025px) {
        display: block;
        font-size: clamp(30px, 2.9vw, 42px);
        width: min(80%, 250px);
        margin-bottom: 15px;
        font-family: var(--paytone);
    }
}



.layoutLeft__btnList {
    display: flex;
    position: fixed;
    left: 50%;
    bottom: 2%;
    z-index: 20;
    transform: translateX(-50%);
    width: min(95%, 410px);
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition01);

    .btn-outer {
        &:last-child {
            display: none;
        }

        &:not(:last-child) {
            .btn {
                background-color: var(--blue01);
            }
        }
    }


    @media screen and (min-width: 769px) {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        flex-direction: column;
        gap: clamp(5px, 1.38vw, 20px);
        width: min(100%, 300px);
        z-index: 0;
        opacity: 1;
        visibility: visible;



        .btn-outer {
            &:last-child {
                display: block;
            }

            .btn {
                padding: 0 1.7em;
                font-size: 15px;

                .en {
                    font-family: var(--paytone);
                }

                .ja {
                    font-size: 0.85em;
                    display: inline-block;
                }

                &::before {
                    width: 0.75em;
                }
            }
        }
    }

    @media screen and (min-width: 1025px) {
        .btn-outer {
            .btn {
                font-size: var(--size20);
            }

        }
    }
}

.layout__logo {
    display: none;

    @media screen and (min-width: 769px) {
        display: block;
        position: fixed;
        top: 30px;
        left: 5px;
        width: 20vw;
    }

    @media screen and (min-width: 950px) {
        width: 24vw;
        left: clamp(20px, 2.08vw, 30px);
    }

    @media screen and (min-width: 1025px) {
        width: clamp(50px, 24.5vw, 353px);
    }



}





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

body {
    color: var(--black);
    font-family: var(--lineSeed);
    font-weight: var(--weight800);
    font-size: var(--font15);
    line-height: var(--lineHight120);
    letter-spacing: var(--fontSpace060);
    background-color: var(--gray03);

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

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



main {
    position: relative;
    background-color: var(--white);
}

p {
    text-align: justify;
    font-size: var(--font15);
    line-height: var(--lineHight160);
    letter-spacing: var(--fontSpace040);
    font-weight: var(--weight700);
}

.section {
    position: relative;
}

.section__inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: var(--size60) var(--size20);
}

.section-semicircle {
    position: relative;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/common/semicircle.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 0;
        left: 50%;
        aspect-ratio: 500/200;
        width: min(116.27vw, 500px);
        transform: translate(-50%, -70%);
    }
}

.section-semicircle-bottom {
    &:after {
        position: absolute;
        content: "";
        background-image: url(../img/common/semicircle.png);
        background-size: contain;
        background-repeat: no-repeat;
        bottom: 0;
        left: 50%;
        aspect-ratio: 500/200;
        width: min(116.27vw, 500px);
        transform: translate(-50%, 0);
    }
}

.section__ttl {
    position: relative;
    width: min(86.04vw, 370px);
    margin: 0 auto var(--size25);
}

.push {
    display: inline-block;
}

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

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

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

.mark-circle {
    position: relative;
    padding-left: 1.2em;

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

.checkList {
    li {
        font-size: var(--font15);
        position: relative;
        padding-left: 1.73em;
        margin-bottom: 0.5em;

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

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

        p {
            font-size: 1em;
            text-align: left;
        }

    }
}

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


.block768 {
    display: none;
}

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

    .none768 {
        display: none;
    }
}







/*******************************************
btn
*******************************************/
.btn-outer {
    width: 100%;
    height: var(--size60);
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    letter-spacing: var(--fontSpace040);
    color: var(--white);
    background-color: var(--black);
    font-size: var(--font15);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transition01);
    cursor: pointer;
    font-weight: var(--weight700);

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


}





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

.topReturn {
    position: fixed;
    bottom: calc(2% + 60px);
    right: 2%;
    width: max(var(--size40), 35px);
    aspect-ratio: 1;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: var(--transition01);

    .btn {
        background-color: var(--blue01);

        &::before {
            mask-image: url(../img/common/arrow02.svg);
            aspect-ratio: 15/9;
            width: 37.5%;
            right: 50%;
            transform: translate(50%, -50%);
        }
    }

    @media screen and (min-width: 769px) {
        opacity: 1;
        visibility: visible;
        bottom: 2%;
    }
}





/*******************************************
header
*******************************************/
:root {
    --headerHeight: min(15.11vw, 65px);
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: var(--headerHeight);
    z-index: 95;
    transition: var(--transition01);

    @media screen and (min-width: 769px) {
        height: auto;
    }
}

.bg-white {
    backdrop-filter: initial;
}

.header__logo {
    width: 57.21%;
    height: 100%;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        transition: var(--transition01);
        background-color: var(--white);

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

        .img {
            width: 83.74%;
        }
    }

    @media screen and (min-width: 769px) {
        display: none;
    }
}

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

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

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

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

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

    @media screen and (min-width: 1025px) {
        display: none;
    }
}


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

    @media screen and (min-width: 1025px) {
        position: relative;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        backdrop-filter: initial;
        height: auto;
    }
}

.headerNav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin-left: auto;
    background-color: var(--gray03);
    transform: translateX(100%);
    transition: var(--transition01);

    @media screen and (min-width: 1025px) {
        transform: none;
        background-color: transparent;

    }
}

.headerNav__item {
    margin: 0 0 10px;
    width: min(80%, 250px);

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

    .btn:not(.btn-header) {
        background-color: transparent;
        text-align: left;
        width: 100%;
        height: var(--size55);
        color: var(--black);
        border-bottom: 1px solid var(--black);
        border-radius: 0;
        align-items: flex-start;

        &::before {
            background-color: var(--blue01);
        }
    }

    &:last-child {
        margin: max(5svh, 30px) auto 0;
        width: min(100%, 250px);
    }


    @media screen and (min-width: 1025px) {

        .btn {
            font-size: 20px;
        }

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


.active {
    .line {

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

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

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

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

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



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

.mv__ttl,
.mv__img01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


.mv__ttl,
.mv__img01 {
    opacity: 0;
    transform: scale(5);
}

.mv__ttl,
.mv__img01 {
    opacity: 0;
    transform: translateZ(0) scale(8);
    transform-origin: center;
}









.mv__ttl {
    opacity: 0;
    transform: scale(7) rotate(0deg);
    animation: ttlSmash 0.35s cubic-bezier(0.1, 0.9, 0.2, 1) 0.5s forwards;
}

@keyframes ttlSmash {
    0% {
        opacity: 0;
        transform: scale(7) rotate(-0deg);
    }

    8% {
        opacity: 1;
    }

    65% {
        transform: scale(0.85) rotate(3deg);
    }

    82% {
        transform: scale(1.08) rotate(-1deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}


.mv__img01 {
    opacity: 0;
    transform: translateX(-150vw) rotate(-3deg);
    animation: imgBrake 0.45s cubic-bezier(0.15, 0.85, 0.25, 1) 0.15s forwards;
}

@keyframes imgBrake {
    0% {
        opacity: 0;
        transform: translateX(-150vw) rotate(-3deg);
    }

    10% {
        opacity: 1;
    }

    75% {
        transform: translateX(3vw) rotate(1deg);
    }

    88% {
        transform: translateX(-1vw) rotate(-0.5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}



/******************************************
流れる続けるスライダー
*******************************************/

.loopSwiper {
    overflow: visible;
}

/*スライドの動き等速 */
.loopSwiper__list {
    transition-timing-function: linear;
}




/*******************************************
テキスト ループ
*******************************************/

.txtLoop {
    display: flex;
    overflow: hidden;
    width: 100%;


    .img {
        width: 100%;
        height: auto;
        display: block;
        flex-shrink: 0;

        animation: loopAnimation 45s linear infinite;
    }
}


@keyframes loopAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.txtLoop-job {
    position: relative;
    z-index: 1;
    transform: translateY(-50%);

    .img {
        max-width: 610px;
        width: calc(610 / 430 * 100vw);
    }
}

.txtLoop-body {
    position: fixed;
    left: 0;
    bottom: 3%;

    .img {
        width: calc(1997 / 1400 * 100vw);
    }
}



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

    .section__ttl {
        margin-bottom: 10px;
    }

    .section__inner {
        padding-bottom: 0;
    }

    p {
        text-align: center;
        line-height: 2;
        margin-bottom: 10px;

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

.message__txtBox {
    margin-bottom: var(--size60);
}






/*******************************************
job
*******************************************/

.job {
    background-color: var(--black);
    padding-top: var(--size75);

    .section__inner {
        padding-top: 10px;
        padding-bottom: var(--size60);
    }
}

.jobSwiper-tab {
    width: 89.74%;
}

.jobSwiper-tab__list {
    height: var(--size50);
    align-items: flex-end;

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--gray01);
        color: var(--white);
        font-family: var(--paytone);
        font-size: var(--font28);
        border-radius: var(--size20) var(--size20) 0 0;
        height: calc(100% - 10px);
        transition: var(--transition01);
        cursor: pointer;

    }

    .swiper-slide-thumb-active {
        height: 100%;
        background-color: var(--blue01);
    }
}


.jobSwiper-cont {
    .swiper-slide {
        background-color: var(--white);
        border-top: var(--size20) solid var(--blue01);
        border-radius: var(--size20);
        padding: var(--size30) var(--size20) var(--size40);
    }
}

.jobDetail {
    position: relative;
    font-size: var(--font28);
    padding-bottom: var(--size30);
    margin-bottom: var(--size20);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/job/line.svg);
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 4px;
        left: 0;
        bottom: 0;
    }

    dt {
        font-weight: var(--weight800);
    }



    dd {
        position: relative;
        font-size: 1em;
        margin-top: 0.35em;


        p {
            position: relative;
            line-height: 1.5;
            padding-left: 1.33em;

            &::before {
                position: absolute;
                content: "";
                top: 50%;
                left: 0;
                width: 0.4em;
                height: 115%;
                background-color: var(--blue01);
                border-radius: var(--borderRadius01);
                transform: translateY(-50%);
            }
        }

        .img {
            margin-top: var(--size20);
            border-radius: var(--borderRadius10);
            overflow: hidden;
        }
    }
}


.career__ttl {
    font-size: var(--size20);
    letter-spacing: var(--fontSpace020);
}

.career__flow {
    width: 100%;
    margin: var(--font15) 0 var(--size30);
}

.careerPoint {
    background-color: var(--gray02);
    padding: var(--size20) var(--size20) var(--size25);
    border-radius: 10px;
}

.careerPoint__ttl {
    font-size: var(--font18);
    letter-spacing: var(--fontSpace020);
    color: var(--blue01);
    margin-bottom: 10px;
}

.careerPoint {
    margin-bottom: var(--size30);
}

.job-parts01 {
    transform: translateY(160%);

}


/*******************************************
interview
*******************************************/
.interview {
    background-color: var(--gray03);

    .section__inner {
        padding-bottom: var(--size120);
    }
}

.interviewItem {
    position: relative;
    margin-bottom: var(--size50);

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


.interview__type {
    font-size: var(--font14);
    margin-bottom: 1em;
}

.interview__comment {
    position: absolute;
    top: 0;
    right: 0;
    width: 30.77%;
    z-index: 2;
}

.interview__img {
    position: relative;
    width: 101.6%;
    margin-left: calc(-1*var(--size35));
    z-index: 1;
}

.interview__main {
    position: relative;
    padding: var(--size90) 0 var(--size50);
    margin-top: calc(-1 * var(--size65));
    background-color: var(--black);
    border-radius: 0 0 0 var(--size60);

    &::before {
        position: absolute;
        content: "";
        width: var(--size20);
        height: 100%;
        left: 100%;
        top: 0;
        background-color: var(--black);
    }
}

.interviewSwiper__list {
    .swiper-slide {
        padding: 0 var(--size20);
        height: 100%;
    }
}

.interviewQuestion {
    font-size: var(--font15);
    color: var(--white);

    dt {
        position: relative;
        margin-bottom: 0.5em;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.66em;

        .icon {
            font-family: var(--paytone);
            font-size: 1.33em;
            font-family: 400;
            transform: translateY(-10%);
        }

        p {
            flex: 1;
        }
    }
}





.interviewItem:nth-child(even) {
    .interview__type {
        width: fit-content;
        margin-left: auto;
    }

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

    .interview__img {
        margin-left: auto;
        margin-right: calc(-1*var(--size35));
    }

    .interview__main {
        background-color: var(--white);
        border-radius: 0 0 var(--size60) 0;

        &::before {
            left: auto;
            right: 100%;
            background-color: var(--white);
        }
    }

    .interviewSwiper__list {
        .swiper-slide {
            padding-left: 0;
        }
    }

    .interviewQuestion {
        color: var(--black);
    }
}




/*******************************************
data
*******************************************/
.data {
    &::before {
        transform: translate(-50%, -27%);
    }

    .section__inner {
        padding-top: 0;
        z-index: 2;
    }
}


.dataSwiper {
    width: min(100%, 320px);
    margin: 0 auto;
    overflow: visible;
}

.dataSwiper__list {
    .swiper-slide {
        background-color: var(--white);
        border: 3px solid var(--black);
        border-radius: var(--size20);
        overflow: hidden;
        height: auto;

    }
}

.dataDetail {
    font-size: var(--font22);

    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--black);
        color: var(--white);
        text-align: center;
        height: 2.818em;
    }

    dd {
        padding: var(--size30);

        .img {
            width: 78.4%;
            margin: 0 auto var(--font15);
        }

        p {
            text-align: center;
        }
    }
}


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

    &::before {
        z-index: 1;
    }

    .section__inner {
        padding-top: var(--size120);
    }
}


.aco-container {
    transition: var(--transition01);
    overflow: hidden;
}

.aco-click {
    position: relative;
    cursor: pointer;
    transition: var(--transition01);
}

.aco-box {
    max-height: 0;
    transition: var(--transition01);
}

.aco-container.open {
    .aco-click {
        .bolt {
            &::before {
                transform: translate(-50%, -50%) rotate(180deg);
            }

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

    }
}

.questionDetail {
    margin-bottom: var(--size80);
}

.questionDetail__item {
    margin-bottom: var(--size20);
    background-color: var(--white);
    border-radius: var(--borderRadius10);
    padding: 0 var(--size20);

    dt {
        padding: var(--size20) 0;

        p {
            position: relative;
            padding-left: 2.2em;

            &::before {
                position: absolute;
                content: "Q.";
                top: 0;
                left: 0;
                font-size: 1.46em;
                font-family: var(--paytone);
                color: var(--blue01);
                line-height: 1;
                transform: translateY(-10%);
            }
        }

        .bolt {
            display: block;
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: min(var(--size25), 24px);
            aspect-ratio: 1;
            border-radius: var(--borderRadiusCircle);
            background-color: var(--gray05);

            &::before,
            &::after {
                position: absolute;
                content: "";
                width: 55.83%;
                aspect-ratio: 13.4/2.7;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: var(--white);
                transition: var(--transition01);
            }

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

}

.dd-inner {
    position: relative;
    padding: var(--font15) 0 var(--size25);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/job/line.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        aspect-ratio: 350/4;
        top: 0;
        left: 0;
    }
}



/*******************************************
ページネーション
*******************************************/
.paginationFlex {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: max(5%, 20px);
    width: fit-content;
    gap: 10px;

    .btn {
        position: relative;
        width: 25px;
        aspect-ratio: 1;
        background-color: var(--white);
        border-radius: var(--borderRadiusCircle);
        cursor: pointer;

        &::before {
            mask-image: url(../img/common/arrow02.svg);
            aspect-ratio: 15/9;
            width: 45%;
            right: 50%;
            transform: translate(50%, -50%);
            background-color: var(--black);
        }
    }
}

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

    .swiper-pagination-bullet {
        background-color: var(--white);
        opacity: .5;
        width: 16px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 !important;
        transition: var(--transition01);

    }

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

.prevBtn {
    transform: rotate(-90deg);
}

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


.paginationFlex-interview01,
.paginationFlex-interview02,
.paginationFlex-interview03 {
    margin-top: calmp(10px, 5vw, 20px);
}

.paginationFlex-interview01,
.paginationFlex-interview03 {
    margin-left: auto;
}

.paginationFlex-interview02 {

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

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

    .swiper-pagination-bullet {
        background-color: var(--gray01);
    }

    .swiper-pagination-bullet-active {
        background-color: var(--gray01);
    }
}

.paginationFlex-data {
    z-index: 1;
    margin: var(--size25) auto 0;

    .btn {
        background-color: var(--blue01);

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

    .swiper-pagination-bullet {
        background-color: var(--gray01);
    }

    .swiper-pagination-bullet-active {
        background-color: var(--blue01);
    }
}


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

.footer {
    background-color: var(--white);
    padding: var(--size60) 0 100px;
    position: relative;
    font-size: var(--font15);
    color: var(--black);
    font-weight: var(--weight700);

    @media screen and (min-width: 769px) {
        padding-bottom: var(--size60);
    }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;


}

.snsFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 160px);
    margin: var(--size20) auto var(--size40);
    gap: var(--size20);
}

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