@charset "UTF-8";

#container {
    padding-top: 13rem;

    @media screen and (max-width: 767px) {
        padding-top: 7.2rem;
    }
}


#fv {
    margin-bottom: 10.9rem;

    @media screen and (max-width: 767px) {
        margin-bottom: 6rem;
    }

    .wrapper {
        width: calc(100% - 16rem);

        @media screen and (max-width: 767px) {
            width: 100%;
        }
    }

    .fv-main {
        position: relative;
        border-radius: 0 8rem 0 0;
        overflow: hidden;

        @media screen and (max-width: 767px) {
            border-radius: 0 3rem 0 0;
        }

        .fv-catch {
            position: absolute;
            top: 14.4rem;
            left: calc(50% - (19.1rem / 2));
            width: 19.1rem;
            z-index: 15;

            @media screen and (max-width: 767px) {
                top: 16rem;
                left: 11.2rem;
                width: 17.8rem;
            }
        }

        .back {
            display: flex;

            @media screen and (max-width: 767px) {
                flex-direction: column;
            }

            .back-wrapper {
                position: relative;
                width: 50%;

                @media screen and (max-width: 767px) {
                    width: 100%;
                }


                .img-wrapper {
                    width: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    opacity: 0;
                    z-index: 1;
                    transition: none;
                    clip-path: none;
                    display: none;

                    @media screen and (max-width: 767px) {
                        /* height: 29.6rem; */
                        /* height: 32rem; */
                        width: 100%;

                        & img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    &.active {
                        position: relative;
                        opacity: 1;
                        z-index: 2;
                        clip-path: none;
                        display: block;
                        transition: none;
                    }

                    &.next {
                        opacity: 1;
                        z-index: 3;
                        display: block;
                        transition: clip-path 1s cubic-bezier(.77, 0, .18, 1);
                    }

                    &.forward {
                        display: none;
                        opacity: 0;
                        z-index: 1;
                    }
                }

                &.left {
                    .img-wrapper {
                        &.next {
                            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);

                            @media screen and (max-width: 767px) {
                                clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
                            }

                            &.clip-animate {
                                clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
                            }
                        }
                    }
                }

                &.right {
                    .img-wrapper {
                        &.next {
                            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

                            @media screen and (max-width: 767px) {
                                clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                            }

                            &.clip-animate {
                                clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
                            }
                        }
                    }
                }
            }
        }
    }

    .fv-text {
        margin-top: -6rem;
        padding-top: 4.9rem;
        background-color: #fff;
        border-radius: 10rem 10rem 0 0;
        z-index: 1;

        @media screen and (max-width: 767px) {
            /* margin-top: -2.8rem; */
            margin-top: -6.4rem;
            margin-bottom: 1rem;
            padding-top: 2.4rem;
            border-radius: 5rem 5rem 0 0;
        }

        & p {
            font-style: normal;
            font-weight: 700;
            font-size: 3.2rem;
            line-height: 200%;
            text-align: center;
            letter-spacing: 0.05em;
            color: #000000;

            @media screen and (max-width: 767px) {
                font-size: 2rem;
            }

            & span {
                color: #FF1447;
                background-image: radial-gradient(circle at center, #FF1447 20%, transparent 20%);
                background-position: top right;
                background-repeat: repeat-x;
                background-size: 1.14em 0.4em;
                padding-top: 1.3rem;

                @media screen and (max-width: 767px) {
                    background-size: 1.15em 0.4em;
                    padding-top: 0.6rem;
                }
            }
        }
    }

    .large-text {
        position: relative;
        height: 18rem;
        overflow: hidden;

        @media screen and (max-width: 767px) {
            height: 3.6rem;
        }

        & p {
            font-family: 'Alexandria';
            font-style: normal;
            font-weight: 500;
            font-size: 18rem;
            line-height: 100%;
            letter-spacing: 0.05em;
            color: #DDE3D5;
            white-space: nowrap;

            @media screen and (max-width: 767px) {
                /* margin-left: -0.6rem; */
                font-size: 3.6rem;
            }
        }

        .scrolling-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            animation: scrollText 26s linear infinite;

            @media screen and (max-width: 767px) {
                animation: scrollText 20s linear infinite;
            }
        }
    }
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

