/* トイレを止めない仕組みセクション */
.maintenance-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.maintenance-section .section-container {
    padding: 0;
}

.sidebar-content {
    height:auto !important;
}

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

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

/* イントロテキスト */
.maintenance-intro {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.08px;
    line-height: 1.8;
    color: #2f7340;
}

/* フローチャート図 */
.maintenance-diagram {
    width: 100%;
    height: 711px;
    position: relative;
}

.diagram-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* メイン要素のオーバーライド */
.maintenance-section {
    margin: 0;
    max-width: none;
}

/* サイドバーの区切り線を修正 */
.maintenance-section .section-sidebar {
    align-items: flex-start;
}

/* サイドバー統計情報のフォント修正（Barlow Condensedを強制適用） */
.maintenance-section .sidebar-stats .stats-value {
    font-family: 'Barlow Condensed', sans-serif !important;
}