@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.4);
    --white03: rgba(255, 255, 255, 0.25);
    --black: #000;
    --black02: rgba(0, 0, 0, 0.2);
    --yellow01: #ffce00;
    --yellow02: rgba(255, 206, 0, 0.4);
    --yellow03: rgba(255, 206, 0, 0.2);
    --orange01: #ffcc70;
    --purple01: #a91380;
    --gray01: #ddd;


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

    --shadow: 5px 7px 0 #000;

    /* 書式 */
    --zenKaku: "Zen Kaku Gothic New", sans-serif;
    --zenMaku: "Zen Maru Gothic", sans-serif;

    /* 文字サイズ */
    --font19: clamp(16px, 0.2817vw + 14.9437px, 19px);
    --font20: clamp(12px, 0.7512vw + 9.1831px, 20px);
    --font21: clamp(14px, 0.6573vw + 11.5352px, 21px);
    --font22: clamp(19px, 0.2817vw + 17.9437px, 22px);
    --font38: clamp(21px, 1.5962vw + 15.0141px, 38px);
    --font39: clamp(22px, 1.5962vw + 16.0141px, 39px);
    --font41: clamp(27px, 1.3146vw + 22.0704px, 41px);
    --font50: clamp(26px, 2.2535vw + 17.5493px, 50px);

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

    /* 行間 */
    --lineHight120: 1.2;
    --lineHight156: 1.56;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace030: 0.03em;
    --fontSpace050: 0.05em;

    /* トランジションの変数　 */
    --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);

}


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


}

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



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

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight700);
    font-size: 16px;
    line-height: var(--lineHight120);
    letter-spacing: var(--fontSpace030);

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

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

p {
    text-align: justify;
    font-size: 16px;
    line-height: var(--lineHight156);
    font-weight: var(--weight500);
}

.section {
    position: relative;
}

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

    padding: clamp(45px, 6.94vw, 100px) 0 clamp(45px, 6.94vw, 80px);

    @media screen and (max-width:1280px) {
        padding-left: var(--responsivePadding) !important;
        padding-right: var(--responsivePadding) !important;
    }
}

.section__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;

    .en {
        font-size: var(--font20);
        color: var(--purple01);
        margin-bottom: 1em;
        font-family: var(--zenMaku);
    }

    .ja {
        font-size: var(--font50);
    }
}

.push {
    display: inline-block;
}

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

.under-line01 {
    text-decoration: underline;
    text-decoration-thickness: 8px;
    text-underline-offset: 0.4em;
    text-decoration-color: var(--yellow01);

    @media screen and (max-width: 768px) {
        text-decoration-thickness: 4.5px;
        text-underline-offset: 0.3em;
    }
}

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

.mark-circle {
    position: relative;
    padding-left: 1.2em;
    font-size: min(var(--font19), 18px);
    line-height: var(--lineHight150);
    display: inline-block;
    font-weight: var(--weight500);

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

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

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

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

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

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

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

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

.block768,
.block480 {
    display: none;
}

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

    .none768 {
        display: none;
    }
}

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

    .none480 {
        display: none;
    }
}



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

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

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

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

.btn-yellow {
    background-color: var(--yellow01);
    border: 2px solid var(--black);
    color: var(--black);
}





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

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


    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: var(--borderRadiusCircle);
        background-color: var(--black);
        border: 1px solid var(--white);
        transition: var(--transition01);

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

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

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

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

    @media screen and (max-width: 768px) {
        width: 40px;
        bottom: calc(2% + 60px);
    }
}





