/* ========================================
   リセット & ベーススタイル
   バージョン: 3.0 - 韓国語・中国語の完全対応完了
======================================== */

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

:root {
    /* カラーパレット - 暖かみのある和モダン */
    --primary-green: #a8b5a0;
    --primary-light: #c5d1bd;
    --primary-dark: #7a8a72;
    --accent-gold: #d4af37;
    --accent-orange: #e87352;
    --accent-warm: #f4a460;
    --accent-pink: #f8e4e1;
    
    --text-primary: #4a4a4a;
    --text-secondary: #6b6b6b;
    --text-light: #999999;
    
    --bg-white: #ffffff;
    --bg-cream: #faf6f0;
    --bg-light-green: #f3f5f0;
    --bg-warm: #fff8f3;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    --border-color: #e8e4de;
    --border-warm: #f0e8dd;
    --shadow-sm: 0 2px 12px rgba(168, 181, 160, 0.15);
    --shadow-md: 0 4px 20px rgba(168, 181, 160, 0.2);
    --shadow-lg: 0 8px 32px rgba(168, 181, 160, 0.25);
    --shadow-warm: 0 4px 16px rgba(244, 164, 96, 0.15);
    
    /* フォント - 統一 */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-decorative: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-cream);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 164, 96, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 181, 160, 0.02) 0%, transparent 50%);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    backface-visibility: hidden;
    transform: translateZ(0);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   共通コンポーネント
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-title-en {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title-ja {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 16px;
    margin-top: 8px;
}

.section-title-ja::before {
    content: '';
    display: none;
}

.section-title-ja::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-gold), var(--accent-warm));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(244, 164, 96, 0.3);
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.8;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(168, 181, 160, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 181, 160, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 12px rgba(168, 181, 160, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 181, 160, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* レスポンシブ表示制御 */
.sp-only {
    display: none;
}

/* ========================================
   ヘッダー
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-logo-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1001;
}

.header-logo-icon img {
    height: 65px;
    width: auto;
    transition: var(--transition-normal);
}

.header-logo-icon img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-image:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* 旧ロゴスタイル（非使用） */
.logo-main {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
}

.logo-sub {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.instagram-link {
    color: var(--primary-green);
}

/* 言語切り替え */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.language-btn:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.language-btn.active {
    background: var(--primary-green);
    color: var(--bg-white);
}

/* ========================================
   メインビジュアル
======================================== */

.hero {
    position: relative;
    height: 150vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* スライドショー */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity;
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,144C960,128,1056,128,1152,138.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.2;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 3;
}

/* スライドインジケーター */
.hero-indicators {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-indicator.active {
    background: var(--bg-white);
    width: 32px;
    border-radius: 6px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
    margin-top: 5vh;
    animation: fadeInUp 1s ease;
}

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

.hero-logo {
    margin-top: -60px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    width: auto;
    height: 280px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) 
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.6))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-title-main {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: -20px;
    margin-bottom: 60px;
    opacity: 0.98;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--bg-white);
    opacity: 0.6;
}

/* ========================================
   お知らせバナー
======================================== */

.notice-banner {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.notice-content i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* ========================================
   コンセプト
======================================== */

.concept {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-cream) 100%);
    position: relative;
}

.concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 181, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 164, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.concept-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-warm) 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid var(--border-warm);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* 各カードに背景画像を設定 */
.concept-card:nth-child(1)::before {
    background-image: url('../images/concept-rice.jpg');
}

.concept-card:nth-child(2)::before {
    background-image: url('../images/concept-water.jpg');
}

.concept-card:nth-child(3)::before {
    background-image: url('../images/concept-salt.jpg');
}

.concept-card:nth-child(4)::before {
    background-image: url('../images/concept-nori.jpg');
}

.concept-card:nth-child(5)::before {
    background-image: url('../images/concept-healthy.jpg');
}

.concept-card:nth-child(6)::before {
    background-image: url('../images/concept-nutrition.jpg');
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm);
    border-color: var(--accent-warm);
}

.concept-icon {
    display: none;
}

