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

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

body {
    font-family:
        "Noto Serif JP",
        sans-serif;
    color: #4A4A4A;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    background-color: #FAF7F0;

}

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

.topic {
    text-align: center;
}

.en {
    font-family: "Cormorant Garamond";
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.ja {
    font-size: 1rem;
    line-height: 1.5;
}

.inner {
    margin-top: 40px;
}

.btn {
    display: flex;
    width: 145px;
    height: 30px;
    padding: 4px 17px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #FFF;
}

.reservationBtn {
    padding: 4px 17px;
    border-radius: 50px;
    border: 1px solid #FFF;
    color: #FFF;
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    line-height: 1.2;
}

.pcbr {
    display: none;
}

/* comon pc */
@media (min-width: 769px) {
    .en {
        font-size: 5.4rem;
    }
    
    .ja {
        font-size: 1.4rem;
    }

    .inner {
        width: 100%;
        max-width: 1000px;
        margin: 64px auto 0;
    }

    .btn {
        width: 160px;
        height: 36px;
    }

    .spbr {
        display: none;
    }

    .pcbr {
        display: block;
    }
}

/* =================================
header
==================================*/
.header {
    background-color: rgba(0, 0, 0, 0.30);
    width: 100%;
    height: 60px;
    position:  fixed;
    z-index: 9999;
    box-sizing:  border-box;
}

.header__container {
    padding: 0 5.33%;
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 110px;
}

.header__logo img {
    display: block;
}

.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    background-color: #659996;
    transition: ease .4s;
}

.nav__content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav__item {
    margin-top: 20px;
    text-align: center;
    font-family: "Cormorant Garamond";
    color: #FFF;
    font-size: 2rem;
    line-height: 1.2;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.nav__sns {
    margin-top: 40px;
}

.nav__sns img {
    width: 20px;
    height: 20px;
}

.nav__map {
    margin-top: 36px;
    text-align: center;
}

.nav__mapTxt {
    text-align: center;
    color: #FFF;
    font-size: 1.3rem;
}

.nav__mapBtn {
    display: inline-flex;
    padding: 1px 2px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #fff;
}

.nav__mapBtn p {
    color: #FFF;
    font-size: 1.3rem;
}

/* ハンバーガーメニュー */
.header__btn {
    width: 32px;
    height: 100%;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

/* ハンバーガーメニューの線 */
.header__btn span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
}

.header__btn span:nth-child(1) {
    top: 0;
}

.header__btn span:nth-child(2) {
    margin: 8px 0;
}

.header__btn span:nth-child(3) {
    top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.nav.active {
    transform: translateX(0);
}

.header__btn.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.header__btn.active span:nth-child(2) {
    opacity: 0;
}

.header__btn.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}

.header__btnbox {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (min-width: 769px) {
    .header {
        height: 70px;
    }

    .header__logo,
    .nav__logo {
        width: 150px;
    }

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

    .nav__content {
        position: static;
        transform: translate(0);
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .nav__list {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    
    .nav__item {
        margin-top: 0;
        font-size: 2rem;
    }

    .nav__sns {
        margin-top: 0;
    }

    .nav__map {
        display: none;
    }
    
    .header__btnbox {
        display: none;
    }

    .header__btn {
        display: none;
    }
}

/* =================================
footer
==================================*/
.footer {
    padding: 48px 5.33% 24px;
    background: #272727;
}

.footer__logo {
    width: 165px;
    height: 54px;
    margin: 0 auto;
}

.footer__list {
    margin-top: 24px;
}

.footer__item {
    margin-top: 16px;
    text-align: center;
    font-family: "Cormorant Garamond";
    color: #FFF;
    font-size: 2rem;
    line-height: 1.2;
}

.footer__sns {
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
}

.footer__sns img {
    width: 20px;
    height: 20px;
}

.footer__mail a {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer__mail a p {
    color: #FFF;
    font-size: 1.3rem;
    line-height: 1;
}

.mail__txt {
    margin-top: 4px;
    color: #FFF;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
}

.copy {
    margin-top: 48px;
    color: #FFF;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1;
}

@media (min-width: 769px) {
    .footer {
        padding: 48px 40px 24px;
    }
    
    .footer__list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
    
    .footer__item {
        margin-top: 12px;
        text-align: center;
        font-family: "Cormorant Garamond";
        color: #FFF;
        font-size: 2rem;
        line-height: 1.2;
    }
}