#philosophy {
    margin-bottom: 14.6rem;

    @media screen and (max-width: 767px) {
        margin-bottom: 10.6rem;
    }

    .wrapper {
        display: flex;
        gap: 12rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 4.3rem;
        }

        .img {
            flex-shrink: 0;
            width: 80rem;
            border-radius: 0 8rem 0 0;
            overflow: hidden;

            @media screen and (max-width: 767px) {
                margin-left: -2.4rem;
                width: calc(100% + 2.4rem);
            }
        }

        .text-area {
            flex-grow: 1;
            padding-top: 2.8rem;

            @media screen and (max-width: 767px) {
                padding-top: 0;
            }

            .title {
                margin-bottom: 6.5rem;

                @media screen and (max-width: 767px) {
                    margin-bottom: 3.4rem;
                }
            }

            .text {
                margin-bottom: 3.5rem;

                @media screen and (max-width: 767px) {
                    margin-bottom: 3.7rem;
                }

                & p {
                    font-style: normal;
                    font-weight: 600;
                    font-size: 1.8rem;
                    line-height: 220%;
                    letter-spacing: 0.1em;
                    color: #000000;

                    @media screen and (max-width: 767px) {
                        font-size: 1.4rem;
                    }

                    &:not(:last-child) {
                        margin-bottom: 4rem;
                    }

                    @media screen and (max-width: 767px) {
                        &:not(:last-child) {
                            margin-bottom: 3.1rem;
                        }
                    }
                }
            }

            .btn-area {
                & a {
                    display: flex;
                    align-items: center;
                    padding: 1.9rem 1.8rem;
                    max-width: 32rem;
                    border-radius: 10rem;
                    border: 0.2rem solid #000;
                    font-family: 'Alexandria';
                    font-style: normal;
                    font-weight: 400;
                    font-size: 1.6rem;
                    line-height: 2rem;
                    letter-spacing: 0.05em;
                    color: #000000;
                    transition: ease 0.3s background-color, ease 0.3s color;

                    @media screen and (max-width: 767px) {
                        padding: 1.8rem 1.4rem;
                        max-width: 25.6rem;
                        border-radius: 8rem;
                        font-size: 1.2rem;
                        line-height: 1.6rem;
                    }

                    & span {
                        flex-grow: 1;
                        text-align: center;
                    }

                    &::after {
                        flex-shrink: 0;
                        content: "";
                        display: inline-block;
                        width: 2.4rem;
                        height: 2.4rem;
                        background-image: url("../common/img/parts/arrow-bk.svg");
                        background-size: contain;
                        background-repeat: no-repeat;
                        transition: ease 0.3s filter;
                    }

                    @media screen and (max-width: 767px) {
                        &::after {
                            width: 1.9rem;
                            height: 1.9rem;
                        }
                    }

                    @media (hover: hover) and (pointer: fine) {
                        &:hover {
                            color: #fff;
                            background-color: #000;

                            &::after {
                                filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
                            }
                        }
                    }
                }
            }
        }


    }
}

