@charset "UTF-8";
/* 全体の設定 */
body {
    font-family: 'Crimson Pro', 'Zen Old Mincho', serif;
    margin: 0;
    background-color: #e1ded8;
    color: #333;
    line-height: 1.8;
    /* ▼下部固定バーが被らないように余白を追加▼ */
    padding-bottom: 60px;
}
/* メインビジュアル */
.mv-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.swiper {
    width: 100%;
    height: 100%;
}
/* Swiperスライド内の画像にアニメーションを適用 */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
    transform: scale(1.01);
    will-change: transform, opacity;
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
    animation: zoomOutAnimation 5s ease-in-out both;
}
@keyframes zoomOutAnimation {
    0% { object-position: 0% 50%; }
    100% { object-position: 100% 50%; }
}
/* スライドごとのテキスト設定 */
.slide-caption {
    position: absolute;
    /* ▼下部固定バーを考慮して少し上に配置▼ */
    bottom: 80px;
    right: 80px;
    z-index: 10;
    color: #fff;
    text-align: right;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.mv-copy h1,
.slide-caption h2 {
    font-size: 2.5rem;
    font-family: 'Zen Old Mincho', serif;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}
/* スライドキャプション内のリンク設定 */
.slide-caption h2 a,
.slide-caption h2 a:visited {
    text-decoration: none;
    color: #fff !important;
    transition: opacity 0.3s;
}
.slide-caption h2 a:hover {
    opacity: 0.7;
}
/* スライドキャプションの英字部分（Lunch/Dinner等）の下線設定 */
.slide-caption h2 span {
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    color: #fff !important;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    margin-bottom: 5px;
    line-height: 1;
}
.mv-copy {
    position: absolute;
    top: 20px;
    left: 80px;
    z-index: 9005;
    color: #fff;
    text-align: left;
    width: auto;
}
/* コンテンツレイアウト */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 150px;
}
.flex-box.reverse {
    flex-direction: row-reverse;
}
.text-area, .image-area {
    flex: 1;
}
.image-area img {
    width: 100%;
    height: auto;
    display: block;
}
/* PC・共通設定 */
.image-area iframe {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 8px;
}
/* --- スマホ用設定 (820px以下) --- */
@media screen and (max-width: 820px) {
    .flex-box.reverse {
        flex-direction: column;
    }
    .image-area.map-area {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .image-area iframe {
        height: 300px;
        border-radius: 0;
    }
}
h2 span {
    display: block;
    font-size: 0.5em;
    font-family: 'Crimson Pro';
    color: #888;
}
/* --- スマホ用設定 (820px以下) --- */
@media screen and (max-width: 820px) {
    .container {
        padding: 60px 20px;
    }
    .flex-box, .flex-box.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }
    .text-area, .image-area {
        width: 100%;
        text-align: center;
    }
    .mv-copy h1 {
        font-size: 1.5rem;
    }
    .mv-copy {
        top: 30px;
        left: 40px;
    }
    .slide-caption {
        /* ▼下部固定バーを考慮して少し上に配置▼ */
        bottom: 80px;
        right: 40px;
    }
    .mv-copy h1,
    .slide-caption h2 {
        font-size: 1.5rem;
    }
}
/* ロード画面全体のスタイル */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e1ded8;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
/* 中央のロゴ・文字の演出 */
.loader-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    letter-spacing: 0.2em;
    animation: pulse 2s infinite ease-in-out;
}
/* ぼわ〜んと光るようなアニメーション */
@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}
/* ロード完了後に消すためのクラス */
#loader.loaded {
  opacity: 0;
  visibility: hidden;
}
/* 枠全体のレイアウト：角の内側を丸くしたデザイン */
body::before {
    content: "";
    position: fixed;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    z-index: 9000;
    pointer-events: none;
    border: 55px solid #cca673;
    border-radius: 80px;
    opacity: 1;
}
/* body::after は使用しないため解除 */
body::after {
    content: none;
}
/* --- ハンバーガーボタンのデザイン --- */
.hamburger-menu {
    display: block; /* PCでは隠す */
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(7, 7, 7, 0.5);
    z-index: 9002;
    cursor: pointer;
    border-radius: 4px;
}
/* 中の3本線 */
.hamburger-menu span {
    display: block;
    position: absolute;
    left: 12px;
    width: 26px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
}
.hamburger-menu span:nth-child(1) { top: 16px; }
.hamburger-menu span:nth-child(2) { top: 24px; }
.hamburger-menu span:nth-child(3) { top: 32px; }
/* 開いた時の「×」アニメーション */
.hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(-45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(45deg); }
/* --- メニュー画面（オーバーレイ） --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(225, 222, 216, 0.98);
    z-index: 9001;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ▼縦並びにするための追加▼ */
    flex-direction: column;

    /* 初期状態を確実に隠す */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s ease;
}
/* メニュー内のロゴ設定 */
.nav-logo {
    position: absolute;
    top: 40px;
    left: 50px;
}
.nav-logo img {
    width: 60px; /* ロゴのサイズ */
    height: auto;
}
@media screen and (max-width: 820px) {
    .nav-logo {
        top: 30px;
        left: 30px;
    }
}
/* アクティブ時 */
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
    /* ▼電話番号との余白▼ */
    margin-bottom: 20px;
}
.nav-overlay ul li { margin-bottom: 30px; }
.nav-overlay ul li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-family: 'Zen Old Mincho', serif;
}
.nav-overlay ul li a span {
    display: block;
    font-size: 12px;
    font-family: 'Crimson Pro', serif;
    color: #888;
}
/* メニュー内右下のリンク */
.nav-footer-link {
    position: absolute;
    /* ▼固定バーと被らないように修正▼ */
    bottom: 80px;
    right: 50px;
    text-decoration: none;
    color: #333;
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}
.nav-footer-link:hover {
    opacity: 0.6;
}
/* --- スマホ用表示切り替え --- */
@media screen and (max-width: 820px) {
    .hamburger-menu { display: block; }
    .nav-footer-link {
        /* ▼固定バーと被らないように修正▼ */
        bottom: 80px;
        right: 30px;
        font-size: 18px;
    }
}
/* ========================================================
   追加：言語切り替えボタンのデザイン
======================================================== */
.lang-switch {
    position: fixed;
    top: 20px;
    right: 80px;
    z-index: 100;
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
}
.lang-switch .lang-btn {
    opacity: 0.5;
    transition: opacity 0.3s;
}
.lang-switch .lang-btn.active {
    opacity: 1;
    font-weight: bold;
}
.en {
    display: none;
}
body.lang-en .ja {
    display: none;
}
body.lang-en .en {
    display: inline-block;
}
/* ========================================================
   追加：ハンバーガーメニュー内の電話番号
======================================================== */
.nav-contact {
    text-align: center;
    margin: 10px auto 20px;
    color: #333;
}
.nav-contact p {
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.8;
}
.nav-contact .nav-phone {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(51,51,51,0.3);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}
.nav-contact .nav-phone:hover {
    opacity: 0.7;
}
/* ========================================================
   追加：画面下部固定の予約バー（電話＆WEB）
======================================================== */
.fixed-reservation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
}
.fixed-reservation-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}
.fixed-reservation-bar a:hover {
    opacity: 0.9;
}
.btn-phone {
    background-color: #4a4a4a;
}
.btn-phone:hover {
    background-color: #333333;
}
.btn-web {
    background-color: #cca673;
}
.btn-web:hover {
    background-color: #b58f5c;
}
.fixed-reservation-bar .res-text {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Zen Old Mincho', serif;
    letter-spacing: 2px;
}
.fixed-reservation-bar .res-en {
    font-size: 11px;
    font-family: 'Crimson Pro', serif;
    opacity: 0.8;
    margin-top: 2px;
    letter-spacing: 1px;
}
/* =================================================
   7. フッターのデザイン
================================================== */
.site-footer {
    background-color: #e1ded8;
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
.footer-logo {
    margin-bottom: 50px;
}
.logo-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    letter-spacing: 0.15em;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.footer-nav ul li a {
    text-decoration: none;
    color: #333;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    transition: opacity 0.3s;
    display: block;
}
.footer-nav ul li a:hover {
    opacity: 0.6;
}
.footer-nav ul li a span {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-top: 4px;
}
.footer-bottom {
    margin-top: 40px;
}
.copyright {
    font-size: 10px;
    color: #999;
    letter-spacing: 0.05em;
}
/* --- フッターのレスポンシブ (スマホ) --- */
@media screen and (max-width: 820px) {
    .site-footer {
        padding: 60px 0 150px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 25px;
    }
    .footer-nav ul li a {
        font-size: 18px;
    }
    .logo-text {
        font-size: 20px;
    }
}
