/* ================================ */
/* 1. セクション全体のレイアウト */
/* ================================ */
.guidelines-section {
    padding-top: 100px; /* 固定ヘッダー分の余白 */
    padding-bottom: 80px;
}

.guidelines-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-color);
}

.guidelines-content p {
    margin-bottom: 20px;
}

/* ================================ */
/* 2. 見出しの装飾 */
/* ================================ */

/* 大見出し (1. 二次創作について 等) */
.guidelines-content h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary-color), #ffa9d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 2px solid #f3f3f3;
    padding-bottom: 8px;
}

/* 小見出し (許可される活動の例 等) */
.guidelines-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.guidelines-content h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.2em;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ================================ */
/* 3. リスト (箇条書き) の装飾 */
/* ================================ */
.guidelines-content ul {
    list-style: none; /* デフォルトの点を消してカスタム */
    padding-left: 5px;
    margin-bottom: 30px;
}

.guidelines-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.guidelines-content li::before {
    content: "●";
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-size: 0.8em;
    top: 0.1em;
}

/* 強調テキスト */
.guidelines-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ガイドライン下部の注意書きエリア */
.guidelines-footer {
    margin-top: 60px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    font-size: 0.95rem;
    border-left: 5px solid var(--primary-color);
}

.guidelines-footer p {
    margin-bottom: 0;
}

/* ================================ */
/* 4. レスポンシブ調整 (スマホ) */
/* ================================ */
@media (max-width: 768px) {
    .guidelines-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .guidelines-content h3 {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .guidelines-content h4 {
        font-size: 1.15rem;
    }

    .guidelines-content {
        font-size: 0.95rem;
    }
}