/* ===================================
   利用規約ページ - Page Specific Styles
   =================================== */

/* Body - Fixed Header対応 */
body {
    padding-top: 60px;
}

/* Main Content Area */
.main-content {
    padding: 60px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 400px);
}

/* Container */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Page Title */
.page-title {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5em;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.2em;
}

/* Intro Section */
.intro {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.intro h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Chapter Styles */
.chapter {
    margin-bottom: 40px;
}

.chapter-title {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Article Styles */
.article {
    margin-bottom: 30px;
}

.article-title {
    color: #34495e;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.article-content {
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Definition List */
.definition-list {
    margin-bottom: 15px;
}

.definition-list .term {
    margin-bottom: 10px;
    margin-left: 20px;
}

/* Numbered List */
.numbered-list {
    margin-left: 0;
    margin-bottom: 15px;
    list-style: none;
}

.numbered-list li {
    margin-bottom: 10px;
    padding-left: 60px;
    position: relative;
}

.numbered-list li span.number {
    position: absolute;
    left: 0;
    color: #333;
}

/* Effective Date */
.effective-date {
    text-align: right;
    margin-top: 50px;
    font-weight: bold;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section h2 {
        font-size: 1.25rem;
    }
}