/* ====================================
   Classic Elegance Theme
   高級フレンチレストラン スタイルシート
==================================== */

/* Google翻訳ウィジェットを完全に非表示 */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-combo,
#google_translate_element,
.goog-te-menu-frame,
.goog-te-menu2,
.goog-te-menu2-item,
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Google翻訳バナーも非表示 */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

/* Google翻訳によるbodyのtop調整を無効化 */
body {
    top: 0 !important;
    position: static !important;
    padding-top: 80px; /* 固定ヘッダーの高さ分の余白を追加 */
}

/* Google翻訳のツールチップも非表示 */
.goog-tooltip {
    display: none !important;
}

/* Google翻訳の全要素を画面外に */
div[id^=":"] {
    position: absolute !important;
    left: -9999px !important;
}

/* Google翻訳のフローティングウィジェットを非表示 */
.goog-te-spinner-pos,
.goog-te-spinner-animation,
.goog-te-balloon-frame,
div.skiptranslate.goog-te-gadget {
    display: none !important;
}

/* Google翻訳の丸いボタンや進捗インジケーターを非表示 */
iframe.skiptranslate,
iframe.goog-te-menu-frame,
div[style*="z-index: 2000000000"] {
    display: none !important;
    visibility: hidden !important;
}

/* News Section - Vertical List Style */
.news-list-vertical {
    max-width: 800px;
    margin: 0 auto;
}

.news-item-vertical {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.news-item-vertical:last-child {
    border-bottom: none;
}

.news-date-vertical {
    font-size: 0.9rem;
    color: #666;
    min-width: 100px;
    margin-right: 2rem;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
}

.news-title-vertical {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.news-title-vertical:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.news-view-all-vertical {
    color: #333;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-view-all-vertical:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Recommend Menu Grid Styles - 1714行目の定義と重複するため削除 */

.recommend-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.recommend-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Reservation Section Styles */
.reservation-content .reservation-phone {
    margin-bottom: 3rem;
}

.phone-number {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--dark-gold);
    transform: translateY(-2px);
}

.reservation-online .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 3rem;
}

/* Footer Simplified Styles */
.main-footer {
    background: var(--dark-brown);
    color: white;
}

.footer-title {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-address {
    color: #ccc;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* ====================================
   1. 基本設定
==================================== */
:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8961f;
    --dark-brown: #3a2317;
    --cream: #f8f6f0;
    --light-cream: #fdfcf8;
    --champagne: #f7e6ca;
    --champagne-light: #faf3e7;
    --champagne-dark: #e8d4b0;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* ナビゲーションバーの高さ分オフセット */
}

body {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--light-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-weight: 700;
}

/* 特定要素のフォント設定 */
.hero-title {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.2s ease-out;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-gold);
}

/* アンカーリンクのターゲット位置調整 */
section[id] {
    scroll-margin-top: 80px;
}

/* アクセスセクション専用の調整 */
#access {
    scroll-margin-top: 100px;
}

/* ====================================
   2. ヘッダー
==================================== */
/* .header-containerの位置指定はheader-alignment.cssで一元管理 */

.main-header {
    background: transparent;
    /* positionはheader-patterns.cssで一元管理 */
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease; /* 位置の変更はアニメーションしない */
}

