/* ========================================
   プライバシーポリシー
======================================== */

.privacy-page {
    background-color: #ffffff;
}

.privacy-page__hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgb(55 183 233 / 14%),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f5f9ff 0%,
            #edf6ff 55%,
            #f3fbff 100%
        );
}

.privacy-page__hero::before {
    position: absolute;
    top: 0;
    right: 8%;
    width: 1px;
    height: 100%;
    content: "";
    background:
        linear-gradient(
            transparent,
            rgb(3 81 248 / 13%),
            transparent
        );
}

.privacy-page__hero-inner {
    position: relative;
    z-index: 1;
    width: min(
        var(--content-width),
        calc(100% - 48px)
    );
    margin-inline: auto;
}

.privacy-page__label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 19px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.privacy-page__label::before {
    display: block;
    width: 42px;
    height: 2px;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            var(--color-cyan)
        );
    border-radius: 999px;
}

.privacy-page__title {
    margin: 0;
    color: var(--color-navy);
    font-size:
        clamp(37px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.privacy-page__lead {
    margin: 23px 0 0;
    color: #60758b;
    font-size: 15px;
    line-height: 2;
}

.privacy-page__body {
    padding: 100px 0 130px;
}

.privacy-page__inner {
    width: min(
        920px,
        calc(100% - 48px)
    );
    margin-inline: auto;
}


/* ========================================
   本文
======================================== */

.privacy-policy-content {
    color: #50677f;
    font-size: 15px;
    line-height: 2;
}

.privacy-policy-content > *:first-child {
    margin-top: 0;
}

.privacy-policy-content > *:last-child {
    margin-bottom: 0;
}

.privacy-policy-content h2 {
    position: relative;
    margin: 65px 0 25px;
    padding: 0 0 16px 22px;
    color: var(--color-navy);
    font-size:
        clamp(22px, 2.5vw, 29px);
    font-weight: 800;
    line-height: 1.55;
    border-bottom: 1px solid #dce7f2;
}

.privacy-policy-content h2::before {
    position: absolute;
    top: 0.28em;
    bottom: calc(0.28em + 16px);
    left: 0;
    width: 4px;
    content: "";
    background:
        linear-gradient(
            180deg,
            var(--color-primary),
            var(--color-cyan)
        );
    border-radius: 999px;
}

.privacy-policy-content h3 {
    margin: 42px 0 17px;
    color: var(--color-navy);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.65;
}

.privacy-policy-content p {
    margin: 0 0 1.7em;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin: 22px 0 30px;
    padding: 22px 26px 22px 48px;
    background-color: #f6f9fd;
    border: 1px solid #e0eaf4;
    border-radius: 14px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
}

.privacy-policy-content li:last-child {
    margin-bottom: 0;
}

.privacy-policy-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.privacy-policy-content a:hover {
    text-decoration: none;
}

.privacy-policy-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}

.privacy-policy-content th,
.privacy-policy-content td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #dce7f2;
}

.privacy-policy-content th {
    width: 28%;
    color: var(--color-navy);
    font-weight: 800;
    background-color: #f3f8ff;
}


/* ========================================
   スマートフォン
======================================== */

@media (max-width: 700px) {
    .privacy-page__hero {
        padding: 72px 0 65px;
    }

    .privacy-page__hero-inner,
    .privacy-page__inner {
        width: calc(100% - 28px);
    }

    .privacy-page__label {
        gap: 10px;
        margin-bottom: 15px;
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .privacy-page__label::before {
        width: 32px;
    }

    .privacy-page__title {
        font-size: 34px;
        line-height: 1.4;
    }

    .privacy-page__lead {
        margin-top: 17px;
        font-size: 13px;
        line-height: 1.9;
    }

    .privacy-page__body {
        padding: 68px 0 85px;
    }

    .privacy-policy-content {
        font-size: 13px;
        line-height: 2;
    }

    .privacy-policy-content h2 {
        margin-top: 48px;
        padding-left: 17px;
        font-size: 21px;
    }

    .privacy-policy-content h3 {
        margin-top: 34px;
        font-size: 17px;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        padding:
            18px
            18px
            18px
            38px;
    }

    .privacy-policy-content table,
    .privacy-policy-content tbody,
    .privacy-policy-content tr,
    .privacy-policy-content th,
    .privacy-policy-content td {
        display: block;
        width: 100%;
    }

    .privacy-policy-content th {
        border-bottom: 0;
    }
}

@media (max-width: 390px) {
    .privacy-page__hero-inner,
    .privacy-page__inner {
        width: calc(100% - 24px);
    }

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

/* ========================================
   古物営業法に基づく表示
======================================== */

.antique-business-information {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    border: 1px solid #dce7f2;
    border-radius: 16px;
}

.antique-business-information th,
.antique-business-information td {
    padding: 24px 28px;
    text-align: left;
    vertical-align: middle;
    border: 0;
    border-bottom: 1px solid #dce7f2;
}

.antique-business-information tr:last-child th,
.antique-business-information tr:last-child td {
    border-bottom: 0;
}

.antique-business-information th {
    width: 34%;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    background-color: #f3f8ff;
}

.antique-business-information td {
    color: #50677f;
    font-size: 15px;
    font-weight: 700;
    background-color: #ffffff;
}

@media (max-width: 700px) {
    .antique-business-information,
    .antique-business-information tbody,
    .antique-business-information tr,
    .antique-business-information th,
    .antique-business-information td {
        display: block;
        width: 100%;
    }

    .antique-business-information tr {
        border-bottom: 1px solid #dce7f2;
    }

    .antique-business-information tr:last-child {
        border-bottom: 0;
    }

    .antique-business-information th,
    .antique-business-information td {
        padding: 16px 18px;
        border-bottom: 0;
    }

    .antique-business-information th {
        font-size: 12px;
    }

    .antique-business-information td {
        font-size: 14px;
    }
}