@charset "utf-8";
/*===========================
common
===========================*/
:root {
    font-size: calc(100vw/375);
    --primary-black: #222222;
    --primary-white: #FFFFFF;
    --primary-pink: #FFA2AF;
    --primary-orange: #FFD188;
    --primary-beige: #F8F3EB;
}

/* pc */
@media screen and (min-width: 769px) {
    :root {
        font-size: calc(100vw/1440);
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
        content: '';
    }
}

body {
    font-family: 
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-black,#222222);
    background-color: var(--primary-beige,#F8F3EB);
}

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

.pcBr {
    display: none;
}


/* ーーーーーー　header ーーーーーー*/

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--primary-beige);
}

.header__box {
    width: 100%;
    display: flex;
    padding: 0 30rem;
    justify-content: space-between;
    align-items: center;
    height: 80rem;
}
@media screen and (min-width: 769px) {
    .header__box {
        padding: 0 100rem;
        height: 100rem;
    }
}

.header__topic ,
.footer__topic {
    width: 73rem;
    height: 36rem;
}
@media screen and (min-width: 769px) {
    .header__topic ,
    .footer__topic {
        width: 102rem;
        height: 50rem;
    }
}


/* ーーーーーー　nav ーーーーーー*/

.nav {
    width: 100%;
    height: 100vh;
    background: #F8EDDA;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow: auto;
}
@media screen and (min-width: 769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }
}

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

.nav__header {
    display: flex;
    padding: 24.5px 30rem;
    justify-content: flex-end;
    align-items: center;
    height: 80rem;
}
@media screen and (min-width: 769px) {
    .nav__header {
        display: none;
    }
}

.nav__headerBtn {
    width: 20px;
    height: 20px;
}
@media screen and (min-width: 769px) {
    .nav__headerBtn {
        display: none;
    }
}

.nav__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (min-width: 769px) {
    .nav__content {
        flex-direction: row;
        gap: 0 50rem;
    }
}

.nav__logo {
    width: 122px;
    height: 60px;
}
@media screen and (min-width: 769px) {
    .nav__logo {
        display: none;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px 0;
    margin-top: 40px;
}
@media screen and (min-width: 769px) {
    .nav__list {
        flex-direction: row;
        gap: 0 50rem;
        margin-top: 0;
    }
}

.nav__item {
    color: var(--primary-black, #222);
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-weight: 700;
}
@media screen and (min-width: 769px) {
    .nav__item {
        font-size: 24rem;
    }
}

.nav__reserveBtn {
    width: 196px;
    height: 50px;
    margin-top: 40px;
    transition: 0.7s;
}
@media screen and (min-width: 769px) {
    .nav__reserveBtn {
        display: none;
    }
}

.nav__reserveBtn:hover {
    opacity: 0.7;
}

.nav__instaIcon {
    width: 35px;
    height: 35px;
    margin-top: 30px;
}
@media screen and (min-width: 769px) {
    .nav__instaIcon {
        width: 36rem;
        height: 36rem;
        margin-top: 0;
    }
}

.header__reserveSpBtn {
    width: 118rem;
    height: 40rem;
    transition: 0.7s;
}
@media screen and (min-width: 769px) {
    .header__reserveSpBtn {
        display: none;
    }
}

.header__reserveSpBtn:hover {
    opacity: 0.7;
}

.header__reservePcBtn  {
    display: none;
}
@media screen and (min-width: 769px) {
    .header__reservePcBtn {
        display: block;
        width: 203rem;
        height: 50rem;
        transition: 0.7s;
    }
}

.header__reservePcBtn:hover {
    opacity: 0.7;
} 

.header__content {
    display: flex;
    align-items: center;
    gap: 40rem;
}
@media screen and (min-width: 769px) {
    .header__content {
        display: none;
    }
}

.header__menuBtn {
    width: 27rem;
    height: 20rem;
}


/* ーーーーーー　footer ーーーーーー*/

.footer {
    padding: 30rem 30rem 50rem;
    border-top: 1rem solid #D5D5D5;
}
@media screen and (min-width: 769px) {
    .footer {
        padding: 50rem 100rem;
    }
}

.footer__topicBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__topicGroup {
    display: flex;
    gap: 0 30rem;
    align-items: center;
}
@media screen and (min-width: 769px) {
    .footer__topicGroup {
        gap: 0 50rem;
    }
}

.footer__instaIcon {
    width: 30rem;
    height: 30rem;
}
@media screen and (min-width: 769px) {
    .footer__instaIcon {
        width: 40rem;
        height: 40rem;
    }
}

.footer__nav {
    display: none;
}
@media screen and (min-width: 769px) {
    .footer__nav {
        display: flex;
        gap: 0 50rem;
    }

    .nav__item--footer {
        font-size: 32rem;
    }
}

.footer__address {
    display: flex;
    flex-direction: column;
    gap: 20rem 0;
    margin-top: 35rem;
    padding-bottom: 35rem;
    border-bottom: 1rem solid #9D9C9C;
}
@media screen and (min-width: 769px) {
    .footer__address {
        margin-top: 80rem;
        padding-bottom: 80rem;
        border-bottom: none;
    }
}

.footer__address li {
    color: var(--primary-blackblack, #222);
    font-size: 14rem;
}

.copy {
    margin-top: 20rem;
    color: var(--primary-blackblack, #222);
    font-size: 8rem;
}
@media screen and (min-width: 769px) {
    .copy {
        font-size: 12rem;
        text-align: center;
    }
}


/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 50rem);
    opacity: 0;
    transition: 1.2s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}



/* fadeOut */

.fadeIn--mv {
    transform: translate(0, 50rem);
    opacity: 0;
    transition: 1.5s;
}

.fadeIn--mv.animated {
    transform: none;
    opacity: 1;
}