/* 導入支援ページのスタイル */

.support-section {
    padding: 40px 0 40px 0;
    background-color: white;
}

/* サイドバー（共通スタイルはcommon.cssに移動） */
.support-section .section-sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start; /* stretchを上書き */
    height: calc(100vh - 78px); /* 罫線表示のため高さを設定 */
}

.support-section .sidebar-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: space-between;
}

.support-section .section-main {
    flex: 1;
    min-width: 0;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.support-intro p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.34px;
    line-height: 2.4;
    color: #2f7340;
    margin: 0;
}

.donation-table-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #2f7340;
    background-color: #2f7340;
}

.donation-table th {
    background-color: #eef0ed;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.8px;
    line-height: 1.55;
    color: #2f7340;
    text-align: center;
    border: 1px solid #2f7340;
}

.donation-table td {
    background-color: white;
    padding: 10px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
    color: #2f7340;
    text-align: center;
    border: 1px solid #2f7340;
    padding: 8px;
}

.donation-table .average-row td {
    background-color: #eef0ed;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
    color: #2f7340;
}

.table-footer {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.8px;
    line-height: 1.55;
    color: #2f7340;
    margin: 0;
}
