@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --black02: rgba(0, 0, 0, 0.5);
    --green01: #6fe0a6;
    --green02: #2fd3d8;
    --green03: #d2ffd2;
    --green04: #e9f8f8;
    --green05: #a3efa3;
    --green06: #9fe6e9;
    --blue01: #124ea1;
    --blue02: #97d4e7;



    --gra01: linear-gradient(90deg, var(--green01), var(--green02));
    --gra02: linear-gradient(90deg, var(--green05), var(--green06));

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

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

    /* 文字サイズ */
    --font17: clamp(13px, 0.37vw + 11.8px, 17px);
    --font19: clamp(14.53px, 0.414vw + 13.2px, 19px);
    --font21: clamp(16.05px, 0.458vw + 14.53px, 21px);
    --font26: clamp(18px, 0.741vw + 15.63px, 26px);
    --font30: clamp(20px, 0.926vw + 17.04px, 30px);
    --font46: clamp(25px, 1.944vw + 18.78px, 46px);

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

    /* 行間 */
    --lineHight120: 1.20;
    --lineHight175: 1.75;
    --lineHight20: 2.0;

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

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

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

    --opacity07: .7;

}


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

        --borderRadius20: 10px;
    }


}




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

body {
    color: var(--black);
    font-family: var(--notoSans);
    font-weight: var(--weight500);
    font-size: var(--font17);
    line-height: var(--lineHight120);



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

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



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

.section {
    overflow: hidden;
    position: relative;
}



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

    padding: 100px 0;
}

.section__ttl,
.headerNav__item:not(:last-child) a {
    display: flex;
    flex-direction: column;
    font-size: var(--font21);

    .en {
        position: relative;
        color: var(--blue01);
        padding-left: 0.8em;
        font-weight: 300;
        letter-spacing: var(--fontSpace050);

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 0.4em;
            aspect-ratio: 1;
            background-color: var(--blue01);
            border-radius: var(--borderRadiusCircle);
            transform: translate(15%, 0.45em);
        }
    }

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

}

.section__ttl {
    position: relative;
    line-height: 1.166;

    .ja {
        margin-top: 10px;
        font-size: 2.85em;
        letter-spacing: var(--fontSpace100);

        .small {
            font-size: 0.5em;
            letter-spacing: var(--fontSpace050);
        }
    }
}


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

.block768 {
    display: none;
}

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

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


.push {
    display: inline-block;
}

.chara01,
.chara02,
.chara03 {
    span {
        display: block;
    }
}







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

    .none1024 {
        display: none;
    }

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

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


    .none768 {
        display: none;
    }

    .block768 {
        display: block;
    }


    .section__ttl {

        .ja {
            margin-top: 5px;
            font-size: 2em;
        }
    }

}

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

    .none480 {
        display: none;
    }

    .section__ttl {
        .ja {
            margin-top: 5px;
            font-size: 1.5em;
        }
    }

    .under-line01 {
        text-decoration-thickness: 2.5px;
    }
}



/*******************************************
bouncePoyon
*******************************************/
.float-img {
    animation: float 4s ease-in-out infinite;
}



.chara02 .float-img {
    animation-delay: 0.5s;
}

.chara03 .float-img {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(10%);
    }
}






.bouncePoyon {
    animation: bouncePoyon 1.8s ease infinite;
}

@keyframes bouncePoyon {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    20% {
        transform: scale(1) translateY(0);
    }

    30% {
        transform: scale(1.15, 0.85) translateY(-15px);
    }

    40% {
        transform: scale(1.2, 0.8) translateY(-30px);
    }

    50% {
        transform: scale(0.8, 1.2) translateY(0);
    }

    60% {
        transform: scale(0.9, 1.1) translateY(-15px);
    }

    70% {
        transform: scale(1.1, 0.9) translateY(-10px);
    }

    80% {
        transform: scale(1) translateY(0);
    }

    90% {
        transform: scale(0.95, 1.05) translateY(0);
    }

}

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

        0%,
        100% {
            transform: scale(1) translateY(0);
        }

        20% {
            transform: scale(1) translateY(0);
        }

        30% {
            transform: scale(1.05, 0.95) translateY(-6px);
        }

        40% {
            transform: scale(1.08, 0.92) translateY(-10px);
        }

        50% {
            transform: scale(0.94, 1.06) translateY(0);
        }

        60% {
            transform: scale(0.97, 1.03) translateY(-4px);
        }

        70% {
            transform: scale(1.03, 0.97) translateY(-3px);
        }

        80%,
        90% {
            transform: scale(1) translateY(0);
        }

    }

}