.concept-icon-image {
    display: none;
}

.concept-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.concept-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ========================================
   動画セクション
======================================== */

.video-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* 海苔の巻き方説明 */
.nori-instructions {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-warm);
}

.nori-instructions h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nori-instructions h3 i {
    color: var(--accent-warm);
}

.nori-instructions ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.nori-instructions ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 8px;
}

.nori-instructions ol li::marker {
    color: var(--accent-warm);
    font-weight: 700;
}

.nori-note {
    background: var(--bg-warm);
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--accent-warm);
}

.nori-note i {
    color: var(--accent-warm);
    font-size: 1.2rem;
}

/* ========================================
   メニュー
======================================== */

.menu {
    background: var(--bg-cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(244, 164, 96, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 181, 160, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-category-title i {
    font-size: 0.8rem;
}

.menu-category-badge {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-orange) 100%);
    color: var(--bg-white);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(244, 164, 96, 0.3);
}

/* 選べるお弁当 */
.eraberu-bento-container {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-warm) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    padding: 32px;
    margin-top: 24px;
    border: 2px solid var(--border-warm);
}

.eraberu-bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.eraberu-bento-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.eraberu-bento-intro {
    border-bottom: 2px solid var(--bg-light-green);
    padding-bottom: 16px;
}

.eraberu-bento-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.eraberu-bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.eraberu-bento-title::before {
    content: '🌟 ';
}

.eraberu-bento-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eraberu-bento-price-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.eraberu-bento-option {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-light-green);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.option-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.option-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.tax-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.eraberu-bento-select h5,
.eraberu-bento-includes h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.select-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border: 2px solid var(--bg-light-green);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.select-step:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
}

.step-options {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.step-option-item {
    padding: 10px 20px;
    background: var(--accent-orange);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
}

.step-or {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.step-examples {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.example-item {
    padding: 6px 14px;
    background: var(--bg-cream);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    border: 1px solid #e0e0e0;
}

.example-more {
    padding: 6px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.step-note {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin: 8px 0 0 0;
    padding: 8px 12px;
    background: rgba(232, 115, 82, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-note i {
    flex-shrink: 0;
}

.select-options {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.select-item {
    padding: 8px 16px;
    background: var(--bg-cream);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-dark);
}

.select-item:nth-child(3) {
    background: none;
    color: var(--text-secondary);
    font-style: italic;
}

.select-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.select-note small {
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.eraberu-bento-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.eraberu-bento-includes li {
    padding: 8px 12px;
    background: var(--bg-cream);
    border-radius: 6px;
    font-size: 0.95rem;
}

.eraberu-bento-includes li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: 700;
    margin-right: 4px;
}

.eraberu-bento-photo-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 12px;
    background: var(--bg-light-green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eraberu-bento-photo-note strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.menu-category-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.menu-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-warm);
    position: relative;
    overflow: hidden;
}

/* おむすびグリッド内のアイテムも確実に白に */
.menu-grid-omusubi .menu-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border: 1px solid #ffffff !important;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    box-shadow: var(--shadow-warm);
    transform: translateY(-4px);
    border-color: #ffffff;
}

.menu-item:hover::after {
    transform: scaleX(1);
}

.menu-item-image {
    width: 100%;
    height: 180px;
    object-fit: scale-down;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #ffffff;
    padding: 8px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    backface-visibility: hidden;
    transform: translateZ(0);
    max-height: 180px;
}

.menu-item-image.drink-image-large {
    height: 400px;
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.menu-item-image.coffee-scale {
    height: 150px;
    max-height: 150px;
    transform: scale(1.0) translateZ(0);
}

.menu-item-image.catering-image-large {
    height: 500px;
    max-height: 500px;
}

.menu-item-image.matsubacha-image {
    height: 150px;
    max-height: 150px;
}

.menu-item-image.side-menu-image {
    height: 100px;
    max-height: 100px;
}

.menu-item-image.uniform-size {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    transform: scale(0.75) translateZ(0);
}

.menu-item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 8px;
}

.menu-item-price .tax-included {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 4px;
}

.menu-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-item-large {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid var(--border-warm);
}

.menu-item-large:hover {
    box-shadow: var(--shadow-warm);
    transform: translateY(-4px);
    border-color: var(--accent-warm);
}
}

.menu-item-large-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.menu-item-large-badge.seasonal {
    background: var(--accent-gold);
}

.menu-item-large-badge.daily {
    background: #FF6B9D;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.menu-item-badges {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.item-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-white);
}

.item-badge.limited {
    background: var(--accent-orange);
}

.item-badge.daily-change {
    background: var(--primary-green);
}

.menu-item-note-small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-item-note-small i {
    color: #E1306C;
}

.menu-item-note-small a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

.menu-item-note-small a:hover {
    color: var(--primary-dark);
}

.catering-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-light-green);
    border-radius: 8px;
}

.catering-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.catering-detail-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* とん汁詳細 */
.tonjiru-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
}

