@charset "UTF-8";
/* ===============
common
================== */

:root{
    --primary-white: #fdfdfd;
    --primary-beige: #fdfbe2;
    --primary-brown: #5b4721;
    --primary-blue: #c7fffd;
    --primary-pink: #ffdddd;
    --primary-yellow: #fff694;
    --contentPadding: 2.6%;
    --contentPadding__sp: 14%;
    --contentPadding__pc: 3.4%;
    --contentPadding__pctxt: 15%;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: 
        "Kiwi Maru",
        "Quicksand",
        serif;
    font-style: normal;
    color: var(--primary-brown);
    background-color: var(--primary-white);
    font-weight: 400;
    line-height: 1.6;
    text-decoration-skip-ink: none;
}

small{
    font-size: 100%;
}

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

.topic{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: underline solid var(--primary-beige);
    text-decoration-thickness: 15px;
    text-underline-offset: -5px;
}

.btn{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn a{
    display: flex;
    width: 230px;
    height: 60px;
    border: 1px solid var(--primary-brown);
    border-radius: 50px;
    background-color: var(--primary-white);
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s;
    font-size: 1.5rem;
    font-weight: 500;
}


.btn a:hover{
    opacity: 0.5;
}

/* ===============
header
================== */
.header{
    height: 70px;
    padding: 10px var(--contentPadding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-beige);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 200;
}

.nav__header{
    height: 70px;
    padding: 10px var(--contentPadding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-beige);
}

.nav{
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: 200;
}

.header__img,
.nav__img{
    width: 39px;
    height: 30px;
}

.header__title,
.nav__title{
    display: flex;
    align-items: center;
    width: 245px;
    height: 38px;
    gap: 0 5px;
}

.header__topic a,
.nav__topic a{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1;
}

.header__topic--sub,
.nav__topic--sub{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
}

.header__btn,
.nav__btn{
    width: 50px;
}

.nav__list{
    margin-left: 40px;
}

.nav__item{
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.nav__item a{
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-top: 60px;
}

.nav__item img{
    width: 50px;
    height: 50px;
}

.nav.active{
    transform: translateX(0);
}

/* ===============
footer
================== */
.footer{
    margin-top: 50px;
    padding: 10px var(--contentPadding);
    background-color: var(--primary-beige);
}

.footer__group{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__img{
    width: 39px;
}

.footer__title a{
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.footer__title span{
    font-size: 1.3rem;
}

.btn--footer{
    margin-top: 10px;
}

.btn--footer a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 35px;
    border: 1px solid var(--primary-brown);
    border-radius: 50px;
    background-color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    transition: 0.4s;
}

.footer__address{
    margin-top: 10px;
    font-size: 1.1rem;
}

.address--number{
    font-family: "Quicksand";
    font-weight: 500;
}

.instagram{
    font-family: "Quicksand";
    font-weight: 500;    
}

.instagram__title img{
    width: 15px;
}

.instagram__title{
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.instagram__name{
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 3px;
}

.btn--instagram{
    margin-top: 10px;
}

.btn--instagram a{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 125px;
    height: 35px;
    border: 1px solid var(--primary-brown);
    border-radius: 50px;
    background-color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 2px;
    position: relative;
    transition: 0.4s;
}

.btn--footer a:hover{
    opacity: 0.5;
}

.btn--instagram a:hover{
    opacity: 0.5;
}

.copy{
    margin-top: 10px;
    font-family: "Quicksand";
    font-weight: 500; 
    font-size: 1.1rem;
}


/* pc */
@media screen and (min-width: 769px){
    /* ===============
    common
    ================== */
    .topic{
        font-size: 3.5rem;
        text-decoration-thickness: 30px;
        text-underline-offset: -10px;
    }

    .btn{
        margin-top: 55px;
    }

    .btn a{
        display: flex;
        width: 424px;
        height: 100px;
        font-size: 2.5rem;
        line-height: 1.4;
    }

    /* ===============
    header
    ================== */
    .header,
    .nav__header{
        height: 108px;
        padding: 25px var(--contentPadding__pc);
    }

    .header__img{
        width: 79px;
        height: 58px;
    }

    .header__title{
        width: 420px;
        height: 58px;
        gap: 0 20px;
    }

    .header__topic a{
        font-size: 1.6rem;
    }

    .header__topic--sub{
        font-size: 2.4rem;
    }

    .header__btn{
        display: none;
    }

    .nav__header{
        display: none;
    }

    .nav__list{
        padding: 10px 30px;
        display: flex;
        align-items: center;
        gap: 0 40px;
        margin-left: 0;
        background-color: var(--primary-white);
        border-radius: 50px;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__item{
        font-size: 2rem;
        line-height: 1.4;
        align-items: center;
    }

    .nav__item a{
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .nav__item img{
        display: none;
    }

    /* ===============
    footer
    ================== */
    .footer{
        margin-top: 100px;
        padding: 25px var(--contentPadding__pc);
    }

    .footer__group{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .footer__img{
        width: 90px;
    }

    .footer__topic{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px 25px;
    }

    .footer__title a{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .footer__title span{
        font-size: 2rem;
    }

    .btn--footer{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .btn--footer a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 50px;
        font-size: 2rem;
    }

    .footer__address{
        margin-top: 0;
        font-size: 2rem;
    }

    .instagram__title img{
        width: 60px;
    }

    .instagram__title{
        display: flex;
        align-items: center;
        gap: 0 10px;
    }

    .instagram__name{
        font-size: 2rem;
        line-height: 1.6;
        letter-spacing: 7px;
    }

    .btn--instagram{
        margin-top: 20px;
    }

    .btn--instagram a{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 260px;
        height: 50px;
        border: 1px solid var(--primary-brown);
        border-radius: 50px;
        background-color: var(--primary-white);
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.6;
        letter-spacing: 2px;
    }


    .copy{
        margin-top: 20px;
        font-size: 2rem;
    }
}