/* ========================================
   サスティナビリティページ専用CSS
   sustainability.css
   ======================================== */

/* ========================================
   サスティナビリティTOP - カードセクション
   ======================================== */
.sustainability-top-cards {
    padding: 80px 0 120px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.sustainability-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ========================================
   カードスタイル
   ======================================== */
.sustainability-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sustainability-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* カード画像 */
.sustainability-card-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.sustainability-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sustainability-card:hover .sustainability-card-image img {
    transform: scale(1.05);
}

/* カードコンテンツ */
.sustainability-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sustainability-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #333;
}

.sustainability-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* カードリンク */
.sustainability-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5490;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sustainability-card-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sustainability-card-link:hover {
    color: #0356BB;
}

.sustainability-card-link:hover::after {
    transform: translateX(4px);
}

/* 外部サイト表記 - カード用 */
.external-site-note {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-top: 8px;
}

/* ========================================
   社会貢献活動ページ - リード文セクション
   ======================================== */
.lead-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.lead-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.lead-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   社会貢献活動ページ - コンテンツ
   ======================================== */
.csr-activities {
    background-color: #fff;
}

.csr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* CSR活動アイテム */
.csr-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.csr-item:first-child {
    padding-top: 80px;
    border-top: 1px solid #e0e0e0;
}

/* テキストのみのアイテム */
.csr-item-text-only {
    grid-template-columns: 1fr;
}

.csr-item-text-only .csr-content-full {
    max-width: 100%;
}

/* コンテンツエリア */
.csr-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.csr-title {
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    line-height: 1.4;
    margin: 0;
}

.csr-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.csr-text p {
    margin-bottom: 16px;
}

.csr-text p:last-child {
    margin-bottom: 0;
}

/* 画像エリア */
.csr-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.csr-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    /* サスティナビリティTOP */
    .sustainability-top-cards {
        padding: 60px 0 100px;
    }

    .sustainability-cards-grid {
        gap: 32px;
    }

    .sustainability-card-image {
        height: 200px;
    }

    .sustainability-card-content {
        padding: 24px;
    }

    .sustainability-card-title {
        font-size: 20px;
    }

    .sustainability-card-text {
        font-size: 14px;
    }

    /* 社会貢献活動ページ */
    .lead-container,
    .csr-container {
        padding: 0 30px;
    }

    .csr-item {
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .csr-title {
        font-size: 24px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    /* サスティナビリティTOP */
    .sustainability-top-cards {
        padding: 40px 0 80px;
    }

    .sustainability-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sustainability-card-image {
        height: 180px;
    }

    .sustainability-card-content {
        padding: 20px;
    }

    .sustainability-card-title {
        font-size: 18px;
        margin: 0 0 12px;
    }

    .sustainability-card-text {
        font-size: 14px;
        margin: 0 0 16px;
    }

    .sustainability-card-link {
        font-size: 14px;
    }

    /* 社会貢献活動ページ */
    .lead-section {
        padding: 60px 0 40px;
    }

    .lead-container,
    .csr-container {
        padding: 0 20px;
    }

    .lead-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .csr-activities {
        padding: 60px 0 80px;
    }

    .csr-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .csr-content {
        gap: 16px;
    }

    .csr-title {
        font-size: 20px;
    }

    .csr-text {
        font-size: 14px;
    }

    .csr-text p {
        margin-bottom: 12px;
    }
}

/* 小さいモバイル */
@media (max-width: 480px) {
    /* 社会貢献活動ページ */
    .lead-section {
        padding: 40px 0 30px;
    }

    .lead-container,
    .csr-container {
        padding: 0 16px;
    }

    .lead-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .csr-activities {
        padding: 40px 0 60px;
    }

    .csr-item {
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .csr-title {
        font-size: 18px;
    }

    .csr-text {
        font-size: 13px;
    }
}

/* ========================================
   健康経営ページ専用CSS
   ======================================== */

/* 共通コンテナ */
.health-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.health-section {}

/* セクションタイトル */
.health-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 40px;
    line-height: 1.4;
}
.health-sub-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 15px;
}
    .health-sub-title-margin-both{
        margin: 15px 0;
    }