#story {
    margin-bottom: 24.7rem;

    @media screen and (max-width: 767px) {
        margin-bottom: 17.7rem;
    }

    .title {
        margin-bottom: 6.6rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 3.7rem;
        }
    }

    .story-wrapper {
        position: relative;
        padding-left: 24rem;

        @media screen and (max-width: 767px) {
            padding-left: 2.4rem;
        }

        .swiper-slide {
            margin-right: 6rem;
            width: 44rem;

            @media screen and (max-width: 767px) {
                margin-right: 3.8rem;
                width: 28.5rem;
            }
        }

        .button-wrapper {
            position: absolute;
            bottom: -10.4rem;
            left: 24rem;
            display: flex;
            align-items: center;
            /* height:6.4rem; */
            gap: 1.6rem;

            @media screen and (max-width: 767px) {
                bottom: -6.8rem;
                left: 2.4rem;
                gap: 0.9rem;
            }

            .swiper-button-prev,
            .swiper-button-next {
                position: relative;
                top: auto;
                left: auto;
                bottom: auto;
                right: auto;
                display: block;
                margin: 0;
                padding: 0;
                width: 6.4rem;
                height: 6.4rem;
                background-image: url("../common/img/parts/icon-pagenation.svg");
                background-size: 100% 100%;
                background-repeat: no-repeat;
                border: none;
                transition: ease 0.3s background-image;

                @media screen and (max-width: 767px) {
                    width: 4.2rem;
                    height: 4.2rem;
                }


                &::after {
                    display: none;
                }

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    background-image: url("../common/img/parts/icon-pagenation-active.svg");
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    opacity: 0;
                    transition: ease 0.3s opacity;
                }

                @media (hover: hover) and (pointer: fine) {
                    &:hover {
                        /* background-image: url("../common/img/parts/icon-pagenation-active.svg"); */

                        &::before {
                            opacity: 1;
                        }
                    }
                }
            }

            .swiper-button-prev {
                transform: rotate(180deg);
            }

        }
    }

}

