/* セクション */
.downtime-section {
    background-color: #fafafa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #8b5a8e;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* ポイントアイテム */
.point-item {
    background-color: #fff;
    border-left: 5px solid #8b5a8e;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.point-number {
    font-size: 20px;
    font-weight: bold;
    color: #8b5a8e;
    margin-bottom: 15px;
    line-height: 1.6;
}

.point-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* 結論部分 */
.conclusion {
    background: linear-gradient(135deg, #f5e6f5 0%, #e6d9e6 100%);
    padding: 35px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(139, 90, 142, 0.15);
}

.conclusion-text {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    text-align: center;
}

/* タブレット（1024px以下） */
@media screen and (max-width: 1024px) {
    .downtime-section {
        padding: 50px 0;
    }

    .container {
        padding: 0 25px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .point-item {
        padding: 25px;
        margin-bottom: 25px;
    }

    .point-number {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .point-text {
        font-size: 14px;
    }

    .conclusion {
        padding: 30px;
        margin-top: 35px;
    }

    .conclusion-text {
        font-size: 14px;
    }
}

/* スマートフォン（599px以下） */
@media screen and (max-width: 599px) {
    .downtime-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .point-item {
        border-left-width: 4px;
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .point-number {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .point-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .conclusion {
        padding: 20px;
        margin-top: 30px;
        border-radius: 6px;
    }

    .conclusion-text {
        font-size: 13px;
        line-height: 1.8;
    }
}