.tonjiru-details h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tonjiru-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ingredient-tag {
    padding: 6px 12px;
    background: var(--bg-white);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    border: 1px solid #e0e0e0;
}

/* 豚肉タグも他の具材と同じスタイル */

.tonjiru-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.tonjiru-note i {
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
}

/* からあげ卵焼き詳細 */
.karaage-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.karaage-section h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.karaage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.karaage-list li {
    padding: 10px 12px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.6;
    border-left: 3px solid var(--primary-green);
}

.karaage-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.karaage-description {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0;
    border-left: 3px solid var(--accent-orange);
}

/* 卵焼き詳細 */
.tamagoyaki-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
}

.tamagoyaki-highlight {
    padding: 12px 16px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tamagoyaki-highlight i {
    color: #FF8C00;
    font-size: 1rem;
}

.tamagoyaki-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tamagoyaki-list li {
    padding: 10px 12px;
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    position: relative;
    padding-left: 30px;
}

.tamagoyaki-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ピクルス詳細 */
.pickles-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
}

.pickles-highlight {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-left: 3px solid var(--primary-green);
}

.pickles-highlight i {
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.pickles-benefits h5 {
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.benefit-tag {
    padding: 8px 12px;
    background: var(--bg-white);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    text-align: center;
    border: 2px solid var(--accent-orange);
    font-weight: 500;
}

/* 蒸し焼きいも詳細 */
.mushiyaki-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mushiyaki-highlight {
    padding: 12px 16px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}

.mushiyaki-highlight i {
    color: #FF8C00;
    margin-top: 3px;
    font-size: 1rem;
}

.mushiyaki-section {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
}

.mushiyaki-section h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mushiyaki-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mushiyaki-list li {
    padding: 10px 12px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    padding-left: 30px;
    position: relative;
}

.mushiyaki-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.mushiyaki-message {
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
    margin: 0;
}

.mushiyaki-footer {
    margin-top: 12px;
    padding: 10px;
    background: var(--accent-gold);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mushiyaki-footer i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* さつまいも詳細 */
.satsumaimo-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.satsumaimo-section h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.satsumaimo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.satsumaimo-list li {
    padding: 10px 12px;
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.satsumaimo-list li::before {
    content: '●';
    position: absolute;
    left: 10px;
    color: #FF8C00;
    font-size: 0.7rem;
}

/* 蒸し焼きいも詳細 */
.mushiyaki-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mushiyaki-section h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mushiyaki-highlight {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-left: 3px solid var(--accent-orange);
}

.mushiyaki-highlight i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.mushiyaki-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mushiyaki-list li {
    padding: 10px 12px;
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.mushiyaki-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
}

.mushiyaki-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.mushiyaki-message {
    padding: 16px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.mushiyaki-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
}

.mushiyaki-message p:first-child {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mushiyaki-message p:first-child i {
    color: var(--accent-gold);
}

.satsumaimo-nutrition,
.satsumaimo-cooking {
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
    margin: 0;
}

.menu-item-large .menu-item-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.menu-item-large .menu-item-image:hover {
    transform: scale(1.02);
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 8px 0;
}

.menu-item-note {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-top: 8px;
    font-weight: 600;
}

/* ドリンク詳細 */
.drink-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drink-section h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drink-features,
.drink-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 8px 16px;
    background: var(--bg-white);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--accent-gold);
}

.drink-benefits .benefit-tag {
    padding: 8px 16px;
    background: var(--bg-white);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    border: 2px solid var(--primary-green);
    font-weight: 500;
}

.drink-temperature {
    padding: 16px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.temp-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

.temp-option i {
    color: var(--accent-orange);
}

.temp-separator {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* コーヒー詳細 */
.coffee-details {
    margin: 16px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coffee-badge {
    padding: 8px 16px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
    border: 2px solid var(--primary-green);
}

.coffee-badge i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.coffee-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coffee-item {
    padding: 12px 16px;
    background: var(--bg-light-green);
    border-radius: 8px;
    border: none;
}

.coffee-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.coffee-name i {
    color: var(--accent-orange);
}

.coffee-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 6px 0;
    line-height: 1.5;
}

.coffee-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 8px;
}

.coffee-message {
    padding: 12px 16px;
    background: var(--bg-light-green);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: none;
}

.coffee-message i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.coffee-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
}

/* ソーダ詳細 */
.soda-details {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.soda-badge {
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
    border: 2px solid var(--accent-orange);
}

.soda-badge i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.soda-warning {
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #ff9800;
}

.soda-warning i {
    color: #ff9800;
    font-size: 1.1rem;
}

.soda-warning span {
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.5;
}

.soda-description,
.soda-intro {
    padding: 16px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.soda-description p,
.soda-intro p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
}

.soda-benefits h5 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.herb-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.herb-item {
    padding: 16px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.herb-item h5 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.herb-item h5 i {
    color: var(--accent-gold);
}

.herb-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 8px 0 12px 0;
    line-height: 1.6;
}

.herb-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.effect-tag {
    padding: 6px 12px;
    background: var(--bg-white);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 500;
    border: 2px solid var(--accent-gold);
}

.soda-message {
    padding: 16px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 4px solid var(--primary-green);
}

.soda-message i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 2px;
}

.soda-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
    font-weight: 500;
}

.menu-note {
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-light-green);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.menu-note i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

.menu-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-note a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   Instagram
======================================== */

.instagram {
    background: var(--bg-white);
}

.instagram-content {
    text-align: center;
}

.instagram-info {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    background: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    padding: 12px;
}

.instagram-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.instagram-handle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.instagram-followers {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.instagram-followers i {
    color: var(--primary-green);
    margin-right: 6px;
}

.instagram-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ========================================
   店舗情報
======================================== */

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

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.phone-number:hover {
    color: var(--primary-dark);
}

.info-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 8px;
    font-size: 0.95rem;
}

.info-link:hover {
    color: var(--primary-dark);
}

.info-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

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

.info-access {
    background: var(--primary-green);
    color: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.info-access-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.info-access-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========================================
   お問い合わせ
======================================== */

.contact {
    background: var(--bg-white);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-phone-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact-phone-divider {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 8px 0;
}

.contact-phone i {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.contact-phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.contact-phone-number:hover {
    color: var(--primary-dark);
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-hours {
    background: var(--bg-light-green);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.contact-hours-text {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.contact-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
}

.contact-note i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

/* ========================================
   フッター
======================================== */

.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: transparent;
}

.footer-logo-main {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-logo-sub {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
}

/* 店舗写真スライダー */
.store-gallery {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.store-gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.store-gallery-slides {
    position: relative;
    width: 100%;
    height: 300px;
}

.store-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.store-gallery-slide.active {
    opacity: 1;
}

.store-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.store-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    display: none; /* ボタンを非表示 */
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
}

.store-gallery-btn:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.store-gallery-prev {
    left: 15px;
}

.store-gallery-next {
    right: 15px;
}

.store-gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* インジケーターを非表示 */
    gap: 8px;
    z-index: 10;
}

.store-gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.store-gallery-indicator.active {
    background: var(--bg-white);
    width: 24px;
    border-radius: 5px;
}

/* 旧ロゴ画像スタイル（非使用） */
.footer-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-normal);
    background: transparent !important;
    object-fit: contain;
}

.footer-logo-image:hover {
    opacity: 1;
}

/* 旧フッターロゴスタイル（非使用） */
.footer-logo-main {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-logo-sub {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-address,
.footer-phone,
.footer-hours {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-phone a {
    color: var(--bg-white);
}

.footer-phone a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   トップに戻るボタン
======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ========================================
   レスポンシブデザイン
======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .eraberu-bento-container {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    
    .eraberu-bento-includes ul {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   多言語対応 - 韓国語・中国語の価格表示
======================================== */

/* 韓国語ページでの価格表示 */
html[lang="ko"] .tax-included::before {
    content: "(세금포함 ";
}

html[lang="ko"] .tax-included::after {
    content: ")";
}

html[lang="ko"] .menu-item-tax::before {
    content: "（세금포함 ";
}

html[lang="ko"] .menu-item-tax::after {
    content: "）";
}

/* 韓国語ページでは日本語の「税込」を非表示 */
html[lang="ko"] .tax-included,
html[lang="ko"] .menu-item-tax {
    font-size: 0;
}

html[lang="ko"] .tax-included::before,
html[lang="ko"] .tax-included::after,
html[lang="ko"] .menu-item-tax::before,
html[lang="ko"] .menu-item-tax::after {
    font-size: 0.9rem;
}

/* 中国語ページでの価格表示 */
html[lang="zh"] .tax-included::before {
    content: "(含税 ";
}

html[lang="zh"] .tax-included::after {
    content: ")";
}

html[lang="zh"] .menu-item-tax::before {
    content: "（含税 ";
}

html[lang="zh"] .menu-item-tax::after {
    content: "）";
}

/* 中国語ページでは日本語の「税込」を非表示 */
html[lang="zh"] .tax-included,
html[lang="zh"] .menu-item-tax {
    font-size: 0;
}

html[lang="zh"] .tax-included::before,
html[lang="zh"] .tax-included::after,
html[lang="zh"] .menu-item-tax::before,
html[lang="zh"] .menu-item-tax::after {
    font-size: 0.9rem;
}

/* スマートフォン */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title-ja {
        font-size: 1.8rem;
    }
    
    /* 動画セクション */
    .video-section {
        padding: 40px 0;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .nori-instructions {
        margin: 24px 16px 0;
        padding: 24px 20px;
    }
    
    .nori-instructions h3 {
        font-size: 1.3rem;
    }
    
    .nori-instructions ol {
        margin-left: 20px;
    }
    
    .nori-instructions ol li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .nori-note {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    /* ヘッダー - 完全透明にして画像を背景に */
    .header {
        background: transparent;
        box-shadow: none;
    }
    
    .header-logo-icon {
        top: 8px;
        left: 15px;
    }
    
    .header-logo-icon img {
        height: 52px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    
    /* ロゴを非表示 */
    .logo {
        display: none;
    }
    
    .nav {
        padding: 12px 0;
        justify-content: flex-end;
    }
    
    .logo-image {
        height: 50px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    
    /* ハンバーガーメニューとボタンに影を追加 */
    .nav-toggle span {
        background: var(--bg-white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .language-btn {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 24px;
        transition: var(--transition-normal);
    }
    
    .language-switcher {
        position: absolute;
        top: 16px;
        right: 80px;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .language-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* メインビジュアル - 画面全体に表示 */
    .hero {
        height: 140vh;
        min-height: 140vh;
        margin-top: 0;
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 30vh;
    }
    
    .hero-logo-image {
        height: 220px;
    }
    
    .hero-title-main {
        font-size: 1.8rem;
    }
    
    .hero-title-sub {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-indicators {
        bottom: 100px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-indicator.active {
        width: 28px;
    }
    
    .hero-scroll {
        bottom: 30px;
        font-size: 0.7rem;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    /* お知らせバナー */
    .notice-content {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* コンセプト */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* メニュー */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* おむすびだけ2列表示 */
    .menu-grid-omusubi {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .menu-grid-omusubi .menu-item {
        padding: 12px;
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
    }
    
    .menu-grid-omusubi .menu-item-name {
        font-size: 1rem;
    }
    
    .menu-grid-omusubi .menu-item-desc {
        font-size: 0.8rem;
    }
    
    .menu-grid-omusubi .menu-item-price {
        font-size: 1rem;
    }
    
    .menu-grid-omusubi .menu-item-price .tax-included {
        font-size: 0.75rem;
    }
    
    /* お弁当、季節限定も2列表示 */
    .menu-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* サイドメニュー、ドリンクメニュー、その他は1列に戻す */
    .menu-grid-side,
    .menu-grid-drink,
    .menu-grid-other {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .menu-grid-side .menu-item-large,
    .menu-grid-drink .menu-item-large,
    .menu-grid-other .menu-item-large {
        padding: 20px;
    }
    
    .menu-grid-side .menu-item-large .menu-item-image,
    .menu-grid-drink .menu-item-large .menu-item-image,
    .menu-grid-other .menu-item-large .menu-item-image {
        height: 140px;
    }
    
    /* メニュー画像を小さくしてスクロール回数を減らす */
    .menu-item-image {
        height: 120px;
    }
    
    .menu-item-large .menu-item-image {
        height: 120px;
    }
    
    .menu-item {
        padding: 16px;
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
    }
    
    .menu-item-large {
        padding: 14px;
    }
    
    .menu-item-large .menu-item-name {
        font-size: 1rem;
    }
    
    .menu-item-large .menu-item-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .menu-item-large .menu-item-price {
        font-size: 1.1rem;
    }
    
    /* 詳細セクションのフォントサイズ調整 */
    .menu-item-large h5 {
        font-size: 0.9rem;
    }
    
    .menu-item-large .ingredient-tag,
    .menu-item-large .feature-tag,
    .menu-item-large .effect-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .menu-item-large .tonjiru-note,
    .menu-item-large .karaage-description,
    .menu-item-large .tamagoyaki-list li,
    .menu-item-large .pickles-highlight,
    .menu-item-large .mushiyaki-highlight {
        font-size: 0.8rem;
    }
    
    .menu-item-large .karaage-list li {
        font-size: 0.8rem;
    }
    
    /* Instagram */
    .instagram-icon {
        width: 160px;
        height: 160px;
    }
    
    /* 店舗写真スライダー */
    .store-gallery {
        max-width: 100%;
    }
    
    .store-gallery-slides {
        height: 250px;
    }
    
    .store-gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .store-gallery-prev {
        left: 10px;
    }
    
    .store-gallery-next {
        right: 10px;
    }
    
    /* 選べるお弁当 */
    .eraberu-bento-container {
        padding: 20px;
    }
    
    .eraberu-bento-title {
        font-size: 1.2rem;
    }
    
    .eraberu-bento-price-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .eraberu-bento-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .select-step {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .step-option-item {
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    .step-examples {
        gap: 6px;
    }
    
    /* お問い合わせ */
    .contact-phone {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-phone-number {
        font-size: 2rem;
    }
    
    /* フッター */
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    /* トップに戻るボタン */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .hero-title-main {
        font-size: 1.5rem;
    }
    
    .hero-title-sub {
        font-size: 2.5rem;
    }
    
    .instagram-icon {
        width: 140px;
        height: 140px;
    }
    
    .store-gallery-slides {
        height: 200px;
    }
    
    .store-gallery-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .store-gallery-prev {
        left: 8px;
    }
    
    .store-gallery-next {
        right: 8px;
    }
    
    .contact-phone-number {
        font-size: 1.8rem;
    }
}

/* ========================================
   おむすび背景を確実に白に - 最優先ルール
======================================== */
.menu-item,
.menu-grid-omusubi .menu-item,
#menu .menu-item,
section .menu-item,
div .menu-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}