/* Privacy Policy Page */
    .prv-content {
        padding: 64px 0 80px;
    }
    .prv-content .container {
        max-width: 820px;
    }
    .prv-content__title {
        font-size: 28px;
        font-weight: 700;
        color: var(--thm-black);
        text-align: center;
        margin-bottom: 32px;
    }
    .prv-content__lead {
        text-align: center;
        margin-bottom: 48px;
    }
    .prv-content__lead p {
        font-size: 15px;
        line-height: 1.9;
        color: var(--thm-gray);
    }
    .prv-content__section {
        margin-bottom: 40px;
    }
    .prv-content__section:last-child {
        margin-bottom: 0;
    }
    .prv-content__heading {
        font-size: 18px;
        font-weight: 700;
        color: var(--thm-black);
        line-height: 1.5;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--thm-primary-color);
    }
    .prv-content__text p {
        font-size: 15px;
        line-height: 1.9;
        color: var(--thm-gray);
        margin-bottom: 12px;
    }
    .prv-content__text p:last-child {
        margin-bottom: 0;
    }
    .prv-content__list {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
    }
    .prv-content__list li {
        font-size: 15px;
        line-height: 1.9;
        color: var(--thm-gray);
        padding-left: 1.2em;
        position: relative;
        margin-bottom: 4px;
    }
    .prv-content__list li::before {
        content: "・";
        position: absolute;
        left: 0;
    }
    .prv-content__info {
        background: #f7f9fc;
        border-radius: 12px;
        padding: 32px;
        margin-top: 48px;
    }
    .prv-content__info-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--thm-black);
        margin-bottom: 16px;
    }
    .prv-content__info p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--thm-gray);
        margin-bottom: 4px;
    }
    .prv-content__info p:last-child {
        margin-bottom: 0;
    }
    .prv-content__date {
        text-align: right;
        margin-top: 40px;
    }
    .prv-content__date p {
        font-size: 14px;
        color: #8a94a3;
    }
    @media (max-width: 767px) {
        .prv-content {
            padding: 40px 0 60px;
        }
        .prv-content__title {
            font-size: 22px;
            margin-bottom: 24px;
        }
        .prv-content__heading {
            font-size: 16px;
        }
        .prv-content__text p,
        .prv-content__list li,
        .prv-content__lead p {
            font-size: 14px;
        }
        .prv-content__info {
            padding: 24px 20px;
        }
    }