@charset "utf-8";

.header-bar {
    @media (min-width: 1250px) {
        display: none;
    }
}

.nav-pc-top {
    opacity: 1;
}

.page-fv {
    border-bottom: 1px solid #c1c1c1;

    .w1728 {
        max-width: 1728px;
        width: 90%;
        margin: 0 auto;
        padding-bottom: 10px;
        padding-top: 185px;

        @media(max-width:1180px) {
            padding-top: 40px;
        }

        .main {
            font-family: var(--fmain);
            font-weight: 500;
            font-size: clamp(2.688rem, 1.823rem + 3.69vw, 6.25rem);
            line-height: calc(264/100);
            letter-spacing: 0.1em;
            text-align: left;
            color: #1e4d3e;

        }

        .breadlist {
            display: flex;
            justify-content: flex-end;

            p,
            a {
                font-family: var(--fmain);
                font-weight: 500;
                font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                text-align: right;
                color: #050505;
            }
        }
    }
}

.p-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 9px;
    margin-bottom: 40px;

    .sub {
        font-family: var(--fmain);
        font-weight: 600;
        font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
        color: #1e4d3e;
    }

    .main {
        font-family: var(--fmain);
        font-weight: 400;
        font-size: 40px;
        letter-spacing: 0.2em;
        color: #1e4d3e;
        text-decoration: underline;
        text-underline-offset: 10px;
        text-decoration-thickness: 2px;
    }
}

.p-cta {
    .inner {
        display: flex;
        align-items: center;
        padding-bottom: 160px;

        @media(max-width:900px) {
            flex-direction: column-reverse;
            gap: 5px;
            max-width: calc(353/400*100%);
            width: 100%;
        }

        .col-text {
            margin-right: -48px;
            position: relative;
            z-index: 10;

            @media(max-width:1180px) {
                margin: auto;
            }

            .title {
                margin-bottom: 15px;

                .main {
                    font-family: var(--fmain);
                    font-weight: 100;
                    font-size: clamp(2.5rem, 0.892rem + 6.86vw, 9.125rem);
                    line-height: calc(183/146);
                    text-align: left;
                    color: #1e4d3e;

                    @media(max-width:1180px) {
                        text-align: center;
                        margin-bottom: 5px;
                    }
                }

                .desc {
                    font-family: var(--fmain);
                    font-weight: bold;
                    font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
                    line-height: calc(33/20);
                    text-align: center;
                    color: #1e4d3e;


                }
            }

            .cta-tel {
                margin-bottom: 22px;

                .f-41 {
                    font-size: clamp(1.25rem, 0.931rem + 1.36vw, 2.563rem);
                }

                .f-67 {
                    font-size: clamp(2.375rem, 1.935rem + 1.88vw, 4.188rem);
                }

                .f-20 {
                    font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
                }

                @media(max-width:1180px) {


                    .f-20 {
                        width: 100%;
                        text-align: right;
                    }
                }
            }

            .cta-contact {
                @media(max-width:1180px) {
                    .f-20 {
                        font-size: 24px;
                    }
                }
            }
        }

        .col-img {
            position: relative;
            z-index: 5;
            max-width: 682px;
            width: 100%;

            @media(max-width:1180px) {
                width: 42%;
            }

            @media(max-width:900px) {
                width: 100%;
            }
        }

        .col-img::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);

            @media(max-width:900px) {
                background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
            }
        }
    }
}