

/* プライバシーポリシー*/


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --gold: #d4af37;
        --gold-light: #f4d03f;
        --dark: #1a1a2e;
        --cream: #f5f5f0;
        --text-dark: #333;
    }

    body {
        font-family: 'Noto Serif JP', serif;
        line-height: 1.9;
        color: var(--text-dark);
        background: var(--cream);
    }

    /* ヘッダー */
    header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 2px;
        text-decoration: none;
    }

    .back-link {
        padding: 10px 30px;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        font-size: 14px;
    }

    .back-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }

    /* メインコンテンツ */
    main {
        max-width: 900px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .page-title {
        text-align: center;
        font-size: 36px;
        color: var(--gold);
        margin-bottom: 20px;
        font-weight: 400;
        letter-spacing: 3px;
    }

    .page-subtitle {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-bottom: 60px;
    }

    .content-wrapper {
        background: white;
        padding: 60px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    h2 {
        font-size: 24px;
        color: var(--gold);
        margin-top: 50px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--gold);
        font-weight: 500;
    }

    h2:first-child {
        margin-top: 0;
    }

    h3 {
        font-size: 18px;
        color: var(--text-dark);
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    p {
        margin-bottom: 20px;
        line-height: 2;
    }

    ol {
        margin-left: 25px;
        margin-bottom: 30px;
    }

    ol li {
        margin-bottom: 15px;
        line-height: 2;
    }

    .note {
        background: #f9f9f9;
        padding: 20px;
        border-left: 4px solid var(--gold);
        margin: 30px 0;
        border-radius: 4px;
    }

    /* フッター */
    footer {
       
        color:#333;
        padding: 40px 20px;
        text-align: center;
        margin-top: 80px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-info {
        margin-bottom: 20px;
    }

    .footer-info h3 {
        color: var(--gold);
        margin-bottom: 15px;
        font-size: 20px;
    }

    .footer-info p {
        margin: 5px 0;
        font-size: 14px;
    }

    .copyright {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 12px;
        color: rgba(51, 51, 51, 0.5);
    }

    /* レスポンシブ */
    @media (max-width: 768px) {
        .page-title {
            font-size: 18px;
        }

        .content-wrapper {
            padding: 30px 20px;
        }

        h2 {
            font-size: 20px;
        }

        h3 {
            font-size: 16px;
        }

        .header-content {
            flex-direction: column;
            gap: 15px;
        }

        .logo {
            font-size: 20px;
        }

        .back-link {
            padding: 8px 20px;
            font-size: 12px;
        }
    }

    html {
        scroll-behavior: smooth;
    }
