@charset "utf-8";

body {
    background-color: var(--white);
}

.l-main {
    padding-bottom: 0;
}

.mv-area {
    width: calc(100vw - 260px);
    height: 450px;
    margin-left: auto;
    background: url(/images/point/success/fv_bg_blur.png) top/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 54px 60px;
    margin: 0 calc(50% - 50vw + 130px);
}
    /* .mv-area::before {
        content: "";
        backdrop-filter: blur(20px);
        height: 100%;
        width: 100%;
        right: 0;
        top: 0;
        position: absolute;
    }    */
    .mv-area::after {
        content: "";
        height: 100%;
        background-color: rgba(210, 189, 109, 0.85);
        width: 55%;
        position: absolute;
        z-index: 0;
        backdrop-filter: blur(5px);
        transform: skewX(25deg);
        left: -10%;
        top: 0;
    }
    .mv-area img {
        width: 90%;
        height: 77.8%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
    .mv-area h1 {
        color: var(--body-color);
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 1;
        border-left: 3px solid var(--body-color);
        padding-left: 17px;
    }
        .mv-area h1 span:first-child {
            font-size: 32px;
            font-weight: 500;
            font-family: var(--point-font);
            letter-spacing: 0.15em;
        }
        .mv-area h1 span:last-child {
            font-size: 48px;
            font-weight: 500;
            letter-spacing: 0.15em;
        }

    .content__with_sidebar {
        width: calc(100% - 260px);
        font-family: var(--default-font);
        font-weight: 400;
        margin-bottom: 0;
    }

        .mw-950 {
            max-width: 950px;
            margin: 0 auto;
        }
        .flex {
            display: flex;
            align-items: center;
        }

        .about-text {
            margin: 65px 0 100px;
            font-size: var(--font-size-16);
            line-height: 2;
            letter-spacing: 0.12em;
            font-weight: 500;
            color: var(--font-color);
        }
        .content__item {
            margin-bottom: 90px;
        }
            .content__item h3 {
                font-family: var(--sub-font);
                font-size: 32px;
                font-weight: 500;
                letter-spacing: 0.07em;
                color: var(--accent-color);
                border-bottom: 2px solid var(--line-color);
                padding-bottom: 12px;
                position: relative;
                margin-bottom: 25px;
            }
                .content__item h3::after {
                    position: absolute;
                    content: "";
                    height: 2px;
                    width: 21%;
                    bottom: -2px;
                    left: 0;
                    background-color: var(--accent-color);
                    z-index: 1;
                }
                .content__item p {
                    line-height: 2;
                    letter-spacing: 0.12em;
                    color: var(--font-color);
                    font-size: var(--font-size-16);
                }
                .content__item .flex {
                    gap: 20px;
                }
                    .content__item .flex img {
                        width: 350px;
                        height: 250px;
                        object-fit: cover;
                    }
            .content__item__inner {
                margin-top: 50px;
            }
                .content__item__inner h4 {
                    background-color: var(--body-color);
                    padding: 13px 55px;
                    font-size: var(--font-size-24);
                    font-family: var(--sub-font);
                    font-weight: normal;
                    position: relative;
                    margin-bottom: 25px;
                    color: var(--main-color);
                }
                .content__item__inner h4::before {
                    content: "";
                    height: 1px;
                    width: 35px;
                    background-color: var(--main-color);
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                }
                .content__item__inner .flex {
                    align-items: flex-start;
                }
                    .content__item__inner .flex p {
                        font-size: var(--font-size-16);
                    }


        .bg-gray {
            background-color: var(--body-color);
        }
    .speech-bubble-wrap {
        margin-bottom: 120px;
    }
        .speech-bubble-wrap .bg-gray {
            padding: 50px 0 30px;
            margin-bottom: 25px;
        }
            .speech-bubble {
                padding: 60px 40px;
                text-align: center;
                background-color: var(--btn-color);
                position: relative;
                margin-bottom: 90px;
                cursor: pointer;
            }
                .speech-bubble span:first-child {
                    color: var(--white);
                    font-size: var(--font-size-20);
                    font-weight: 500;
                    font-family: var(--point-font);
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    border: 4px solid var(--white);
                    width: 84px;
                    aspect-ratio: 1;
                    border-radius: 50%;
                    background: var(--accent-color);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                .speech-bubble p {
                    color: var(--white);
                    font-weight: normal;
                    font-size: var(--font-size-16);
                    /* letter-spacing: 0.12em; */
                    line-height: 2em;
                }
                .speech-bubble .bubble__title {
                    color: var(--white);
                    font-size: 32px;
                    margin-bottom: 54px;
                    font-family: var(--sub-font);
                    position: relative;
                }
                    .speech-bubble .bubble__title::after {
                        content: "";
                        position: absolute;
                        bottom: -24px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 80px;
                        height: 2px;
                        background: var(--accent-color);
                    }
                .speech-bubble p:nth-of-type(2) {
                    font-size: var(--font-size-16);
                    color: var(--white);
                }
                .speech-bubble .toggle-arrow {
                    display: block;
                    position: absolute;
                    left: 50%;
                    bottom: 10px;
                    transform: rotate(0deg);
                }
                .speech-bubble.open .toggle-arrow {
                    bottom: 50px;
                    transform: rotate(180deg);
                }
                    .speech-bubble .toggle-arrow::after {
                        content: "";
                        width: 15px;
                        height: 2px;
                        border: 2px solid var(--white);
                        border-bottom: none;
                        border-left: none;
                        position: absolute;
                        left: 50%;
                        bottom: 20px;
                        transform: translateX(-85%) rotate(40deg);
                        border-radius: 1px;
                    }
                    .speech-bubble .toggle-arrow::before {
                        content: "";
                        width: 15px;
                        height: 2px;
                        border: 2px solid var(--white);
                        border-bottom: none;
                        border-left: none;
                        position: absolute;
                        left: 50%;
                        bottom: 20px;
                        transform: translateX(-15%) rotate(-40deg);
                        border-radius: 1px;
                    }
                    .toggle-arrow.is-open::before {
                        transform: translateX(-85%) rotate(-40deg);
                    }
                    .toggle-arrow.is-open::after {
                        transform: translateX(-15%) rotate(40deg);
                    }


                .speech-bubble__inner {
                    position: relative;
                    padding: 40px 0 0 0;
                    display: none;
                    margin-top: 60px;
                }
                    .speech-bubble__inner::before {
                        content: "";
                        width: calc(100% + 120px);
                        height: 1px;
                        position: absolute;
                        top: 0;
                        left: -60px;
                        background: var(--white);
                    }
                        .speech-bubble__inner p .accent-color {
                            color: var(--accent-color);
                        }
                    .speech-bubble__inner .inner__wrap {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 20px;
                        margin-top: 40px;
                    }
                        .speech-bubble__inner .inner__item {
                            width: calc(50% - 10px);
                            background: var(--white);
                            padding: 15px;
                        }
                            .speech-bubble__inner .inner__item p:nth-child(1) {
                                color: var(--accent-color);
                                margin-bottom: 15px;
                                font-family: var(--sub-font);
                                font-size: var(--font-size-24);
                                line-height: 1.5em;
                                word-break: keep-all;
                            }
                            .first .speech-bubble__inner .inner__item p:nth-child(1) {
                                height: 72px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }
                            .speech-bubble__inner .inner__item p:nth-child(2) {
                                color: var(--font-color);
                                margin-bottom: 0;
                                text-align: left;
                            }

                            
            .speech-bubble:nth-child(2) .inner__second--item {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-bottom: 30px;
            }
                .speech-bubble .inner__second--item p:nth-child(1) {
                    width: 100%;
                    color: var(--main-color);
                    font-size: var(--font-size-18);
                    font-weight: 500;
                    font-family: var(--default-font);
                    margin-bottom: 0;
                }
                .speech-bubble .inner__second--item .inner__check {
                    display: flex;
                    align-items: center;
                    padding: 12px 15px;
                    background: var(--body-color);
                    width: fit-content;
                }
                .speech-bubble .inner__second--item .inner__check p {
                    line-height: 1em;
                    margin-bottom: 0;
                }
                    .speech-bubble .inner__second--item .inner__check p img {
                        width: 17px;
                        aspect-ratio: 1;
                        margin-right: 9px;
                    }

                .speech-bubble__inner .type__notion {
                    width: 100%;
                }
                .speech-bubble__inner .type__wrap {
                    display: flex;
                    gap: 20px;
                    width: 100%;
                }
                    .speech-bubble__inner .type__wrap .type__item {
                        width: calc(50% - 10px);

                    }
                        .speech-bubble__inner .type__wrap .type__item p:nth-child(1) {
                            font-size: var(--font-size-16);
                            color: var(--white);
                            background: var(--accent-color);
                            line-height: 40px;
                            font-weight: bold;
                        }
                        .speech-bubble__inner .type__wrap .type__item p:nth-child(2) {
                            font-size: var(--font-size-16);
                            color: var(--main-color);
                            background: var(--white);
                            line-height: 60px;
                            font-weight: bold;
                        }

        
            .point__wrap {
                margin: 30px 0 140px 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
                .point__item {
                    display: flex;
                    align-items: stretch;
                    flex-wrap: wrap;
                }
                    .point__item p:nth-child(1) {
                        width: 250px;
                        background: var(--btn-color);
                        font-size: var(--font-size-24);
                        color: var(--white);
                        display: flex;
                        text-align: center;
                        align-items: center;
                        justify-content: center;
                        font-family: var(--sub-font);
                    }
                    .point__item p:nth-child(2) {
                        width: calc(100% - 250px);
                        flex-grow: 1;
                        font-size: var(--font-size-16);
                        color: var(--font-color);
                        padding: 20px;
                        background: var(--body-color);
                    }
            .speech-bubble__third .bubble__title {
                margin-bottom: 0;
            }
                .speech-bubble__third .bubble__title::after {
                    display: none;
                }
                .speech-bubble__third .speech-bubble__inner p {
                    text-align: left;
                    margin-top: 30px;
                }
                    .speech-bubble__third .speech-bubble__inner p a {
                        color: var(--accent-color);
                        font-size: var(--font-size-16);
                        text-decoration: underline;
                        text-underline-offset: 2px;
                        text-decoration-thickness: 1px;
                    }

        .content__item:last-child h3 {
            letter-spacing: unset;
        }

            .btn-wrapper {
                gap: 60px;
                margin: 126px 0 80px;
            }
                .btn-wrapper a {
                    border-radius: 8px;
                    width: calc(50% - 30px);
                    height: 120px;
                    box-sizing: border-box;
                    display: flex;
                    padding: 18px;
                    justify-content: space-between;
                    align-items: center;
                    font-size: var(--font-size-24);
                    font-weight: 700;
                }
                    .btn-wrapper a:first-of-type {
                        background-color: var(--accent-color);
                        color: var(--white);
                    }
                    .btn-wrapper a:last-of-type {
                        border: 2px solid var(--main-color);
                        color: var(--main-color);
                    }

                    .btn-wrapper a .arrow2 {
                        display: block;
                        width: 64px;
                        height: 1.2px;
                        background: var(--white);
                        position: relative;
                        right: 12.5px;
                    }
                    .btn-wrapper a .arrow2::before {
                        content: "";
                        position: absolute;
                        right: 0;
                        top: 50%;
                        width: 25px;
                        height: 25px;
                        border-radius: 50%;
                        transform: translate(50%, -50%);
                        border: 1.2px solid var(--white);
                    }
                    .btn-wrapper a .arrow2::after {
                        content: "";
                        position: absolute;
                        right: 0;
                        top: 50%;
                        width: 6px;
                        height: 6px;
                        border-radius: 50%;
                        transform: translate(50%, -50%);
                        background: var(--white);
                    }
                    .btn-wrapper a:last-of-type .arrow2,
                    .btn-wrapper a:last-of-type .arrow2::after {
                        background-color: var(--main-color);
                    }
                    .btn-wrapper a:last-of-type .arrow2::before {
                        border-color: var(--main-color);
                    }

            .reserve-area {
                height: 440px;
                background: url(/images/point/success/reservation-bg.jpg);
                width: calc(100vw - 260px);
                background-size: cover;
                margin: 0 calc(50% - 50vw + 130px);
                position: relative;
                z-index: 1;
                justify-content: center;
                align-items: center;
                gap: 40px;
            }
                .reserve-area::after {
                    content: "";
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    top: 0;
                    left: 0;
                    background-color: rgba(67, 76, 108, 0.6);
                    z-index: -1;
                }
                .reservation {
                    width: 420px;
                    height: 245px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    text-align: center;
                    background-color: var(--white);
                    padding: 0 30px;
                    align-items: center;
                }
                    .reservation p {
                        font-size: 28px;
                        font-weight: 500;
                        color: var(--accent-color);
                        letter-spacing: 0.2em;
                    }
                    .reservation span {
                        font-size: var(--font-size-24);
                        color: var(--accent-color);
                    }
                    .reservation a {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        background-color: var(--main-color);
                        color: var(--white);
                        width: 270px;
                        padding: 15px 18px;
                        margin-top: 24px;
                        border-radius: 4.6px;
                    }
                        .reservation .block {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            color: var(--white);
                            font-size: var(--font-size-16);
                        }
                        .reservation a .arrow2 {
                            display: block;
                            width: 64px;
                            height: 1.2px;
                            background: var(--white);
                            position: relative;
                            right: 12.5px;
                            z-index: 1;
                        }
                            .reservation a .arrow2::before {
                                content: "";
                                position: absolute;
                                right: 0;
                                top: 50%;
                                width: 25px;
                                height: 25px;
                                border-radius: 50%;
                                transform: translate(50%, -50%);
                                border: 1.2px solid var(--white);
                                z-index: 1;
                            }
                            .reservation a .arrow2::after {
                                content: "";
                                position: absolute;
                                right: 0;
                                top: 50%;
                                width: 6px;
                                height: 6px;
                                border-radius: 50%;
                                transform: translate(50%, -50%);
                                background: var(--white);
                                z-index: 1;
                            }
                            /* .reservation a:last-of-type .arrow2,
                            .reservation a:last-of-type .arrow2::after {
                                background-color: var(--main-color);
                            }
                            .reservation a:last-of-type .arrow2::before {
                                border-color: var(--main-color);
                            } */
                .reservation.satei {
                    background-color: var(--main-color);
                }
                    .reservation.satei .flex {
                        gap: 10px;
                    }
                    .reservation.satei .img-wrapper {
                        position: relative;
                    }
                        .reservation.satei .img-wrapper img:first-of-type {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            height: 33px;
                            width: 40px;
                            z-index: 0;
                        }
                        .reservation.satei .img-wrapper img:last-of-type {
                            position: relative;
                            z-index: 1;
                        }
                    .reservation.satei .text-wrapper {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-end;
                    }
                        .reservation.satei .text-wrapper span:not(.accent) {
                            font-size: var(--font-size-12);
                            padding: 1.6px 25px;
                            color: var(--main-color);
                            background-color: #DADFF0;
                            border-radius: 30px;
                            font-family: var(--default-font);
                            font-weight: 700;
                            position: relative;
                            display: inline-block;
                        }
                            .reservation.satei .text-wrapper span::after {
                                content: "";
                                position: absolute;
                                /* background-color: #DADFF0; */
                                width: 0;
                                height: 0;
                                border-style: solid;
                                border-right: 9px solid transparent;
                                border-left: 9px solid transparent;
                                border-bottom: 9.8px solid #DADFF0;
                                border-top: 0;
                                transform: rotate(315deg);
                                bottom: -5px;
                                left: 30%;
                            }
                        .reservation.satei .text-wrapper p {
                            font-size: var(--font-size-18);
                            color: var(--white);
                            font-weight: 500;
                            margin-top: -10px;
                        }
                            .reservation.satei .text-wrapper p .accent {
                                color: var(--accent-color);
                                font-size: 43.5px;
                            }

                        .reservation.satei a {
                            background-color: var(--white);
                            color: var(--main-color);
                            font-size: var(--font-size-16);
                        }
                            .reservation.satei a .arrow2 {
                                display: block;
                                width: 64px;
                                height: 1.2px;
                                background: var(--main-color);
                                position: relative;
                                right: 12.5px;
                                z-index: 1;
                            }
                                .reservation.satei a .arrow2::before {
                                    content: "";
                                    position: absolute;
                                    right: 0;
                                    top: 50%;
                                    width: 25px;
                                    height: 25px;
                                    border-radius: 50%;
                                    transform: translate(50%, -50%);
                                    border: 1.2px solid var(--main-color);
                                    z-index: 1;
                                }
                                .reservation.satei a .arrow2::after {
                                    content: "";
                                    position: absolute;
                                    right: 0;
                                    top: 50%;
                                    width: 6px;
                                    height: 6px;
                                    border-radius: 50%;
                                    transform: translate(50%, -50%);
                                    background: var(--main-color);
                                    z-index: 1;
                                }
