/* 全体 */
body {
    font-family: "Zen Maru Gothic", "Noto Sans JP", "Montserrat", "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    display: flex;
}

@media(max-width:768px) {
    body {
        font-size: 12px;
        flex-direction: column;
    }
}

img {
    max-width: 100%;
    height: auto;
}

span[lang="en"] {
    font-family: "Montserrat", serif;
    font-weight: 500;
}



.main {
    width: 80%;
    flex: 1;
}

@media(max-width:768px) {
    .main {
        width: 100%;
    }
}

/* ナビゲーションメニュー */
header {
    width: 20%;
    display: flex;
    justify-content: center;
}

.header_inner {
    position: fixed;
    text-align: center;
    top: 0;
    z-index: 100;
}

header h1 {
    padding: 74px 0 50px 0;
}

.header_nav li {
    margin-bottom: 15px;
    color: #666;
}

.icon {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.instagram {
    margin-right: 10px;
}

.nav-top {
    display: none;
}
.header_nav_list span {
    font-weight: 400;
}

@media(max-width:768px) {
    .header {
        width: 100%;
    }

    .header_inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 22px 0;
    }

    .header h1 {
        padding: 5px;
    }
}

/* スマホナビ */
.sp_nav {
    display: none;
}

/* 閉じている時 */
@media(max-width: 768px) {

    .sp_nav {
        display: block;
        position: relative;
        /* クリック領域を確保したい場合 */
        z-index: 999;
        /* 必要に応じて前面に */
        width: 32px;
        /* ボタン自体に横幅を与える */
        height: 32px;
        /* ボタン自体に高さを与える */
    }

    .sp_nav .bar,
    .sp_nav .bar::before,
    .sp_nav .bar::after {
        width: 100%;
        height: 2px;
        background-color: #BB9E71;
        display: block;
        /* ボタン幅と合わせる */
        position: relative;
    }

    .sp_nav .bar::before {
        content: "";
        transform: translateY(-11px);
        transition: transform 0.3s ease-in-out;
    }

    .sp_nav .bar::after {
        content: "";
        transform: translateY(11px);
        transition: transform 0.3s ease-in-out;
    }

    /* 閉じている時 */

    /* 開いているとき */
    .active .sp_nav .bar::before {
        content: "";
        transform: translateY(0);
    }

    .active .sp_nav .bar::after {
        content: "";
        transform: translateY(0);
    }

    .header_nav {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        z-index: 10;
        flex-direction: column;
        background-color: #fff;
        padding: 95px 40px 0;
        color: #666;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .active .header_nav {
        transform: translateX(0);
    }

    .header_nav_list {
        flex-direction: column;
    }


    /* .nav-top（ロゴ＋×ボタン） */
    .header_nav .nav-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 56px;
        /* 高さはお好みで */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
        /* 左右の余白 */
        background-color: #fff;
        /* メニュー背景と揃えるか、半透明に */
        z-index: 20;
        /* メニュー内の他要素より前面 */
    }

    /* ロゴサイズ調整 */
    .header_nav .nav-logo img {
        display: block;
        height: 24px;
        /* 横幅比率に合わせる */
        width: auto;
    }

    /* 閉じるボタン */
    .header_nav .nav-close {
        background: none;
        border: none;
        font-size: 32px;
        /* ×マークの大きさ */
        line-height: 1;
        color: #BB9E71;
        /* ボタン色 */
        cursor: pointer;
        padding: 0;
    }

    /* メニューオープン中はハンバーガー本体を隠したい場合 */
    .active .sp_nav {
        display: none;
    }
}


/* CTA */
.action {
    background-color: #BB9E71;
    border-radius: 20px;
}

.action_inner {
    padding: 60px 45px;
}

.action_copy {
    color: #fff;
    text-align: center;
}

.action_reserve,
.action_contact {
    background-color: #fff;
    border-radius: 20px;
    color: #BB9E71;
    padding: 15px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    box-sizing: border-box;
    text-align: center;
}

.reserve_text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action_reserve span,
.action_contact span {
    font-size: 32px;
}

.action_button {
    display: flex;
    margin-top: 33px;
    gap: 54px;
    justify-content: center;
}

.action_tel {
    display: flex;
    margin-top: 35px;
    justify-content: center;
    align-items: center;
}

.action_tel span {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
}

.icon_line {
    width: 30px;
    height: auto;
}


@media(max-width:768px) {
    .action_button {
        flex-direction: column;
        gap: 16px;
    }

    .action_inner {
        padding: 15px 45px;
    }

    .action_copy {
        padding-top: 15px;
    }

    .action_button span {
        font-size: 16px;
    }

    .action_button p {
        font-size: 10px;
    }

    .action_reserve,
    .action_contact {
        width: 80%;
        padding: 15px 20px;
        margin: 0 auto;
    }

    .action_tel span {
        font-size: 16px;
    }

    .icon_line {
        width: 16px;
        height: auto;
    }
    .icon_tel{
        width: 13px;
        height: auto;
    }

    .action_tel{
        margin-top: 15px;
    }
}

/* フッター */
footer {
    position: relative;
    overflow: hidden;
    margin-top: -95px;
}

.footer {
    background-image: url(/image/footer_back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    justify-content: center;
}

.footer_icon {
    width: 170px;
    height: auto;
}

.footer_text {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    line-height: 150%;
    flex-wrap: nowrap;
}

.footer_inner {
    padding: 162px 0 132px 0;
    max-width: 760px;
}

.footer_copy {
    font-size: 12px;
    text-align: center;
    position: relative;
    margin-top: -20px;
}

@media(max-width:768px) {
    .footer {
        display: block;
        text-align: center;
        /* 中央に寄せる */
    }

    .footer_inner {
        display: block;
        padding: 110px 80px 30px 80px;
        /* 上下・左右の余白をスマホ向けに調整 */
        max-width: none;
        /* PC幅制限を外す */
        margin: 0 auto;
        /* ページ中央に寄せる */
    }

    /* 3. ロゴは中央に寄せる */
    .footer_icon {
        margin: 0 auto 20px;
        /* 下に 20px の余白を追加 */
        width: 150px;
        /* 必要ならサイズを少し小さくしてもよい */
    }

    /* 4. テキスト群も縦並びにして中央寄せ */
    .footer_text {
        display: block;
        /* ブロックに戻す */
        margin: 0 auto;
        /* 中央寄せ */
        gap: 0;
        /* flex gap は不要になるのでリセット */
        line-height: 1.6;
        /* 行間を広めにして読みやすく */
    }

    .footer_copy {
        padding-bottom: 4px;
    }

    .policy{
        margin-top: 10px;
        margin-bottom: 10px;
    }

}