@charset "utf-8";
/* CSS Document */

/* ============================================
   BUSINESS INFORMATION PAGE
============================================ */
.page-business {
    --lower-bg-light: #FAF8F5;
    --lower-bg-dark: #4A3B32;
    --lower-sub-bg: #F5F3EB;
    --lower-accent: #6F8D76;
    --lower-title-bg: #FAF8F5;
    --lower-title-text: #4A3B32;
}

/* ============================================
   BUSINESS SECTION
============================================ */
.business-section {
    background: #FAF8F5;
}

.page-business .lower-section-head {
    margin-bottom: 54px;
}

.page-business .lower-section-label {
    color: #6F8D76;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.16em;
}

.page-business .lower-section-title {
    color: #4A3B32;
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: normal;
}

/* ============================================
   BUSINESS CONTENT
============================================ */
.business-content {
    max-width: 820px;
    margin: 0 auto;
    color: #4A3B32;
    font-size: 1.45rem;
    line-height: 2;
    letter-spacing: 0.04em;
}

.business-content p,
.business-content li,
.business-content dt,
.business-content dd {
    font-weight: normal;
}

.business-content strong,
.business-content b {
    font-weight: normal;
}

.business-content a {
    color: #6F8D76;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.business-content a:hover {
    color: #E07A5F;
}

.business-lead {
    margin-bottom: 58px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(74, 59, 50, 0.16);
}

.business-lead p {
    margin-bottom: 14px;
}

.business-lead p:last-child {
    margin-bottom: 0;
}

/* ============================================
   BUSINESS BLOCK
============================================ */
.business-block {
    margin-bottom: 52px;
}

.business-block h3 {
    margin-bottom: 22px;
    color: #4A3B32;
    font-size: 1.9rem;
    line-height: 1.6;
    font-weight: normal;
    letter-spacing: 0.06em;
}

.business-block p {
    margin-bottom: 14px;
}

.business-block p:last-child {
    margin-bottom: 0;
}

/* ============================================
   BUSINESS INFO LIST
============================================ */
.business-info-list {
    border-top: 1px solid rgba(74, 59, 50, 0.16);
}

.business-info-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(74, 59, 50, 0.16);
}

.business-info-list dt {
    color: #6F8D76;
    font-size: 1.35rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.business-info-list dd {
    font-size: 1.45rem;
    line-height: 1.8;
}

/* ============================================
   BUSINESS SERVICE LIST
============================================ */
.business-service-list {
    margin: 0;
    padding-left: 1.4em;
}

.business-service-list li {
    margin-bottom: 8px;
    line-height: 1.9;
}

.business-service-list li:last-child {
    margin-bottom: 0;
}

/* ============================================
   BUSINESS DATE
============================================ */
.business-date {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 59, 50, 0.16);
    text-align: right;
}

.business-date p {
    margin-bottom: 6px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.business-date p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {

    .page-business .lower-section-head {
        margin-bottom: 40px;
    }

    .page-business .lower-section-title {
        font-size: 2.3rem;
    }

    .business-content {
        font-size: 1.4rem;
        line-height: 1.95;
    }

    .business-lead {
        margin-bottom: 46px;
        padding-bottom: 30px;
    }

    .business-block {
        margin-bottom: 44px;
    }

    .business-block h3 {
        margin-bottom: 18px;
        font-size: 1.75rem;
        line-height: 1.6;
    }

    .business-info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 16px 0;
    }

    .business-info-list dt {
        font-size: 1.3rem;
    }

    .business-info-list dd {
        font-size: 1.4rem;
    }

    .business-service-list {
        padding-left: 1.25em;
    }

    .business-date {
        margin-top: 54px;
        text-align: left;
    }
}