@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #222222;
    --green01: #60d8a5;
    --green02: #2fac8a;
    --green03: #009c00;
    --green04: #d5eee7;
    --yellow01: #ffd700;
    --yellow02: rgba(255, 215, 0, 0.2);
    --yellow03: #f2c500;
    --red01: #f97e52;
    --red02: #e9001a;
    --red03: #fce5dd;
    --red04: #e84b19;
    --orange: #ffb300;
    --gray: #727272;

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

    /* 影 */
    --shadow: 7px 7px 5px rgba(0, 0, 0, 0.1);

    /* 書式 */
    --zenKaku: "Zen Kaku Gothic Antique", sans-serif;


    /* 文字サイズ */
    --size14: 1.4rem;
    --size17: 1.7rem;
    --size19: 1.9rem;
    --size20: 2rem;
    --size23: 2.3rem;
    --size25: 2.55rem;
    --size32: 3.2rem;
    --size41: 4.1rem;
    --size43: 4.3rem;

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

    /* 行間 */
    --lineHight120: 1.2;
    --lineHight139: 1.39;
    --lineHight150: 1.5;
    --lineHight200: 2;

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

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

    /* 角丸の変数　 */
    --borderRadius50: 100vw;
    --borderRadius20: 20px;
    --borderRadius10vw: 10vw;
    --borderRadiusCircle: 50%;
}

@media screen and (max-width: 1024px) {
    :root {
        --size14: 1.3rem;
        --size17: 1.6rem;
        --size19: 1.8rem;
        --size20: 1.9rem;
        --size23: 2.1rem;
        --size25: 2.2rem;
        --size32: 2.85rem;
        --size41: 3rem;
        --size43: 3.5rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --size14: 1.2rem;
        --size17: 1.5rem;
        --size19: 1.7rem;
        --size20: 1.8rem;
        --size23: 2.0rem;
        --size25: 2.1rem;
        --size32: 2.5rem;
        --size41: 2.8rem;
        --size43: 3rem;
    }
}



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

/* html.with-featherlight {
    overflow-y: scroll;
} */

.with-featherlight body {
    overflow-y: scroll;
}

body {
    color: var(--black);
    font-family: var(--zenKaku);
    font-weight: var(--weight700);
    font-size: var(--size17);
    line-height: var(--lineHight150);
    letter-spacing: var(--fontSpace005);
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__ttl {
    display: flex;
    flex-direction: column;
    gap: 20px;

    & .ja {
        font-size: var(--size25);
        color: var(--white)
    }
}

.green {
    color: var(--green03);
}

.red {
    color: var(--red02);
}

.bg-yellow {
    background-color: var(--yellow01);
    border-radius: 0 0 0 var(--borderRadius10vw);
}

.bg-red {
    background-color: var(--red01);
    border-radius: 0 var(--borderRadius10vw) 0 var(--borderRadius10vw);
}

.bg-red02 {
    background-color: var(--red04);
    border-radius: 0 var(--borderRadius10vw) 0 0;
}

.bg-green {
    background-color: var(--green02);
    border-radius: 0 var(--borderRadius10vw) 0 var(--borderRadius10vw);
}

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

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

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

    .none1024 {
        display: none;
    }
}

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

    .none980 {
        display: none;
    }
}


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

    .none768 {
        display: none;
    }
}

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

    .none480 {
        display: none;
    }

    .section__ttl {
        gap: 5px;
    }
}

@media screen and (max-width:374px) {
    .section__ttl {
        & .ja {
            font-size: 18px;
        }
    }
}

@media screen and (max-width:340px) {
    .section__ttl {
        & .ja {
            font-size: 15px;
        }
    }
}


/*******************************************
ページネーション 
*******************************************/
.paginationFlex {
    margin: 65px 0 0;
}