/*******************************************
btn
*******************************************/
.btn-outer {
    width: min(100%, 300px);
    height: 75px;
    margin: 0 auto;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    background-image: var(--gra01);
    font-size: var(--font21);
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius01);
    transition: var(--transitionBase01);
    cursor: pointer;



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





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

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



/*******************************************
追従ボタン
*******************************************/
.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(--transitionBase01);



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

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

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

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

}


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




/*******************************************
header
*******************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 70px;
    z-index: 95;
    transition: var(--transitionBase01);
    gap: 10px;
}

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

.header__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header__logo {
    width: 125px;
}

.header__txt {
    font-size: var(--font21);
    display: flex;
    align-items: center;

    span {
        display: block;
    }

    .txt01 {
        margin: 0 15px 0 10px;
    }

    .border {
        font-size: 0.714em;
        border: 1px solid var(--black);
        border-radius: 5px;
        padding: 0 0.8em;
        line-height: 1.5;
    }
}


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

.entryBox-fixed {
    flex: 1;
    margin-right: 25px;

    .btn-outer {
        margin: 0 0 0 auto;
        height: 60px;
    }
}



.hamburger {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 100;
    background-color: var(--blue01);
    border-radius: var(--borderRadiusCircle);

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

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

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

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

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

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

.headerNav__item {
    margin: 0 0 5svh;

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

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

    &:not(:last-child) a {
        gap: 5px;

        .ja {
            font-size: 1.3em;
        }
    }

}

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




.active {

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

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

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

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

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

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





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

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

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

    .entryBox-fixed {
        position: fixed;
        left: 50%;
        bottom: 2%;
        z-index: 50;
        margin: 0;
        width: min(80%, 400px);
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transitionBase01);

        .btn-outer {
            width: 100%;
            margin: 0;
        }
    }

}


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

    .hamburger {
        width: 50px;
    }

    .header {
        padding: 0 20px;
    }

    .header__txt {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 10px;

        .txt01 {
            margin: 0;
        }
    }

    .headerNav__item {
        &:not(:last-child) a {
            font-size: 13px;

        }

    }


}

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

    .header {
        height: 50px;
        padding: 0 0 0 5px;
    }

    .header__logo {
        width: 80px;
    }

    .header__txt {
        font-size: 13px;
        margin-left: 5px;
    }

    .hamburger {
        width: 40px;
        top: 25px;
    }

    .headerNav__list {
        width: 70%;
        padding: clamp(20px, 5svh, 100px) clamp(20px, 5svh, 50px) 2vh;
    }

    .headerNav__item {
        &:not(:last-child) a {
            .ja {
                font-size: 1.2em;
            }

        }

    }
}

@media screen and (max-width:480px) {
    .header__txt {
        font-size: 11px;
        margin-left: 3px;
    }
}




/*******************************************
mv
*******************************************/
.mv {
    position: relative;
    margin-top: 70px;
    z-index: 1;
}

.mv__ttl {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -57%);
    width: 66.6vw;
}


.mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.blob-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    aspect-ratio: 1400/680;
    border-radius: 99999px;
    margin: auto;
    overflow: hidden;
    background-color: #fff;
    filter: blur(100px);
    z-index: -1;
}

.blob {
    /* position: absolute;
    width: 100vw;
    height: 100vh;
    inset: 0; */
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    background: conic-gradient(from 0deg,
            #A7D8FF,
            #FFD6A5,
            #E4FFC9,
            #D6C6FF,
            #F7C6D9,
            #BDEBFF);
    animation: spinBlob 10s linear infinite;

}

@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(2);
    }

    100% {
        transform: rotate(1turn) scale(2);
    }
}


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

@media screen and (max-width:768px) {
    .mv__ttl {
        transform: translate(-50%, -50%);
        width: 90vw;
    }

    .blob-outer {
        aspect-ratio: 750/820;
    }
}


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

    .blob-outer {
        filter: blur(50px);
    }
}





/*******************************************
sticky-container
*******************************************/

.sticky-container {
    position: relative;
}

.sticky-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;


    background-image: url(../img/common/bg01.png);
    background-position: center 80px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.sticky-inner02 {
    background-image: url(../img/common/bg02.png);
}

