/* 取組の前提ページ専用スタイル */

/* セクション全体 */
.premise-section {
    padding: 40px 0;
    background-color: #fff;
}

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

/* メインコンテンツ */
.section-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 848px;
    flex-shrink: 0;
    position: relative;
}

.premise-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.premise-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.34px;
    line-height: 2.4;
    color: #2f7340;
}

.survey-title {
}

.survey-title h3 {
    display: inline-block;
    background-color: #2f7340;
    color: white;
    padding: 10px 40px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 8px;
    margin: 0;
    white-space: nowrap;
}

.statistics-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3.12px;
    line-height: 1.8;
    color: #2f7340;
    margin: 0;
}

.stat-item p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.8;
    color: #2f7340;
    margin: 0;
}

.statistics-table {
    overflow-x: auto;
    margin-bottom: 40px;
}

.statistics-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.statistics-table th,
.statistics-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3.2px;
    line-height: 1.55;
    white-space: nowrap;
}

.statistics-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2f7340;
}

.statistics-table td {
    color: #2f7340;
}

.statistics-table .highlight {
    background-color: #ffebee;
    color: #e62218;
    font-weight: 400;
}
