/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled .logo {
    background: #4e4d8c;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background: #4e4d8c;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.logo h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.header.scrolled .logo h1 {
    color: #000000;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav li {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.header.scrolled .nav a {
    color: #000000;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.header.scrolled .nav a::after {
    background-color: #000000;
}

.nav a:hover::after {
    width: 100%;
}

.social-button,
.reservation-button {
    margin-left: 15px;
}

/* 最後のナビ項目の右マージンを削除して右端を揃える */
.nav li:last-child {
    margin-right: 0;
}

.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.instagram-button:hover {
    transform: translateY(-3px);
}

.instagram-icon {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    vertical-align: middle;
    padding: 5px;
}

.tel-button {
    display: inline-block;
    background: linear-gradient(to bottom, #c9a063, #8c6239);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    transition: transform 0.3s ease !important;
}

.tel-button::after {
    display: none !important;
}

.tel-button:hover {
    transform: translateY(-3px);
}

.free-dial {
    font-size: 0.8rem;
    display: block;
}

.phone-icon {
    vertical-align: middle;
    margin-right: 5px;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.header.scrolled .hamburger-menu span {
    background-color: #000000;
}

/* メニューが開いている時は白色を維持 */
.header.scrolled .hamburger-menu.active span {
    background-color: #ffffff;
}

.hamburger-menu.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* モバイルヘッダー右側のコンテナ */
.mobile-header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* モバイル予約ボタン */
.mobile-reservation {
    display: none;
}

.mobile-tel-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #c9a063, #8c6239);
    color: white !important;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 45px;
    height: 45px;
}

.mobile-tel-button:hover {
    transform: translateY(-3px);
}

.mobile-tel-button .phone-icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

.mobile-tel-button .phone-icon path {
    fill: white;
}

/* reservation-text removed - using icon-only button */

/* モバイル専用改行 */
.mobile-br {
    display: none;
}

/* モバイル用言語切り替えボタンはデスクトップでは非表示 */
.mobile-lang-toggle {
    display: none;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .mobile-br {
        display: inline;
    }
    
    /* モバイル時の予約セクション行間調整 */
    .reservation-text {
        line-height: 1.4;
    }
    /* ヒーロー画像はpicture要素で自動的に切り替わるため、モバイル専用CSSは不要 */
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 1rem;
    }
    
    /* モバイル用言語切り替えボタンのスタイル */
    .mobile-lang-toggle {
        display: flex;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 2px;
        gap: 2px;
    }
    
    .mobile-lang-toggle .lang-seg {
        border: none;
        background: transparent;
        color: #fff;
        padding: 2px 8px;
        font-size: 12px;
        cursor: pointer;
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    
    .mobile-lang-toggle .lang-seg[aria-selected="true"] {
        background: rgba(255, 255, 255, 0.2);
        font-weight: bold;
    }
    
    /* メインナビゲーション内の言語切り替えは非表示 */
    .nav .lang-toggle-container {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        order: 1;
        flex: 0 0 auto;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
        flex: 0 0 auto;
    }
    
    /* モバイル用ロゴサイズ調整 */
    .logo-image {
        height: 45px;
    }
    
    .mobile-header-right {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .mobile-reservation {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 100px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        height: auto;
    }
    
    .nav li {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .nav a {
        font-size: 1.2rem;
        color: #ffffff !important;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    /* モバイルナビゲーションのホバー効果を修正 */
    .nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ffffff;
        transition: width 0.3s ease;
    }
    
    .nav a:hover::after {
        width: 100%;
    }
    
    .reservation-button {
        display: none;
    }
    
    .social-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .nav-instagram-icon {
        width: 30px;
        height: 30px;
    }
}

/* メニューが開いているときのスクロール無効化 */
body.menu-open {
    overflow: hidden;
}

/* ヒーローセクション */
.hero {
    height: 70vh; /* 高さを広く調整 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* テキストの視認性向上 */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    z-index: 0;
}

/* PC表示時も4枚目と5枚目を表示 */

.hero-content h1 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.hero-content p {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #aa832d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(170, 131, 45, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(170, 131, 45, 0.4);
}

/* こだわりセクション */
.kodawari {
    padding: 5rem 0;
    background: #ffffff;
}

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

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.center-text h2 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.center-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.left-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.right-text h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.right-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.social-icon {
    margin-top: 2rem;
    text-align: center;
}

.social-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1em;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.social-icon a:hover {
    transform: translateY(-3px);
}

.instagram-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

/* お品書きセクション */
.menu {
    padding: 5rem 0;
    background: #f5f0fa; /* 薄い紫色の背景 */
}

.menu-image-container {
    position: relative;
    overflow: hidden;
}

.vertical-text {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 6px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    font-style: normal;
}

.menu h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    letter-spacing: 0.1em;
    position: relative;
}

.menu h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 0;
}

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

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

/* 金額表示は削除 */

.menu-cta {
    text-align: center;
}

/* 店内の様子セクション */
.interior {
    padding: 5rem 0;
    background: #ffffff; /* 白色の背景 */
}

.interior h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    letter-spacing: 0.1em;
    position: relative;
}

