@charset "utf-8";

/* common */
:root {
    --primary-brown: #C08934;
    --secondary-brown: #C7AD7C;
    --primary-beige: #E9E4DE;
    --primary-green: #E4E9E7;
    --primary-black: #252525;
    --primary-white: #fff;
    --contentPadding: 0 5.3%;
    --contentPaddingPC: 0 8.3%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Zen Maru Gothic", serif,
        "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    color: var(--primary-black);
    line-height: 1.7;
    background-color: var(--primary-white);
}

img {
    max-width: 100%;
    height: auto;
}

/* btn, title common */

.btn {
    color: var(--primary-brown, #C08934);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    background: var(--primary-white);
    width: 280px;
    height: 42px;
    padding: 20px 0;
    display: flex;
    border-radius: 90px;
    border: 1px solid var(--primary-brown);
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    transition: 0.4s;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 10px;
    border: 0;
    border-top: solid 1px var(--primary-brown);
    border-right: solid 1px var(--primary-brown);
    transform: rotate(45deg);
    position: absolute;
    top: 16px;
    right: 20px;
}

/* スマホの時のホバーはずして、PCのみへ */
/* .btn:hover {
    background: var(--primary-brown);
    color: var(--primary-white);
    font-weight: 500;
}

.btn:hover::after {
    border-top: solid 2px var(--primary-white);
    border-right: solid 2px var(--primary-white);
} */


/* common topic */
.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topic__title {
    font-family: Sacramento;
    font-size: 4.8rem;
    line-height: 1.2;
}

.topic__subTitle {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
}

/* pc common */
@media screen and (min-width: 769px) {

    .btn:hover {
        background: var(--primary-brown);
        color: var(--primary-white);
        font-weight: 500;
    }
    
    .btn:hover::after {
        border-top: solid 2px var(--primary-white);
        border-right: solid 2px var(--primary-white);
    }
}


/* =========================
header
============================ */
.header {
    padding: 10px 5.3%;
    background-color: rgba(233, 228, 222, 0.70);
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;

}

.header__topic {
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 500;
}

.header__btn {
    width: 40px;
    height: 25px;
}

/* nav初期表示 */
.nav {
    background: rgba(233, 228, 222, 0.85);
    padding: var(--contentPadding);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    transform: translate(-100%);
    transition: transform 0.4s;
}

.nav__header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav__topic {
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 500;
}

.nav__btn {
    width: 20px;
    height: 20px;
}

.nav__list {
    margin-top: 20px;
    gap: 10px;
}

.nav__item {
    padding: 13px 0px;
    color: var(--primary-black);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    align-items: center;
    display: flex;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--primary-black);
    margin-right: 15px;
}

.nav__item:hover {
    opacity: 0.5;

}

.reserve {
    padding: 13px 11.5px;
    background: var(--primary-brown);
    border: 4px solid var(--primary-white);
    box-sizing: content-box;
    display: flex;
    /* width: 140px;
    height: 52px; */
    width: 120px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.reserve__img {
    width: 26px;
    height: 26px;
}

.reserve__txt {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 5px;
    cursor: pointer;
}

.reserve:hover {
    opacity: 0.5;
}

/* nav.active 表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn.active {
    opacity: 0;
    transition: 0.4s;
}



/* pc common */
@media screen and (min-width: 769px) {
    .header {
        padding: 15px 8.3%;
        height: 110px;
    }

    .header__topic {
        font-size: 3.2rem;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        display: flex;
        height: 110px;
        align-items: center;
    }

    .nav__list {
        display: flex;
        align-items: center;
        margin-top: 0;
        gap: 0;
        flex-wrap: wrap;
    }

    .nav__item {
        margin-left: 40px;
    }

    .nav__item::before {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .reserve {
        margin-left: 40px;
        margin-top: 0;
    }
}


/* =============
main
================= */
.main{
    margin-top: 70px;

}

/* pc common */
@media screen and (min-width: 769px) {
    .main {
        margin-top: 110px;
    }
}


/* ==============
footer
================= */
.footer {
    margin-top: 50px;
    padding: 30px 20px;
    background-image: url(../images/bg__footerSP.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.footerGroup__title {
    font-size: 2.4rem;
    font-weight: 500;
}

.address {
    margin-top: 20px;
}

.btn.btn--footer {
    width: 266px;
    background: var(--primary-brown);
    color: var(--primary-white);
    font-weight: 500;
    margin-top: 20px;
    margin-left: 0;
}

.btn.btn--footer::after {
    border-top: solid 2px var(--primary-white);
    border-right: solid 2px var(--primary-white);

}

.btn.btn--footer:hover {
    opacity: 0.5;

}

/* sns */
.footerSns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: right;
}

.footerSns__detail{
    transition: 0.4s;
}


.footerSns__detailGroup {
    display: flex;
    flex-direction: column;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--primary-white);
    align-items: center;
    justify-content: center;
}

.footerSns__icon {
    width: 30px;
    height: 30px;
}

.footerSns__txt {
    color: var(--primary-brown);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
}
/* sns ここまで */

.privacy {
    display: flex;
    margin-top: 20px;
    justify-content: right;
    font-size: 1.4rem;
}

.copy {
    display: flex;
    margin-top: 10px;
    justify-content: right;
    font-size: 1.4rem;
}


/* pc footer */
@media screen and (min-width: 769px) {
.footer {
    padding: 50px 8.3%;
    background-image: url(../images/bg__footerPC.jpg);
}

.footerSns {
    margin-top: 0;
}

.footerSns__detail:hover {
    opacity: 0.5;
}

.btn.btn--footer {
    margin: 30px 0px 0px;
}

.privacy {
    margin-top: 15px;
}

.privacy,
.copy {
    font-size: 1.5rem;
}

}
        