#course {
    padding-top: 13.4rem;
    padding-bottom: 14rem;
    margin-bottom: 13.4rem;
    background-color: #F2F4EF;
    border-radius: 18rem 18rem 0 0;
    overflow: hidden;

    @media screen and (max-width: 767px) {
        padding-top: 5.4rem;
        padding-bottom: 8rem;
        margin-bottom: 11rem;
        border-radius: 5rem 5rem 0 0;
    }

    .title {
        margin-bottom: 5.5rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 3.7rem;
        }

        .detail {
            padding-bottom: 4.6rem;
            font-style: normal;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 3.1rem;
            letter-spacing: 0.04em;
            font-feature-settings: 'halt' on;
            color: #000000;
            text-align: center;

            @media screen and (max-width: 767px) {
                padding-bottom: 3.9rem;
                font-size: 1.8rem;
                line-height: 2.2rem;
            }

            & span {
                position: relative;

                &::after {
                    content: "";
                    position: absolute;
                    bottom: -3rem;
                    left: 0;
                    right: 0;
                    display: inline-block;
                    width: 100%;
                    height: 2.2rem;
                    background-image: url("../img/home/course-detail.svg");
                    background-size: cover;
                    background-repeat: no-repeat;
                }

                @media screen and (max-width: 767px) {
                    &::after {
                        bottom: -2.4rem;
                        height: 1.5rem;
                        background-position: 50% 0%;
                        background-size: cover;
                    }
                }
            }
        }
    }

    .main-text {
        margin-bottom: 6.6rem;
        font-style: normal;
        font-weight: 600;
        font-size: 1.8rem;
        line-height: 220%;
        text-align: center;
        letter-spacing: 0.1em;
        color: #000000;

        @media screen and (max-width: 767px) {
            margin-bottom: 3.4rem;
            font-size: 1.4rem;
            text-align: left;
        }
    }

    .course-btn {
        display: flex;
        gap: 4.8rem;
        margin-bottom: 6.6rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3.6rem;
        }

        .btn {
            width: calc((100% - 4.8rem) / 2);
            border-radius: 3rem;
            overflow: hidden;

            @media screen and (max-width: 767px) {
                width: 100%;
                border-radius: 1.5rem;
            }

            & a {
                width: 100%;

                @media (hover: hover) and (pointer: fine) {
                    &:hover {
                        .img {
                            transform: scale(1.08);
                        }

                        .text {
                            .icon {
                                &::after {
                                    opacity: 0;
                                }

                                &::before {
                                    opacity: 1;
                                }
                            }
                        }
                    }
                }

                .img {
                    transition: ease 0.3s transform;
                }

                .text {
                    position: relative;
                    z-index: 1;
                    display: flex;
                    align-items: center;
                    gap: 5.1rem;
                    margin-top: -8rem;
                    padding: 5rem 4.9rem 4.3rem 5rem;
                    border-radius: 8rem 0 0 0;
                    overflow: hidden;
                    background-color: #fff;

                    @media screen and (max-width: 767px) {
                        gap: 1rem;
                        margin-top: -3.9rem;
                        padding: 3rem 2.5rem 2.8rem 3.3rem;
                        border-radius: 4rem 0 0 0;
                    }

                    .text-area {
                        .main {
                            margin-bottom: 1.5rem;
                            font-style: normal;
                            font-weight: 700;
                            font-size: 2.6rem;
                            line-height: 2.4rem;
                            letter-spacing: 0.05em;
                            color: #000000;

                            @media screen and (max-width: 767px) {
                                margin-bottom: 1.1rem;
                                font-size: 1.4rem;
                                line-height: 1.2rem;
                            }
                        }

                        .sub {
                            margin-bottom: 1.9rem;
                            font-style: normal;
                            font-weight: 400;
                            font-size: 1.8rem;
                            line-height: 180%;
                            letter-spacing: 0.1em;
                            color: #000000;

                            @media screen and (max-width: 767px) {
                                margin-bottom: 1rem;
                                font-size: 1.2rem;
                            }
                        }

                        .tags {
                            display: inline-flex;
                            flex-wrap: wrap;
                            align-items: center;
                            gap: 1.2rem;

                            @media screen and (max-width: 767px) {
                                gap: 0.8rem;
                            }

                            .tag {
                                padding: 1.1rem 1.6rem;
                                font-style: normal;
                                font-weight: 600;
                                font-size: 1.4rem;
                                line-height: 1rem;
                                color: #4D45A7;
                                border-radius: 0.5rem;
                                border: 1px solid #4D45A7;

                                @media screen and (max-width: 767px) {
                                    padding: 0.8rem 1.1rem;
                                    font-size: 1rem;
                                    line-height: 0.7rem;
                                }
                            }
                        }
                    }

                    .icon {
                        position: relative;
                        flex-shrink: 0;
                        margin-bottom: 0.9rem;
                        width: 5.2rem;
                        height: 5.2rem;

                        @media screen and (max-width: 767px) {
                            margin-bottom: 0;
                            width: 3.2rem;
                            height: 3.2rem;
                        }

                        &::after {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 1;
                            display: inline-block;
                            width: 100%;
                            height: 100%;
                            background-image: url("../common/img/parts/circle-arrow.svg");
                            background-size: 100% 100%;
                            background-repeat: no-repeat;
                            opacity: 1;
                            transition: ease 0.3s opacity;
                        }

                        &::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 1;
                            display: inline-block;
                            width: 100%;
                            height: 100%;
                            background-image: url("../common/img/parts/circle-arrow-active.svg");
                            background-size: 100% 100%;
                            background-repeat: no-repeat;
                            opacity: 0;
                            transition: ease 0.3s opacity;
                        }
                    }
                }
            }
        }
    }

    .btn-area {
        margin-bottom: 14.1rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 8rem;
        }

        & a {
            display: flex;
            align-items: center;
            margin: 0 auto;
            padding: 3rem 4rem;
            max-width: 60rem;
            border-radius: 10rem;
            border: 0.2rem solid #000;
            font-style: normal;
            font-weight: 700;
            font-size: 2rem;
            line-height: 2rem;
            letter-spacing: 0.05em;
            color: #000000;
            transition: ease 0.3s background-color, ease 0.3s color;

            @media screen and (max-width: 767px) {
                margin-left: 0;
                padding: 1.8rem 1.4rem;
                font-size: 1.2rem;
                line-height: 1.6rem;
                max-width: 25.6rem;
            }

            & span {
                flex-grow: 1;
                text-align: center;
            }

            &::after {
                flex-shrink: 0;
                content: "";
                display: inline-block;
                width: 2.4rem;
                height: 2.4rem;
                background-image: url("../common/img/parts/arrow-bk.svg");
                background-size: contain;
                background-repeat: no-repeat;
                transition: ease 0.3s filter;
            }

            @media screen and (max-width: 767px) {
                &::after {
                    width: 1.9rem;
                    height: 1.9rem;
                }
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    color: #fff;
                    background-color: #000;

                    &::after {
                        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
                    }
                }
            }
        }
    }

    .license-btn {
        margin-bottom: 6.1rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 4.1rem;
        }

        .license-wrapper {
            display: block;
            padding: 8.1rem 5rem 6.8rem 14.4rem;
            width: 100%;
            background-image: url("../img/home/license-back.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 3rem;
            overflow: hidden;
            transition: ease 0.3s transform;

            @media screen and (max-width: 767px) {
                padding: 3.7rem 2.4rem 11.1rem 3.4rem;
                background-image: url("../img/home/sp-license-back.jpg");
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    transform: scale(1.02);
                }
            }

            .text {
                margin-bottom: 1.8rem;

                @media screen and (max-width: 767px) {
                    margin-bottom: 1.7rem;
                }

                .main {
                    margin-bottom: 2.5rem;
                    font-style: normal;
                    font-weight: 700;
                    font-size: 3.2rem;
                    line-height: 100%;
                    letter-spacing: 0.05em;
                    color: #FFFFFF;

                    @media screen and (max-width: 767px) {
                        margin-bottom: 1.6rem;
                        font-size: 2.4rem;
                        line-height: 130%;
                    }
                }

                .sub {
                    font-style: normal;
                    font-weight: 700;
                    font-size: 1.8rem;
                    line-height: 200%;
                    letter-spacing: 0.1em;
                    color: #FFFFFF;

                    @media screen and (max-width: 767px) {
                        font-size: 1.4rem;
                    }
                }
            }

            .icon {
                width: 5.2rem;

                @media screen and (max-width: 767px) {
                    width: 3.7rem;
                }

                & img {
                    filter: invert(93%) sepia(10%) saturate(0%) hue-rotate(324deg) brightness(106%) contrast(101%);
                }
            }
        }
    }

    .others-btn {
        display: flex;
        gap: 4.8rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 2rem;
        }

        .btn {
            width: calc((100% - 4.8rem) / 2);
            border-radius: 3rem;
            overflow: hidden;
            background-color: #fff;

            @media screen and (max-width: 767px) {
                width: 100%;
                border-radius: 1.5rem;
            }

            & a {
                display: flex;
                align-items: center;
                gap: 3.3rem;
                padding: 6.4rem 5rem 6.3rem 5.6rem;
                width: 100%;

                @media screen and (max-width: 767px) {
                    gap: 1.6rem;
                    padding: 3.1rem 2.4rem 2.6rem 2.7rem;
                }

                .img {
                    flex-shrink: 0;
                    width: 8.4rem;

                    @media screen and (max-width: 767px) {
                        width: 4.2rem;
                    }

                    & img {
                        filter: invert(50%) sepia(40%) saturate(1623%) hue-rotate(310deg) brightness(109%) contrast(94%);
                    }
                }

                .text {
                    flex-grow: 1;

                    .sub {
                        margin-bottom: 1.1rem;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 1.8rem;
                        line-height: 2.4rem;
                        letter-spacing: 0.05em;
                        color: #000000;

                        @media screen and (max-width: 767px) {
                            margin-bottom: 0.5rem;
                            font-size: 1.2rem;
                            line-height: 140%;
                        }
                    }

                    .main {
                        font-style: normal;
                        font-weight: 700;
                        font-size: 3rem;
                        line-height: 130%;
                        letter-spacing: 0.05em;
                        color: #000000;

                        @media screen and (max-width: 767px) {
                            font-size: 1.6rem;
                        }

                        & span {
                            position: relative;
                            z-index: 1;

                            &::before {
                                content: "";
                                position: absolute;
                                bottom: 0.4rem;
                                left: 0;
                                right: 0;
                                z-index: -1;
                                display: block;
                                width: 100%;
                                height: 1.6rem;
                                background: #F986A7;
                                border-radius: 10rem;
                            }

                            @media screen and (max-width: 767px) {
                                &::before {
                                    bottom: 0.4rem;
                                    height: 1rem;
                                }
                            }
                        }
                    }
                }

                .icon {
                    position: relative;
                    flex-shrink: 0;
                    width: 6.4rem;
                    height: 6.4rem;

                    @media screen and (max-width: 767px) {
                        width: 3.2rem;
                        height: 3.2rem;
                    }

                    &::after {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 1;
                        display: inline-block;
                        width: 100%;
                        height: 100%;
                        background-image: url("../common/img/parts/circle-arrow-active.svg");
                        background-size: 100% 100%;
                        background-repeat: no-repeat;
                        opacity: 1;
                        transition: ease 0.3s opacity;
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 1;
                        display: inline-block;
                        width: 100%;
                        height: 100%;
                        background-image: url("../common/img/parts/circle-arrow.svg");
                        background-size: 100% 100%;
                        background-repeat: no-repeat;
                        opacity: 0;
                        transition: ease 0.3s opacity;
                    }

                }

                @media (hover: hover) and (pointer: fine) {
                    &:hover {
                        .icon {

                            &::after {
                                opacity: 0;
                            }

                            &::before {
                                opacity: 1;
                            }
                        }
                    }
                }
            }
        }
    }
}

