.service_plan_area {
    background-image: url('/src/eyes_v3pages/image/bg_v3ad_background_blueGraph_pc.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: white;
    text-align: center;
    height: auto;

    h1 {
        font-size: 2.5rem;
        margin: 5rem 0 2rem 0;

        @media screen and (max-width: 768px) {
            /* font-size: 1.8rem; */
        }
    }

    p {
        font-size: 1.2rem;
        margin-bottom: 3rem;

        @media screen and (max-width: 768px) {
            /* font-size: 1rem; */
        }
    }

    .service_plan_content {
        padding: 3rem 1rem;
        background-color: rgba(240, 248, 255, 0.263);

        @media screen and (max-width: 768px) {
            padding: 1.5rem 0.5rem;
        }

        img {
            @media screen and (max-width: 768px) {
                width: 95svw;
            }
        }
    }

    h2 {

        font-size: 1.5rem;
        margin: 2rem 0;

        @media screen and (max-width: 768px) {
            margin: 1.5rem 0 0 0;
        }
    }

    .feature_item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* gap: 1rem; */
        height: auto;

        table {
            border-collapse: collapse;
            margin: 0 auto;
            table-layout: auto;
            width: 50svw;
            /* border: 1px solid #ffffff; */
        }

        /* tr {
          
        } */

        td {
            text-align: left;
            padding: 0.5rem;

            @media screen and (max-width: 768px) {
                display: block;
                width: 95svw;
                padding: 0.5rem;
            }

            img {
                width: 50px;
                height: auto;

                @media screen and (max-width: 768px) {
                    display: none;
                    /* width: 30px; */
                }
            }

            h2 {
                font-size: 1.2rem;
                border-bottom: 1px solid #8b8a8a;
            }
        }
    }
}

/* 見積依頼エリア */
.price_check_section{
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-image: linear-gradient(135deg, #5d9fff, #94c8fb);
    color: white;

    .price_check_button_area{
        width: 20svw;
        background-color: rgb(233, 3, 214);
        border-radius: 20px;
        margin-top: 2rem;
        padding: 0.5rem 1rem;

        @media screen and (max-width: 768px) {
            width: 90svw;
        }

        a{
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
        }

        &:hover{
            background-color: rgb(243, 73, 243);
            transition: 0.3s;
        }
    }
}