@charset "utf-8";

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

.l-header {
    z-index: 2;
}

.l-main {
    padding-bottom: 0;
    background-color: var(--white);
}

.mv-area {
    width: calc(100vw - 260px);
    height: 450px;
    margin-left: auto;
    background: url(/images/menu/assets/d0018_fv_bg.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 {
        color: var(--gray);
        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;
            letter-spacing: 0.15em;
        }
        .mv-area h1 span:last-child {
            font-size: 48px;
            font-weight: 500;
            letter-spacing: 0.15em;
        }

    .content__with_sidebar {
        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;
        }
        .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(--btn-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(--btn-color);
                    border-bottom: 0;
                    bottom: -30px;
                    left: 50%;
                    transform: translateX(-50%);
                }
                .speech-bubble p:first-of-type {
                    color: var(--accent-color);
                    font-size: var(--font-size-22);
                    margin-bottom: 8px;
                    font-family: "futura-pt", sans-serif;
                    font-weight: 700;
                }
                .speech-bubble p:last-of-type {
                    font-size: var(--font-size-28);
                    color: var(--white);
                    font-family: var(--sub-font);
                }
                
                .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 20px;
                            }
                                .merrit__container .merrit-item ul li {
                                    padding-left: 25px;
                                    font-size: 17px;
                                    position: relative;
                                    line-height: 2;
                                    color: var(--font-color);
                                }
                                    .merrit__container .merrit-item ul li::before {
                                        content: url(/images/menu/assets/check-icon.svg);
                                        position: absolute;
                                        left: 0;
                                        top: 0.5em;
                                    }
                                    .merrit__container .merrit-item.demerrit ul li::before {
                                        content: url(/images/menu/assets/check-icon-blue.svg);
                                    }

                
        .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);
                }
                .content__item .flex {
                    gap: 20px;
                }
                    .content__item .flex img {
                        width: 350px;
                        height: 250px;
                        object-fit: cover;
                    }
                .content__item .bg-gray {
                    padding: 40px 50px;
                }

                    .content__item .bg-gray table {
                        margin-top: 20px;
                        border-collapse: collapse;
                    }
                        .content__item .bg-gray table .top th:first-child {
                            background-color: transparent;
                        }
                            .content__item .bg-gray table th {
                                background-color: var(--main-color);
                                padding: 14px 19px;
                                vertical-align: middle;
                                border-left: 4px solid var(--gray);
                                color: var(--white);
                                font-size: 17px;
                            }
                            .content__item .bg-gray table th.accent {
                                background-color: var(--accent-color);
                            }
                            .content__item .bg-gray table th.line-top {
                                border-top: 4px solid var(--gray);
                                width: 130px;
                            }
                            .content__item .bg-gray table th.w-50 {
                                width: calc(40%);
                            }
                        .content__item .bg-gray table td {
                            /* border: 2px solid var(--line-color); */
                            padding: 18px 24px;
                        }
                        .content__item .bg-gray table .first-line td:first-of-type {
                            border-bottom: 2px solid var(--line-color);
                            border-right: 2px solid var(--line-color);
                        }
                        .content__item .bg-gray table .first-line td:last-of-type {
                            border-bottom: 2px solid var(--line-color);
                        }
                        .content__item .bg-gray table .second-line td:first-of-type {
                            border-right: 2px solid var(--line-color);
                        }
                            .content__item .bg-gray table tr td p {
                                position: relative;
                                padding-left: 25px;
                            }
                            .content__item .bg-gray table .first-line td p::before {
                                content: url(/images/menu/assets/check-icon.svg);
                                position: absolute;
                                top: 0.45em;
                                left: 0;
                            }
                            .content__item .bg-gray table .second-line td p::before {
                                content: url(/images/menu/assets/check-icon-blue.svg);
                                position: absolute;
                                top: 0.45em;
                                left: 0;
                            }
            .content__item p.font14 {
                font-size: var(--font-size-14);
            }
            .content__item__inner {
                margin-top: 50px;
            }
                .content__item__inner h4 {
                    background-color: var(--gray);
                    padding: 13px 55px;
                    font-size: var(--font-size-24);
                    font-family: var(--sub-font);
                    font-weight: 500;
                    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);
                    }

                .content__item.surpport img {
                    height: 250px;
                    object-fit: cover;
                }
                .content__item.surpport p {
                    margin: 32px 0;
                    font-size: 17px;
                    color: #333;
                }
                .content__item.surpport small {
                    font-size: 17px;
                }
            .link-block {
                display: flex;
                flex-wrap: wrap;
                gap: 20px ;
            }
                .link-block-item {
                    height: 210px;
                    width: calc(50% - 10px);
                    text-align: center;
                    background-size: cover;
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 24px;
                    z-index: 1;
                    padding: 0 18px;
                }
                .link-block-item:first-of-type {
                    background-image: url(/images/menu/assets/comp-sale.jpg);
                }
                .link-block-item:nth-of-type(2) {
                    background-image: url(/images/menu/assets/comp-purchase.jpg);
                }
                .link-block-item:nth-of-type(3) {
                    background-image: url(/images/menu/assets/comp-voluntary-sale.jpg);
                }
                .link-block-item:nth-of-type(4) {
                    background-image: url(/images/menu/assets/comp-inheritance.jpg);
                }
                .link-block-item:last-of-type {
                    background-image: url(/images/menu/assets/comp-vacant-house.jpg);
                }
                    .link-block-item::after {
                        content: "";
                        background-color: rgba(67, 76, 108, 0.8);
                        height: 100%;
                        width: 100%;
                        top: 0;
                        left: 0;
                        position: absolute;
                        z-index: -1;
                    }
                    .link-block-item p {
                        color: var(--white);
                        font-size: var(--font-size-24);
                        font-family: var(--sub-font);
                        font-weight: 500;
                    }
                    .link-block-item a {
                        display: block;
                        width: 100%;
                        font-size: 17px;
                        text-align: left;
                        position: relative;
                        padding: 19px 19px 19px 38px;
                        color: var(--white);
                        background-color: var(--accent-color);
                        border-radius: 30px;
                    }
                    .link-block-item a .arrow2 {
                        display: block;
                        width: 38px;
                        height: 1.2px;
                        background: var(--white);
                        position: relative;
                        top: -13px;
                        right: -297px;
                    }
                    .link-block-item 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);
                    }
                    .link-block-item 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 {
                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/menu/assets/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;
                                }