/*******************************************
entryBox-fixed
*******************************************/
.entryBox-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(101%, -50%);
    width: 60px;
    display: flex;
    flex-direction: column;
    z-index: 50;
    transition: var(--transition01);
    gap: 10px;

    .btn {
        writing-mode: vertical-rl;
        height: 10.625em;
        font-size: 16px;
        border: none;
        border-radius: 30px 0 0 30px;
    }

    &.show {
        transform: translate(0%, -50%);
    }

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

        .btn {
            writing-mode: vertical-rl;
            height: 9em;
            font-size: 15px;
            border-radius: 20px 0 0 20px;
            border: 1px solid var(--white);
        }
    }


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

        top: auto;
        right: auto;
        left: 50%;
        bottom: 2%;
        transform: translate(-50%, 140%);
        width: min(96%, 500px);
        height: 55px;
        display: flex;
        flex-direction: row;

        &.show {
            transform: translate(-50%, 0%);
        }

        .btn {
            writing-mode: initial;
            height: auto;
            font-size: 16px;
            border-radius: var(--borderRadius01);
        }
    }

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






/*******************************************
header
*******************************************/
:root {
    --headerHeight: clamp(50px, 6.25vw, 90px);
}

@media screen and (max-width:480px) {
    :root {
        --headerHeight: min(17.3vw, 65px);
    }
}

.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--headerHeight);
    z-index: 95;
    transition: var(--transition01);
    background-color: var(--white);
    letter-spacing: initial;
    border: 1px solid var(--yellow01);

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

    @media screen and (max-width:480px) {
        justify-content: flex-start;
        padding-left: min(5.3vw, 20px);
    }
}


.header__logo {
    width: clamp(200px, 25%, 360px);

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

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

    @media screen and (max-width:480px) {
        width: min(56vw, 210px);
    }
}



.hamburger {
    display: block;
    position: fixed;
    right: 2%;
    top: calc(var(--headerHeight)/2);
    width: 30px;
    aspect-ratio: 3/2;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition01);
    transform: translateY(-50%);

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

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

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

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

        @media screen and (max-width:480px) {
                right: 4%;
        }
}


.headerNav {
    position: fixed;
    top: var(--headerHeight);
    right: 20px;
    display: grid;
    width: min(95%, 300px);
    padding: 22px;
    background: #fff;
    border: 2px solid var(--black);
    box-shadow: var(--shadow);
    transition: var(--transition01);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    a:not(.btn) {
        padding: 14px 8px;
        border-bottom: 1px solid var(--gray01);
    }

    @media screen and (max-width:480px) {
        right: auto;
        left: 50%;
        transform: translate(-50%, -10px);
    }
}



.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;
        transform: translateY(0px);
    }

    @media screen and (max-width:480px) {
        .headerNav {
            transform: translate(-50%, 0px);
        }
    }

}

.btn-outer-header {
    margin: 12px auto 0;
    width: min(100%, 252px);
    height: 54px;

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




/*******************************************
mv
*******************************************/
.mv {
    margin-top: var(--headerHeight);

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

}





/*******************************************
about
*******************************************/
.about {
    .section__inner {
        padding: clamp(30px, 6.94vw, 80px) 0 clamp(50px, 6.94vw, 90px);
    }
}

.about__logo {
    width: min(100%, 300px);
    margin: 0 auto clamp(30px, 3.4%, 40px);

    @media screen and (max-width:800px) {
        width: clamp(170px, 45.3vw, 300px);
    }
}

.about__ttl {
    position: relative;
    font-size: var(--font39);
    text-align: center;
    width: fit-content;
    margin: 0 auto clamp(40px, 8%, 95px);
    padding-left: 2.4em;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/about/logo02.png);
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 83/47;
        width: 2.12em;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    @media screen and (max-width:800px) {
        margin-bottom: clamp(40px, 11%, 100px);
    }

    @media screen and (max-width:768px) {
        line-height: 2;

        &::before {
            top: 0;
            transform: translate(0%, 33%);
        }
    }
}

