@charset "UTF-8";


/* =========================
   Privacy Policy
========================= */

.privacy-main {
    background-color: var(--color-white);
}

.privacy {
    padding: 100px 24px 120px;
}

.privacy-inner {
    width: min(860px, 100%);
    margin: 0 auto;
}


/* =========================
   Title
========================= */

.privacy-title {
    font-family: var(--font-base);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;

    color: var(--color-green);
}


/* タイトル下の小さなゴールドライン */

.privacy-title::after {
    content: "";
    display: block;

    width: 200px;
    height: 1px;

    margin: 20px auto 0;

    background-color: rgba(199, 162, 76, 0.75);
}


/* =========================
   Lead
========================= */

.privacy-lead {
    max-width: 650px;

    margin: 50px auto 0;

    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;

    text-align: center;

    color: var(--color-text);
}


/* =========================
   Content
========================= */

.privacy-content {
    margin-top: 75px;
}


/* =========================
   Item
========================= */

.privacy-item {
    position: relative;

    padding-bottom: 46px;
}

.privacy-item + .privacy-item {
    margin-top: 46px;
}


/* 項目の間の薄いライン */

.privacy-item:not(:last-child)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background-color: rgba(199, 162, 76, 0.18);
}


/* =========================
   Heading
========================= */

.privacy-item h2 {
    position: relative;

    margin: 0 0 24px;
    padding-left: 18px;

    font-family: var(--font-profile);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;

    color: var(--color-green);
}


/* 見出し横のゴールドアクセント */

.privacy-item h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    background-color: var(--color-gold-light);

    transform: translateY(-50%) rotate(45deg);
}


/* =========================
   Text
========================= */

.privacy-item p {
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;

    color: var(--color-text);
}


/* =========================
   Contact
========================= */

.privacy-contact {
    padding-bottom: 0;
}

.privacy-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: min(320px, 100%);
    min-height: 60px;

    margin: 38px auto 0;
    padding: 14px 28px;

    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;

    color: var(--color-white);
    background-color: var(--color-green);

    border-radius: 999px;

    transition:
        opacity 0.3s,
        transform 0.3s;
}

@media (hover: hover) {

    .privacy-contact-link:hover {
        opacity: 0.82;
        transform: translateY(-2px);
    }
}


/* =========================
   Tablet
   768px〜900px
========================= */

@media (min-width: 768px) and (max-width: 900px) {

    .privacy {
        padding: 90px 40px 110px;
    }

    .privacy-inner {
        width: min(760px, 100%);
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-lead {
        margin-top: 44px;

        font-size: 15px;
    }

    .privacy-content {
        margin-top: 65px;
    }

    .privacy-item h2 {
        font-size: 21px;
    }

    .privacy-item p {
        font-size: 15px;
    }
}


/* =========================
   SP
   767px以下
========================= */

@media (max-width: 767px) {

    .privacy {
        padding: 60px 24px 90px;
    }
    

    /* タイトル */

    .privacy-title {
        font-size: 24px;
    }

    .privacy-title::after {
        width: 100px;
        margin-top: 16px;
    }


    /* リード */

    .privacy-lead {
        margin-top: 36px;

        font-size: 14px;
        line-height: 1.9;

        text-align: left;
    }

    .privacy-pc-br {
        display: none;
    }


    /* 本文 */

    .privacy-content {
        margin-top: 55px;
    }

    .privacy-item {
        padding-bottom: 36px;
    }

    .privacy-item + .privacy-item {
        margin-top: 36px;
    }


    /* 見出し */

    .privacy-item h2 {
        margin-bottom: 20px;
        padding-left: 16px;

        font-size: 19px;
    }

    .privacy-item h2::before {
        width: 5px;
        height: 5px;
    }


    /* 本文 */

    .privacy-item p {
        font-size: 14px;
        line-height: 1.9;
    }


    /* お問い合わせ */

    .privacy-contact-link {
        width: min(280px, 100%);
        min-height: 56px;

        margin-top: 30px;

        font-size: 14px;
    }
}


/* =========================
   Small SP
   430px以下
========================= */

@media (max-width: 430px) {

    .privacy {
        padding:
            55px
            20px
            80px;
    }

    .privacy-title {
        font-size: 22px;
    }

    .privacy-lead {
        font-size: 13px;
    }

    .privacy-content {
        margin-top: 48px;
    }

    .privacy-item h2 {
        font-size: 18px;
    }

    .privacy-item p {
        font-size: 13px;
    }

    .privacy-contact-link {
        font-size: 13px;
    }
}