@charset "UTF-8";

/*==========================
common
==========================*/

:root {

    --primary-white: #FFFDFA;
    --primary-green: #2D6D52;
    --primary-black: #333A3A;
    --primary-brown: #C8622E;

}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.container {
    background-color: var(--primary-white);
    overflow: hidden;
}

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

.txt__en {
    font-family: "Lexend Exa";
}

.topic {
    color: var(--primary-brown);
    font-family: "Lexend Exa";
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.btn:hover {
    opacity: 0.5;
}


/*==========================
header
==========================*/

.header__topic,
.headerNav__topic {
    width: 100px;
    white-space: nowrap;
}

.btn__open,
.btn__close {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.header {
    background-color: rgba(255, 253, 250, 0.8);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header,
.nav__header {
    display: flex;
    padding: 10px 6.6vw;
    justify-content: space-between;
    align-items: center;
}


/* .nav初期表示 */
.nav {
    background-color: rgba(255, 253, 250, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

/* nav active表示 */
.nav.active {
    transform: translateX(0);
}

.btn__open.active {
    display: none;
}

.nav__list {
    font-family: "Lexend Exa";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-top: 100px;
}

.nav__item {
    margin-top: 50px;
}

.nav__item--reservation {
    color: var(--primary-green);
    font-family: "Lexend Exa";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.btn__headerPC {
    display: none;
}

.nav__listPC {
    display: none;
}

/* header PC */
@media screen and (min-width:769px) {

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

    .headerNav__topic {
        display: none;
    }

    .nav__header,
    .btn__open {
        display: none;
    }

    .nav__list {
        display: flex;
        margin-top: 0;
        gap: 50px;
    }

    .nav__item {
        margin-top: 0;
    }

    .nav__item:hover {
        opacity: 0.5;
    }

    .header {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .btn__headerPC {
        display: block;
        color: var(--primary-green);
        font-family: "Lexend Exa";
        font-size: 1.6rem;
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .btn__headerPC:hover {
        opacity: 0.5;
    }

    .nav__item--reservation {
        display: none;
    }

    .spBr {
        display: none;
    }

}


/*==========================
article footer(reservation)
==========================*/

.article__footer {
    margin: 100px 0;
    text-align: center;
}

.reservation__title {
    color: var(--primary-brown);
    text-align: center;
    font-family: "Lexend Exa";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8em;
    letter-spacing: 0.18em;
}

.reservation__txt {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 1.6px;
    margin-top: 30px;
}

.btn__reservation {
    display: block;
    margin: 0 6.66vw;
    background-color: var(--primary-green);
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 1.5px;
    padding: 10px 35px;
    border-radius: 50px;
    margin-top: 30px;
}

.sub__txt {
    font-family: "Lexend Exa";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 180%;
    letter-spacing: 1.4px;
}

.btn__reservation:hover {
    opacity: 0.5;
}

a[href^="tel:"] {
    cursor: text;
}

.no-hover:hover {
    opacity: 1 !important;
}

/* reservation tablet */
@media screen and (min-width:769px) {

    .btn__container {
        display: flex;
        gap: 40px;
        margin-top: 20px;
        justify-content: center;
    }

    .btn__reservation {
        width: 338px;
        margin: 0;
    }

    .btn__reservation {
        width: 338px;
        margin: 0;
    }

    .reservation__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .reservation__txt {
        margin-top: 20px;
    }

    .sub__txt {
        width: auto;
    }

}

/* reservation PC */
@media screen and (min-width:1023px) {

    .article__footer {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 200px 0 150px 0;
    }

    .reservation__title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 150px;

        padding-right: 3.47vw;
        border-right: solid 1px var(--primary-black);
    }

    .reservation__container {
        margin-left: 3.47vw;
    }


}

/*==========================
footer
==========================*/

.footer {
    padding: 50px 0;
    margin: 0 6.66vw;
    border-top: solid 1px var(--primary-black);
}

.footer__logo {
    width: 100px;
}

.footerNav__list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px 12px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.footerNav__item {
    font-family: "Lexend Exa";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 260%;
    width: 38.66vw;
}

.footerNav__item--reservation {
    color: var(--primary-green);
    font-weight: 500;
}

.footer__group {
    margin-top: 50px;
}

.footer__group p {
    font-family: "Lexend Exa";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 10px;
}

.copy {
    font-size: 1.5rem;
    margin-top: 30px;
}

.footerNav__item:hover {
    opacity: 0.5;
}

/* footer PC */
@media screen and (min-width:769px) {

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

    .footerNav__list {
        margin-top: 0;
        gap: 50px;
    }

    .footerNav__item {
        width: auto;
        font-family: "Lexend Exa";
        font-size: 1.6rem;
        font-weight: 500;
        line-height: normal;
    }

}