@charset "UTF-8";
/* ========================================================================
   custom.css … テンプレ本体を触らずに上書きする専用ファイル
   ======================================================================== */

/* ===== テキストロゴ（ロゴ画像なし＝おまかせテキストで制作） ===== */
.header-logo-text {
    font-family: "Noto Serif JP", "Crimson Text", serif;
    color: #313131;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

/* PC：ヘッダー左のロゴ位置に合わせる（旧 .header-logo-sub と同じ余白） */
@media screen and (min-width: 768px) {
    .header-logo-text.pc {
        font-size: 26px;
        margin-right: 20px;
        margin-top: 7px;
    }
}

/* SP：ドロワー内のロゴ位置に合わせて中央寄せ */
@media screen and (max-width: 767px) {
    .header-logo-text {
        font-size: 24px;
        margin: auto;
    }
}

/* ロゴのホバー挙動（画像ロゴの .header_logo_link:hover と同等） */
a:hover .header-logo-text {
    opacity: 0.6;
    transition: all 0.5s;
}

/* ===== INSTAGRAMセクションと次セクションの間に余白を追加（詰まり解消） ===== */
.top_insta {
    padding-bottom: 60px;
}

/* ===== 下層ページ見出しバナー：写真の上でも白文字が読めるよう暗めオーバーレイ ===== */
.heading1_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}
.heading1_wrap .heading1 {
    position: relative;
    z-index: 1;
}

/* ===== グローバルナビ：WEB予約・Instagram ===== */
@media screen and (min-width: 768px) {
    .gnav_item_reserve {
        display: flex;
        align-items: center;
    }

    .gnav_reserve {
        padding: 9px 14px;
        border: 1px solid #b89c66;
        line-height: 1;
        white-space: nowrap;
    }

    .gnav_reserve:hover {
        color: #fff;
        background: #b89c66;
        opacity: 1;
    }

    .gnav_item_instagram {
        display: flex;
        align-items: center;
    }

    .gnav_instagram {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        transition: opacity 0.5s;
    }

    .gnav_instagram:hover {
        opacity: 0.6;
    }

    .gnav_instagram img {
        display: block;
        width: 34px;
        height: 34px;
        object-fit: contain;
    }
}

@media screen and (max-width: 767px) {
    .gnav_reserve_sp {
        display: inline-block;
        padding: 10px 28px;
        border: 1px solid #b89c66;
        line-height: 1.4;
    }

    .header_nav_instagram_sp {
        margin-top: 18px;
    }

    .gnav_instagram_sp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        transition: opacity 0.5s;
    }

    .gnav_instagram_sp:hover {
        opacity: 0.6;
    }

    .gnav_instagram_sp img {
        display: block;
        width: 44px;
        height: 44px;
        object-fit: contain;
    }
}



/* ===== ヘッダー・フッターナビ整列 + フッター予約/Instagram ===== */
/* PCヘッダー：ロゴ・通常メニュー・予約・Instagramを同じ中央線に揃える */
@media screen and (min-width: 768px) {
    .header_inner {
        align-items: center;
    }

    .header_inner > a {
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .header-logo-text.pc {
        margin-top: 0;
    }

    .gnav {
        display: flex;
        align-items: center;
    }

    .gnav_wrap {
        align-items: center;
    }

    .gnav_item {
        display: flex;
        align-items: center;
    }

    .gmenu,
    .gnav_reserve {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        box-sizing: border-box;
    }

    .gnav_reserve {
        padding: 0 14px;
    }
}

/* フッターナビ */
.footer_link_list {
    align-items: center;
}

.footer_link_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #b89c66;
    box-sizing: border-box;
}

.footer_reserve:hover {
    color: #1b1b1b;
    background: #b89c66;
    opacity: 1;
}

.footer_instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: opacity 0.5s;
}

.footer_instagram:hover {
    opacity: 0.7;
}

.footer_instagram img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .footer_link_reserve .footer_reserve {
        width: auto;
        min-width: 150px;
        padding: 10px 28px;
    }

    .footer_link_instagram .footer_instagram {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }

    .footer_link_instagram .footer_instagram img {
        width: 36px;
        height: 36px;
    }
}