#school {
    margin-bottom: 14.1rem;

    @media screen and (max-width: 767px) {
        margin-bottom: 11rem;
    }

    .title {
        margin-bottom: 6rem;

        @media screen and (max-width: 767px) {
            margin-top: 1.2rem;
            margin-bottom: 0;
        }
    }

    .contents {
        display: flex;
        gap: 12rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 3.1rem;
        }

        .img {
            flex-shrink: 0;
            width: 80rem;
            border-radius: 0 8rem 0 0;
            overflow: hidden;

            @media screen and (max-width: 767px) {
                margin-left: -2.4rem;
                width: calc(100% + 2.4rem);
            }
        }

        .text-area {
            padding-top: 5.7rem;

            @media screen and (max-width: 767px) {
                padding-top: 0;
            }

            .inner-title {
                margin-bottom: 3.3rem;

                @media screen and (max-width: 767px) {
                    margin-bottom: 1.4rem;
                }
            }

            .text {
                margin-bottom: 5.5rem;
                font-style: normal;
                font-weight: 400;
                font-size: 1.8rem;
                line-height: 200%;
                letter-spacing: 0.1em;
                color: #000000;

                @media screen and (max-width: 767px) {
                    margin-bottom: 3.4rem;
                    line-height: 160%;
                }
            }

            .detail {
                margin-bottom: 0.9rem;

                @media screen and (max-width: 767px) {
                    margin-bottom: 0.4rem;
                }

                .detail-wrapper {
                    display: inline-block;
                    padding-bottom: 1.5rem;
                    background-image: url("../img/home/school-detail-back.svg");
                    background-size: 100% 100%;
                    background-repeat: no-repeat;

                    @media screen and (max-width: 767px) {
                        padding-bottom: 1.1rem;
                    }

                    & p {
                        display: inline-block;
                        padding: 2.4rem 3.2rem;
                        font-style: normal;
                        font-weight: 700;
                        font-size: 1.8rem;
                        line-height: 1.3rem;
                        color: #FFFFFF;

                        @media screen and (max-width: 767px) {
                            padding: 1.8rem 2.4rem;
                            font-size: 1.4rem;
                            line-height: 100%;
                        }
                    }
                }
            }

        }
    }
}