.aboutBox {
    position: relative;
    width: min(100%, 910px);
    margin: 0 auto;
    border: 20px solid var(--yellow01);
    border-radius: var(--borderRadius30);
    background-color: var(--white);
    padding-left: 455px;
    padding: 100px 6% 20px 38%;

    @media screen and (max-width:1190px) {
        width: min(100%, 800px);
        padding: 80px 2% 20px 35%;
    }

    @media screen and (max-width:1024px) {
        width: min(100%, 700px);
        padding: 80px 2% 20px 35%;
    }

    @media screen and (max-width:800px) {
        width: min(96%, 500px);
        padding: clamp(60px, 18%, 80px) 15px 25px;
        border: 14px solid var(--yellow01);
    }
}

.aboutBox__parts01 {
    position: absolute;
    width: clamp(100px, 18.541vw, 267px);
    top: 0;
    left: 0;
    transform: translate(-67%, -70%);
    z-index: -1;

    @media screen and (max-width:800px) {
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        z-index: 0;
        transform: translate(18%, 11%);
        width: min(43%, 180px);
    }
}

.aboutBox__banner {
    position: absolute;
    width: clamp(300px, 36.04vw, 519px);
    top: 0;
    left: 0;
    transform: translate(4%, -17%);

    @media screen and (max-width:800px) {
        width: min(77%, 300px);
        transform: translate(2%, -24%);
    }
}

.aboutBox__main {
    .img {
        position: absolute;
        top: 0;
        right: 0;
        width: clamp(180px, 19.65vw, 283px);
        transform: translate(17%, -32%);
    }

    .list {
        li {
            position: relative;
            font-size: var(--font21);
            padding-left: 1em;
            padding-left: 1em;
            margin-bottom: 10px;
            font-weight: var(--weight500);

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

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

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

        .img {
            position: initial;
            transform: none;
            margin: 0 0 10px auto;
            width: min(53%, 200px);
            transform: translateX(21%);
        }

        .list {
            width: min(93%, 400px);
            margin: 0 auto;
        }
    }
}



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

.job {
    background-color: var(--yellow02);
    background-image: repeating-linear-gradient(-45deg, var(--white02), var(--white02) 4px, transparent 4px, transparent clamp(15px, 2.08vw, 30px));

    .section__inner {
        padding-bottom: 40px;
    }

    &::before,
    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/job/weve.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        aspect-ratio: 1440/229.5;
        transform: translateX(-50%);
        left: 50%;
    }

    &::before {
        top: -1px;
    }

    &:after {
        bottom: -1px;
        transform: translateX(-50%) rotate(180deg);
    }

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

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

        &::before,
        &::after {
            background-image: url(../img/job/weve-sp.png);
            aspect-ratio: 375/152;
        }
    }
}

.job__comment {
    width: 693px;
    width: min(100%, 693px);
    margin: 70px auto 20px;

    @media screen and (max-width:1024px) {
        margin-top: min(10.6vw, 40px);
    }

    @media screen and (max-width:768px) {
        width: min(74.4vw, 500px);
    }
}

.jobSwiper {
    overflow: visible;
}

.jobSwiper__list {
    gap: 30px;

    .swiper-slide {
        background-color: var(--white);
        border: 1px solid var(--yellow01);
        box-shadow: 7px 7px 0 #000;
        padding: 30px 25px 50px;
        height: auto;
    }

    .swiper-slide02 {
        transform: translateY(60px);
    }

    @media screen and (max-width:374px) {
        .swiper-slide {
            padding: 20px;
        }
    }
}

.jobSwiper__top {
    margin-bottom: 30px;

    .icon {
        position: relative;
        width: 74px;
        margin: 0 auto;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/about/check.svg);
            background-size: contain;
            background-repeat: no-repeat;
            aspect-ratio: 1;
            width: 19px;
            top: 0;
            left: 0;
            transform: translate(-5%, 10%);
        }
    }

    @media screen and (max-width:1024px) {
        .icon {
            width: 70px;
        }
    }

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

.jobSwiper__detail {
    dt {
        font-size: 27px;
        text-align: center;
        margin: 25px 0 30px;
    }

    @media screen and (max-width:374px) {
        dt {
            margin: 10px 0 15px;
        }
    }
}