.pageDot {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

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


.prevBtn,
.nextBtn {
    cursor: pointer;
    position: absolute;
    top: 41%;
    width: 70px;
    aspect-ratio: 1;
    background-color: var(--red02);
    border-radius: var(--borderRadiusCircle);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transition: var(--transitionBase);
    border: 2px solid var(--red02);


    & .arrow {
        position: relative;
        background-color: var(--white);
        width: 47.15%;
        height: 5px;
        border-radius: var(--borderRadius50);
        transition: var(--transitionBase);

        &::before,
        &::after {
            position: absolute;
            content: "";
            background-color: var(--white);
            height: 5px;
            width: 70%;
            top: 50%;
            left: 0;
            border-radius: var(--borderRadius50);
            transform-origin: left;
            transition: var(--transitionBase);
        }

        &::before {
            transform: translateY(-30%) rotate(-45deg);
        }

        &::after {
            transform: translateY(-70%) rotate(45deg);
        }
    }

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

        & .arrow {
            background-color: var(--red01);

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

.prevBtn {
    left: 13%;
}

.nextBtn {
    right: 15%;
    transform: rotate(180deg);
}

.paginationFlex-environment {
    margin: 30px auto 0;

    & .prevBtn,
    & .nextBtn {
        width: 50px;
        top: 50%;
        background-color: var(--green02);
        border: 2px solid var(--green02);

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

            & .arrow {
                background-color: var(--green02);

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

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

    & .nextBtn {
        right: 0%;
        transform: translate(50%, -50%) rotate(180deg);
    }

    & .arrow {
        height: 3px;

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

}

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



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

    .prevBtn,
    .nextBtn {
        width: 50px;

        & .arrow {
            height: 3px;

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


    }
}

@media screen and (max-width:830px) {
    .paginationFlex-environment {
        & .prevBtn {
            transform: translate(-25%, -50%);
        }

        & .nextBtn {
            transform: translate(25%, -50%) rotate(180deg);
        }
    }
}


@media screen and (max-width:480px) {
    .paginationFlex-environment {
        position: relative;
        width: min(100%, 145px);

        & .prevBtn,
        & .nextBtn {
            top: 50%;
            width: 30px;

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

                & .arrow {
                    background-color: var(--white);

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








}




/*******************************************
btn
*******************************************/
.btn-outer {
    position: relative;
    margin: 0 auto;
}


& .btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid var(--black);
    background-color: var(--black);
    text-align: center;
    border-radius: var(--borderRadius50);
    letter-spacing: var(--fontSpace008);
    font-size: var(--size23);
    color: var(--white);
    transition: var(--transitionBase);

    & .arrow {
        position: absolute;
        top: 50%;
        right: 5%;
        background-color: var(--white);
        border: 2px solid var(--black);
        width: 31px;
        aspect-ratio: 1;
        border-radius: var(--borderRadiusCircle);
        transform: translateY(-50%);
        transition: var(--transitionBase);

        & span {
            position: absolute;
            top: 50%;
            left: 50%;
            background-color: var(--black);
            width: 40%;
            height: 2px;
            border-radius: var(--borderRadius50);
            transition: var(--transitionBase);
            transform: translate(-50%, -50%);
            transition: var(--transitionBase);
        }

        &::before,
        &::after {
            position: absolute;
            content: "";
            background-color: var(--black);
            height: 2px;
            width: 30%;
            top: 50%;
            left: 50%;
            border-radius: var(--borderRadius50);
            transform-origin: right;
            transition: var(--transitionBase);
        }

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

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

    &:hover {
        background-color: var(--white);
        color: var(--black);

        & .arrow {
            background-color: var(--black);


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

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










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

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

            & .arrow {
                background-color: var(--white);


                & span {
                    background-color: var(--black);
                }

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

}

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

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

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

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

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

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

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

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

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



.entryBtn-fixed {
    position: fixed;
    bottom: 20%;
    right: 0;
    width: 70px;
    z-index: 10;
    transition: var(--transitionBase);
    opacity: 0;
    visibility: hidden;

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

        &:hover {
            opacity: .7;
        }
    }

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



@media screen and (max-width: 1280px) {
    .entryBtn-fixed {
        position: fixed;
        bottom: 20%;
        right: 0;
        width: 50px;
        z-index: 10;
    }
}


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

    .entryBtn-fixed {
        border: 2px solid var(--white);
        background-color: var(--black);
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto 3%;
        width: 90%;
        border-radius: 40px;

        & a {
            padding: 20px 0 15px;

            &:hover {
                opacity: 1;
            }
        }

        & img {
            width: 30%;
            margin: 0 auto;
            display: block;
        }
    }
}

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


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

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

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

.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    padding: max(0.632%, 5px) max(3.156%, 15px) max(0.632%, 5px) max(2.55%, 15px);
    z-index: 95;
    transition: var(--transitionBase);
}

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

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


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

    & a:hover {
        opacity: .7;
    }
}


.headerNav {
    flex: 1;
}

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

.headerNav__item {
    font-size: 15px;
    margin-left: clamp(20px, 2.1vw, 40px);
    position: relative;
    color: var(--black);
    transition: var(--transitionBase);

    & a {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--green01);
            transform: scale(0, 1);
            transition: var(--transitionBase);
            transform-origin: right;
            transition: transform 0.6s;
        }

        &:hover::before {
            transform-origin: left;
            transform: scale(1, 1);
        }
    }

}

.headerNav__item--entry {
    display: none;
}

@media screen and (max-width:1200px) {
    .header__logo {
        width: 200px;
    }

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


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

    .header {
        position: absolute;
    }

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


    .hamburger {
        display: block;
        position: fixed;
        right: 1%;
        top: 10px;
        width: 55px;
        height: 55px;
        cursor: pointer;
        z-index: 100;
        transition: var(--transitionBase);
        background-color: var(--black);

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

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

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

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

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

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

    .headerNav__item {
        font-size: 16px;
        margin: 0 0 4vh;
        text-align: center;

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

        & a::before {
            display: none;
        }

    }

    .headerNav__item--entry {
        display: block;
        background-color: var(--black);
        width: min(100%, 200px);
        padding: 15px 0;
        margin-top: 8vh;

        & img {
            display: block;
            margin: 0 auto;
            width: 50%;
        }

    }



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

}

@media screen and (max-width:768px) {
    .headerNav__list {
        width: 70%;
    }
}

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

@media screen and (max-width:600px) {
    .header__logo {
        width: 150px;
    }
}


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


    .hamburger {
        width: 40px;
        height: 40px;
    }

    .header__logo {
        width: 100px;
    }

    .headerNav__list {
        width: 100%;
        align-items: center;
    }
}


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

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

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

.mvFrame {
    position: absolute;
    width: 52.366%;
    aspect-ratio: 830 / 615;
    bottom: 2.5vw;
    left: 2.713%;
    border-radius: 0 10vw 0 10vw;
    box-shadow: 2.5vw 2.5vw 0 var(--green01);
    overflow: hidden;

    & .mvFrame__inner {
        display: flex;
        height: 100%;
    }

    & img {
        object-fit: cover;
        height: 100%;
        width: 415vw;
        animation: slide 170s linear infinite;
    }
}



.mvTxtBox {
    position: absolute;
    top: 43.5%;
    left: 52%;
    width: 45%;
}

.mvTxtBox__inner {
    position: relative;
}

.mvTxt01 {
    position: absolute;
    left: -2%;
    top: -44%;
    width: 36.14%;
}

.mvTxt02 {
    position: absolute;
    right: 2%;
    top: -57%;
    width: 38.796%;
}

.mvTtl {
    width: 100%;
    margin-bottom: 3.502%;
}

.mvTxt03 {
    margin-left: 1.713%;
    width: 49.3%;
}

@media screen and (max-width:900px) {
    .mvTxtBox {
        top: 16.67%;
        left: 7%;
        width: 87%;
    }

    .mvTxt01 {
        left: -4%;
        top: -47%;
        width: 39.1%;
    }

    .mvTxt02 {
        position: absolute;
        right: -6%;
        top: auto;
        bottom: -15%;
        width: 40.2%;
    }

    .mvTxt03 {
        margin-left: 1.2%;
        width: 58%;
        border-radius: var(--borderRadius50);
        overflow: hidden;
    }

    .mvTtl {
        margin-bottom: max(2.6%, 5px);
    }

    .mvFrame {
        width: 94.737%;
        left: auto;
        right: 0;
        bottom: 14.4vw;
        border-radius: 0 30vw 0 30vw;
        box-shadow: 4.4647vw 4.4647vw 0 var(--green01);

        & img {
            animation: slide 50s linear infinite;
        }
    }
}

/*******************************************
about
*******************************************/


.about {
    background-color: var(--red01);


    & .bg-yellow {
        position: relative;
        padding: 0 0 clamp(80px, 10.095%, 160px);
    }

    & .bg-01,
    & .bg-02 {
        position: absolute;
        content: "";
        width: max(21.325%, 100px);
        z-index: 0;
    }

    & .bg-01 {
        top: 42%;
        right: 0;
    }

    & .bg-02 {
        top: 58.8%;
        left: 0;
    }
}

.ttlImg {
    width: min(100%, 1126px);
    margin: 0 auto;
    transform: translateX(5%);
}

.aboutFlex-outer {
    position: relative;
}

.aboutFlex {
    display: flex;
    align-items: flex-start;
    margin: max(5.417%, 40px) auto max(5.417%, 30px);
    width: min(100%, 1235px);
    transform: translateX(5%);
}

.aboutFlex__img {
    width: min(100%, 400px);
    border-radius: var(--borderRadius20);
    overflow: hidden;
    margin: 0 5.417% 0 0;
}

.aboutFlex__txt {
    flex: 1;
    line-height: var(--lineHight200);

    & .big {
        font-size: 1.5em;
        color: var(--red02);
    }
}

.about__banner {
    width: min(100%, 757px);
    margin: 0 auto clamp(50px, 9.78%, 155px);
}

.aboutFeature__ttlBox {
    position: relative;
}

.aboutFeature__ttl {
    width: fit-content;
    font-size: var(--size43);
    margin: 0 auto 15px;
    background-color: var(--black);
    color: var(--white);
    letter-spacing: var(--fontSpace008);
    padding: 0 1.116em;
    text-align: center;
}

.aboutFeature__txt {
    text-align: center;
    font-size: var(--size19);
    letter-spacing: var(--fontSpace008);
}


.aboutSwiper {
    margin: clamp(30px, 4.417%, 70px) auto 0;
}

.aboutSwiper__list {

    & .swiper-slide {
        display: flex;
        justify-content: flex-end;
        max-width: 901px;
    }
}

.aboutSwiper__item {
    position: relative;
    background-color: var(--green02);
    width: 83.94%;
    aspect-ratio: 1;
    border-radius: var(--borderRadiusCircle);
    padding-top: 12.57%;
}

.aboutSwiper__item--red {
    background-color: var(--red01);
}

.aboutSwiper__ttl {
    font-size: var(--size32);
    text-align: center;
    background-color: var(--white);
    padding: 5px 0.625em;
    letter-spacing: var(--fontSpace008);
    width: fit-content;
    margin: 0 auto 10.578%;

    &:first-letter {
        color: var(--red02);
    }
}

.aboutSwiper__img {
    position: absolute;
    width: 52.841%;
    top: 50%;
    left: 0;
    transform: translate(-36%, -44%);
}

.boutSwiper__txt {
    padding: 0 17.17% 0 37.646%;
    color: var(--white);
    line-height: 1.8;
}

.aboutCharacter {
    position: absolute;
    bottom: 15.867%;
    left: 50%;
    transform: translateX(-47%);
    display: flex;
    align-items: flex-end;
}

.aboutCharacter01 {
    & .character__img {
        width: 27.51%;
    }
}

.aboutCharacter02 {

    transform: translateX(-49%);

    & .character__img {
        width: 30.147%;
    }

    & .character____txt::before {
        background-color: var(--yellow03);
    }
}




.aboutCharacter03 {

    transform: translateX(-54%);

    & .character__img {
        width: 39.933%;
    }

    & .character____txt::before {
        background-color: var(--green02);
    }
}

.character____txt {
    position: relative;
    font-size: var(--size14);
    padding-left: 0.9em;
    color: var(--white);

    & .name {
        font-size: 1.487em;
        font-weight: var(--weight900);
    }

    &::before {
        position: absolute;
        content: "";
        width: 0.8em;
        aspect-ratio: 1;
        top: 0;
        left: 0;
        background-color: var(--red02);
        border-radius: var(--borderRadiusCircle);
        transform: translateY(47%);
    }
}


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

    .ttlImg {
        transform: none;
        padding: 0 20px;
    }



    .aboutFlex {
        transform: none;
        padding: 0 20px;
    }

    .aboutSwiper__list {
        & .swiper-slide {
            max-width: none;
        }
    }


    .prevBtn-about {
        left: 8%;
    }

    .nextBtn-about {
        right: 8%;
    }

}


@media screen and (max-width:1200px) {
    .prevBtn-about {
        left: 6%;
    }

    .nextBtn-about {
        right: 6%;
    }
}


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

    .aboutSwiper__list {

        & .swiper-slide {
            aspect-ratio: 1;
        }
    }

    .aboutSwiper__ttl {
        margin: 0 auto max(5%, 25px);
    }

    .aboutSwiper__item {
        width: 100%;
        padding: 12% 80px;
    }

    .aboutSwiper__img {
        position: initial;
        transform: none;
        width: min(100%, 350px);
        margin: 0 auto;
    }

    .boutSwiper__txt {
        padding: 0;
        margin: max(4%, 20px) 0;
    }

    .aboutCharacter {
        bottom: 9%;
        transform: translateX(-50%);
        justify-content: center;
        gap: 10px;

        & .character__img {
            width: 70px;
        }
    }

    .aboutCharacter02 {
        & .character__img {
            width: 77px;
        }
    }

    .aboutCharacter03 {
        & .character__img {
            width: 102px;
        }
    }

    .prevBtn-about {
        left: 3%;
    }

    .nextBtn-about {
        right: 3%;
    }

}


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

    .aboutFlex__img {
        width: min(100%, 324px);
        float: left;
    }
}

@media screen and (max-width:900px) {
    .aboutSwiper__img {
        width: min(100%, 300px);
    }

    .prevBtn-about {
        left: 1%;
    }

    .nextBtn-about {
        right: 1%;
    }
}



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

    .ttlImg {
        width: min(100%, 680px);
        padding: 0;
    }

    .about__banner {
        padding: 0 20px;
        width: min(100%, 620px);
    }
}

@media screen and (max-width:660px) {
    .aboutSwiper__item {
        padding: 12% 0;
    }

    .boutSwiper__txt {
        width: 60%;
        padding: 0;
        margin: max(4%, 20px) auto;
    }

    .aboutCharacter {

        & .character__img {
            width: 50px;
        }
    }

    .aboutCharacter02 {
        & .character__img {
            width: 55px;
        }
    }

    .aboutCharacter03 {
        & .character__img {
            width: 72px;
        }
    }
}

@media screen and (max-width:615px) {
    .aboutFlex__img {
        width: min(100%, 200px);
        float: left;
    }

    .aboutFeature__ttlBox {
        margin: 0 20px;
    }
}

@media screen and (max-width:480px) {
    .aboutFlex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: min(100%, 700px);
    }

    .aboutFlex__img {
        margin: 0;
        width: min(100%, 300px);
    }

    .aboutSwiper__ttl {
        font-size: 22px;
        letter-spacing: 0.03em;
    }

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

    .boutSwiper__txt {
        width: 42.5%;
    }

    .prevBtn-about,
    .nextBtn-about {
        top: 32%;
        width: 40px;
    }

}

@media screen and (max-width:374px) {
    .boutSwiper__txt {
        width: 40%;
    }
}

/* 画面幅1801px以上 */
@media screen and (min-width:1801px) {
    .paginationFlex-about {
        display: none;
    }

    .aboutSwiper__list {
        width: min(100%, 1800px);
        margin: 0 auto;
        justify-content: space-between;

        & .swiper-slide {
            width: calc(100% / 3);
        }
    }

    .aboutSwiper__ttl {
        font-size: 25px;
        padding: 2px 0.3em;
    }

    .aboutSwiper__img {
        width: 40%;
    }

    .boutSwiper__txt {
        padding: 0 10% 0 29%;
    }

    .aboutCharacter {
        bottom: 9%;
        width: 100%;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutCharacter {

        & .character__img {
            width: 50px;
        }
    }

    .aboutCharacter02 {
        & .character__img {
            width: 55px;
        }
    }

    .aboutCharacter03 {
        & .character__img {
            width: 72px;
        }
    }

}

/*******************************************
work
*******************************************/
.work {
    background: linear-gradient(to bottom, var(--yellow01) 0%, var(--yellow01) 50%, var(--white) 50%, var(--white) 100%);

    & .bg-red {
        position: relative;
        padding: clamp(80px, 13.25%, 210px) 0 clamp(60px, 12.303%, 195px);
    }

    & .bg-01,
    & .bg-02 {
        position: absolute;
        width: 25.1%;
    }

    & .bg-01 {
        right: 0;
        top: 45%;
    }

    & .bg-02 {
        left: 0;
        top: 71%;
    }
}

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

    & .en {
        width: max(61.72%, 280px);
        margin-bottom: max(3.334%, 20px);
    }

    & .ja {
        font-size: var(--size19);
        background-color: var(--black);
        color: var(--white);
        padding: 5px 37px;
        letter-spacing: var(--fontSpace008);
    }
}

.workSwiper {
    margin-top: max(7.0834%, 30px);
}

/* タブ */
.workSwiper-tab {
    overflow: initial;
    margin-bottom: 40px;
}


.workSwiper-tab__item {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--yellow01);
    color: var(--black);
    border: 2px solid var(--black);
    font-size: var(--size19);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 87.5px;
    border-radius: var(--borderRadius50);
    text-align: center;
    line-height: var(--lineHight120);
    letter-spacing: var(--fontSpace008);
    cursor: pointer;
    transition: var(--transitionBase);

    &:hover {
        cursor: pointer;
        background-color: var(--green01);
    }

    &::before {
        position: absolute;
        content: "";
        width: calc(23.1px / 2 * tan(60deg));
        height: 14px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background-color: var(--black);
        top: 50%;
        right: 9%;
        transform: translateY(-50%);
    }

    &::after {
        position: absolute;
        content: "";
        background-image: url(../img/work/character01.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 125px;
        aspect-ratio: 1;
        top: 50%;
        left: 0;
        transform: translate(-3%, -50%);
        z-index: 10;
    }
}

.workSwiper-tab__item02::after {
    background-image: url(../img/work/character02.png);
}

.workSwiper-tab__item03::after {
    background-image: url(../img/work/character03.png);
}

.swiper-slide-thumb-active .workSwiper-tab__item {
    background-color: var(--green01);
}

/* コンテント */
.workSwiper-cont__list {
    & .swiper-slide {
        background-color: var(--white);
        border-radius: var(--borderRadius20) var(--borderRadius20) 0 var(--borderRadius20);
        padding: max(6.5%, 35px) 0 max(8.334%, 40px);
        overflow: hidden;
    }

    & .swiper-slide01 {
        padding: max(6.5%, 30px) 0 0;
    }
}

.work__bgCharacter {
    position: absolute;
    top: 0;
    left: 0;
    width: 27.0834%;
}



.workSwiper-cont__item {
    width: min(100%, 731px);
    margin: 0 auto;
}


.workSwiper__ttl {
    position: relative;
    font-size: var(--size43);
    text-align: center;
    letter-spacing: var(--fontSpace008);
}

.workSwiper__topTxt {
    margin-top: max(2.723%, 10px);
    text-align: center;
}


.workFlex {
    width: min(100%, 686.5px);
    /* margin: max(6.5%, 35px) auto; */
    margin: max(11.63%, 30px) auto max(11.63%, 70px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px 110px;
}


.workFlex__imgTxt {
    position: absolute;
    top: 0;
}

.workFlex__imgTxt01,
.workFlex__imgTxt02,
.workFlex__imgTxt04 {
    width: 43.4%;
}

.workFlex__imgTxt01 {
    left: 0;
    transform: translate(-90%, -15%);
}

.workFlex__imgTxt02 {
    right: 0;
    transform: translate(73%, -15%);
}

.workFlex__imgTxt03 {
    width: 48.5%;
    left: 0;
    transform: translate(-78%, -18%)
}

.workFlex__imgTxt04 {
    right: 0;
    transform: translate(73%, -15%);
}










.workFlex__item {
    width: calc((100% - 110px)/2);
}

.workFlex__img {
    position: relative;
    margin-bottom: max(12.144%, 20px);
}

.workFlex__ttl {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background-color: var(--green01);
    width: min(100%, 240px);
    text-align: center;
    border-radius: var(--borderRadius50);
    padding: 5px 0;
}

.swiper-slide02 {
    & .workFlex__ttl {
        background-color: var(--yellow01);
    }
}

.swiper-slide03 {
    & .workFlex__ttl {
        background-color: var(--red01);
    }
}

.workBtn {
    width: min(100%, 551px);
    height: 96px;
}

.workBack {
    width: min(100%, 300px);
    margin-left: auto;

    & a {
        display: inline-block;
        width: 100%;
        border: 2px solid var(--black);
        background-color: var(--gray);
        color: var(--white);
        font-size: var(--size19);
        text-align: center;
        letter-spacing: var(--fontSpace008);
        padding: 19.5px 0;
        border-radius: 0 0 var(--borderRadius20) var(--borderRadius20);
        transition: var(--transitionBase);

        &:hover {
            background-color: var(--black);
        }
    }
}

.workPoint {
    background-color: var(--red03);
}

.workPoint__inner {
    padding: max(4.167%, 30px) 0 max(7.917%, 50px);
}

.workPoint__ttl {
    background-color: var(--green01);
    text-align: center;
    margin-bottom: max(6.84%, 25px);
    font-size: var(--size23);
    border-radius: var(--borderRadius50);
    padding: 5px 0 6px;
    letter-spacing: var(--fontSpace008);
}

.workPointBox {
    margin-bottom: max(6.84%, 40px);
}

.workPointFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;

    &:first-of-type {
        margin-bottom: 45px;
    }
}

.workPoint__img {
    width: min(100%, 325px);
}

.workPointDetail {
    flex: 1;

    & dt {
        position: relative;
        font-size: var(--size23);
        letter-spacing: var(--fontSpace008);
        padding-left: 2.174em;
        margin-bottom: 15px;

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/work/icon01.svg);
            background-size: contain;
            background-repeat: no-repeat;
            width: 1.609em;
            aspect-ratio: 37/45;
            left: 0;
            top: 0;
            transform: translate(-15%, -20%);
        }
    }
}