/* 卒煙対策の目標表示 */
.health-smoking-targets {
    margin: 0 0 32px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 2;
    color: #333;
}

.health-smoking-target-row {
    display: flex;
}

.health-smoking-label {
    width: 10em;
    text-align: right;
    flex-shrink: 0;
}

.health-smoking-value {
    margin-left: 1em;
}

/* ========================================
   健康経営宣言セクション
   ======================================== */
.health-declaration {
    padding: 80px 0;
    /*background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);*/
}

.health-declaration-content {
    max-width: 900px;
    margin: 0 auto;
}

.health-text {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 2;
    color: #333;
    font-weight: 400;
    margin: 0 0 32px;
}

.health-declaration-date {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
    text-align: right;
}

/* ========================================
   トップメッセージセクション
   ======================================== */
.health-message {
    padding: 100px 0;
    background: #fff;
}

.health-message-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.health-message-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.9;
    color: #333;
}

.health-message-text p {
    margin: 0 0 24px;
}

.health-message-text p:last-of-type {
    margin-bottom: 40px;
}

.health-message-signature {
    text-align: right;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.health-message-position {
    font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
    color: #666;
    margin: 0 0 8px;
}

.health-message-name {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #003366;
    margin: 0;
}

.health-message-image {
    text-align: center;
}

.health-message-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ========================================
   3つの柱セクション
   ======================================== */
.health-pillars {
    padding: 100px 0;
    background: #f8f9fa;
}

.health-pillars-intro {
    text-align: center;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: -40px auto 60px;
    max-width: 800px;
}

.health-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.health-pillar-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.health-pillar-card:hover {
    border-color: #1a5490;
    box-shadow: 0 8px 24px rgba(26, 84, 144, 0.1);
    transform: translateY(-4px);
}

.health-pillar-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5490 0%, #0356BB 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.health-pillar-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 20px;
    line-height: 1.6;
}

.health-pillar-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
    text-align: left;
}

/* ========================================
   健康経営戦略マップセクション
   ======================================== */
.health-strategy-map {
    padding: 60px 0 0;
    background: #f8f9fa;
}