.jobSwiper__bottom {
    .ttl {
        display: block;
        color: var(--purple01);
        text-align: center;
        font-size: 20px;
        font-family: var(--weight900);
        margin-bottom: 15px;
        font-family: var(--zenMaku);
    }

    .list {
        li {
            position: relative;
            font-size: 16px;
            padding-left: 1em;
            font-weight: var(--weight500);
            line-height: var(--lineHight156);

            &::before {
                position: absolute;
                content: "・";
                top: 0;
                left: 0;
            }
        }
    }
}






.job__parts01,
.job__parts02 {
    width: clamp(100px, 13.6vw, 196px);

    @media screen and (max-width:480px) {
        width: min(18.66vw, 70px);
    }
}



.job__parts01 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(10%, 4%);

    @media screen and (max-width:480px) {
        transform: translate(18%, 250%);
    }

    @media screen and (max-width:400px) {
        transform: translate(18%, 225%);
    }

    @media screen and (max-width:374px) {
        transform: translate(18%, 240%);
    }
}



.job__parts02 {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-61%, 2%);

    @media screen and (max-width:480px) {
        transform: translate(-14%, 39%);
    }
}


.job__parts03 {
    position: relative;
    margin: 10% 0 0 auto;
    width: clamp(160px, 18.54vw, 267px);
    transform: translate(20%, -7%);
    z-index: 1;

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

    @media screen and (max-width:480px) {
        width: min(32.5vw, 122px);

        transform: translate(11%, 0);
    }
}





/*******************************************
point
*******************************************/
.point {
    margin-top: -165px;


    .section__inner {
        padding: 0 0 clamp(80px, 10.76vw, 155px);
    }

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

    @media screen and (max-width:480px) {
        margin-top: -21%;
    }
}

.point-container {
    background-color: var(--white);
    margin-top: 80px;

    @media screen and (max-width:480px) {
        margin-top: min(20vw, 75px);
    }
}

.pointTop {
    position: relative;

    .number {
        position: absolute;
        color: var(--white);
        left: 0;
        bottom: 0;
        font-size: 78px;
        line-height: 1;
        font-family: var(--zenMaku);
    }

    @media screen and (max-width:1024px) {
        .number {
            font-size: min(21.3vw, 80px);
        }
    }
}

.pointSwiper__list {
    gap: 45px;

    .swiper-slide {
        background-color: var(--yellow01);
        height: auto;
        overflow: hidden;
    }

    @media screen and (max-width:1200px) {
        gap: 20px;
    }
}

.point__detail {
    padding: 20px 20px 35px;

    dt {
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1.5;
        min-height: calc(1.5em * 2);
        font-size: 24px;
        text-align: center;
        margin-bottom: 30px;
        font-weight: var(--weight500);

        .small {
            display: block;
            font-size: 12px;
            transform: translateY(0.7em);
        }
    }

    .under-line01 {
        text-decoration: underline;
        text-decoration-thickness: 6px;
        text-underline-offset: 0.2em;
        text-decoration-color: var(--white);
    }

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








/*******************************************
sp時 スライダー
*******************************************/

.resetSwiper {
    .swiper-wrapper {
        justify-content: space-between;
    }

    .swiper-slide {
        flex: 1;
        border-radius: 20px;
    }

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

        .swiper-wrapper {
            gap: 0 !important;
            flex-wrap: nowrap;
            justify-content: initial;
        }

        .swiper-slide {
            width: auto;
            flex: none;
        }

        .swiper-slide02 {
            width: auto;
            transform: none;
        }
    }
}

