@charset "UTF-8";

/* --- Privacy Page Style --- */

.privacy-wrapper {
    flex: 1;
    padding: 120px 20px 80px; /* Header分調整 */
    background: var(--bg-body);
}

/* Card Style */
.privacy-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 43, 76, 0.05);
    position: relative;
    overflow: hidden;
}

/* Header */
.page-head {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.page-head h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 10px;
}
.sub-head {
    font-family: var(--font-en);
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Sections */
.policy-section {
    margin-bottom: 60px;
}
.policy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    border-left: 5px solid var(--line-green);
    padding-left: 15px;
    margin-bottom: 25px;
}
.policy-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Numbered List */
.policy-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.policy-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
}
.policy-list li::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--accent-blue);
    font-family: var(--font-en);
}

/* Purpose Block */
.purpose-block {
    margin-bottom: 30px;
    background: #fcfcfc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.purpose-block h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}
.purpose-block ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.purpose-block li { margin-bottom: 5px; }

/* Check List */
.check-list {
    list-style: none;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}
.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
}
.check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--line-green);
}

/* Address Box */
.address-box {
    background: var(--text-main);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}
.address-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px !important;
    color: #fff;
}
.address-box p {
    color: #e0e0e0;
    margin-bottom: 0;
    text-align: center;
}

/* Animation */
.js-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; 
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-wrapper { padding: 80px 0px 40px; }
    .privacy-card { padding: 30px 20px; }
    .page-head h1 { font-size: 1.5rem; }
    .policy-section h2 { font-size: 1.2rem; }
}