.sticky-bg01 {
    position: sticky;
    top: 70px;
    width: min(100%, 1400px);
    margin: 0 auto;


    display: none;
}



@media screen and (max-width:768px) {
    main {
        overflow: visible;
    }


    .sticky-inner {
        height: 100%;
        background-image: none;
    }

    .sticky-bg01 {
        display: block;
        position: sticky;
        top: 60px;
        width: min(100%, 1400px);
        margin: 0 auto;
    }
}


@media screen and (max-width:480px) {
    .sticky-parts01 {
        top: 50px;
    }
}



/*******************************************
message
*******************************************/
.message {
    .section__inner {
        padding: clamp(50px, 12%, 165px) 0px clamp(50px, 17%, 235px);

    }

    .section__ttl {

        z-index: 1;

        .ja {
            span {
                display: block;
            }
        }
    }
}

.messageTop {
    position: relative;
    margin-top: 30px;
}

.messageTop__txt {
    position: relative;
    line-height: 3;
    font-size: var(--font21);
    z-index: 1;
}

.messageTop__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(39vw, 545px);
    display: grid;
    grid-template-columns: 35.23% 58.72%;
    grid-template-rows: auto auto;
    row-gap: 30px;
    transform: translate(22%, 15%);
    justify-content: space-between;



    .chara01 {
        grid-column: 1;
        grid-row: 1;
        width: 82.65%;
    }

    .img02 {
        grid-column: 1;
        grid-row: 2;
        width: 100%;

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

    .img01 {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 100%;
        padding-top: 55px;

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

}


.messageBottom {
    margin-top: 15%;
    display: flex;
    justify-content: space-between;
}

.message__detail {
    background-color: var(--green04);
    border-radius: var(--borderRadius20);
    width: calc((100% - 30px)/2);
    padding: 40px 35px;

    dt {
        position: relative;
        font-size: var(--font30);
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 0.86em;
        color: var(--blue01);

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


@media screen and (max-width:1200px) {
    .messageTop__img {
        transform: translate(0%, 15%);
    }

}

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

        .section__ttl {
            align-items: center;

            .ja {
                text-align: center;
            }
        }
    }

    .messageTop {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .messageTop__txt {
        text-align: center;
    }

    .messageTop__img {
        position: initial;
        transform: initial;
        width: min(100%, 500px);
        justify-content: center;
        gap: 10px;
        margin-top: 30px;

        .chara01 {
            width: 50%;
        }

        .img01 {
            padding-top: 15%;
        }
    }

    .messageBottom {
        flex-direction: column;
        align-items: center;
        width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;
    }

    .message__detail {
        width: 100%;
        padding: max(8%, 25px) max(7%, 10px);
        margin-bottom: 30px;

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

        dt {
            margin-bottom: max(7%, 20px);
        }
    }

}

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

    .message__detail {
        dt {
            &::before {
                height: 3px;
            }
        }
    }
}




/*******************************************
ページネーション
*******************************************/
.paginationFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pagiDot {
    width: fit-content !important;

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

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


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

    &::before,
    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/common/arrow.svg);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40%;
        aspect-ratio: 20/15;
    }

}

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


/*******************************************
job
*******************************************/
.job {
    .section__inner {
        width: min(100%, 1400px);
        padding: 0 0 clamp(50px, 10%, 100px);
    }

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

    .paginationFlex {
        position: absolute;
        left: 0;
        bottom: 0;
        gap: 15px;
        margin-left: 125px;

        .pagiDot {
            display: none;
        }
    }
}

.job-container {
    position: relative;
    width: min(100%, 1190px);
    margin: -4% 0 0 auto;

    .chara02 {
        position: absolute;
        left: 0%;
        top: 50%;
        transform: translate(45%, -55%);
        width: min(100%, 164px);
    }
}

.jobSwiper-outer {
    width: min(64.28vw, 900px);
    margin: 0 0 0 auto;
    overflow: hidden;
}

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

.jobSwiper__list {

    .swiper-slide {
        display: flex;
        flex-direction: column;
        padding-top: 25px;
        height: auto;
    }

}