/*******************************************
voice
*******************************************/
.voice {
    background-color: var(--yellow01);

    background-image:
        radial-gradient(circle, var(--white03) clamp(3.75px, 0.5208vw + 0.75px, 7.5px), transparent clamp(3.75px, 0.5208vw + 0.75px, 7.5px)),
        radial-gradient(circle, var(--white03) clamp(3.75px, 0.5208vw + 0.75px, 7.5px), transparent clamp(3.75px, 0.5208vw + 0.75px, 7.5px));

    background-position:
        0 0,
        clamp(16.25px, 2.2569vw + 0.25px, 32.5px) clamp(30px, 4.1667vw + 0px, 60px);

    background-size:
        clamp(32.5px, 4.5139vw + 0.5px, 65px) clamp(60px, 8.3333vw + 0px, 120px);
}

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

.voiceSwiper {
    overflow: visible;

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

.voiceSwiper__list {
    .swiper-slide {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}

.voice__txtBox {
    position: relative;
    flex-grow: 1;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--yellow01);
    padding: 45px 25px 55px;
    margin-bottom: 30px;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/voice/triangle.png);
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 39/27;
        width: 39px;
        left: 30%;
        top: 100%;
        transform: translateY(-1%);
    }

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

}

.voice__detail {
    position: relative;
    height: 100%;

    dt {
        position: relative;
        text-align: center;
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding-bottom: 20px;
        font-weight: var(--weight500);

        &::before {
            position: absolute;
            content: "";
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 2.229em;
            height: 5px;
            background-color: var(--purple01);
        }
    }


    &::before,
    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/voice/dq.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: 25/17;
        width: 25px;

    }

    &::before {
        top: 0;
        left: 0;
        transform: translate(-17%, -140%);
    }

    &::after {
        bottom: 0;
        right: 0;
        transform: translate(17%, 200%) rotate(180deg);
    }

    @media screen and (max-width:374px) {
        dt {
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 20px;

            &::before {
                height: 4px;
            }
        }

    }
}

.voice__bottm {
    margin: auto auto 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    .icon {
        width: 86px;
    }

    @media screen and (max-width:1024px) {
        margin-left: 25px;

        .icon {
            width: 66px;
        }
    }
}

.voice__name {
    display: flex;
    flex-direction: column;
    font-size: 19px;
    padding-left: 25px;

    .small {
        font-size: 0.78em;
        margin-top: 10px;
    }

    @media screen and (max-width:1024px) {
        padding-left: 20px;
    }
}


.voice__parts01 {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(150px, 16.45vw, 230px);
    transform: translate(5%, -40%);

    @media screen and (max-width:480px) {
        width: min(26.9vw, 101px);
        transform: translate(25%, -58%);
    }
}

.paginationFlex-voice {
    .pagiDot {
        .swiper-pagination-bullet {
            background-color: var(--white);
        }


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


/*******************************************
pagination
*******************************************/
.paginationFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    gap: 5px;

    display: none;

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

}


.pagiDot {
    width: fit-content !important;
    opacity: 1;

    .swiper-pagination-bullet {
        transition: var(--transition01);
        background-color: var(--orange01);
        opacity: 1;
    }


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

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


    display: none;

    &::before {
        position: absolute;
        content: "";
        mask-image: url(../img/common/arrow.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        top: 50%;
        left: 50%;
        aspect-ratio: 9.5 / 17;
        background-color: var(--white);
        border: 1px solid var(--white);
        transform: translate(-50%, -50%);
        width: max(18.18%, 7px);
    }

}



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




/*******************************************
flow
*******************************************/
.flow {
    background-color: var(--yellow03);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/flow/bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 1440/306;
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .section__inner {
        width: min(100%, 1300px);
        margin: 0 auto;
        padding-bottom: 10px;
    }

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

.flowBox {
    position: relative;
    width: min(100%, 1121px);
    margin: 65px auto 0;
    counter-reset: flow-number;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/flow/line.png);
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 325/889;
        width: 325px;
        top: 0;
        left: 0;
        transform: translate(34%, 20.5%);
    }

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

        &::before {
            width: 31%;
            transform: translate(12%, 27%);
        }
    }

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

    @media screen and (max-width:400px) {
        .img {
            transform: translateY(-49%);
        }
    }

    @media screen and (max-width:768px) {
        width: min(94%, 500px);
        margin-top: min(33vw, 140px);
    }
}

