@charset "utf-8";

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

.l-main {
    padding-bottom: 0;
}
.content__with_sidebar * {
    color: var(--font-color);
}

.mv-area {
    width: calc(100vw - 260px);
    height: 450px;
    margin-left: auto;
    background: url(/images/point/knowledge/d0019_fv.jpg) center/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;
        z-index: 0;
    }   
    .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 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 1;
        border-left: 3px solid var(--gray);
        padding-left: 17px;
    }
        .mv-area h1 span:first-child {
            font-size: 32px;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 0.15em;
        }
        .mv-area h1 span:last-child {
            font-size: 48px;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 0.15em;
        }

    .content__with_sidebar {
        font-family: var(--default-font);
        font-weight: 400;
        margin-bottom: 0;
    }
        .flex {
            display: flex;
            align-items: flex-start;
        }
        .bg-gray {
            background-color: var(--gray);
        }

        .speech-bubble-wrap .bg-gray {
            padding: 50px 0 30px;
            margin-bottom: 25px;
        }
            .speech-bubble {
                padding: 30px;
                text-align: center;
                background-color: var(--main-color);
                position: relative;
            }
                .speech-bubble::after {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-right: 135px solid transparent;
                    border-left: 135px solid transparent;
                    border-top: 58px solid var(--main-color);
                    border-bottom: 0;
                    bottom: -30px;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: 1;
                }
                .speech-bubble p:first-of-type {
                    color: var(--accent-color);
                    font-size: var(--font-size-20);
                    margin-bottom: 8px;
                    font-family: var(--sub-font);
                    font-weight: 700;
                }
                .speech-bubble p:last-of-type {
                    font-size: var(--font-size-28);
                    color: var(--white);
                    font-family: var(--sub-font);
                    font-weight: 400;
                }
                
                .speech-bubble-wrap .bg-gray p {
                    font-size: var(--font-size-14);
                    color: var(--font-color);
                }
                .merrit__container {
                    margin-top: 32px;
                    gap: 20px;
                    align-items: flex-start;
                }
                    .merrit__container .merrit-item {
                        flex: 1;
                    }
                        .merrit__container .merrit-item h5 {
                            padding: 15px;
                            margin-bottom: 24px;
                            color: var(--white);
                            background-color: var(--accent-color);
                            text-align: center;
                            font-size: 21px;
                        }
                        .merrit__container .merrit-item.demerrit h5 {
                            
                            background-color: var(--btn-color);
                        }
                            .merrit__container .merrit-item ul {
                                padding: 0 15px;
                            }
                                .merrit__container .merrit-item ul li {
                                    padding-left: 23px;
                                    font-size: 17px;
                                    position: relative;
                                    line-height: 2;
                                    color: var(--font-color);
                                }
                                    .merrit__container .merrit-item ul li::before {
                                        content: url(/images/point/knowledge/check-icon.svg);
                                        position: absolute;
                                        left: 0;
                                        top: 0.5em;
                                    }
                                    .merrit__container .merrit-item.demerrit ul li::before {
                                        content: url(/images/point/knowledge/check-icon-blue.svg);
                                    }
                                        .merrit-link {
                                            display: block;
                                            width: 428px;
                                            font-size: var(--font-size-20);
                                            background-color: var(--main-color);
                                            font-family: var(--sub-font);
                                            text-align: center;
                                            padding: 18px;
                                            border-radius: 30px;
                                            color: var(--white);
                                            margin: 24px auto 0;
                                            position: relative;
                                        }
                                            .merrit-link::before,
                                            .merrit-link::after {
                                                content: "";
                                                position: absolute;
                                                top: calc(50% - 1px);
                                                right: 5%;
                                                width: 9.76px;
                                                height: 2px;
                                                border-radius: 9999px;
                                                background-color: var(--white);
                                                transform-origin: calc(100% - 2px) 50%;
                                            }
                                            
                                            .merrit-link::before {
                                                transform: rotate(45deg);

                                            }
                                            
                                            .merrit-link::after {
                                                transform: rotate(-45deg);
                                                top: calc(50% + 1px);
                                            }

        .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;
        }
        .mb-30 {
            margin-bottom: 40px;
        }
            .content__item h2 {
                font-family: var(--sub-font);
                font-size: 32px;
                font-weight: 400;
                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 h2::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);
                }
                .content__item .flex {
                    gap: 20px;
                }
                    .content__item .flex img {
                        width: 300px;
                        height: 231px;
                        object-fit: cover;
                    }
                .content__item .bg-gray {
                    padding: 40px 50px;
                }
                .m-50 {
                    margin: 50px 0;
                }
                .table {
                    border-collapse: collapse;
                    margin-bottom: 16px;
                }
                    .table tr {
                        border-bottom: 4px solid var(--white);
                    }
                        .table th {
                            background-color: var(--main-color);
                            vertical-align: middle;
                            color: var(--white);
                            width: 27%;
                            text-align: center;
                            padding: 20px;
                            font-family: var(--sub-font);
                            font-size: var(--font-size-18);
                            white-space: pre;
                            font-weight: 400;
                            border-right: 4px solid var(--white);
                        }
                        .table td {
                            background-color: var(--gray);
                            vertical-align: middle;
                            color: var(--font-color);
                            padding: 20px 40px;
                            line-height: 2;
                            font-size: var(--font-size-16);
                        }
                        .table td p {
                            font-size: var(--font-size-16);
                        }
                        .baikyaku_graph {
                            margin-top: 24px;
                        }
                        .table dl {
                            display: flex;
                            justify-content: space-between;
                            gap: 32px;
                        }
                            .table dt {
                                font-size: var(--font-size-20);
                                border-bottom: 2px solid var(--main-color);
                                padding-bottom: 8px;
                            }
                            .table dd {
                                padding: 14px;
                                font-size: var(--font-size-16);
                                border-bottom: 1px solid var(--line-color);
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }
                            .table dt,
                            .table dd {
                                width: calc(50% - 16px);
                                text-align: center;
                                color: var(--font-color);
                            }
                            .table table {
                                font-size: var(--font-size-14);
                                margin-top: 26px;
                            }
                                .table table th {
                                    font-size: var(--font-size-14);
                                    padding: 6px;
                                    white-space: unset;
                                    width: fit-content;
                                    border-color: var(--gray);
                                }
                                .table table th.bgnone {
                                    background-color: transparent;
                                }
                                .table table th.font16 {
                                    font-size: var(--font-size-16);
                                    width: 140px;
                                    padding: 10px;
                                }
                                .table table td {
                                    padding: 6px;
                                    width: fit-content;
                                    text-align: center;
                                    font-size: var(--font-size-14);
                                    background-color: var(--white);
                                    color: var(--main-color);
                                    border-bottom: 4px solid var(--gray);
                                    border-right: 4px solid var(--gray);
                                    font-weight: 400;
                                }

                    .table2 th {
                        background-color: var(--main-color);
                        width: 50%;
                        color: var(--white);
                        font-size: var(--font-size-18);
                        /* font-size: 16px; */
                        padding: 18px 20px;
                        text-align: left;
                        height: 100%;
                        gap: 14px;
                        border-right: 10px solid var(--white);
                        font-weight: 400;
                        font-family: var(--sub-font);
                    }
                    .table2 td {
                        width: 50%;
                        background-color: var(--gray);
                        padding: 20px;
                        font-size: var(--font-size-16);
                    }
                    .table2 th,
                    .table2 td {
                        border-bottom: 4px solid var(--white);
                        vertical-align: middle;
                    }
                    .table2 span {
                        display: inline-block;
                        vertical-align: middle;
                    }
                        .table2 span.white,
                        .table2 span.white small {
                            color: var(--white);
                            font-family: var(--sub-font);
                        }
                        .table2 span.white {
                            width: calc(100% - 114px);
                            margin-left: 14px;
                        }
                        .table2 span.bg-area {
                            font-size: var(--font-size-14);
                            background-color: var(--white);
                            border-radius: 30px;
                            padding: 1px 8px;
                            width: fit-content;
                            color: var(--main-color);
                        }
                        .table2 span.bg-area.required {
                            color: var(--white);
                            background-color: var(--accent-color);
                            padding: 1px 12px;
                        }


            .content__item p.font14 {
                font-size: var(--font-size-14);
            }
            /* .content__item__inne {
                margin-top: 50px;
            } */
                .content__item .bg-blue {
                    background-color: var(--main-color);
                    padding: 13px 55px;
                    font-size: var(--font-size-24);
                    font-family: var(--sub-font);
                    font-weight: 500;
                    position: relative;
                    margin-bottom: 25px;
                    margin-top: 50px;
                    color: var(--white);
                }
                .content__item .bg-blue::before {
                    content: "";
                    height: 1px;
                    width: 35px;
                    background-color: var(--white);
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                }
                .content__item .bg-gray {
                    position: relative;
                    margin-bottom: 30px;
                    padding: 44px 10px 44px 30px;
                }
                .content__item .bg-gray.mb-16 {
                    margin-bottom: 16px;
                } 
                    .content__item .bg-gray .step {
                        position: absolute;
                        left: 0;
                        top: 0;
                        font-size: 21px;
                        width: 184px;
                        padding: 10px;
                        background-color: var(--accent-color);
                        font-weight: 700;
                        text-align: center;
                        color: var(--white);
                        font-family: futura-pt,sans-serif;
                    }
                    .content__item .bg-gray .al-center {
                        align-items: center;
                    }
                    .content__item .bg-gray .flex-left {
                        padding-top: 30px;
                    }
                        .flex-left h5 {
                            font-size: var(--font-size-24);
                            font-family: var(--sub-font);
                            color: var(--main-color);
                            margin-bottom: 10px;
                            font-weight: 400;
                        }
                        .flex-left p {
                            font-size: var(--font-size-14);
                            line-height: 2;
                        }
                
            .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/knowledge/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;
                                }
