@charset "utf-8";

.privacy-policy {
    --privacy-gutter: 80px;
    width: min(100% - (var(--privacy-gutter) * 2), 980px);
    margin: 0 auto;
    padding: 360px 0 140px;
}

#header .nav-menu li {
    color: #1e1e1e;
}

#header .nav-menu li a::after {
    background: #1e1e1e;
}

.nav-btn {
    text-align: center;
}

.privacy-policy__title {
    font-family: var(--font-serif-en);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.privacy-policy__title::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    margin-top: 34px;
    background: #1e1e1e;
    opacity: 0.34;
}

.privacy-policy__lead {
    max-width: 740px;
    margin-top: 48px;
    margin-bottom: 64px;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.3;
    letter-spacing: 0.08em;
}

.privacy-policy__section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 50px 0;
    border-top: 1px solid rgb(230 230 230);
}

.privacy-policy__section:last-child {
    border-bottom: 1px solid rgb(230 230 230);
}

.privacy-policy__section h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.1;
    letter-spacing: 0.08em;
    font-family: var(--font-serif-jp);
}

.privacy-policy__section p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: 0.08em;
}

.privacy-policy__section p+p {
    margin-top: 18px;
}

.privacy-policy__list {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: 0.08em;
}

.privacy-policy__list li {
    position: relative;
    padding-left: 1.2em;
}

.privacy-policy__list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.privacy-policy__list--links {
    gap: 14px;
    margin-top: 24px;
}

.privacy-policy__list--links li {
    display: grid;
    gap: 2px;
}

.privacy-policy__list a {
    color: inherit;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.25s ease;
}

.privacy-policy__list a:hover,
.privacy-policy__list a:focus-visible {
    opacity: 0.72;
}

#footer {
    padding: 120px 0 70px;
}

.footer-symbol {
    width: 32%;
    top: 54%;
    right: -2%;
}

@media screen and (max-width: 1670px) {
    .footer-symbol {
        width: 32%;
        top: 65%;
        right: -2%;
    }
}

@media screen and (max-width: 1366px) {
    .footer-symbol {
        width: 38%;
        top: 66%;
        right: -3%;
    }
}

@media screen and (max-width: 1199px) {
    .footer-symbol {
        width: 43%;
        top: 68%;
        right: -3%;
    }

    .privacy-policy {
        --privacy-gutter: 48px;
    }
}


@media screen and (max-width: 899px) {
    .bar {
        background-color: #1e1e1e;
    }

    .toggle-menu-button {
        top: 30px;
        right: 30px;
    }

    .privacy-policy {
        padding: 300px 0 140px;
    }

    .privacy-policy__title {
        font-size: 30px;
    }

    .privacy-policy__lead {
        margin-bottom: 48px;
    }

    .footer-symbol {
        width: 58%;
        top: 78%;
        right: -18%;
    }
}

@media screen and (max-width: 767px) {
    .privacy-policy {
        --privacy-gutter: 40px;
    }
}

@media screen and (max-width: 599px) {
    .footer-symbol {
        width: 75%;
        top: 86%;
        right: -26%;
    }

    .privacy-policy {
        --privacy-gutter: 30px;
    }
}