/* キャンペーン規定ページ用スタイル - 参考: corp.kaitry.com/privacy-policy */

.regulations-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    background-color: #ffffff;
    line-height: 1.8;
    color: #333;
}

.regulations-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.regulations-header h1 {
    font-size: 2.0rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.header-description {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.regulations-main {
    line-height: 1.8;
}

.regulation-section {
    margin-bottom: 50px;
    padding: 0;
}

.regulation-section h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 17px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.02em;
    border-bottom: none;
    padding-bottom: 0;
}

.regulation-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 300;
}

.regulation-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.regulation-section li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}

.regulation-section li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #e9ecef;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-info strong {
    color: #333;
    font-weight: 500;
}

.regulation-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.last-updated {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 300;
}

.company-info {
    font-size: 1.1rem;
    color: #888;
    margin: 0;
    font-weight: 300;
}

/* リンクスタイル */
a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

/* スマートフォン向けデザイン（760px以下） */
@media (max-width: 760px) {
    .regulations-container {
        margin: 0;
        padding: 15px 20px 30px;
        border-radius: 0;
    }
    
    .regulations-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .regulations-header h1 {
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.4;
    }
    
    .header-description {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .regulation-section {
        margin-bottom: 38px;
    }
    
    .regulation-section h2 {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    
    .regulation-section p,
    .regulation-section li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .regulation-section li {
        padding-left: 18px;
    }
    
    .contact-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .regulation-footer {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .last-updated,
    .company-info {
        font-size: 1.1rem;
    }
}