/* =============================
header　下層ページカスタム
============================= */
.header {
    position: static;
}

.header-logo__txt {
    color: var(--primary-black);
}

/* nav初期表示 */
.header.active {
    position: sticky;
}

.header-nav {
    background-color: rgba(from var(--primary-light-gray) r g b / 0.8);
}

.blur-overlay {
    background-color: rgba(from var(--primary-light-gray) r g b / 0.2);
}

/* ハンバーガーメニュー */
.hamburger span {
    background-color: var(--primary-black);
}

/* nav active表示 */
.header-nav.active {
    box-shadow: 1px 1px 8px var(--primary-dark-gray);
}

body.menu-open main,
body.menu-open footer {
    filter: blur(4px);
    transition: filter 0.5s ease;
}

/* header pc */
@media screen and (min-width:769px) {
    .header-nav {
        background-color: transparent;
    }

    .header-nav__item a {
        color: var(--primary-black);
    }

    .header-nav__item a::before {
        background-color: var(--primary-black);
    }
} /* pc 769px */

/* =============================
privacy-policy
============================= */
.article__title {
    letter-spacing: 0.2em;
}

.article__desc {
    margin-top: 56px;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.privacy-policy__wrapper {
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--primary-dark-gray);
    border-bottom: 1px solid var(--primary-dark-gray);
}

.privacy-policy__clause {
    margin-top: 40px;
}

.privacy-policy__clause:first-of-type {
    margin-top: 0;
}

.privacy-policy__title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
    border-left: 3px solid var(--accent-blue);
    padding-left: 16px;
}

.privacy-policy__txt {
    margin-top: 16px;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.privacy-policy__sub-list {
    margin-top: 8px;
    list-style-position: inside;
    list-style-type: decimal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-policy__sub-list li {
    margin-left: 1.4em;
    text-indent: -2rem;
}

.sub-list__lower-alpha {
    margin-top: 4px;
    list-style-position: inside;
    list-style-type: lower-alpha;
}

.sub-list__lower-alpha li {
    margin-left: 1.4em;
    text-indent: -2rem;
}

.sub-list__lower-roman {
    margin-top: 4px;
    list-style-position: inside;
    list-style-type: lower-roman;
}

.sub-list__lower-roman li {
    margin-left: 1.4em;
    text-indent: -2rem;
}

.form {
    border-bottom: 1px solid var(--primary-black);
}

.form:hover {
    background-color: var(--primary-navy);
    color: var(--primary-white);
}

.form:visited {
    color: var(--primary-dark-gray);
    border-bottom: var(--primary-dark-gray);
}


/* privacy-policy pc */
@media screen and (min-width:769px) {
    .article__desc {
        margin-top: 72px;
        font-size: 1.8rem;
    }

    .privacy-policy__wrapper {
        margin-top: 56px;
        padding: 56px 0;
    }

    .privacy-policy__clause {
        margin-top: 64px;
    }

    .privacy-policy__title {
        font-size: 1.7rem;
        padding-left: 24px;
    }

    .privacy-policy__txt {
        margin-top: 16px;
        font-size: 1.8rem;
    }

    .privacy-policy__sub-list {
        margin-top: 12px;
        gap: 12px;
    }

    .sub-list__lower-alpha {
        margin-top: 6px;
    }

    .sub-list__lower-roman {
        margin-top: 6px;
    }
} /* pc 769px */