.interior h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.interior-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.interior-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.interior-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.interior-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    padding: 1rem 1rem 0.5rem;
    text-align: center;
}

.interior-card p {
    color: #333333;
    padding: 0 1rem 1.5rem;
    text-align: left;
    line-height: 1.6;
}

/* お知らせセクション */
.news {
    padding: 5rem 0;
    background: #ffffff;
}

.news h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    letter-spacing: 0.1em;
}

.blog-list {
    display: grid;
    gap: 2rem;
}

.news-item {
    padding: 2rem;
    background: #fafafa;
    border-left: 4px solid #D93A3A;
}

.news-item time {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-item h3 {
    font-size: 1.3rem;
    color: #000000;
    margin: 0.5rem 0;
    font-weight: 600;
}

.news-item p {
    color: #333333;
    line-height: 1.6;
}

/* アクセスセクション */
.access {
    padding: 5rem 0;
    background: #f5f0fa; /* 薄い紫色の背景 */
}

.access h2 {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.access h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #000000;
}

.access-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.access-address {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.access-map {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.access-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ご予約セクション */
.reservation {
    padding: 5rem 0;
    background-image: url('image/counter.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.reservation .container {
    position: relative;
    z-index: 2;
}

.reservation-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #000;
}

.reservation-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #000;
}

.phone-number, .free-dial {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.2rem 0;
}

.phone-icon::before {
    content: '\260E';
    font-size: 2rem;
    margin-right: 10px;
    color: #000;
    font-style: normal;
    font-family: sans-serif;
}

.free-dial-label {
    font-size: 0.9rem;
    line-height: 1;
    margin-right: 10px;
    text-align: right;
    font-weight: 600;
    color: #000;
}

.phone-number a, .free-dial a {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.reservation-hours {
    font-size: 1.1rem;
    color: #333;
    margin-top: 0.8rem;
}

/* 店舗情報セクション */
.shop-info {
    padding: 5rem 0;
    background-color: #f9f9f9;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%23e0e0e0" /><circle cx="50" cy="50" r="2" fill="%23e0e0e0" /><circle cx="90" cy="90" r="2" fill="%23e0e0e0" /></svg>');
    background-repeat: repeat;
}

.shop-info-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border: 1px solid #4e8c4a;
    box-shadow: 0 0 0 10px white, 0 0 0 11px #4e8c4a;
}

.shop-info h2 {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.shop-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #000000;
}

.shop-info-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.shop-info-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-info-table th {
    width: 25%;
    padding: 1rem 1rem 1rem 4rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.shop-info-table td {
    width: 75%;
    padding: 1rem;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

/* フッター */
.footer {
    background-color: #4e4d8c;
    color: #ffffff;
    padding: 2rem 0 1rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-logo {
    flex-shrink: 0;
    margin-left: 1rem;
    margin-right: 3rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-nav {
    flex-shrink: 0;
    display: flex;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-social {
    flex-shrink: 0;
    margin-left: auto;
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-instagram:hover {
    opacity: 0.7;
}

.footer-instagram-icon {
    width: 24px;
    height: 24px;
}

.footer-instagram span {
    font-size: 1rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.nav-instagram-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

/* スクロール時にInstagramアイコンを黒色に変更 */
.header.scrolled .nav-instagram-icon {
    filter: brightness(0) saturate(100%);
}

/* メニューが開いている時はInstagramアイコンを白色に保つ */
.header.scrolled .nav.active .nav-instagram-icon {
    filter: none;
}

/* ナビInstagramリンクのホバーエフェクト（tel-buttonと統一）*/
.social-button a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.social-button a:hover {
    transform: translateY(-3px);
}
/* 下線エフェクト無効化 */
.social-button a::after {
    display: none;
}

/* お品書きページ専用スタイル */
.menu-page {
    /* ナビゲーションとヒーロー画像を重ねるためpadding-topを削除 */
    position: relative;
}

/* メニューヒーロー画像セクション */
.menu-hero-image {
    height: 550px;
    background-image: url('image/hunamori.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 店舗情報ヒーロー画像セクション */
.shop-info-hero-image {
    height: 550px;
    background-image: url('image/gaikan.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.page-header {
    background: #4e4d8c;
    color: #fff;
    text-align: center;
    padding: clamp(10px, 2.5vw, 16px) 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(78, 77, 140, 0.15);
}

.page-header h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(18px, 3.2vw, 24px);
    margin: 0 0 6px;
    letter-spacing: 0.02em;
    font-weight: 800;
    line-height: 1.25;
}

.page-header p {
    font-size: clamp(12px, 2.2vw, 14px);
    color: #EAE7FF;
    margin: 0;
    opacity: 0.95;
}

.menu-content {
    padding: calc(3rem + 5px) 0 5rem;
    background: #f9f9f9;
}

/* 店舗情報ページ専用スタイル */
.shop-info-page {
    /* ナビゲーションとヒーロー画像を重ねるためpadding-topを削除 */
    position: relative;
}

.shop-info-content {
    padding: 5rem 0;
    background: #f9f9f9;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card.full-width {
    grid-column: 1 / -1;
}

.info-card-header {
    background: linear-gradient(135deg, #4e4d8c 0%, #6a5acd 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-card-content {
    padding: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

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

.info-item strong {
    color: #4e4d8c;
    font-weight: 600;
    min-width: 120px;
    margin-right: 1rem;
}

.info-item span {
    text-align: right;
    line-height: 1.6;
}

.menu-content .container {
    max-width: 1200px;
}

.banquet-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.menu-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
}

.menu-card:hover .menu-card-content .menu-image-link img.menu-preview-image,
.menu-card:hover .menu-card-content .lunch-menu-grid .lunch-preview-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px) !important;
}

.menu-image-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}


.menu-header {
    background: linear-gradient(135deg, #4e4d8c 0%, #6a5acd 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.menu-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.menu-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.menu-card-content {
    padding: 0 2rem;
    text-align: center;
    background: transparent;
}

.pdf-placeholder {
    margin-bottom: 2rem;
}

.pdf-icon {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.pdf-placeholder p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.pdf-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.menu-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #4e4d8c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-button:hover:not(.disabled) {
    background: #6a5acd;
    transform: translateY(-2px);
}

.menu-button.disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.menu-button svg {
    width: 20px;
    height: 20px;
}

.menu-notes {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.menu-notes h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: #4e4d8c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-notes ul {
    list-style: none;
    padding: 0;
}

.menu-notes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.menu-notes li:before {
    content: '•';
    color: #4e4d8c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.menu-notes li:last-child {
    border-bottom: none;
}

.menu-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.menu-contact h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: #4e4d8c;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-info .phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4e4d8c;
    margin-bottom: 0.25rem;
}

.phone-info .phone-hours {
    font-size: 0.9rem;
    color: #666;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .two-col,
    .cards-3,
    .three-col,
    .store-info-layout,
    .interior-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .store-info-map iframe {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* モバイルフッターのナビとInstagramの水平配置 */
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        order: 1;
        margin: 0;
    }
    
    .footer-nav {
        order: 2;
        display: flex;
        align-items: center;
    }
    
    .footer-nav ul {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        margin: 0;
    }
    
    .footer-social {
        order: 3;
        margin-left: 0;
        display: flex;
        align-items: center;
    }
    
    /* Instagramアイコンのみ表示、テキスト非表示 */
    .footer-instagram span {
        display: none;
    }
    
    .footer-instagram-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reservation-form {
        padding: 2rem 1rem;
    }
    
    /* 予約セクションの電話番号（モバイル対応） */
    .phone-number a, .free-dial a {
        font-size: 1.6rem;
    }
    
    .phone-icon::before {
        font-size: 1.5rem;
    }
    
    /* お品書きページのレスポンシブ対応 */
    /* clamp()で自動調整されるため削除 */
    
    
    .menu-card-content {
        padding: 1.5rem;
    }
    
    .menu-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .phone-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* 宴会案内セクション */
.banquet-section {
    margin: 3rem 0;
}

.banquet-card {
    background: linear-gradient(135deg, #e8e2ff 0%, #f0ebff 100%);
    border: 2px solid #4e4d8c;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(78, 77, 140, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banquet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78, 77, 140, 0.2);
}

.banquet-title {
    color: #4e4d8c;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.banquet-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.banquet-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .banquet-price {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.banquet-course {
    color: #4e4d8c;
    font-size: 1.3rem;
    font-weight: bold;
}

.price-info {
    color: #4e4d8c;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #4e4d8c;
    text-decoration-thickness: 3px;
}

.banquet-drinks {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.banquet-note {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* デュアルメニューセクション */
.dual-menu-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.menu-item .pdf-placeholder {
    margin-bottom: 1rem;
}

.menu-item .pdf-placeholder p {
    font-size: 1rem;
    color: #333;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.menu-item .menu-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* すし源についてセクション */
.about-section {
    padding: 5rem 0;
    background: #ffffff; /* 白背景 */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.about-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    position: relative;
}

.about-text h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.about-text p {
    margin-bottom: 1.2rem;
}


.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 大将についてセクション */
.chef-section {
    padding: 5rem 0;
    background: #f5f0fa; /* 薄い紫色の背景 */
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.chef-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.chef-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    position: relative;
}

.chef-text h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.chef-text p {
    margin-bottom: 1.2rem;
}

.chef-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
}

.chef-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* すし源についてセクションのレスポンシブ対応 */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: left;
        order: 2;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        order: 1;
    }
}

/* 大将についてセクションのレスポンシブ対応 */
@media (max-width: 768px) {
    .chef-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chef-text {
        text-align: left;
        order: 2;
    }
    
    .chef-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .chef-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .chef-image {
        order: 1;
    }
}

/* 宴会案内のレスポンシブ対応 */
/* モバイル用のテキスト調整 */
@media (max-width: 768px) {
    /* 鹿児島の旬を味わう のフォントサイズを小さく */
    .center-text h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    /* 伝統の技と新鮮な食材で心を込めておもてなし のフォントサイズを小さくして改行 */
    .center-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* 既存のスタイル */
    .banquet-card {
        padding: 2rem 1.5rem;
    }
    
    .banquet-title {
        font-size: 1.3rem;
    }
    
    .banquet-course {
        font-size: 1.1rem;
    }
    
    .price-info {
        font-size: 1.6rem;
    }
    
    .dual-menu-section {
        flex-direction: row;
        gap: 1rem;
    }
    
    .menu-hero-image {
        height: 350px;
    }
    
    .shop-info-hero-image {
        height: 350px;
    }
    
    .shop-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card-content {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-item strong {
        min-width: auto;
        margin-right: 0;
    }
    
    .info-item span {
        text-align: left;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }
    
    .footer-instagram {
        justify-content: center;
    }
}

/* 新しいメニューレイアウト */
.menu-header {
    background: linear-gradient(90deg, #6b61cf, #7a6fe3);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    box-shadow: 0 6px 18px rgba(107, 97, 207, 0.15);
    margin: 20px auto 28px;
    border-radius: 10px;
}

.menu-header h2 {
    font-size: clamp(20px, 3.2vw, 24px);
    line-height: 1.25;
    margin: 0 0 6px;
    font-weight: 800;
}

.menu-header p {
    font-size: clamp(12px, 2.2vw, 15px);
    color: #EAE7FF;
    margin: 0;
}


/* ランチメニュー（2ページセット） */
.menu-card--lunch {
    position: relative;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    max-width: 840px;
    margin: 0 auto 2rem;
}

@media (max-width: 640px) {
    .menu-card--lunch {
        grid-template-columns: 1fr;
    }
}

.menu-card--lunch img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card--lunch a:hover img {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.badge {
    position: absolute;
    left: 8px;
    top: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* セクション間のスペース調整 */
#tennai-block,
#lunch-block,
#demae-block {
    margin-bottom: 4rem;
}

/* 画像の遅延読み込み最適化 */
img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
}

img.lazy.loaded {
    opacity: 1;
}

/* 画像読み込み中のプレースホルダー */
.menu-image-container,
.interior-card {
    position: relative;
}

.menu-image-container img,
.interior-card img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.menu-image-container img[src],
.interior-card img[src] {
    animation: none;
    background: none;
}

/* メニュープレビュー */
.menu-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.menu-preview:hover {
    transform: translateY(-5px);
}

.menu-card .menu-card-content .menu-image-link img.menu-preview-image,
.menu-card .menu-card-content .lunch-menu-grid .lunch-preview-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.lunch-menu-grid {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.lunch-preview-image {
    flex: 1;
    height: 400px;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.menu-image-link:hover .menu-overlay,
.lunch-menu-grid:hover .menu-overlay {
    transform: translateY(0);
}

.menu-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* 言語切り替えボタン */
.lang-toggle-container {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.lang-toggle {
    display: inline-flex;
    height: 30px;
    border: 1px solid #D0D0D0;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    margin: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-seg {
    border: 0;
    background: transparent;
    padding: 0 12px;
    line-height: 30px;
    font-size: 12.5px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #666;
    transition: all 0.2s ease;
    outline: none;
}

.lang-seg[aria-selected="true"],
.lang-seg.active {
    background: #6e6a67;
    color: #fff;
}

.lang-seg:focus-visible {
    outline: 2px solid #585654;
    outline-offset: 2px;
}

.lang-seg:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.lang-seg:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .lang-toggle {
        height: 28px;
    }
    
    .lang-seg {
        padding: 0 10px;
        font-size: 12px;
        line-height: 28px;
    }
    
    .lang-toggle-container {
        margin-right: 5px;
    }
}

/* ヘッダーがスクロールしたときのスタイル調整 */
.header.scrolled .lang-toggle {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .lang-seg {
    color: #666;
}

.header.scrolled .lang-seg[aria-selected="true"],
.header.scrolled .lang-seg.active {
    background: #6e6a67;
    color: #fff;
}

.menu-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.menu-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.preview-btn {
    background: #4e4d8c;
    color: white;
    min-width: 160px;
}

.preview-btn:hover {
    background: #3a3968;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 77, 140, 0.3);
}

.preview-btn.demae-btn {
    min-width: 160px !important;
    max-width: 160px;
    flex: none !important;
}

.pdf-btn {
    background: #666;
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
}

.pdf-btn:hover {
    background: #555;
    opacity: 1;
    transform: translateY(-1px);
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lunch-modal-content {
    max-width: 1000px;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: #000;
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.lunch-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lunch-image-container {
    text-align: center;
}

.lunch-modal-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.lunch-image-container h4 {
    font-size: 1.1rem;
    color: #4e4d8c;
    margin-bottom: 0.5rem;
}

.modal-caption {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
}

.modal-caption h3 {
    color: #4e4d8c;
    margin-bottom: 0.5rem;
}

.modal-caption p {
    color: #666;
    font-size: 0.9rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-button {
        flex: none;
        min-width: auto;
    }
    
    .lunch-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .lunch-preview-image {
        height: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
    
    .lunch-images {
        grid-template-columns: 1fr;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
}

/* ========================================
   影は画像だけ／角丸なし／影が切れない用パッチ（最後に追加）
   ======================================== */

/* 影が切れないように親の overflow を開放 */
.menu-card-content,
.menu-image-link,
.lunch-menu-grid {
  overflow: visible !important;
}

/* カードやラッパーの影は撤去（画像だけに影を付ける） */
.menu-card,
.menu-preview,
.lunch-menu-grid,
.menu-image-link {
  box-shadow: none !important;
}

/* 画像だけに影 */
.menu-preview-image,
.lunch-preview-image,
.menu-card--lunch img {
  box-shadow: 0 14px 36px rgba(0,0,0,.18) !important;
}

/* 画像を無理に 400px 高さ固定しない（歪み/レイアウト崩れ防止） */
.menu-card .menu-card-content .menu-image-link img.menu-preview-image,
.menu-card .menu-card-content .lunch-menu-grid .lunch-preview-image {
  height: auto !important;      /* ← ここがポイント */
  width: 100%;
  object-fit: contain;          /* サムネは収まり重視なら contain のままでOK */
}

/* ホバー時に影を強めたいなら（任意） */
.menu-card--lunch a:hover img,
.menu-card .menu-card-content .menu-image-link:hover img.menu-preview-image {
  box-shadow: 0 18px 48px rgba(0,0,0,.22) !important;
  transform: translateY(-3px);
}