.jobSwiper__detail {
    position: relative;
    background-color: var(--green04);
    border-radius: var(--borderRadius20);
    padding: 0 35px 40px;
    flex-grow: 1;

    dt {
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: var(--font26);
        color: var(--white);
        background-color: var(--blue01);
        width: 8.461em;
        height: 1.923em;
        margin: 0 auto;
        border-radius: var(--borderRadius01);
    }

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

    p {
        margin-top: 30px;
    }
}

@media screen and (max-width:1024px) {
    .job {
        .section__inner {
            padding-right: 0 !important;

        }
    }
}

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


        .paginationFlex {
            gap: 10px;
            margin-left: 10%;
        }

        .pagiBtn {
            width: 40px;
        }
    }

    .job-container {
        .chara02 {
            transform: translate(20%, -55%);
            width: 21%;
        }
    }
}

@media screen and (max-width:480px) {
    .job {
        .paginationFlex {
            position: initial;
            gap: 10px;
            margin-left: 0;
            margin-top: 30px;

            .pagiDot {
                display: flex;
            }
        }

        .pagiBtn {
            width: 40px;
        }

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

    .job-container {
        margin-top: 20px;

        .chara02 {
            top: 0;
            left: auto;
            right: 0;
            transform: translateY(-100%);
            width: 16%;
        }
    }

    .jobSwiper-outer {
        width: min(100%, 200px);
        margin: 0 auto;
        overflow: visible;
    }

    .jobSwiper {
        overflow: visible;
    }

    .jobSwiper__detail {
        padding: 0 10px 20px;

        .img {
            width: 70%;
            margin: 0 auto;
        }

        p {
            margin-top: 10px;
        }
    }
}



/*******************************************
merit
*******************************************/

.merit {
    .section__inner {
        width: min(100%, 1120px);
        padding: clamp(30px, 5%, 70px) 0 clamp(20px, 4%, 55px) 0;
        margin-top: clamp(20px, 4%, 55px);
    }

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

.merit-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;

    img {
        object-fit: cover;
        height: 100%;
    }
}

.merit-container {
    margin: 30px auto 0;
}

@keyframes liquidMove01 {

    0% {
        border-radius: 42% 58% 46% 54% / 55% 38% 62% 45%;
        transform: translate(-50%, -50%) scale(1);
    }

    20% {
        border-radius: 70% 35% 60% 40% / 45% 75% 35% 70%;
        transform: translate(-50%, -50%) scale(1.04);
    }

    40% {
        border-radius: 35% 75% 40% 80% / 80% 45% 85% 35%;
        transform: translate(-50%, -50%) scale(0.97);
    }

    60% {
        border-radius: 85% 45% 75% 55% / 65% 90% 50% 85%;
        transform: translate(-50%, -50%) scale(1.05);
    }

    80% {
        border-radius: 60% 85% 55% 90% / 90% 60% 80% 55%;
        transform: translate(-50%, -50%) scale(0.98);
    }

    100% {
        border-radius: 42% 58% 46% 54% / 55% 38% 62% 45%;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes liquidMove02 {

    0%,
    100% {
        border-radius: 55% 45% 60% 40% / 50% 65% 35% 60%;
        transform: translate(-50%, -50%) scale(1.02);
    }

    20% {
        border-radius: 40% 70% 45% 75% / 70% 40% 80% 45%;
        transform: translate(-50%, -50%) scale(0.96);
    }

    40% {
        border-radius: 75% 35% 70% 50% / 55% 85% 40% 75%;
        transform: translate(-50%, -50%) scale(1.06);
    }

    60% {
        border-radius: 50% 85% 55% 90% / 90% 55% 85% 50%;
        transform: translate(-50%, -50%) scale(0.97);
    }

    80% {
        border-radius: 85% 55% 90% 60% / 60% 90% 55% 85%;
        transform: translate(-50%, -50%) scale(1.04);
    }

    90% {
        border-radius: 70% 60% 75% 65% / 65% 75% 60% 70%;
        transform: translate(-50%, -50%) scale(1.01);
    }

}




.meritBox {
    position: relative;
    width: min(100%, 597px);
    padding: 115px 10px 55px;
    min-height: 393px;


    &::before {
        position: absolute;
        content: "";
        background-color: var(--green04);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 43% 40% 47% 25% / 56% 32% 55% 38%;
        animation: liquidMove01 10s linear infinite;
    }

    /* &:not(:first-child) {
        &::before {
            animation: liquidMove02 10s linear infinite;
        }
    } */


    &:nth-child(2) {
        margin: -14% 0 0 auto;

        &::before {
            animation: liquidMove02 10s linear infinite;
        }
    }

    &:nth-child(3) {
        margin: -10% 0 0 3%;
    }

    .number {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        font-size: var(--font46);
        color: var(--blue02);
        z-index: 4;
    }
}

.chara-merit {
    position: absolute;
    top: 0;
    right: 0;
    width: 162px;
    transform: translate(25%, -26%);
}

.chara-merit03 {
    top: 0;
    right: auto;
    left: 0;
    transform: translate(17%, -35%);
}

.merit__detail {
    position: relative;

    dt {
        font-size: var(--font30);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: calc(1.3333em * 2);
        color: var(--blue01);
        line-height: 1.3333;
    }

    dd {
        width: min(75%, 404.5px);
        margin: 15px auto 0;
    }
}

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

        &:nth-child(2) {
            margin: -5% 0 0 auto;
        }

        &:nth-child(3) {
            margin: -5% 0 0 3%;
        }
    }
}

@media screen and (max-width:1024px) {
    .merit-container {
        width: min(100%, 500px);

    }

    .meritBox {
        min-height: 350px;
        margin-bottom: 50px !important;

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

        &:nth-child(3) {
            margin: 0 auto;
        }

        .number {
            transform: translate(-50%, 53%);
        }
    }



    .chara-merit {
        width: max(19%, 50px);
        transform: translate(3%, -6%);
    }

    .chara-merit03 {
        transform: translate(11%, -8%);
    }


    .merit__detail {
        dt {
            min-height: initial;
        }
    }


}


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

    .meritBox {
        min-height: 280px;
        padding-top: 19%;

        .number {
            transform: translate(-50%, 100%);
        }
    }

    .merit__detail {
        dd {
            width: min(75%, 290px);
            margin-top: 10px;
        }
    }
}

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

    .meritBox {
        margin-bottom: 30px;
        padding-top: max(22%, 70px);
    }

    .merit__detail {
        dd {
            width: min(75%, 200px);
            margin-top: 10px;
        }
    }
}


