@charset "UTF-8";

/* ==========================================================================
   Business Page Styles
   ========================================================================== */

/* カテゴリアンカーナビ */
.business-nav {
    background-color: #f8f9fa;
    border-left: 5px solid var(--dgreen);
    padding: 25px 30px;
    margin-bottom: 60px;
}

.business-nav__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dgreen);
    margin-bottom: 15px;
}

.business-nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.business-nav__list a {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--dgreen);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    transition: var(--transition);
    text-decoration: none;
}

.business-nav__list a:hover {
    background-color: var(--primary-color);
    opacity: 1;
}

/* カテゴリセクション */
.business-category {
    margin-bottom: 70px;
    scroll-margin-top: 90px;
}

.business-category__header {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--dgreen);
    color: #fff;
    padding: 16px 24px;
    margin-bottom: 0;
}

.business-category__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
}

.business-category__title-en {
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    opacity: 0.85;
    letter-spacing: 0.1em;
}

/* 業務項目テーブル */
.business-table {
    width: 100%;
    border-collapse: collapse;
}

.business-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.business-table tr:last-child {
    border-bottom: 2px solid var(--dgreen);
}

.business-table td {
    padding: 16px 20px;
    vertical-align: top;
    line-height: 1.7;
    font-size: 0.95rem;
}

.business-table td:first-child {
    width: 220px;
    min-width: 180px;
    font-weight: 700;
    color: var(--dgreen);
    background-color: #f0faf9;
    border-right: 2px solid #d0eeec;
    font-size: 0.95rem;
}

.business-table tr:nth-child(even) td:first-child {
    background-color: #e8f5f4;
}

.business-table td:last-child {
    color: var(--text-color);
}

/* 注記テキスト */
.business-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
    padding-left: 1em;
    text-indent: -1em;
}

.business-note::before {
    content: '※';
    margin-right: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .business-nav {
        padding: 20px;
    }

    .business-nav__list {
        gap: 8px;
    }

    .business-nav__list a {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .business-category__title {
        font-size: 1.2rem;
    }

    .business-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
        display: block;
        width: 100% !important;
    }

    .business-table td:first-child {
        border-right: none;
        border-bottom: 1px solid #d0eeec;
        padding-bottom: 8px;
    }

    .business-table td:last-child {
        padding-top: 10px;
    }

    .business-table tr {
        display: block;
        margin-bottom: 4px;
    }
}
