@charset "utf-8";
/* CSS Document */

      /* このページ専用のスタイル */
        /* PC版のスタイル (背景ブロックと影なし) */
        .policy-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 20px 60px;
        }
        .policy-title {
            text-align: left;
            margin-bottom: 40px;
        }
        .policy-title .en {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #333;
            font-family: 'Prata', serif;
        }
        .policy-title .ja {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #555;
            margin-top: 8px;
        }
        .policy-section {
            margin-bottom: 40px;
        }
        .policy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ec4899; /* pink-500 */
            color: #333;
        }
        .policy-section p, .policy-section ul {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1em;
        }
        .policy-section ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        .policy-section li {
            margin-bottom: 0.5em;
        }
        
        /* SP版のスタイル */
        @media (max-width: 768px) {
            .policy-container {
                padding: 100px 15px 40px;
                background-color: #fff;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            }
            .policy-title .en {
                font-size: 1.8rem;
            }
            .policy-title .ja {
                font-size: 1rem;
            }
            .policy-section h2 {
                font-size: 1.2rem;
            }
            .policy-section p, .policy-section ul {
                font-size: 0.9rem;
            }
        }