/* =========================================
   BASE
========================================= */

body {
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

section {
    padding: 120px 0;
}

.container,
.price__inner,
.plan-check__inner,
.features__inner,
.options__inner,
.template-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================
   PAGE FV（テンプレートページと統一）
========================================= */

.page-fv {
    background: url("../img/page-fv.webp") center/cover no-repeat;
    padding: 160px 0 100px;
    position: relative;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-fv__inner {
    position: relative;
    z-index: 2;
}

.page-fv__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-fv__subtitle {
    font-size: 18px;
    opacity: 0.9;
}



/* =========================================
   Breadcrumb（パンくず）
========================================= */

.breadcrumb {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 40px;
    font-size: 13px;
    color: #555;
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    text-decoration: none;
    color: #0080a3;
    transition: 0.2s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 8px;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: "";
}



/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    padding: 120px 0;
    background: #ffffff;
}

.contact-page__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ラベル（ABOUTと統一） */
.contact-page__label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    padding-left: 16px;
    border-left: 4px solid #f9be02;
    letter-spacing: .15em;
    width: fit-content;
}

.contact-page__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-page__lead {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 48px;
}


/* 電話・FAX・MAIL ボックス */
.contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.contact-page__item {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.contact-page__item-label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    width: 60px;
    text-align: right;
}

.contact-page__item-text {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
}

/* 問い合わせボタン */
.contact-page__btn {
    width: 260px;
    display: block;
    margin: 0 auto;
    margin-top: 12px;
    border-radius: 999px;
    text-align: center;
}

@media (max-width: 768px) {

    .page-fv {
        padding: 80px 0;
        text-align: center;
    }

    .page-fv__inner {
        padding: 0 24px;
    }

    .page-fv__title {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .page-fv__subtitle {
        font-size: 15px;
        line-height: 1.7;
        opacity: 0.9;
    }
}

@media (max-width: 400px) {

    .page-fv {
        padding: 64px 0;
    }

    .page-fv__inner {
        padding: 0 16px;
    }

    .page-fv__title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .page-fv__subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}