@media screen and (max-width:375px) {
    .meritBox {
        min-height: 230px;
    }

    .chara-merit {
        transform: translate(-20%, -35%);
    }

    .chara-merit03 {
        transform: translate(30%, -30%);
    }
}




/*******************************************
flow
*******************************************/
.flow {
    .section__inner {
        padding: clamp(30px, 11%, 155px) 0 clamp(80px, 9%, 125px);
    }
}

.flow-container {
    margin: max(5.62%, 30px) auto 0;
}

.flowList {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px 55px;
}

.flowList__item {
    max-width: 218px;
    width: calc((100% - 110px)/3);

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

    &:nth-child(2),
    &:nth-child(5) {
        margin-top: 6%;
    }

    .img {
        width: 91%;
        margin: 0 auto 15px;
    }
}

.flowList__detail {
    dt {
        font-size: var(--font26);
        color: var(--blue01);
        margin-bottom: 15px;
    }

    dd {
        .small {
            font-size: max(0.8235em, 10px);
        }
    }
}


.chara03-flow {
    position: absolute;
    width: 15.6%;
    bottom: 0;
    left: 0;
    transform: translate(-10%, -111%);
}

@media screen and (max-width:1024px) {
    .flow {
        .section__inner {
            padding-bottom: 12%;
        }
    }

    .chara03-flow {
        width: max(12%, 60px);
        transform: translate(10%, 0);
        bottom: 2%;
    }
}

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

    .flow-container {
        width: min(100%, 500px);
    }

    .flowList {
        gap: 25px;
    }

    .flowList__item {
        max-width: 230px;
        width: calc((100% - 25px)/2);

        &:nth-child(4) {
            margin-left: initial;
        }

        &:nth-child(2),
        &:nth-child(5) {
            margin-top: initial;
        }

        &:nth-child(2n) {
            margin-top: max(8%, 25px);
        }

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

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

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

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

    .flowList__detail {
        dt {
            margin-bottom: 10px;
        }
    }
}





/*******************************************
question
*******************************************/
.question {
    .section__inner {
        padding: 0 0 clamp(60px, 12%, 170px);
    }
}

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

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

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

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

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

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

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


.question__detail {
    margin-top: clamp(25px, 6%, 55px);
}

