/* rules ページ専用スタイル */

.rules-content {
    max-width: 100%;
}

.page-title {
    background-color: #ffffff;
    border-bottom: 2px solid #0099cc;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.page-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 30px;
    background-color: #0099cc;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 8px;
}

.page-title h2 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

/* ルールセクション */
.rules-section {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
}

.rules-section h3 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0099cc;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li:before {
    content: "■ ";
    color: #0099cc;
    font-weight: bold;
    margin-right: 8px;
}

/* 同意事項セクション */
.agreement-section {
    background-color: #f9f9f9;
    border: 2px solid #0099cc;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 5px;
}

.agreement-text {
    font-size: 13px;
    color: #333;
    line-height: 1.8;
    margin: 10px 0;
}

.agreement-text.emphasis {
    font-weight: bold;
    color: #0099cc;
    font-size: 14px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .rules-section h3 {
        font-size: 14px;
    }

    .rules-list li {
        padding: 8px 12px;
        font-size: 12px;
    }

    .agreement-section {
        padding: 15px;
    }

    .agreement-text {
        font-size: 12px;
    }

    .agreement-text.emphasis {
        font-size: 13px;
    }
}
