/* --- policy.css --- */

.policy-section {
    padding: 100px 0;
    background-color: #f8faff;
}

.policy-content {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.policy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.policy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.policy-num {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--hr-blue);
    background: var(--hr-bg-light);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.policy-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding-top: 8px;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: right;
}

.revision-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.representative {
    font-size: 1rem;
    font-weight: 500;
}

.back-to-top {
    text-align: center;
    margin-top: 50px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 20px;
    }
    .policy-item {
        gap: 15px;
    }
}