/* ─────────────────────────────────────────
   PAGE DISCLOSURE — 情報公開
   ───────────────────────────────────────── */

/* ── Title band (teal strip) ── */
.dc-title-band-wrap {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 2rem;
}
.dc-title-band {
    display: inline-block;
    background: #4DB1AF;
    color: #fff;
    font-size: 26px; font-weight: 700;
    line-height: 1;
    padding: 18px 48px 18px 28px;
    margin: 0;
}

/* ── Main content area ── */
.dc-main {
    flex: 1;
    min-width: 0;
}
.dc-section {
    margin-bottom: 64px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* ── Section Title ── */
.dc-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #008F8D;
    margin: 0 0 36px;
}
.dc-section-title::before,
.dc-section-title::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #008F8D;
}
.dc-section-title::before {
    margin-right: 24px;
}
.dc-section-title::after {
    margin-left: 24px;
}

/* ── Document Table ── */
.dc-table-wrap {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    overflow: hidden;
}

.dc-table {
    width: 100%;
    border-collapse: collapse;
}
.dc-table tr {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #EAECF0;
}
.dc-table tr:last-child {
    border-bottom: none;
}
.dc-table th {
    flex: 7;
    background: #F7F8F9;
    padding: 24px 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #061C3D;
    text-align: left;
    display: flex;
    align-items: center;
    border: none;
    box-sizing: border-box;
}
.dc-table td {
    flex: 3;
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #EAECF0;
    box-sizing: border-box;
}

/* ── PDF Icons ── */
.dc-pdf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.dc-pdf-link:not(.disabled):hover {
    transform: scale(1.1);
    opacity: 0.8;
}
.dc-pdf-link.disabled {
    cursor: not-allowed;
    opacity: 0.3;
    filter: grayscale(1);
}
.dc-pdf-link img {
    display: block;
    width: 56px;
    height: auto;
}

/* ── Responsive Styling ── */
@media (max-width: 768px) {
    .dc-title-band {
        font-size: 20px;
        padding: 14px 32px 14px 20px;
    }
    .dc-section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .dc-table th {
        font-size: 15px;
        padding: 16px 20px;
    }
    .dc-table td {
        padding: 12px;
    }
    .dc-pdf-link img {
        width: 44px;
    }
}

@media (max-width: 480px) {
    .dc-table tr {
        flex-direction: column;
    }
    .dc-table td {
        width: 100%;
        border-left: none;
        border-top: 1px solid #EAECF0;
        padding: 16px;
        justify-content: flex-start;
        padding-left: 20px;
    }
    .dc-table td::before {
        content: "ダウンロード :";
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #6A778B;
        margin-right: 12px;
    }
}
