@charset "utf-8";

picture {
    margin-top: 50px;
    display: block;
    width: 100%;
}



.hero-caption {
    font-size: 1rem;
    text-align: center;
    padding: 0 .5rem;
}

.hero-caption strong {
    font-size: 1.25rem;
    color: #007ACC;
    font-weight: bold;
}

.section {
    padding: 0 .5rem;
}


/* ===============================
service area
=============================== */

.service-area {
    padding: 60px 20px;
    background: #f8fbff;
}


/* ===============================
header
=============================== */

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 40px;
}


.area-title {
    font-size: 28px;
    font-weight: bold;
}


.area-subtitle {
    font-size: 14px;
    color: #007ACC;
    letter-spacing: 2px;
    margin-top: 4px;
}


/* ===============================
button
=============================== */

.area-btn {
    display: inline-block;
    padding: 14px 15px;

    background: linear-gradient(135deg, #007ACC, #0094ff);
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;

    text-decoration: none;

    border-radius: 50px;
    border: none;

    box-shadow: 0 6px 16px rgba(0,0,0,0.15);

    transition: all .3s ease;
    cursor: pointer;
}

/* hover */
.area-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

/* クリック */
.area-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===============================
service cards
=============================== */

.service-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-bottom: 40px;
}


/* ===============================
card
=============================== */

.service-card {
    background: #fff;

    padding: 18px;

    border-radius: 10px;

    text-align: center;

    border: 1px solid #eee;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);

    transition: 0.25s;
}


.service-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}

.service-card img {
    width: 25%;
}


.service-title {
    font-size: 16px;
    font-weight: 600;

    color: #333;
}


/* ===============================
text
=============================== */

.service-text {
    text-align: center;
    line-height: 1.8;
}


.service-text p {
    margin: 18px 0;
}


.service-highlight {
    font-size: 18px;
    font-weight: bold;

    color: #007ACC;
}




/* ===============================
price area
=============================== */

.price-area {
    padding: 60px 20px;
    background: #f7fbff;
}


/* ===============================
price contents
=============================== */

.price-contents {

    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;

    margin-top: 30px;

}


/* ===============================
card
=============================== */

.price-content {

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}


/* hover animation */

.price-content:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}


/* ===============================
image
=============================== */

.price-image {

    width: 100%;

    object-fit: cover;

    display: block;

}


/* ===============================
text area
=============================== */

.price-title {

    font-size: 20px;

    font-weight: 700;

    padding: 18px 20px 10px;

}


.price-text {

    padding: 0 20px 20px;

    line-height: 1.8;

    font-size: 14px;

    color: #444;

}



/* ===============================
estimate area
=============================== */

.estimate-area {

    padding: 70px 20px;

    background: linear-gradient(135deg,
            #f0f8ff,
            #e6f3ff);

    text-align: center;

}


/* ===============================
header
=============================== */

.estimate-area .area-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 40px;

}


/* ===============================
title
=============================== */

.estimate-area .area-title {

    font-size: 28px;

    font-weight: bold;

}


.estimate-area .area-subtitle {

    font-size: 14px;

    letter-spacing: 2px;

    color: #007ACC;

}



/* ===============================
estimate text
=============================== */

.estimate-text {

    max-width: 700px;

    margin: 0 auto;

    background: #fff;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}


.estimate-text p {

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 16px;

}



/* ===============================
point area
=============================== */

.point-area {

    padding: 70px 20px;

    background: #f8fbff;

}


/* ===============================
point contents
=============================== */

.point-contents {

    display: grid;

    grid-template-columns: 1fr;

    gap: 30px;

    margin-top: 40px;

}


/* ===============================
card
=============================== */

.point-content {

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}


.point-content:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}


/* ===============================
image
=============================== */

.point-image {

    width: 100%;

    height: 200px;

    object-fit: cover;

    display: block;

}


/* ===============================
title
=============================== */

.point-title {

    font-size: 20px;

    font-weight: 700;

    padding: 20px 20px 10px;

    color: #222;

}


/* ===============================
text
=============================== */

.point-text {

    padding: 0 20px 20px;

    font-size: 14px;

    line-height: 1.8;

    color: #444;

}


/* ===============================
message area
=============================== */

.message-area {

    padding: 80px 20px;

    background: #f8fbff;

}


/* ===============================
header
=============================== */

.area-header {

    text-align: center;

    margin-bottom: 50px;

}

.area-title {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 10px;

}

.area-subtitle {

    font-size: 14px;

    color: #007ACC;

    letter-spacing: 2px;

}


/* ===============================
contents
=============================== */

.message-contents {

    max-width: 1000px;

    margin: auto;

    display: grid;

    gap: 30px;

}


/* ===============================
card
=============================== */

.message-content {

    background: #ffffff;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}


.message-content:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}


/* ===============================
title
=============================== */

.message-title {

    font-size: 20px;

    margin-bottom: 15px;

    border-left: 4px solid #007ACC;

    padding-left: 10px;

}


/* ===============================
text
=============================== */

.message-content p {

    line-height: 1.8;

    color: #444;

}


/* ===============================
qualification list
=============================== */

.qualification-list {

    list-style: none;

    padding: 0;

}

.qualification-list li {

    padding: 8px 0;

    border-bottom: 1px solid #eee;

    font-size: 15px;

}

.qualification-list li::before {

    content: "✔";

    color: #007ACC;

    margin-right: 8px;

}



/* レスポンシブ対応 */
@media (min-width: 768px) {

    html {
        font-size: 20px;
    }

    body {
        font-size: 1rem;

    }


    .inner {
        max-width: 1366px;
        margin: 0 auto;
    }


    picture {}


    .service-area {
        padding: 80px 20px;
    }


    .service-cards {

        grid-template-columns: repeat(3, 1fr);

        gap: 24px;

    }

    .service-card {

        padding: 24px;

    }

    .service-title {

        font-size: 18px;

    }





    .price-contents {

        grid-template-columns: repeat(2, 1fr);

        gap: 32px;

    }

    .price-image {

        height: 220px;

    }

    .price-title {

        font-size: 22px;

    }

    .price-text {

        font-size: 15px;

    }




    .estimate-area {

        padding: 100px 20px;

    }

    .estimate-area .area-title {

        font-size: 32px;

    }

    .area-btn {

        font-size: 16px;

        padding: 14px 28px;

    }


    .point-area {

        padding: 100px 20px;

    }

    .point-contents {

        grid-template-columns: repeat(2, 1fr);

        gap: 40px;

    }

    .point-image {

        height: 220px;

    }

    .point-title {

        font-size: 22px;

    }

    .point-text {

        font-size: 15px;

    }

    .message-area {

        padding: 100px 20px;

    }

    .message-contents {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

    }



}