.health-strategy-map-image {
    max-width: 1000px;
    margin: 0 auto 10px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
    .health-strategy-map-image-kgi{
        margin: 50px auto 10px;
    }

.health-strategy-map-image img {
    width: 100%;
    height: auto;
}

.health-strategy-caption {
    text-align: center;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.health-document-link{
    margin-bottom: 20px;
}
    .health-document-link-kgi{
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .health-document-link a{
        color: #1a5490;
        padding-bottom: 3px;
        border-bottom: 1px solid rgba(26, 84, 144, 1.0);
        transition: all 0.3s ease;
    }
    .health-document-link a:hover{
        color: #1a5490;
        border-color: rgba(26, 84, 144, 0);
    }

/* ========================================
   健康投資管理会計ガイドラインセクション
   ======================================== */
.health-investment {
    padding: 100px 0;
    background: #f8f9fa;
}

.health-investment-intro {
    text-align: center;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: -40px auto 60px;
    max-width: 800px;
}

.health-investment-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.health-investment-table {
    width: 100%;
    border-collapse: collapse;
}

.health-investment-table thead {
    background: linear-gradient(135deg, #1a5490 0%, #0356BB 100%);
}

.health-investment-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.health-investment-table th:last-child {
    border-right: none;
}

.health-investment-table th.category-col {
    width: 180px;
}

.health-investment-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.health-investment-table tbody tr:last-child {
    border-bottom: none;
}

.health-investment-table td {
    padding: 18px 24px;
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.health-investment-table td:last-child {
    border-right: none;
}

.health-investment-table td.category-cell {
    background: #f0f8ff;
    font-weight: 700;
    color: #1a5490;
    text-align: center;
    vertical-align: middle;
    border-right: 2px solid #1a5490;
}

/* ========================================
   推進体制セクション
   ======================================== */
.health-organization {
    padding: 70px 0 10px;
    background: #f8f9fa;
}

.health-organization-intro {
    text-align: center;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: -40px auto 60px;
    max-width: 900px;
}

.health-organization-intro br {
    display: inline;
}

.health-organization-diagram {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* 上部エリア（枠で囲まれた部分） */
.health-org-container {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 3px solid #5a7fa5;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: 40px;
    margin-bottom: 40px;
}

/* SVG矢印 */
.health-org-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.health-org-arrow-path {
    fill: none;
    stroke: #5a7fa5;
    stroke-width: 2;
}

/* ノード共通スタイル */
.health-org-node {
    background: #fff;
    border: 2px solid #5a7fa5;
    border-radius: 8px;
    padding: 16px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.health-org-node-title {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #003366;
    text-align: center;
    line-height: 1.5;
}

.health-org-node-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
    color: #666;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
}

.health-org-node-list {
    font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
    color: #333;
    line-height: 1.8;
}

/* 左側グループ */
.health-org-left-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.health-org-board,
.health-org-committee,
.health-org-manager {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 中央 */
.health-org-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.health-org-promotion-committee {
    background: linear-gradient(135deg, #1a5490 0%, #0356BB 100%);
    border-color: #1a5490;
    padding: 20px 32px;
}

.health-org-promotion-committee .health-org-node-title,
.health-org-promotion-committee .health-org-node-subtitle {
    color: #fff;
}

.health-org-vertical-arrow {
    width: 3px;
    height: 30px;
    background: #1a5490;
    position: relative;
}

.health-org-vertical-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #1a5490;
}

.health-org-general-affairs {
    min-width: 180px;
}

/* 右側グループ */
.health-org-right-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.health-org-insurance,
.health-org-doctor {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* メイン下向き矢印 */
.health-org-main-arrow-down {
    width: 3px;
    height: 50px;
    background: #5a7fa5;
    margin: 0 auto 40px;
    position: relative;
}

.health-org-main-arrow-down::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #5a7fa5;
}

/* 下部セクション */
.health-org-bottom-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.health-org-employee {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #5a7fa5;
    padding: 24px 32px;
}

.health-org-employee-icon {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.health-org-icon-person,
.health-org-icon-family {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.health-org-icon-family {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
}

.health-org-horizontal-arrow {
    width: 60px;
    height: 3px;
    background: #5a7fa5;
    position: relative;
}

.health-org-horizontal-arrow::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid #5a7fa5;
}

.health-org-horizontal-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #5a7fa5;
}

.health-org-external {
    min-width: 200px;
}

/* フィードバック矢印（下から上へ） */
.health-org-feedback-arrow {
    width: 3px;
    height: 60px;
    background: #5a7fa5;
    margin: 0 auto;
    position: relative;
    opacity: 0.5;
}

.health-org-feedback-arrow::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #5a7fa5;
}

/* レスポンシブ対応 - 推進体制 */
@media (max-width: 1024px) {
    .health-org-container {
        padding: 40px 30px;
        gap: 30px;
    }

    .health-org-node {
        padding: 14px 16px;
    }

    .health-org-node-title {
        font-size: 15px;
    }

    .health-org-node-subtitle {
        font-size: 12px;
    }

    .health-org-employee-icon {
        gap: 15px;
    }

    .health-org-icon-person,
    .health-org-icon-family {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .health-organization-intro br {
        display: none;
    }

    .health-org-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .health-org-arrows {
        display: none;
    }

    .health-org-left-group,
    .health-org-right-group {
        gap: 16px;
    }

    .health-org-center {
        gap: 12px;
    }

    .health-org-vertical-arrow {
        height: 25px;
    }

    .health-org-node {
        padding: 12px 16px;
    }

    .health-org-node-title {
        font-size: 14px;
    }

    .health-org-node-subtitle {
        font-size: 11px;
    }

    .health-org-node-list {
        font-size: 13px;
    }

    .health-org-promotion-committee {
        padding: 16px 24px;
    }

    .health-org-main-arrow-down {
        height: 40px;
    }

    .health-org-bottom-section {
        flex-direction: column;
        gap: 30px;
    }

    .health-org-horizontal-arrow {
        width: 3px;
        height: 40px;
        transform: rotate(90deg);
    }

    .health-org-employee-icon {
        gap: 12px;
    }

    .health-org-icon-person,
    .health-org-icon-family {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .health-org-feedback-arrow {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .health-org-container {
        padding: 24px 16px;
        gap: 24px;
    }

    .health-org-node {
        padding: 10px 12px;
    }

    .health-org-node-title {
        font-size: 13px;
    }

    .health-org-node-subtitle {
        font-size: 10px;
        margin-top: 6px;
    }

    .health-org-node-list {
        font-size: 12px;
    }

    .health-org-promotion-committee {
        padding: 14px 20px;
    }

    .health-org-vertical-arrow {
        height: 20px;
    }

    .health-org-main-arrow-down {
        height: 35px;
    }

    .health-org-employee {
        padding: 20px 24px;
    }

    .health-org-employee-icon {
        gap: 10px;
    }

    .health-org-icon-person,
    .health-org-icon-family {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .health-org-horizontal-arrow {
        height: 35px;
    }

    .health-org-feedback-arrow {
        height: 40px;
    }
}

/* ========================================
   健康経営実践宣言書セクション
   ======================================== */
.health-practice-declaration {
    padding: 100px 0;
    background: #f8f9fa;
}

.health-practice-content {
    max-width: 900px;
    margin: 0 auto;
}

.health-practice-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #1a5490;
}

.health-practice-item:last-child {
    margin-bottom: 0;
}

.health-practice-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 16px;
}

.health-practice-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ========================================
   KPIセクション
   ======================================== */
.health-kpi {
    padding: 100px 0;
    background: #fff;
}

.health-kpi-category {
    margin-bottom: 60px;
}

.health-kpi-category:last-child {
    margin-bottom: 0;
}

.health-kpi-category-title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: 4px solid #1a5490;
}

.health-kpi-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.health-kpi-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.health-kpi-table thead {
    background: linear-gradient(135deg, #1a5490 0%, #0356BB 100%);
}

.health-kpi-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.health-kpi-table th:last-child {
    border-right: none;
}

.health-kpi-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.health-kpi-table tbody tr:last-child {
    border-bottom: none;
}

.health-kpi-table tbody tr:hover {
    background-color: #f8f9fa;
}

.health-kpi-table td {
    padding: 18px 24px;
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    color: #333;
}

.health-kpi-table td:nth-child(2),
.health-kpi-table td:nth-child(3),
.health-kpi-table td:nth-child(4),
.health-kpi-table td:nth-child(5) {
    font-weight: 700;
    color: #1a5490;
    text-align: center;
}

/* ========================================
   具体的な取り組みセクション
   ======================================== */
.health-initiatives {
    padding: 50px 0;
    background: #FFF;
}

.health-initiatives-category {
    margin-bottom: 80px;
}

.health-initiatives-category:last-child {
    margin-bottom: 0;
}

.health-initiatives-category-title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 40px;
    padding-bottom: 16px;
    border-bottom: 3px solid #1a5490;
}

.health-initiatives-list {
    padding: 70px 0 0;
    background: #f8f9fa;
}

.health-initiative-item {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    border-left: 4px solid #1a5490;
    transition: all 0.3s ease;
}

.health-initiative-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.health-initiative-title {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 16px;
    line-height: 1.4;
}

.health-initiative-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ========================================
   健康経営優良法人認定セクション
   ======================================== */
.health-certification-section {
    padding: 80px 0 30px;
    background: #fff;
}

.health-certification-layout {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.health-certification-image {
    flex: 0 0 60%;
    text-align: center;
}

.health-certification-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.health-certification-text {
    flex: 0 0 40%;
}

.health-certification-text .health-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.9;
    color: #333;
    margin: 0;
}

/* ========================================
   健康経営優良法人認定調査票セクション
   ======================================== */
.health-survey {
    padding: 100px 0;
    background: #fff;
}

.health-survey-intro {
    text-align: center;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: -40px auto 60px;
    max-width: 800px;
}

.health-survey-category {
    margin-bottom: 60px;
}

.health-survey-category:last-child {
    margin-bottom: 0;
}

.health-survey-category-title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #003366;
    margin: 0 0 24px;
    padding-left: 16px;
    border-left: 4px solid #1a5490;
}

.health-survey-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.health-survey-table {
    width: 100%;
    border-collapse: collapse;
}

.health-survey-table thead {
    background: linear-gradient(135deg, #1a5490 0%, #0356BB 100%);
}

.health-survey-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.health-survey-table th:last-child {
    border-right: none;
}

.health-survey-table th.item-col {
    width: 65%;
}

.health-survey-table th.status-col {
    width: 35%;
    text-align: center;
}

.health-survey-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.health-survey-table tbody tr:last-child {
    border-bottom: none;
}

.health-survey-table td {
    padding: 18px 24px;
    font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
    color: #333;
}

.health-survey-table td.status-achieved {
    text-align: center;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
}

.health-kpi-overview{
    padding: 100px 0 50px;
    background: #f8f9fa;
}

.health-policy-list{
    padding-left: 20px;
}

.health-initiatives-list-items{
    padding-left: 20px;
}
    .health-sub-list{
        padding-left: 20px;
    }

.health-smoking-image{
    margin-bottom: 40px;
}

.health-philosophy{
    padding: 0 0 40px;
}

.health-organization-image{
    max-width: 1000px;
    margin: 0 auto 20px;
    text-align: center;
    background: #FFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========================================
   レスポンシブ対応 - 健康経営ページ
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .health-container {
        padding: 0 30px;
    }

    .health-section-title {
        font-size: 28px;
        margin: 0 0 50px;
    }

    .health-declaration {
        padding: 70px 0;
    }

    .health-text {
        font-size: 16px;
    }

    .health-message {
        padding: 80px 0;
    }

    .health-message-content {
        grid-template-columns: 1fr 300px;
        gap: 50px;
    }

    .health-pillars {
        padding: 80px 0;
    }

    .health-pillars-grid {
        gap: 32px;
    }

    .health-pillar-card {
        padding: 32px 24px;
    }

    .health-pillar-title {
        font-size: 20px;
    }

    .health-strategy-map,
    .health-investment,
    .health-organization,
    .health-practice-declaration,
    .health-kpi,
    .health-initiatives,
    .health-survey {
        padding: 80px 0;
    }

    .health-kpi-category,
    .health-survey-category {
        margin-bottom: 50px;
    }

    .health-kpi-category-title,
    .health-survey-category-title {
        font-size: 22px;
    }

    .health-initiatives-category {
        margin-bottom: 60px;
    }

    .health-initiatives-category-title {
        font-size: 24px;
        margin: 0 0 32px;
    }

    .health-initiatives-list {
        gap: 24px;
    }

    .health-initiative-item {
        padding: 28px;
    }

    .health-certification-section {
        padding: 70px 0;
    }

    .health-certification-layout {
        gap: 50px;
    }

    .health-certification-image img {
        max-width: 450px;
    }

    .health-certification-text .health-text {
        font-size: 15px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .health-container {
        padding: 0 20px;
    }

    .health-section-title {
        font-size: 24px;
        margin: 0 0 40px;
    }

    .health-declaration {
        padding: 60px 0;
    }

    .health-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .health-text br {
        display: none;
    }

    .health-declaration-date {
        font-size: 14px;
    }

    .health-message {
        padding: 60px 0;
    }

    .health-message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .health-message-text {
        font-size: 14px;
    }

    .health-message-text p {
        margin: 0 0 20px;
    }

    .health-message-text p:last-of-type {
        margin-bottom: 32px;
    }

    .health-message-name {
        font-size: 20px;
    }

    .health-message-image img {
        max-width: 250px;
    }

    .health-pillars {
        padding: 60px 0;
    }

    .health-pillars-intro {
        font-size: 14px;
        margin: -30px auto 40px;
    }

    .health-pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .health-pillar-card {
        padding: 28px 24px;
    }

    .health-pillar-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .health-pillar-title {
        font-size: 18px;
    }

    .health-pillar-text {
        font-size: 14px;
    }

    .health-strategy-map,
    .health-investment,
    .health-organization,
    .health-practice-declaration,
    .health-kpi,
    .health-initiatives,
    .health-survey {
        padding: 60px 0;
    }

    .health-strategy-map-image {
        padding: 15px;
    }

    .health-strategy-caption,
    .health-investment-intro,
    .health-organization-intro,
    .health-survey-intro {
        font-size: 14px;
        margin: -30px auto 40px;
    }

    .health-investment-table th,
    .health-investment-table td,
    .health-kpi-table th,
    .health-kpi-table td,
    .health-survey-table th,
    .health-survey-table td {
        padding: 14px 16px;
        font-size: 13px;
    }

    .health-investment-table th,
    .health-kpi-table th,
    .health-survey-table th {
        font-size: 14px;
    }

    .health-kpi-table th,
    .health-kpi-table td {
        padding: 14px 12px;
        font-size: 12px;
    }

    .health-kpi-table th {
        font-size: 13px;
    }

    .health-org-level {
        flex-direction: column;
        gap: 16px;
    }

    .health-org-level-bottom {
        gap: 16px;
    }

    .health-org-box {
        min-width: 100%;
        padding: 20px 24px;
    }

    .health-org-bottom {
        padding: 18px 20px;
    }

    .health-org-arrow-down {
        height: 30px;
        margin: 0 auto 16px;
    }

    .health-practice-item {
        padding: 24px;
        margin-bottom: 20px;
    }

    .health-practice-title {
        font-size: 17px;
        margin: 0 0 12px;
    }

    .health-practice-text {
        font-size: 14px;
    }

    .health-kpi-category,
    .health-survey-category {
        margin-bottom: 40px;
    }

    .health-kpi-category-title,
    .health-survey-category-title {
        font-size: 18px;
        margin: 0 0 20px;
        padding-left: 12px;
    }

    .health-initiatives-category {
        margin-bottom: 50px;
    }

    .health-initiatives-category-title {
        font-size: 20px;
        margin: 0 0 24px;
        padding-bottom: 12px;
    }

    .health-initiatives-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .health-initiative-item {
        padding: 24px;
    }

    .health-initiative-title {
        font-size: 16px;
        margin: 0 0 12px;
    }

    .health-initiative-text {
        font-size: 14px;
    }

    .health-certification-section {
        padding: 60px 0;
    }

    .health-certification-layout {
        flex-direction: column;
        gap: 32px;
    }

    .health-certification-image,
    .health-certification-text {
        flex: 0 0 100%;
    }

    .health-certification-image img {
        max-width: 350px;
    }

    .health-certification-text .health-text {
        font-size: 14px;
    }

    .health-smoking-targets {
        font-size: 14px;
    }

    .health-smoking-label {
        width: 9em;
    }
}

/* 小さいモバイル */
@media (max-width: 480px) {
    .health-container {
        padding: 0 16px;
    }

    .health-section-title {
        font-size: 20px;
        margin: 0 0 32px;
    }

    .health-declaration {
        padding: 50px 0;
    }

    .health-text {
        font-size: 14px;
    }

    .health-declaration-date {
        font-size: 13px;
    }

    .health-message,
    .health-pillars,
    .health-strategy-map,
    .health-investment,
    .health-organization,
    .health-practice-declaration,
    .health-kpi,
    .health-initiatives,
    .health-certification,
    .health-survey {
        padding: 50px 0;
    }

    .health-message-content {
        gap: 32px;
    }

    .health-message-text {
        font-size: 13px;
    }

    .health-message-text p {
        margin: 0 0 16px;
    }

    .health-message-text p:last-of-type {
        margin-bottom: 24px;
    }

    .health-message-signature {
        padding-top: 20px;
    }

    .health-message-position {
        font-size: 13px;
    }

    .health-message-name {
        font-size: 18px;
    }

    .health-message-image img {
        max-width: 200px;
    }

    .health-pillars-intro {
        font-size: 13px;
        margin: -25px auto 32px;
    }

    .health-pillar-card {
        padding: 24px 20px;
    }

    .health-pillar-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
        margin: 0 auto 20px;
    }

    .health-pillar-title {
        font-size: 16px;
        margin: 0 0 16px;
    }

    .health-pillar-text {
        font-size: 13px;
    }

    .health-strategy-map-image {
        padding: 10px;
    }

    .health-strategy-caption,
    .health-investment-intro,
    .health-organization-intro,
    .health-survey-intro {
        font-size: 13px;
        margin: -25px auto 32px;
    }

    .health-investment-table th,
    .health-investment-table td,
    .health-survey-table th,
    .health-survey-table td {
        padding: 12px 12px;
        font-size: 12px;
    }

    .health-investment-table th,
    .health-survey-table th {
        font-size: 13px;
    }

    .health-org-box {
        padding: 16px 20px;
    }

    .health-org-title {
        font-size: 16px;
    }

    .health-org-subtitle {
        font-size: 13px;
    }

    .health-org-detail {
        font-size: 12px;
    }

    .health-practice-item {
        padding: 20px;
        margin-bottom: 16px;
    }

    .health-practice-title {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .health-practice-text {
        font-size: 13px;
    }

    .health-kpi-category,
    .health-survey-category {
        margin-bottom: 32px;
    }

    .health-kpi-category-title,
    .health-survey-category-title {
        font-size: 16px;
    }

    .health-kpi-table th,
    .health-kpi-table td {
        padding: 12px 8px;
        font-size: 11px;
    }

    .health-kpi-table th {
        font-size: 12px;
    }

    .health-initiatives-category {
        margin-bottom: 40px;
    }

    .health-initiatives-category-title {
        font-size: 18px;
        margin: 0 0 20px;
        padding-bottom: 10px;
    }

    .health-initiative-item {
        padding: 20px;
    }

    .health-initiative-title {
        font-size: 15px;
        margin: 0 0 10px;
    }

    .health-initiative-text {
        font-size: 13px;
    }

    .health-certification-layout {
        gap: 24px;
    }

    .health-certification-image img {
        max-width: 280px;
    }

    .health-certification-text .health-text {
        font-size: 13px;
    }

    .health-smoking-targets {
        font-size: 13px;
    }

    .health-smoking-label {
        width: 8.5em;
    }
}

/* ========================================
   健康経営関連実績数値 - テーブルスタイル
   ======================================== */

/* 実績数値セクション */
.health-results {
    padding: 80px 0;
    background: #f8f9fa;
}

.health-results-category {
    margin-bottom: 60px;
}

.health-results-category:last-child {
    margin-bottom: 0;
}

.health-results-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 0 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1a5490;
}

/* テーブルラッパー */
.health-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

/* テーブル基本スタイル */
.health-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

/* テーブルヘッダー */
.health-table thead {
    background: #1a5490;
}

.health-table th {
    padding: 16px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    vertical-align: middle;
}

.health-table th:last-child {
    border-right: none;
}

/* テーブルボディ */
.health-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.health-table tbody tr:last-child {
    border-bottom: none;
}

.health-table tbody tr:hover {
    background-color: #f8f9fa;
}

.health-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.health-table td:last-child {
    border-right: none;
    text-align: right;
}

/* 数値を中央揃え */
.health-table td:nth-child(2),
.health-table td:last-child {
    /* text-align: center; */
}

/* rowspanのセル */
.health-table td[rowspan] {
    vertical-align: top;
}

/* 注釈 */
.health-note {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    line-height: 1.8;
}

.health-note a {
    color: #1a5490;
    text-decoration: none;
    word-break: break-all;
}

.health-note a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .health-results {
        padding: 60px 0;
    }

    .health-results-category {
        margin-bottom: 48px;
    }

    .health-results-category-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .health-table-wrapper {
        margin-bottom: 24px;
        overflow-x: visible;
    }

    /* カード形式テーブル */
    .health-table-card {
        min-width: 0;
    }

    .health-table-card thead {
        display: none;
    }

    .health-table-card tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .health-table-card tbody tr {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .health-table-card tbody tr:hover {
        background: #fff;
    }

    .health-table-card td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }

    .health-table-card td:last-child {
        border-bottom: none;
        text-align: left;
    }

    .health-table-card td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #1a5490;
        flex-shrink: 0;
        margin-right: 16px;
        min-width: 5em;
    }

    /* 1列目（テーマ/研修名）はラベルなし・太字で全幅表示 */
    .health-table-card td:first-child {
        font-weight: 600;
        color: #333;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 12px;
        margin-bottom: 4px;
    }

    .health-table-card td:first-child::before {
        display: none;
    }

    /* メンタルヘルス対策テーブルのrowspan対応 */
    .health-table-card-mental td[rowspan] {
        display: flex;
    }

    .health-table-card-mental tr[data-theme] {
        padding-top: 12px;
    }

    .health-table-card-mental tr[data-theme]::before {
        content: attr(data-theme);
        display: block;
        font-weight: 600;
        color: #333;
        font-size: 13px;
        padding-bottom: 12px;
        margin-bottom: 4px;
        border-bottom: 1px solid #e0e0e0;
    }

    .health-table-card-mental tr[data-theme] td:first-child {
        font-weight: 400;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 8px;
        margin-bottom: 0;
    }

    .health-table-card-mental tr[data-theme] td:first-child::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #1a5490;
    }

    /* colspanのセルは全幅で中央寄せ */
    .health-table-card td[colspan] {
        justify-content: flex-end;
        text-align: right;
        font-weight: 500;
    }

    .health-table-card td[colspan]::before {
        display: none;
    }

    .health-table th,
    .health-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .health-table th {
        font-size: 14px;
    }

    .health-note {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .health-results {
        padding: 48px 0;
    }

    .health-results-category {
        margin-bottom: 40px;
    }

    .health-results-category-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .health-table th,
    .health-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .health-table th {
        font-size: 13px;
    }

    /* カード形式 - 小さいモバイル */
    .health-table-card tbody {
        gap: 10px;
    }

    .health-table-card tbody tr {
        padding: 12px;
    }

    .health-table-card td {
        padding: 6px 0;
        font-size: 13px;
    }

    .health-table-card td::before {
        font-size: 12px;
        min-width: 4.5em;
    }

    .health-table-card td:first-child {
        font-size: 14px;
    }

    .health-table-card-mental tr[data-theme]::before {
        font-size: 12px;
    }

    .health-note {
        font-size: 11px;
    }
}

/* ========================================
   外部サイト表記 - カテゴリ内サイトマップ用
   ======================================== */
.external-site-note-small {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .external-site-note-small {
        font-size: 10px;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .external-site-note-small {
        font-size: 9px;
        margin-top: 2px;
    }
}

/* SDGsアイコン */
.sdgs-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sdg-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sdg-icon {
        width: 60px;
        height: 60px;
    }
    
    .sdgs-icons {
        gap: 8px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sdg-icon {
        width: 50px;
        height: 50px;
    }
}