.workPointFlex02 {
    & .workPointDetail dt::before {
        background-image: url(../img/work/icon02.svg);
        width: 2.609em;
        aspect-ratio: 60/43;
        transform: translate(-30%, 0);
    }
}

.workModalBtn {
    position: relative;
    width: min(100%, 603px);
    margin: 0 auto max(15.05%, 50px);
    cursor: pointer;


    &:hover {
        & .workModalBtn__parts {
            &::before {
                transform: translate(-50%, -50%) rotate(180deg);
            }

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

.workModalBtn__inner {
    position: relative;
    width: 100%;
    padding: 30px 0 35px;
    background-color: var(--red01);
    border: 3px solid var(--black);
    border-radius: var(--borderRadius50);
    text-align: center;
    transition: var(--transitionBase);

}

.workModalBtn__top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--size20);
    background-color: var(--black);
    color: var(--white);
    width: min(100%, 290px);
    text-align: center;
    padding: 5px 0;
    border-radius: var(--borderRadius50);
}

.workModalBtn__please {
    color: var(--white);
    font-size: var(--size19);
    transition: var(--transitionBase);
}

.workModalBtn__check {
    font-size: var(--size41);
}

.workModalBtn__parts {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 61px;
    aspect-ratio: 1;
    background-color: var(--yellow01);
    border: 3px solid var(--black);
    border-radius: var(--borderRadiusCircle);


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

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

.workModal__chara01,
.workModal__chara02 {
    position: absolute;
    width: max(17.8%, 50px);
    z-index: 1;
    left: 0;
    bottom: 0;
    transform: translate(-48%, 28%);
}

.workModal__chara02 {
    width: max(16.1%, 45px);
    left: auto;
    right: 0;
    transform: translate(25%, 27%);
}



@media screen and (max-width:1200px) {
    .workSwiper-tab {
        width: min(100%, 500px);
        margin: 0 auto 40px;
    }

    .workSwiper-tab__list {
        width: 100%;
        flex-wrap: wrap;
        gap: 40px;
    }
}


@media screen and (max-width:1024px) {
    .work__bgCharacter {
        width: min(27.0834%, 200px);
    }

    .workFlex {
        gap: 40px;
    }

    .workFlex__item {
        width: calc((100% - 40px)/2);
        margin: 0 auto;
    }
}


@media screen and (max-width:800px) {
    .workSwiper-cont__item {
        padding: 0 20px;
    }

    .workPoint__inner {
        padding: max(4.167%, 30px) 20px max(7.917%, 50px);
    }
}



@media screen and (max-width:768px) {
    .workSwiper-tab {
        margin-bottom: 20px;
    }

    .workSwiper-tab__list {
        gap: 20px;
    }

    .workSwiper-tab__item:hover {
        background-color: var(--yellow01);
    }

    .swiper-slide-thumb-active .workSwiper-tab__item:hover {
        background-color: var(--green01);
    }

    .work__bgCharacter {
        width: max(20%, 80px);
    }

    .workPointFlex {
        flex-direction: column;
        gap: 70px;
    }

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

    .workPointDetail {
        & dt {
            padding: 0;
            margin: 0 auto 20px;
            width: fit-content;
            text-align: center;

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

    .workPointFlex02 .workPointDetail dt::before {
        transform: translate(-50%, -105%);
    }

    .workBtn {
        & a {
            &:hover {
                background-color: var(--black);
                color: var(--white);

                & .arrow {
                    background-color: var(--white);


                    & span {
                        background-color: var(--black);
                    }

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

    .workBack a:hover {
        background-color: var(--gray);
    }


    .workModalBtn {

        width: min(100%, 500px);

        &:hover {
            & .workModalBtn__parts {
                &::before {
                    transform: translate(-50%, -50%);
                }

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

    .workModal__chara01 {
        transform: translate(-15%, 10%);
    }

    .workModal__chara02 {
        transform: translate(2%, 14%);
    }
}

@media screen and (max-width:560px) {
    .workSwiper-tab__item::after {
        width: 100px;
    }

    .workSwiper__ttl {
        font-size: 30px;
    }

    .workFlex {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }

    .workFlex__item {
        width: min(100%, 400px);
    }

    .workFlex__img {
        position: relative;
        margin-bottom: max(8%, 25px);
    }

    .workPoint__img {
        width: min(100%, 400px);
    }

    .workBtn {
        height: 80px;

        & .btn {
            font-size: 18px;
        }
    }


    .workModalBtn__parts {
        width: 40px;
    }

    .workModal__chara01 {
        width: max(14%, 50px);
    }

    .workModal__chara02 {
        width: max(13%, 40px);
    }


}

@media screen and (max-width:480px) {
    .workSwiper-tab__item {
        height: 70px;
        padding: 0 60px;

        &::before {
            width: calc(18px / 2 * tan(60deg));
            height: 9px;
        }

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

    .workSwiper__ttl {
        font-size: 28px;
    }

    .workFlex__ttl {
        width: min(100%, 200px);
    }

    .workBtn {


        & .btn {
            padding: 0 49px;
            font-size: 15px;

            & .arrow {
                width: 27px;
            }
        }
    }

    .workBack {
        width: min(100%, 200px);
    }

    .workModalBtn__inner {
        padding: 15px 0
    }

    .workModalBtn__top {
        font-size: 13px;
        padding: 2px 0 3px;
        width: min(100%, 200px);
    }

    .workModalBtn__please {
        font-size: 14px;
    }

    .workModalBtn__check {
        font-size: 20px;
    }

    .workModalBtn__parts {
        width: 30px;
    }



    .workModal__chara01 {
        width: max(14%, 50px);
    }

    .workModal__chara02 {
        width: max(15%, 45px);
    }
}

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

    .workModalBtn__top {
        width: min(100%, 170px);
    }


    .workModal__chara01,
    .workModal__chara02 {
        bottom: 90%;
        z-index: 0;
    }

    .workModal__chara01 {
        transform: translate(5%, 0%);
    }

    .workModal__chara02 {
        transform: translate(-12%, 0%);
    }
}

@media screen and (max-width:332px) {
    .workPointFlex {
        gap: 50px;
    }

    .workPointDetail {
        & dt {
            font-size: 18px;
            margin: 0 auto 10px;
        }
    }
}



/* タブ切り替え　１つ目用 */

@media screen and (max-width:1024px) {
    .workFlex01 {
        flex-direction: column;
        gap: 60px;

        & .workFlex__item {
            width: min(100%, 500px);
        }

        & .workFlex__ttl {
            width: min(100%, 350px);
            font-size: 25px;
        }

        & .workFlex__txt {
            font-size: 25px;
        }

        .workFlex__img {
            margin-bottom: max(8%, 30px);
        }
    }

    .workFlex__imgTxt01,
    .workFlex__imgTxt02,
    .workFlex__imgTxt04 {
        width: 36.2%;
    }

    .workFlex__imgTxt01 {
        left: 0;
        transform: translate(-90%, -10%);
    }

    .workFlex__imgTxt02 {
        right: 0;
        transform: translate(73%, -10%);
    }

    .workFlex__imgTxt03 {
        width: 40.4%;
        left: 0;
        transform: translate(-78%, -13%)
    }

    .workFlex__imgTxt04 {
        right: 0;
        transform: translate(73%, -10%);
    }

}

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

@media screen and (max-width:560px) {
    .workFlex01 {
        gap: 40px;

        & .workFlex__item {
            width: min(100%, 400px);
        }

        & .workFlex__ttl {
            width: min(100%, 240px);
            font-size: var(--size17);
        }

        & .workFlex__txt {
            font-size: var(--size17);
        }

        .workFlex__img {
            margin-bottom: max(8%, 25px);
        }
    }
}

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

        & .workFlex__ttl {
            width: min(100%, 200px);
        }
    }
}


/*******************************************
work モーダル 
*******************************************/
/* ↓↓↓リセット用↓↓↓ */
.featherlight {
    overflow: scroll;
}

.featherlight .featherlight-content {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    padding: max(14svh, 100px) 0;
}

.featherlight:last-of-type {
    background: var(--red01);
}

.featherlight .featherlight-close-icon,
.modalBox {
    display: none;
}



.modalClose {
    cursor: pointer;
    position: absolute;
    content: "";
    width: 90px;
    aspect-ratio: 1;
    background-color: var(--yellow01);
    border: 3px solid var(--black);
    top: 0;
    right: 0;
    border-radius: var(--borderRadiusCircle);
    z-index: 10;
    transform: translate(50%, -50%);
    transition: var(--transitionBase);

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

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

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

    &:hover {
        background-color: var(--black);
        border: 3px solid var(--yellow01);

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

@media screen and (max-width:1120px) {
    .featherlight .featherlight-content {
        padding: max(8svh, 50px) 20px;
    }
}


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

@media screen and (max-width:480px) {
    .modalClose-top {
        width: 40px;
        top: 1%;
        right: 1%;
    }

    .modalClose-bottom {
        &:hover {
            background-color: var(--black);
            color: var(--white);

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

/* ↑↑↑リセット用↑↑↑ */

.modalBox {
    padding: 185px 0 78px;
    position: relative;
    background-color: var(--white);
    width: min(100%, 1200px);
    margin: 0 auto;
    border: 3px solid var(--black);
    border-radius: var(--borderRadius20);
}

.modalBox__ttl {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 804px);
    transform: translate(-50%, -50%);
    margin: 0 auto;
    line-height: var(--lineHight120);
    cursor: auto;


    & .workModalBtn__inner {
        font-size: var(--size43);
        background-color: var(--yellow01);
        letter-spacing: var(--fontSpace008);
        padding: 27px 0 28px;
    }
}

.workFlex-modal {
    margin: 0 auto;

    & .workFlex__ttl {
        background-color: var(--yellow01);
    }
}

.workModal__chara01--modal {
    width: 116px;
    transform: translate(-57%, -8%);
}

.workModal__chara02--modal {
    width: 106px;
    transform: translate(60%, 0%)
}

.workBtn-modal {
    margin: 60px auto;
}


.modalClose-bottom {
    position: relative;
    margin: 0 auto;
    transform: none;
}


.modal-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: max(27.22%, 50px);
}

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

    .modalClose-top {
        transform: none;
        top: 15px;
        right: 1%;
    }
}

@media screen and (max-width:1220px) {
    .featherlight .featherlight-content {
        padding: max(14svh, 100px) 20px;
    }

    .modalBox {
        padding: max(13%, 50px) 0 max(8%, 40px);
    }

    .modalBox__ttl {
        top: auto;
        left: auto;
        position: relative;
        transform: none;
        margin: 0 auto max(8%, 40px);
    }
}

@media screen and (max-width:1024px) {
    .workModal__chara01--modal {
        width: 96px;
        transform: translate(-5%, 0%);
    }

    .workModal__chara02--modal {
        width: 88px;
        transform: translate(5%, 0%);
    }
}

@media screen and (max-width:905px) {
    .modalBox__ttl {
        width: min(100%, 680px);
    }

    .workFlex-modal {

        .workFlex__imgTxt {
            display: none;
        }
    }

}

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

    .modalClose {
        width: 50px;
    }

    .modalClose-top {
        transform: none;
        top: 5px;
        right: 1%;
    }

    .modalBox {
        padding: max(13%, 50px) 10px max(8%, 40px);
    }

    .modalBox__ttl {
        margin: 0 auto 100px;
    }

    .workModal__chara01--modal,
    .workModal__chara02--modal {
        transform: none;
        bottom: -20%;
    }

    .workModal__chara01--modal {
        width: 80px;
        left: 10%;

    }

    .workModal__chara02--modal {
        width: 73px;
        right: 10%;

    }


    .modalClose:hover {
        background-color: var(--yellow01);
        border: 3px solid var(--black);

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


}

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


    .modalBox__ttl {

        margin: 0 auto 45px;

        & .workModalBtn__inner {
            font-size: 25px;
            padding: 20px 0 21px;
        }
    }

    .workModal__chara01--modal,
    .workModal__chara02--modal {
        transform: none;
        bottom: -30%;
    }

    .workModal__chara01--modal {
        width: 66px;

    }

    .workModal__chara02--modal {
        width: 60px;

    }
}

@media screen and (max-width:480px) {
    .modalClose {
        width: 40px;
    }


    .modalBox__ttl {

        margin: 0 auto 45px;

        & .workModalBtn__inner {
            font-size: 20px;
            padding: 20px 0 21px;
        }
    }

    .workModal__chara01--modal,
    .workModal__chara02--modal {
        transform: none;
        bottom: -10%;
    }

    .workModal__chara01--modal {
        width: 40px;
        left: 3%;

    }

    .workModal__chara02--modal {
        width: 36px;
        right: 3%;
    }

    .workBtn-modal {
        margin: 40px auto;
    }
}

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

    .workModal__chara01--modal,
    .workModal__chara02--modal {
        z-index: 1;
    }
}

@media screen and (max-width:374px) {
    .workBtn-modal {
        height: 100px;
    }
}



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

.loopSwiper {
    margin-top: 10px;
}

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




/*******************************************
environment
*******************************************/
.environment {
    padding: 10px 0 clamp(50px, 13.2497%, 210px);

    .section__inner {
        background-image: url(../img/environment/bg.jpg);
        background-size: cover;
        max-width: 1350px;
        padding: max(5.417%, 40px) 0 max(8.3334%, 50px);
        border-radius: 0 0 var(--borderRadius20) var(--borderRadius20);
    }
}

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

.environmentBox-outer {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.environmentBox {
    margin-bottom: 60px;

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

.environment__ttl {
    margin-bottom: 45px;
    background-color: var(--black);
    color: var(--white);
    padding: 5px 0;
    text-align: center;
    border-radius: var(--borderRadius50);
    letter-spacing: var(--fontSpace008);
    font-size: var(--size23);
}

.dateFlex {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.dateFlex__item {
    width: calc((100% - 70px)/3);
    border-radius: var(--size20);
    background-color: var(--white);
    padding: 28px 25px;
    box-shadow: var(--shadow);
}

.dateFlex__ttl {
    text-align: center;
    font-size: var(--size23);
    border-radius: var(--borderRadius50);
    margin-bottom: 20px;
    background-color: rgba(249, 126, 82, 0.2)
}

.dateFlex__item02 {
    & .dateFlex__ttl {
        background-color: rgba(96, 216, 165, 0.2)
    }
}

.dateFlex__item03 {
    & .dateFlex__ttl {
        background-color: rgba(255, 215, 0, 0.2)
    }
}

.environmentSwiper {
    overflow: initial;
}


.environmentSwiper__list {
    & .swiper-slide {
        box-shadow: var(--shadow);
        border-radius: var(--borderRadius20);
        background-color: var(--white);
    }
}


.environmentSwiper__item {
    width: 100%;
    height: 100%;
    padding: 45px 50px 50px;

}

.environmentFlex {
    display: flex;
    gap: 48px;
    margin-bottom: 30px;

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

.environmentFlex-reverse {
    flex-direction: row-reverse;
}

.environmentSwiperFlex__img {
    width: min(100%, 325px);
    position: relative;


}


.environmentSwiperFlex__img01,
.environmentSwiperFlex__img02,
.environmentSwiperFlex__img03 {
    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/environment/icon01.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 0;
        left: 0;
        width: 75px;
        aspect-ratio: 75/58;
        transform: translate(-25%, -30%);
    }
}

.environmentSwiperFlex__img02 {

    &::before {
        background-image: url(../img/environment/icon02.png);
    }

}

.environmentSwiperFlex__img03 {

    &::before {
        background-image: url(../img/environment/icon03.png);
    }

}




.environmentDetail {
    flex: 1;
    padding: 20px 0 0 0;

    & dt {
        font-size: var(--size23);
        letter-spacing: var(--fontSpace008);
        line-height: var(--lineHight139);
        margin-bottom: 10px;
    }
}

.episodeFlex {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 179, 0, .2);
    gap: 50px;
    padding: 25px 25px 30px;
    border-radius: var(--borderRadius20);

    &::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 81.056%;
        left: 50%;
        top: 50%;
        background-color: var(--orange);
        transform: translate(-50%, -50%);
    }
}

.episode__txt {
    width: calc((100% - 50px)/2);
}




@media screen and (max-width:1350px) {
    .environment {
        .section__inner {
            padding: max(5.417%, 40px) 20px max(8.3334%, 50px);
        }
    }
}


@media screen and (max-width:1024px) {
    .environmentBox-outer {
        width: min(100%, 800px);
    }

    .environment__ttl {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:830px) {
    .environmentFlex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .environmentDetail {
        padding: 0;

        & dt {
            text-align: center;
        }
    }
}

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

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

    .dateFlex__item {
        width: min(100%, 500px);
    }

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


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

        &::before {
            width: 90%;
            height: 1px;
        }
    }

    .episode__txt {
        width: min(100%, 500px);

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

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

    .environmentFlex {
        gap: 15px;
        margin-bottom: 30px;
    }

    .episodeFlex {
        padding: 25px 10px;
    }

    .environmentSwiperFlex__img01,
    .environmentSwiperFlex__img02,
    .environmentSwiperFlex__img03 {
        &::before {
            width: 60px;
        }
    }
}













/*******************************************
voice
*******************************************/

/* 1600px以上 */
@media screen and (min-width:1601px) {
    .voiceSwiper__list {
        & .swiper-slide {

            max-width: 375px;
        }
    }
}

.voice {
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--red04) 50%, var(--red04) 100%);

    & .bg-green {
        position: relative;
        z-index: 1;
        padding: clamp(70px, 14%, 220px) 0 clamp(60px, 10%, 160px);
    }

    & .bg01 {
        position: absolute;
        top: 0;
        left: 0;
        width: 43.434%;
    }

    & .section__inner {
        max-width: 1350px;
    }

    & .section__ttl {
        position: relative;
        width: min(100%, 885px);
        margin: 0 1.852% 0 auto;
    }

}

.voice__character {
    position: absolute;
    width: 28.52%;
    top: 50%;
    left: 0;
    transform: translate(-125%, -55%);
}

.swiperBtn-box {
    display: flex;
    justify-content: flex-end;
    width: min(100%, 1150px);
    margin: max(5.05%, 35px) auto max(5.6789%, 80px);
    gap: 25px;
    position: relative;
    z-index: 0;

    & .prevBtn,
    & .nextBtn {
        width: 50px;
        position: initial;
        background-color: var(--orange);
        border: 2px solid var(--orange);

        & .arrow {
            height: 3.5px;
            background-color: var(--black);

            &::before,
            &::after {
                height: 3.5px;
                background-color: var(--black);
            }
        }

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

    }
}

.voiceSwiper {
    overflow: initial;
}

.voiceSwiper__list {
    & .swiper-slide {

        position: relative;
        background-color: var(--green04);
        border-radius: var(--borderRadius20);
        height: auto;
    }
}

.voiceSwiper__item {
    padding: 75px 20px 20px 33px;
}

.voiceSwiper__img {
    position: absolute;
    width: min(34.784%, 130px);
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.voiceSwiper__name {
    display: block;
    text-align: center;

    &:first-letter {
        color: var(--red02);
    }

}


.g-aBox-outer {
    margin: 30px 0 0 0;
}

.g-aBox {
    margin-bottom: 30px;

    & dt {
        position: relative;
        font-size: var(--size23);
        font-weight: var(--weight900);
        margin-bottom: 5px;
        z-index: 1;

        &:first-letter {
            color: var(--red02);
        }

        &::before {
            position: absolute;
            content: "";
            background-image: url(../img/voice/q.svg);
            background-repeat: no-repeat;
            background-size: contain;
            top: 0;
            left: 0;
            width: min(10.15%, 32.5px);
            aspect-ratio: 32.5 / 52.3;
            transform: translate(-40%, -22%);
            z-index: -1;
        }
    }
}

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

@media screen and (max-width:1024px) {
    .voice {
        & .section__ttl {
            width: min(100%, 655px);
        }
    }



    .swiperBtn-box {
        margin: max(5.05%, 35px) auto max(13%, 60px);
        padding-right: 10%;
    }

}


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

        & .prevBtn,
        & .nextBtn {
            &:hover {
                background-color: var(--orange);
            }
        }

    }

    .voice {
        & .section__ttl {
            margin: 0 auto;
        }
    }

    .voice__character {
        transform: translateY(125%);
        top: auto;
        bottom: 0;
        width: max(13%, 80px);
    }
}


@media screen and (max-width:480px) {
    .g-aBox-outer {
        margin: 20px 0 0 0;
    }

    .voiceSwiper__item {
        padding: 19% 5.2% 5.2% 8%;
    }

    .swiperBtn-box {
        gap: 15px;

        & .prevBtn,
        & .nextBtn {
            width: 30px;

            & .arrow {
                height: 3px;

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

    }
}









/*******************************************
search
*******************************************/
.search {
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--red04) 50%, var(--red04) 100%);

    & .bg-red02 {
        position: relative;
        padding: clamp(70px, 9.15%, 145px) 0 clamp(80px, 10.412%, 165px);
        transform: translateY(-0.03%);
    }

    & .section__inner {
        max-width: 1100px;
    }

    & .section__ttl {
        position: relative;
        width: min(100%, 845px);
    }
}

.search__character {
    position: absolute;
    top: 0;
    left: 102%;
    width: 25.625vw;
    transform: translate(0%, -17%);
}

.searchBox-outer {
    margin-top: 80px;
}

.searchBox {
    margin-bottom: max(11%, 50px);

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

.searchBox__ttl {
    position: relative;
    margin-bottom: 15px;
    font-size: var(--size25);
    padding-left: 2.236em;
    color: var(--white);

    &::before {
        position: absolute;
        content: "";
        background-image: url(../img/search/icon01.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 1.454em;
        aspect-ratio: 37/45;
        top: 0;
        left: 0;
        transform: translateY(-10%);
    }
}

.searchBox__ttl02::before {
    background-image: url(../img/search/icon02.svg);
    width: 1.765em;
    aspect-ratio: 45/31;
    transform: translateY(7%);
}

.searchBox__ttl03::before {
    background-image: url(../img/search/icon03.svg);
    width: 1.765em;
    aspect-ratio: 45/36;
    transform: translateY(5%);
}



.search__list {
    display: flex;
    justify-content: space-between;
}

.search__item {
    position: relative;
    width: calc((100% - 34px)/3);
    height: 95px;


    & .btn {
        font-size: var(--size19);

        & .arrow {
            right: 3%;
        }
    }
}

@media screen and (max-width:1200px) {
    .search__character {
        top: auto;
        bottom: 0;
        left: 96%;
        width: 28%;
        transform: translate(0%, 54%);
    }
}

@media screen and (max-width:1085px) {
    .search__character {
        width: 40%;
        left: 100%;
        transform: translate(0%, 35%);
    }
}

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

        & .section__ttl {
            width: min(100%, 625px);
        }
    }

    .searchBox__ttl {
        margin: 0 auto 15px;
        width: fit-content;
        padding-left: 0;

        &::before {
            left: -2.236em;
        }
    }

    .search__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

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





}

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

        & .section__ttl {
            margin: 0 auto;
        }
    }

    .search__character {
        left: auto;
        right: 0;
        width: max(22%, 120px);
        transform: translate(0%, 54%);
    }

    .searchBox-outer {
        margin-top: max(11%, 50px);
    }

    .search__item {
        height: 80px;
    }
}





@media screen and (max-width:374px) {
    .search__item {
        & .btn {
            padding: 0 45px;
        }
    }
}






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

.footer {
    background-color: #222222;
    padding: 50px 0 40px;
    position: relative;

    & .inner {
        width: min(100%, 1477px);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

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

    & a {
        position: relative;
        font-size: 14px;
        color: #fff;

        &:hover {
            opacity: .7;
        }
    }

    & a:not(:first-child):before {
        position: absolute;
        content: "";
        width: 2px;
        height: 50%;
        background-color: #fff;
        top: 50%;
        left: -14px;
        transform: translate(50%, -50%);
    }
}


.copyright {
    font-size: 17px !important;
    text-align: center;
    color: #fff !important;
}



@media screen and (max-width:1480px) {
    .footer {
        & .inner {
            padding: 0 15px;
        }
    }
}

@media screen and (max-width:888px) {
    .footer {
        & .inner {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
    }
}

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

    .footer {
        padding: 40px 0 max(20%, 90px);
    }

    .footer-nav {
        gap: 20px;

        & a {
            font-size: 14px;
        }

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

    .copyright {
        font-size: 14px !important;
    }
}

@media screen and (max-width:585px) {
    .footer-nav {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 5px;

        & a {
            font-size: 14px;
        }

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

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

    .copyright {
        font-size: 14px !important;
    }
}

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

    .footer-nav {

        & a {
            font-size: 12px;
        }

    }

    .copyright {
        font-size: 12px !important;
    }
}