@charset "utf-8";

/*====================
common
====================*/
:root {
    --primary-white: #F5F5F5;
    --primary-black: #1A1A1A;
    --primary-gray: #B9B9B9;
    --primary-grayLow: #595959;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
    'Zen Kaku Gothic New',
    sans-serif;
    font-style: normal;
    color: var(--primary-black);
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--primary-white);
}

img {
    max-width: 100%;
    height: auto;
}

.topic {
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 2.4rem;
    line-height: 100%;
}

.img__pc {
    display: none;
}

.btn__pc {
    display: none;
}

/* common pc */
@media screen and (min-width: 769px) {
    .topic {
        font-size: 3.6rem;
    }

    .img__pc {
        display: block;
    }

    .img__sp {
        display: none;
    }

    .btn__pc {
        display: block;
        width: 132px;
        height: 33px;
    }

    .btn__sp {
        display: none;
    }

    .brSp {
        display: none;
    }
}



/*====================
footer
====================*/
.footer {
    padding: 50px 4.2% 25px;
    background-image: url(../images/footer_bg.jpg);
    background-size: cover;
}

.footer__topic {
    color: var(--white, #F5F5F5);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 2rem;
    line-height: 100%;
}

.footerNav__item,
.insta__link,
.copy {
    color: var(--white, #F5F5F5);
    font-family: Inter;
    font-size: 1.2rem;
    line-height: 1;
}

/* 真ん中にしたい */
.footerNav__list {
    display: flex;
    margin-top: 30px;
    gap: 5.3%;
    justify-content: center;
}

.insta__link {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.copy {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.footer__topic::after {
    content: '';
    display: block;
    width: 91.4%;
    height: 1px;
    background-color: var(--primary-white);
    margin: 30px auto 0;
}

.insta__link::before,
.copy::before {
    content: '';
    display: block;
    width: 91.4%;
    height: 1px;
    background-color: var(--primary-white);
    margin: 0 auto 30px;
}

@media screen and (min-width: 769px) {
    .footer {
        padding: 100px 6.9% 50px;
    }

    .footer__topic {
        font-size: 3.6rem;
    }

    .footerNav__item,
    .insta__link,
    .copy {
        font-size: 1.6rem;
    }

    .footerNav__list {
        margin-top: 50px;
    }

    .insta__link {
        margin-top: 50px;
    }

    .copy {
        margin-top: 50px;
    }

    .footer__topic::after {
        margin: 50px auto 0;
    }

    .insta__link::before,
    .copy::before {
        margin: 0 auto 50px;
    }
}