/* サイトポリシー専用スタイル */
:root {
    --main-color: #c41e3a; /* クリスマスレッド */
    --text-color: #f8fafc;
    --bg-color: #0f172a;
}

/* 背景の薄い文字演出 */
body::before {
    content: "GUIDELINE";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Oswald', sans-serif;
    font-size: 18vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.page-header-wrapper {
    padding: 160px 20px 60px;
    text-align: center;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-subtitle {
    font-family: "Noto Sans JP", serif;
    font-size: 0.9rem;
    color: var(--main-color);
    margin-top: 15px;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-family: "Kaisei Decol", serif;
    font-size: 1.25rem;
    color: var(--text-color);
    border-left: 4px solid var(--main-color);
    padding-left: 16px;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.policy-list {
    padding-left: 20px;
}

.policy-list li {
    list-style-type: disc;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.policy-list li::marker {
    color: var(--main-color);
}

@media screen and (max-width: 768px) {
    .page-title { font-size: 2.2rem; }
    .page-header-wrapper { padding-top: 120px; }
}

.Bold{
    font-weight: bold;
}