/* css/terms.css */

/* コンテナ設定 */
.terms-container {
    max-width: 800px;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ページタイトル */
.terms-container h2 {
    font-size: 2em;
    color: var(--text-color);
    border-bottom: 3px solid var(--main-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* セクション設定 */
.terms-container section {
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}
.terms-container section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}


/* サブ見出し */
.terms-container h3 {
    font-size: 1.4em;
    color: #34495e; /* 濃いめのサブカラー */
    margin-top: 0;
    margin-bottom: 15px;
    border-left: 5px solid #3498db; /* 青色のアクセント */
    padding-left: 10px;
}

/* 日付 */
.enforcement-date {
    text-align: right;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: -10px;
    margin-bottom: 30px;
}

/* テキストの調整 */
.terms-container p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* リストの調整 */
.terms-container ul {
    margin: 15px 0 15px 20px;
    padding: 0;
    list-style: disc;
}
.terms-container ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* モバイル対応 */
@media (max-width: 600px) {
    .terms-container {
        padding: 20px 15px;
        margin: 10px auto;
    }

    .terms-container h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    
    .terms-container h3 {
        font-size: 1.2em;
    }
}