/* お知らせページの特別なヘッダースタイル */
.news-page .main-header {
    background: rgba(74, 58, 40, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}


.navbar {
    padding: 1rem 0;  /* 70pxの高さに戻す */
    transition: all 0.3s ease;
    background: transparent;
}

/* スクロール時のヘッダー背景（フッターと同じ配色） */
.navbar.scrolled {
    /* positionは変更しない（すでにfixed） */
    padding: 1rem 0;  /* 高さを70pxで維持 */
    background: var(--dark-brown);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-logo {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* ロゴ画像のスタイル */
.brand-logo-img {
    height: 60px;  /* サイズを一回り大きく */
    width: auto;
    transition: all 0.3s ease;
    opacity: 1 !important; /* ロゴを常に表示 */
    visibility: visible !important;
    /* filter削除 - 透過画像に不要な影が付くため */
}

.navbar.scrolled .brand-logo-img {
    height: 60px;  /* スクロール時も同じサイズを維持 */
    /* filter削除 - 透過画像に不要な影が付くため */
}

/* モバイルメニュートグルボタン */
.navbar-toggler {
    border: 2px solid rgba(212, 175, 55, 0.8);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
}

.navbar.scrolled .navbar-toggler {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ナビゲーションを中央に配置、統一サイズ */
.navbar-nav {
    gap: 0.6rem;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(212, 175, 55, 0.8);
    border-radius: 30px;
    font-weight: 500;
    padding: 0.65rem 1.5rem;  /* 元のサイズに戻す */
    font-size: 0.92rem;  /* 元のサイズを維持 */
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 140px;  /* 元の幅に戻す */
    text-align: center;
    display: inline-block;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    line-height: 1;  /* ボタン内の垂直中央配置 */
}

/* スクロール後のナビゲーションリンク */
.navbar.scrolled .navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-nav .nav-link:hover {
    color: white;
    background: rgba(212, 175, 55, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--dark-brown);
    background: white;
    border-color: white;
}

.navbar-nav .nav-link.active {
    color: white;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 150, 31, 0.8));
    font-weight: 700;
    border-color: var(--primary-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-color: var(--primary-gold);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* オンライン予約ボタンは通常のナビゲーションと同じスタイルに変更 */

/* ====================================
   言語切替ドロップダウン
==================================== */
.language-selector {
    display: inline-block;
    vertical-align: middle;
}

/* 言語切替ドロップダウンボタン */
.language-dropdown-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 25px;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-dropdown-btn:hover,
.language-dropdown-btn:focus {
    background: rgba(212, 175, 55, 0.8);
    border-color: var(--primary-gold);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.navbar.scrolled .language-dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.navbar.scrolled .language-dropdown-btn:hover,
.navbar.scrolled .language-dropdown-btn:focus {
    background: white;
    color: var(--dark-brown);
    border-color: white;
}

/* ドロップダウンメニュー */
.language-selector .dropdown-menu {
    background: var(--dark-brown);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-selector .dropdown-item {
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
}

.language-selector .dropdown-item.active {
    background: rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    font-weight: 600;
}

.language-selector .flag-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Google翻訳バー非表示（翻訳後に表示される） */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* モバイル対応 */
@media (max-width: 991px) {
    .language-selector {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .language-dropdown-btn {
        width: auto;
        margin: 0 auto;
    }
    
    .language-selector .dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ヘッダーアクション部分（削除予定） */

/* ====================================
   3. ヒーローセクション
==================================== */
.hero-section {
    margin-top: -80px;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

/* Swiper Container Styles */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Swiper Pagination Styles */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-gold);
    width: 30px;
    border-radius: 5px;
}

/* Swiper Navigation Styles */
/* ヒーロー画像の矢印を非表示にする（コメントアウト）
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.8);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
}
*/

/* ヒーロー画像の矢印を非表示にする */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    display: none !important;
}

#heroCarousel {
    height: 100%;
    position: relative;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

/* カルーセルコントロール */
.carousel-control-prev,
.carousel-control-next {
    z-index: 150;
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* カルーセルコンテナの相対位置設定 */
#heroCarousel {
    position: relative;
}

/* ヒーローセクション内のお知らせオーバーレイ（左下配置） */
.hero-news-overlay {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 100 !important;  /* ヘッダーより低いが十分見える値に設定 */
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 35px;
    backdrop-filter: blur(8px);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-news-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.hero-news-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-news-link:hover {
    color: var(--primary-gold);
}

.hero-news-date {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.hero-news-text {
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.3px;
    max-width: 600px;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.hero-news-link:hover .hero-news-date {
    color: var(--primary-gold);
}

.hero-news-link:hover .hero-news-text {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-news-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 6px 15px;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100 !important;  /* モバイルでもヘッダーより低いが見える値に設定 */
    }
    
    .hero-news-link {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-news-date {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-news-text {
        font-size: 13px;
        color: white;
    }
}

.hero-slide {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--cream);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   4. セクション共通
==================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
}

/* ====================================
   5. こだわりセクション
==================================== */
.concept-section {
    padding: 100px 0;
    background: #fffae7; /* クリーム色背景に統一 */
}

/* こだわりSwiper */
.concept-swiper {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.concept-swiper .swiper-pagination {
    bottom: 20px;
}

.concept-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.concept-swiper .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
}

.concept-title {
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.concept-text {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.concept-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gold-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* ====================================
   6. お知らせセクション
==================================== */
.news-section {
    background: var(--cream);
}

/* お知らせセクション - 大理石背景 */
#news {
    background-image: url('/public/images/backgrounds/bg-stone-ginza.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* お知らせコンテンツエリアの背景 */
#news .container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.news-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-link:hover {
    color: var(--dark-gold);
}

/* ====================================
   7. メニューセクション
==================================== */
.menu-section {
    background: #fffae7; /* クリーム色背景に統一 */
    padding: 100px 0;
    overflow: hidden; /* セクション全体でもコンテナ外への表示を制限 */
}

/* おすすめメニューSwiper コンテナ */
.recommend-swiper-container {
    overflow: hidden; /* 4枚目のカードを完全に隠す */
    position: relative;
    margin: 0 auto;
    max-width: 1100px; /* 3枚のカードがちょうど収まる幅に制限 */
}

/* おすすめメニューSwiper */
.recommend-swiper {
    padding: 0 0px 0px 22px; /* 下部にも余白を追加 */
    min-height: 400px; /* 最小高さを確保 */
    position: relative; /* ナビゲーションボタンの位置調整用 */
}


.recommend-swiper .swiper-slide {
    height: auto;
    display: flex; /* フレックスボックス化 */
}

/* Swiperコンテナの高さを確保 */
.recommend-swiper .swiper-wrapper {
    padding-bottom: 20px; /* 下部の余白を確保 */
    align-items: stretch; /* すべてのスライドの高さを揃える */
}

/* スライド内のカードをフル高さに */
.recommend-swiper .recommend-card {
    height: 100%; /* 親要素の高さに合わせる */
    display: flex;
    flex-direction: column;
}

.recommend-swiper .recommend-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recommend-swiper .recommend-content {
    flex-grow: 1; /* 余った空間を埋める */
}

.recommend-swiper .swiper-button-next,
.recommend-swiper .swiper-button-prev {
    color: var(--primary-gold);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recommend-swiper .swiper-button-next:hover,
.recommend-swiper .swiper-button-prev:hover {
    background: var(--primary-gold);
    color: white;
}

.recommend-swiper .swiper-button-next::after,
.recommend-swiper .swiper-button-prev::after {
    font-size: 18px;
}

.category-title {
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
}

.menu-item {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.menu-name {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin: 0;
}

.menu-price {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.menu-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px dotted var(--border-color);
}

.menu-item-simple h5 {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin: 0;
    font-family: 'Noto Serif JP', serif;
}

.menu-item-simple .price {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ====================================
   8. 予約セクション
==================================== */

/* セクションタイトルの装飾を追加 */
.reservation-section .section-title {
    position: relative;
    color: #3a2317;
    margin-bottom: 10px;
    display: block !important; /* 必ず改行させる */
}

.reservation-section .section-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    display: block !important; /* 必ず改行させる */
    margin-bottom: 50px;
}

.reservation-section {
    background: linear-gradient(135deg, #f8f4ef 0%, #fff4e6 100%);
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}


/* シンプルな予約アイテムコンテナ */
.reservation-simple-item {
    margin-bottom: 2rem;
}

/* 電話番号リンクのスタイル */
.reservation-phone-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    letter-spacing: 1px;
}

.reservation-phone-link:hover {
    color: var(--primary-gold, #d4a574);
}

.reservation-phone-link i {
    font-size: 1.2rem;
}

.phone-number-display {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
}

/* アイコンスタイル */
.reservation-button-new i.fa-phone,
.reservation-button-new i.fa-calendar-check {
    font-size: 1.4rem;
    vertical-align: middle;
}

.reservation-button-new#reservationPhone i.fa-phone {
    color: #d4a574;
}

.reservation-button-new:not(#reservationPhone) i.fa-calendar-check {
    color: white;
}

/* オンライン予約リンクのスタイル */
.reservation-online-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.reservation-online-link:hover {
    background: #333;
    color: white;
}

.reservation-online-link i {
    font-size: 1rem;
}

/* 横並びコンテナ */
.reservation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.reservation-item {
    display: flex;
    align-items: center;
}

/* シンプルな電話番号表示 */
.reservation-phone-simple {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.reservation-phone-simple:hover {
    color: var(--primary-gold);
}

/* シンプルなオンライン予約ボタン */
.btn-reservation-simple {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 10px 40px;
    border: 1px solid var(--text-dark);
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-reservation-simple:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* 新しい予約ボタンスタイル */
.reservation-button-new {
    display: block;
    width: auto;
    padding: 30px 45px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #d4a574;
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
    position: relative;
    overflow: hidden;
}

/* 電話ボタン専用スタイル */
.reservation-button-new#reservationPhone {
    background: linear-gradient(135deg, #3a2317 0%, #2c1810 100%);
    color: #fff;
    border-color: #3a2317;
}

.reservation-button-new#reservationPhone .phone-number-display {
    color: #d4a574;
    font-weight: 600;
}

/* オンライン予約ボタン */
.reservation-button-new:not(#reservationPhone) {
    background: linear-gradient(135deg, #d4a574 0%, #c09660 100%);
    color: white;
    border-color: #d4a574;
}

.reservation-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.reservation-button-new#reservationPhone:hover {
    background: linear-gradient(135deg, #2c1810 0%, #1f0f08 100%);
}

.reservation-button-new:not(#reservationPhone):hover {
    background: linear-gradient(135deg, #c09660 0%, #b08650 100%);
}

.reservation-button-new .fas {
    font-size: 1.2rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.reservation-button-new:hover .fas {
    transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .reservation-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .reservation-phone-simple {
        font-size: 1.5rem;
    }
    
    .btn-reservation-simple {
        padding: 10px 35px;
        font-size: 0.9rem;
    }
    
    .reservation-button-new {
        font-size: 1.3rem;
        padding: 25px 35px;
    }
    
    .phone-number-display {
        font-size: 1.2rem;
    }
}

/* ====================================
   9. アクセスセクション
==================================== */
.access-section {
    background: var(--cream);
}

/* アクセスセクション - 大理石背景 */
#access {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
                url('/public/images/backgrounds/bg-stone-ginza.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* アクセスセクションのコンテナ - 透過背景 */
#access .container {
    background: transparent;
    padding: 3rem 2rem;
}

.access-info {
    background: transparent; /* 完全透過で大理石テクスチャを表示 */
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

/* 地図コンテナのスタイル - Bサイトに合わせたサイズ */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 600px; /* Bサイトと同じ高さに拡大 */
    border: 1px solid #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* アクセステーブルのスタイル */
.access-info table {
    font-size: 0.9rem;
    margin: 0;
    background: transparent;
}

.access-info table th {
    color: #666;
    font-weight: normal;
    width: 80px;
    padding: 0.5rem 0.5rem 0.5rem 0;
    vertical-align: top;
    font-size: 0.85rem;
    border: none;
}

.access-info table td {
    color: #333;
    padding: 0.5rem 0;
    line-height: 1.5;
    border: none;
}

/* アクセスセクション - カード形式のスタイル */
.access-info-card {
    background: transparent;
    padding: 2rem;
}

.info-section {
    height: 100%;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 500;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 0.8rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    width: 100px;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-weight: 500;
}

.info-content {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.phone-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* 決済カードロゴのスタイル */
.payment-card-logo {
    height: 36px;  /* さらに少し大きく */
    width: auto;
    max-width: 60px;  /* 最大幅を設定 */
    object-fit: contain;
    margin-right: 12px;
    /* 枠線完全削除・透過PNG用 */
    border: none !important;
    padding: 0;
    background: transparent;
    box-shadow: none !important;
    outline: none !important;
    /* mix-blend-modeは削除（透過PNGには不要） */
}

.payment-icon {
    font-size: 1.2rem;
}

/* ヘッダーロゴのスタイル */
#navbar-logo, .navbar-logo {
    /* 透過PNG対応 - 通常表示 */
    background-color: transparent !important;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    /* 透過PNGなのでmix-blend-modeは不要 */
    opacity: 1;
}

/* スクロール後のヘッダーロゴ */
.scrolled #navbar-logo,
.scrolled .navbar-logo {
    /* 透過PNGなので通常表示 */
    opacity: 1;
}

/* フッターロゴのスタイル */
#footer-shop-logo {
    /* 透過PNG対応 - 通常表示 */
    background-color: transparent !important;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    /* mix-blend-modeを削除して元の色を保持 */
    /* opacity: 1にして完全に表示 */
    opacity: 1;
}

/* Instagramリンクのスタイル - Bサイト風 */
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.instagram-link svg {
    width: 20px;
    height: 20px;
}

.instagram-text {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* フッターCopyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* PAGE TOPボタンのスタイル - Bサイト風 */
.page-top-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.page-top-btn:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.page-top-arrow {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.page-top-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ====================================
   10. フッター
==================================== */
.main-footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


.footer-subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-text, .footer-contact {
    color: var(--cream);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cream);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-gold);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    font-size: 0.9rem;
}

/* ====================================
   11. レスポンシブデザイン
==================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .concept-features {
        grid-template-columns: 1fr;
    }
    
    .menu-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-price {
        margin-top: 0.5rem;
    }
    
    .hero-section {
        margin-top: 0;
        height: 100vh;
        min-height: 500px;
        z-index: 0;;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 500px;
    }
 /* おすすめメニューSwiper */
    .recommend-swiper {
    padding: 0 !important; /* 下部にも余白を追加 */
}
}

/* ====================================
   12. アニメーション
==================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   13. おすすめメニューカード (TCC GINZA スタイル)
==================================== */
.recommend-carousel-container {
    position: relative;
    padding: 0 60px;
}

.recommend-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recommend-carousel-track::-webkit-scrollbar {
    display: none;
}

.recommend-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* 高さは自動調整（コンテンツに応じて） */
    min-height: 320px; /* 最小高さを設定 */
}

.recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.recommend-link {
    text-decoration: none;
    display: block;
}

.recommend-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

.recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommend-card:hover .recommend-image img {
    transform: scale(1.08);
}

.recommend-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recommend-content {
    padding: 25px 20px;
}

.recommend-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.4;
}

.recommend-subtitle {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* カルーセルコントロール */
.carousel-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.carousel-control-btn:hover {
    background: #f8f8f8;
    border-color: #c9a961;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.carousel-control-btn i {
    color: #666;
    font-size: 1.1rem;
}

.carousel-control-btn:hover i {
    color: #c9a961;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* スクロール位置インジケーター */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicator.active {
    width: 24px;
    border-radius: 4px;
    background: #c9a961;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .recommend-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .recommend-carousel-container {
        padding: 0 40px;
    }
    
    .recommend-card {
        flex: 0 0 260px;
    }
    
    .recommend-image {
        height: 200px;
    }
    
    .carousel-control-btn {
        width: 38px;
        height: 38px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .recommend-carousel-container {
        padding: 0 30px;
    }
    
    /* モバイル時のカードを大きく表示 */
    .recommend-card {
        flex: 0 0 calc(100vw - 40px); /* 画面幅から左右余白を引いた幅 */
        max-width: 400px; /* 最大幅制限 */
        margin: 0 auto;
    }
    
    /* 画像エリアを大きく */
    .recommend-image {
        height: 250px !important; /* 200px → 250pxに拡大 */
    }
    
    /* テキストサイズ調整 */
    .recommend-title {
        font-size: 1.1rem !important;
    }
    
    .recommend-subtitle {
        font-size: 0.9rem !important;
    }
    
    .recommend-price {
        font-size: 1rem !important;
    }
    
    .recommend-carousel-track {
        gap: 20px;
    }
    
    /* Swiper用の調整 */
    .recommend-swiper .swiper-slide {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .recommend-carousel-container {
        padding: 0 20px;
    }
    
    .recommend-card {
        flex: 0 0 calc(100vw - 30px); /* さらに画面幅に近づける */
    }
    
    .recommend-carousel-track {
        gap: 15px;
    }
}

/* ====================================
   13. ユーティリティ
==================================== */
.text-gold {
    color: var(--primary-gold);
}

.bg-cream {
    background-color: var(--cream);
}

.border-gold {
    border-color: var(--primary-gold);
}

.shadow-elegant {
    box-shadow: var(--shadow);
}

/* ====================================
   リンクボタンスタイル（リッチテキスト用）
==================================== */
.quill-link-btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 8px 4px;
    text-decoration: none !important;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: 'Noto Serif JP', serif;
}

/* オレンジボタン（メイン） */
.quill-link-btn-orange {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.quill-link-btn-orange:hover {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    color: white !important;
}

/* 青ボタン */
.quill-link-btn-blue {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.quill-link-btn-blue:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white !important;
}

/* 緑ボタン */
.quill-link-btn-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.quill-link-btn-green:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: white !important;
}

/* グレーボタン */
.quill-link-btn-gray {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white !important;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.quill-link-btn-gray:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    color: white !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .quill-link-btn {
        padding: 14px 32px;
        font-size: 16px;
        display: block;
        width: fit-content;
        margin: 12px auto;
    }
}