#link {
    position: relative;
    padding-top: 13.2rem;
    margin-bottom: 13.1rem;
    background-color: #FF7DA2;
    border-radius: 18rem 18rem 0 0;

    @media screen and (max-width: 767px) {
        padding-top: 5.4rem;
        margin-bottom: 11rem;
        border-radius: 5rem 5rem 0 0;
    }

    .title {
        margin-bottom: 5.3rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 3rem;
        }
    }

    .card-area {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        margin: 0 auto 0 0;
        padding-bottom: 14rem;
        width: 103rem;


        @media screen and (max-width: 767px) {
            gap: 2rem;
            padding-bottom: 11rem;
            width: 100%;
        }

        .eng {
            margin-top: 0.9rem;
            margin-bottom: 0.6rem;
            font-style: normal;
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 140%;
            letter-spacing: 0.05em;
            color: #FF7DA2;

            @media screen and (max-width: 767px) {
                margin-top: 0;
                margin-bottom: 0.4rem;
                font-size: 1.4rem;
            }
        }

        .jp {
            font-style: normal;
            font-weight: 700;
            font-size: 2.2rem;
            line-height: 140%;
            letter-spacing: 0.05em;
            color: #000000;

            @media screen and (max-width: 767px) {
                font-size: 1.8rem;
            }
        }

        .detail {
            font-style: normal;
            font-weight: 400;
            font-size: 1.6rem;
            line-height: 180%;
            letter-spacing: 0.1em;
            color: #000000;

            @media screen and (max-width: 767px) {
                font-size: 1.4rem;
            }
        }

        .card {
            width: 50rem;

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            & a {
                display: block;
                width: 100%;
                height: 100%;
                padding: 3.15rem 3.3rem 4.35rem 4.4rem;
                background-color: #fff;
                border-radius: 2rem;

                @media screen and (max-width: 767px) {
                    padding: 2.4rem;
                }

                &.type01 {
                    padding: 4.15rem 3.3rem 3.25rem 4.4rem;

                    .card-title {
                        align-items: center;

                        .icon {
                            margin-top: 0;
                        }
                    }

                    @media screen and (max-width: 767px) {
                        padding: 2.4rem;
                    }
                }

                &.type02 {
                    padding: 2.85rem 3.3rem 2.35rem 4.4rem;

                    .card-title {
                        align-items: center;

                        @media screen and (max-width: 767px) {
                            align-items: flex-start;
                        }

                        .icon {
                            margin-top: 0;
                        }
                    }

                    @media screen and (max-width: 767px) {
                        padding: 2.4rem;
                    }
                }

                .card-title {
                    display: flex;
                    align-items: flex-start;
                    gap: 2rem;

                    @media screen and (max-width: 767px) {
                        gap: 0.4rem;
                    }

                    .main {
                        flex-grow: 1;

                        .detail {
                            margin-top: 0.4rem;

                            @media screen and (max-width: 767px) {
                                margin-top: 0.4rem;
                            }
                        }
                    }

                    .icon {
                        position: relative;
                        flex-shrink: 0;
                        margin-top: 0.8rem;
                        width: 6rem;
                        height: 6rem;
                        background-image: url("../common/img/parts/out-link-bk.svg");
                        background-size: 100% 100%;
                        background-repeat: no-repeat;
                        transition: ease 0.3s background-image;

                        @media screen and (max-width: 767px) {
                            margin-top: 0;
                        }

                        &::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 1;
                            display: inline-block;
                            width: 100%;
                            height: 100%;
                            background-image: url("../common/img/parts/out-link-bk-active.svg");
                            background-size: 100% 100%;
                            background-repeat: no-repeat;
                            opacity: 0;
                            transition: ease 0.3s opacity;
                        }
                    }
                }

                @media (hover: hover) and (pointer: fine) {
                    &:hover {

                        /* .icon {
                            background-image: url("../common/img/parts/out-link-bk-active.svg");
                        } */
                        .icon::before {
                            opacity: 1;
                        }
                    }
                }


                >.detail {
                    margin-top: 1.9rem;
                    padding-right: 1.1rem;

                    @media screen and (max-width: 767px) {
                        margin-top: 1.5rem;
                        padding-right: 0;
                    }
                }
            }
        }

    }

    .img {
        position: absolute;
        bottom: 0;
        right: -2.6rem;
        width: 60.4rem;

        @media screen and (max-width: 767px) {
            top: 2rem;
            right: 3.1rem;
            bottom: auto;
            width: 14rem;
        }
    }
}


