html {
    background-color: #ffffff;
    scrollbar-width: none;
    transition: all 0.3s;
}

section.topics {
    width: 70vw;
    max-width: 70vw;
    margin: 7% auto 1%;
}

section.privacy-section {
    width: 70vw;
    max-width: 70vw;
    margin: 3% auto 2%;
}

/* 2026-06-01 水戸:font-size を 0.94rem 上限 clamp 化(320px=0.86rem / 1280px+=0.94rem) */
.container p {
    font-size: clamp(0.86rem, 0.82rem + 0.15vw, 0.94rem);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 2rem;
}

ul.purpose-list {
    font-size: clamp(0.86rem, 0.82rem + 0.15vw, 0.94rem);
    font-weight: 400;
    margin: 3% 0px;
    list-style: disc;
    padding: 0 0 0 20px;
    letter-spacing: 0px;
    line-height: 2rem;
}

.purpose-list li {
    padding: 0 0 0 20px;
    margin-bottom: 1%;
}

h2.section-title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0 0 2% 0;
}

section.privacy-section.last {
    margin-bottom: 7%;
}

p.privacy-intro {
    font-size: clamp(0.86rem, 0.82rem + 0.15vw, 0.94rem);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 2.1;
    background-color: #f6f5f2;
    border-radius: 16px;
    padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 3vw, 2.6rem);
    margin: 0 0 clamp(2rem, 5vw, 3.5rem);
}

h1.privacy-title {
    font-weight: 500;
    font-size: 2.4rem;
    margin-bottom: 6%;
    margin-top: 15%;
}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fadein {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fadein.fade-in {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 780px) {
    h1.privacy-title {
        font-weight: 600;
        font-size: 2.4rem;
        margin-bottom: 13%;
        overflow: hidden;
        color: var(--secondary-color) !important;
        transition-delay: 0.6s;
        font-size: 1.4rem;
    }

    section.privacy-section {
        width: 85vw;
        margin: 7% auto 4%;
    }

    .container p {
        font-size: 0.94rem;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 1.6rem;
    }

    section.topics {
        width: 85vw;
        margin: 8rem auto 1%;
    }

    h2.section-title {
        font-weight: 500;
        font-size: 1.2rem;
        margin: 10% 0 5% 0;
    }

    h2.section-title {
        font-weight: 500;
        font-size: 1.1rem;
        margin: 0 0 7% 0;
    }

    ul.purpose-list {
        font-size: 0.94rem;
        font-weight: 400;
        margin: 3% 0px;
        list-style: disc;
        padding: 0 0 0 20px;
        letter-spacing: 0px;
        line-height: 1.6rem;
    }

    section.privacy-section.last {
        margin-bottom: 15%;
    }

    p.privacy-intro {
        font-size: 0.94rem;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 1.6rem;
    }
}