@charset "utf-8";

/*====================
common
====================*/
:root {
    --primary-white: #FFFFFF;
    --primary-pink: #E79C9C;
    --primary-lightpink: #FBEEEE;
    --primary-darkpink: #D85E5E;
    --primary-lightbeige: #FDFDFB;
    --primary-black: #333333;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Zen Kaku Gothic New", 
        "Chewy", 
        "Delius", 
        Arial, 
        sans-serif;
    font-weight: 400;
    color: var(--primary-black, #333333);
    background-color: var(--primary-lightbeige, #FDFDFB);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.btn--typeA {
    display: block;
    color: var(--primary-darkpink, #D85E5E);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 28px;
    border: 1px solid var(--primary-darkpink, #D85E5E);
    background-color: var(--primary-lightbeige, #FDFDFB);
    padding: 16px;
    margin-top: 40px;
    position: relative;
    transition: 0.4s;
}

.btn--typeA::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.btn--typeB {
    display: block;
    color: var(--primary-white, #FFFFFF);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 28px;
    border: 1px solid var(--primary-white, #FFFFFF);
    background-color: var(--primary-pink, #E79C9C);
    padding: 16px;
    margin-top: 40px;
    position: relative;
    transition: 0.4s;
}

.btn--typeB::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/open-new.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.btn--typeA:hover {
    color: var(--primary-white, #FFFFFF);
    background-color: var(--primary-darkpink, #D85E5E);
}

.btn--typeA:hover::after {
    background-image: url(../images/icon-arrow-wht.svg);
}

.btn--typeB:hover {
    color: var(--primary-darkpink, #D85E5E);
    background-color: var(--primary-white, #FFFFFF);
}

.btn--typeB:hover::after {
    background-image: url(../images/open-new-red.svg);
}

/* common pc */
@media screen and (min-width: 769px) {
    .btn {
        width: 295px;
        margin: 40px auto 0;
    }
} /* pc 769px */

/*====================
header
====================*/
.header {
    background-color: var(--primary-lightpink, #FBEEEE);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5.3%;
}

.header__title {
    color: var(--primary-pink, #E79C9C);
    font-family: Chewy;
    font-size: 2rem;
    line-height: 1;
}

.nav {
    background-color: var(--primary-lightpink, #FBEEEE);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.4s;
}

.nav__header {
    display: flex;
    padding: 8px 5.3%;
    justify-content: space-between;
    align-items: center;
}

.nav__title {
    color: var(--primary-pink, #E79C9C);
    font-family: Chewy;
    font-size: 2rem;
    line-height: 1;
}

.nav__btn {
    display: block;
}

.nav__item {
    padding: 27px 5.3%;
    background-color: var(--primary-lightbeige, #FDFDFB);
    border-bottom: 1px solid var(--primary-lightpink, #FBEEEE);
    text-align: center;
    color: var(--primary-black, #333333);
    font-family: Delius;
    font-size: 1.6rem;
    line-height: 1.6;
}

.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header__wrapper {
        max-width: 1280px;
        margin: 0 auto;
        padding: 16px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        gap: 24px;
        align-items: center;
    }

    .nav__item {
        padding: 0;
        background-color: transparent;
        border-bottom: none;
        color: var(--primary-pink, #E79C9C);
        font-size: 2rem;
        line-height: 2;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }
} /* pc 769px */

/*====================
contact
====================*/
.section--contact {
    padding: 80px 10.6% 120px;
    background-color: var(--primary-pink, #E79C9C);
}

.contact__title {
    color: var(--primary-white, #FFFFFF);
    text-align: center;
    font-family: Chewy;
    font-size: 4rem;
    line-height: 1.3;
}

.contact__txt {
    margin-top: 32px;
    color: var(--primary-white, #FFFFFF);
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* contact pc */
@media screen and (min-width: 769px) {
    .section--contact {
        padding: 80px 0 120px;
    }

    .contact__wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact__title {
        font-size: 5.6rem;
    }

    .contact__txt {
        font-size: 1.8rem;
    }

    .spBr {
        display: none;
    }
} /* pc 769px */

/*====================
footer
====================*/
.footer {
    padding: 32px 10.6% 20px;
    background-color: var(--primary-lightpink, #FBEEEE);
    text-align: center;
}

.footerImg {
    text-align: center;
    width: 48px;
    height: auto;
}

.footer__title {
    margin-top: 8px;
    color: var(--primary-darkpink, #D85E5E);
    font-family: Delius;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.footerNav__list {
    display: flex;
    margin-top: 16px;
    height: 93px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footerNav__item {
    width: 93px;
    background-color: var(--primary-lightbeige, #FDFDFB);
    border-radius: 50%;
    color: var(--primary-darkpink, #D85E5E);
    font-family: Delius;
    font-size: 1.6rem;
    line-height: 5.8125;
}

.footer__txt {
    margin-top: 24px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 400;
}

.pcBr {
    display: none;
}

.copy {
    margin-top: 64px;
    background-color: var(--primary-lightpink, #FBEEEE);
    text-align: center;
    color: var(--primary-darkpink, #D85E5E);
    font-size: 1.25rem;
    line-height: 1;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 40px 0;
    }

    .footer__wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footerImg {
        width: 64px;
    }

    .footer__title {
        font-size: 3rem;
    }

    .footerNav__list {
        gap: 16px;
    }

    .footer__txt {
        text-align: center;
        font-size: 1.6rem;
    }

    .pcBr {
        display: block;
    }

    .copy {
        font-size: 1.5rem;
    }
} /* pc 769px */