#news {
    margin-bottom: 12.1rem;

    @media screen and (max-width: 767px) {
        margin-bottom: 12.3rem;
    }

    .title {
        margin-bottom: 4.2rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 3.9rem;
        }
    }

    .contents {
        display: flex;
        gap: 8rem;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 4rem;
        }

        .content {
            width: calc((100% - 8rem) / 2);

            @media screen and (max-width: 767px) {
                width: 100%;
            }

            .main {
                padding: 3.2rem 2.9rem;
                font-style: normal;
                font-weight: 700;
                font-size: 2.4rem;
                line-height: 100%;
                color: #FFFFFF;
                border-radius: 0 3rem 0 0;
                background-color: #000;

                @media screen and (max-width: 767px) {
                    padding: 2.1rem 1.9rem;
                    border-radius: 0 2rem 0 0;
                    font-size: 1.8rem;
                }
            }

            .content-wrapper {
                padding-top: 1rem;
                height: 43rem;
                overflow-y: scroll;

                @media screen and (max-width: 767px) {
                    padding-top: 1.5rem;
                    height: 42rem;
                }

                .common-list {
                    width: 100%;

                    &.event {
                        >li {
                            padding-right: 4.1rem;

                            @media screen and (max-width: 767px) {
                                padding-right: 2rem;
                            }

                            .list-title {
                                padding-top: 1.7rem;
                                padding-bottom: 1.4rem;
                                font-style: normal;
                                font-weight: 500;
                                font-size: 1.6rem;
                                line-height: 1.9rem;
                                letter-spacing: 0.05em;
                                color: #000000;
                                border-bottom: 1px solid #CDCDCD;
                            }

                            .list-detail {
                                padding-top: 0.5rem;
                                padding-bottom: 0.5rem;

                                & p,
                                & li {
                                    font-style: normal;
                                    font-weight: 400;
                                    font-size: 1.6rem;
                                    line-height: 200%;
                                    letter-spacing: 0.1em;
                                    color: #000000;
                                }

                                & ul {
                                    & li {
                                        position: relative;
                                        padding-left: 1.9rem;

                                        &::before {
                                            content: "";
                                            position: absolute;
                                            top: 1.2rem;
                                            left: 0;
                                            display: inline-block;
                                            width: 1rem;
                                            height: 1rem;
                                            background-color: #000;
                                            border-radius: 50%;
                                        }
                                    }
                                }
                            }
                        }
                    }

                    &.news {
                        & li {
                            padding-right: 4.1rem;

                            @media screen and (max-width: 767px) {
                                padding-right: 2rem;
                            }


                            & a {
                                padding: 2.5rem 0 2.95rem 2.3rem;
                                width: 100%;
                                border-bottom: 1px solid #CDCDCD;
                                transition: ease 0.3s background-color;

                                @media (hover: hover) and (pointer: fine) {
                                    &:hover {
                                        background-color: #f2f2f2;
                                    }
                                }

                                .list-date {
                                    margin-bottom: 0.15rem;
                                    font-style: normal;
                                    font-weight: 400;
                                    font-size: 1.6rem;
                                    line-height: 2.9rem;
                                    letter-spacing: 0.1em;
                                    color: #000000;
                                }

                                .list-title {
                                    font-style: normal;
                                    font-weight: 700;
                                    font-size: 1.6rem;
                                    line-height: 2.3rem;
                                    letter-spacing: 0.1em;
                                    color: #000000;
                                }


                            }

                            &:first-child {
                                & a {
                                    padding-top: 1.7rem;
                                }
                            }
                        }
                    }
                }
            }

            &.rta {
                .content-wrapper {
                    padding-left: 2rem;

                    @media screen and (max-width: 767px) {
                        padding-left: 1.8rem;
                    }
                }
            }

        }
    }
}