.flowBox__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    width: min(100%, 788px);

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

    &:nth-child(2) {
        margin-bottom: 80px;
    }

    &:nth-child(3) {
        margin-bottom: 45px;
    }

    &:nth-child(even) {
        margin-left: auto;
    }

    .img {
        width: clamp(100px, 18.46vw, 240px);
    }

    @media screen and (max-width:1024px) {
        margin-bottom: 50px !important;
        margin-left: 0 !important;
    }

    @media screen and (max-width:768px) {
        position: relative;
        margin-bottom: min(32vw, 150px) !important;

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

        .img {
            position: absolute;
            top: 0;
            left: 0;
            width: min(47.9%, 180px);
            transform: translate(30%, -55%);
        }

    }

    @media screen and (max-width:480px) {
        .img {
            transform: translateY(-55%);
        }
    }

    @media screen and (max-width:400px) {
        .img {
            transform: translateY(-49%);
        }
    }
}

.flowBox__detail {
    flex: 1;
    padding-top: 45px;

    dt {
        position: relative;
        font-size: var(--font38);
        margin-bottom: 20px;

        &::before {
            position: absolute;
            counter-increment: flow-number;
            content: counter(flow-number, decimal-leading-zero);
            top: 0;
            left: 0;
            color: var(--yellow01);
            font-family: var(--zenMaku);
            font-size: 4.47em;
            line-height: 1;
            transform: translate(-14%, -56%);
        }

        span {
            position: relative;
        }
    }

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

        dt {
            width: 6.9em;
            margin-left: auto;
            margin-bottom: 70px;

            &::before {
                font-size: 4.476em;
                transform: translate(-14%, -57%);
            }
        }
    }

    @media screen and (max-width:374px) {
        dt {
            font-size: 5.347vw;
        }

        dd {
            p {
                font-size: 14px;
            }
        }
    }
}

.flowBottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: max(8%, 60px);

    .img {
        width: min(43.26vw, 623px);
    }

    @media screen and (max-width:1150px) {
        flex-direction: column-reverse;
        align-items: center;
        gap: 35px;
        width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;

        .img {
            width: 80%;
        }
    }

    @media screen and (max-width:480px) {
        .img {
            width: 100vw;
        }
    }
}

.flowBottom__txtBox {
    flex: 1;
    max-width: 490px;
    margin: 0 auto;
    padding-top: 4.7%;

    .txt {
        margin: 25px auto 35px;
    }

    @media screen and (max-width:1150px) {
        max-width: initial;
        flex: none;
        width: 100%;
        padding: 0;
    }

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

        .txt {
            margin: 20px 0;
            text-align: left;
        }
    }
}

.flowBottom__ttl {
    border: 1px solid var(--yellow01);
    background-color: var(--white);
    font-size: var(--font41);
    padding: 20px 20px 40px 35px;

    .ttl {
        display: block;
        margin-bottom: 30px;
        text-decoration-thickness: 6px;
        text-underline-offset: 0.3em;

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

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

        .ttl {
            margin-bottom: 20px;
            text-decoration-thickness: 4px;
        }
    }

    @media screen and (max-width:374px) {
        padding: 10px 15px 25px;
        font-size: 7.2vw;
    }
}

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

    .btn {
        box-shadow: 7px 7px 0 var(--black02);
    }

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


.flow__parts01 {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(100px, 20.625vw, 297px);
    transform: translate(-24%, 59%);

    @media screen and (max-width:1190px) {
        transform: translate(-24%, 10%);
    }

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

.flow__parts02 {
    position: absolute;
    top: 50%;
    right: 0;
    width: clamp(100px, 23.3vw, 336px);
    transform: translate(-12%, -81%);

    @media screen and (max-width:1190px) {
        transform: translate(-12%, -120%);
    }

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

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

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

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

    a {
        position: relative;

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

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


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


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


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

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

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


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

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