.question__item {
    margin-bottom: clamp(20px, 6%, 50px);

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

    dt {
        background-color: var(--green04);
        font-size: var(--font21);
        padding: 15px 30px 15px 15px;


        p {
            font-size: 1em;
            text-align: left;
            color: var(--blue01);
            line-height: 1.2;
        }
    }

    .dd-inner {
        padding: 20px 30px 0 15px;
    }

    dt,
    .dd-inner {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        p {
            flex: 1;
            padding-top: 0.5em;
        }
    }
}

.q-icon,
.a-icon {
    position: relative;
    font-size: var(--font21);
    width: 2.285em;
    aspect-ratio: 1;
    border-radius: var(--borderRadiusCircle);
    background-color: var(--white);
    margin: 0 0.714em 0 0;

    &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -58%);
        font-size: 1em;
        line-height: 1;
    }
}

.q-icon {
    &::before {
        content: "Q";
        color: var(--blue01);
    }
}

.a-icon {
    background-color: var(--blue01);

    &::before {
        content: "A";
        color: var(--white);
    }
}

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


    .aco-click {

        &::before,
        &::after {
            width: 1em;
            height: 1.5px;
        }
    }

    .question__item {
        dt {
            padding: 10px 30px 10px 10px;
        }

        .dd-inner {
            padding: 10px 30px 0 10px;
        }

        & dt,
        & .dd-inner {
            p {
                flex: 1;
                padding-top: 0.3em;
            }
        }
    }

    .q-icon,
    .a-icon {
        width: 1.8em;
        margin: 0 0.6em 0 0;
    }
}






/*******************************************
search
*******************************************/
.search {
    overflow: visible;
    background-color: var(--white);
    padding: 0 0 clamp(50px, 7.6%, 100px);
    border-radius: 7.142857142857142vw;

    .section__inner {
        padding: 0;
    }

    .section__ttl {
        width: min(92%, 895px);
        margin: 0 auto;
    }
}

.search__inner {
    position: relative;
    padding: clamp(50px, 7.6%, 105px) 0 clamp(40px, 7.6%, 95px);

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gra02);
        opacity: 0.3;
        border-radius: 7.142857142857142vw;
    }

}

.searchTop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: clamp(150px, 27%, 370px);
}

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

.search-container {
    margin: max(7.14%, 40px) auto 0;
}

.searchBox {
    margin-bottom: max(8%, 30px);
    border-radius: var(--borderRadius20);
    overflow: hidden;

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

    dt {
        background-color: var(--blue01);
        font-size: var(--font26);
        letter-spacing: var(--fontSpace050);
        text-align: center;
        height: 3em;
        display: flex;
        justify-content: center;
        align-items: center;

        .ttl {
            position: relative;
            display: block;
            color: var(--white);

            &::before {
                position: absolute;
                content: "";
                background-image: url(../img/search/icon.svg);
                background-repeat: no-repeat;
                background-size: contain;
                left: 0;
                top: 0;
                transform: translate(-135%, -12%);
                width: 1.9230em;
                aspect-ratio: 1;
            }
        }

    }

    dd {
        padding: 50px 35px;
        background-color: var(--white);
    }
}


.searchBox__btnList {
    display: flex;
    justify-content: center;
    gap: 25px 20px;
    flex-wrap: wrap;
    width: min(100%, 907px);

    .btn-outer {
        width: calc((100% - 40px)/3);
        margin: 0;
    }

}

.searchBox__btnList02 {
    width: min(100%, 597px);
    margin: 0 auto;

    .btn-outer {
        width: calc((100% - 20px)/2);
        margin: 0;
    }
}

@media screen and (max-width:1024px) {
    .search {
        .section__ttl {
            width: min(90%, 700px);
        }
    }

    .search-container {
        width: min(100%, 600px);
    }

    .searchBox__btnList {
        .btn-outer {
            width: min(calc((100% - 20px) / 2), 288px);
        }
    }

}

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

    .search {
        .section__ttl {
            width: 100%;
        }
    }

    .searchBox {
        dd {
            padding: 30px 4%;
        }
    }

    .searchBox__btnList {
        gap: 20px 10px;

        .btn-outer {
            width: min(calc((100% - 10px) / 2), 288px);
        }


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


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

.footer {
    background-color: var(--blue01);
    padding: 50px 0;
    position: relative;
    font-size: 15px;
    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: 15px;
}

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


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

    .footer {
        font-size: 12px;

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

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

}