/* ========================================
   利用規約ページ
   ======================================== */

.terms-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.terms-article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.terms-definition-list,
.terms-prohibited-list,
.terms-exception-list {
    margin-bottom: 1.5rem;
}

.terms-footer-content {
    text-align: right;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .terms-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .terms-article-title {
        font-size: 1.3rem;
    }
}

