/* Brand Colors */
:root {
    --brand-primary: #f4ba63;
    --brand-secondary: #d97706;
    --brand-gradient: linear-gradient(135deg, #f4ba63 0%, #d97706 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(244, 186, 99, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    --brand-shadow: 0 4px 20px rgba(244, 186, 99, 0.25);
    --brand-shadow-hover: 0 8px 30px rgba(244, 186, 99, 0.35);
    
    /* テキストカラー */
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.95);
    
    /* 背景カラー */
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    
    /* ボーダーカラー */
    --border: #e8e8e8;
    --border-light: rgba(232, 232, 232, 0.5);
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* トランジション */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-gradient);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}


/* Header */
header {
    background: var(--brand-gradient);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2);
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header nav {
    overflow: visible;
}

@media (min-width: 769px) {
    header {
        overflow: visible;
    }
    
    header nav {
        overflow: visible;
    }
    
    /* デスクトップ版ではハンバーガーメニューを非表示 */
    .menu-toggle,
    button.menu-toggle,
    header nav .menu-toggle,
    nav .menu-toggle,
    .header-container nav .menu-toggle {
        display: none !important;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    flex: 0 0 auto;
    margin-right: auto;
}

.logo img,
.main-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
}

/* Navigation */
nav {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    overflow: visible;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--text-white);
    opacity: 0.9;
}

.nav-menu a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-white);
}

/* ドロップダウンメニューがない項目の▼を非表示 */
.nav-menu li:not(.dropdown) > a::after {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1002;
    border-radius: 8px;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-primary);
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: rgba(244, 186, 99, 0.1);
    color: var(--brand-secondary);
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu Toggle - デフォルトで表示、デスクトップ版で非表示 */
.menu-toggle,
button.menu-toggle {
    display: flex !important;
    background: none !important;
    border: none !important;
    font-size: 2rem !important;
    cursor: pointer !important;
    color: var(--text-white) !important;
    padding: 0.5rem !important;
    z-index: 10001 !important;
    position: relative !important;
    line-height: 1 !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex-shrink: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
}

/* Main Content */
main {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* Hero Slider Section (Heart Bread Style) */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    background: #666;
}

.hero-slider .news-banner {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 20 !important;
    margin: 0 !important;
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    display: block !important;
}

.hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: zoomIn 10s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    z-index: 3;
    pointer-events: none;
}

/* ニュースバナーがオーバーレイの上に表示されるように */
.hero-slider > .news-banner {
    z-index: 30 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.hero-overlay * {
    pointer-events: auto;
}

.hero-logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 500;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--text-white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--text-white);
    transform: scale(1.3);
}

/* News Banner Section */
.news-banner {
    background: var(--brand-gradient);
    padding: 1rem 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    overflow: hidden;
    pointer-events: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero slider内のニュースバナーを確実に画像の下部に配置 */
.hero-slider > .news-banner {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 25 !important;
    margin: 0 !important;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.news-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.news-label {
    background: var(--text-white);
    color: var(--brand-secondary);
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.news-icon {
    background: var(--text-white);
    color: var(--brand-secondary);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.news-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.9;
}

.news-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.news-icon {
    background: var(--text-white);
    color: var(--brand-secondary);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

    /* Featured Badges Section - heart-bread.com style */
    .featured-badges {
        background: var(--brand-gradient-soft);
        padding: 3rem 1.25rem;
        margin: 3rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .featured-badges::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-gradient);
        opacity: 0.3;
    }

.badge-container {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 0 2rem;
    box-sizing: border-box;
}

.badge-item {
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient-soft);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: 16px;
    z-index: 0;
}

.badge-item > * {
    position: relative;
    z-index: 1;
}

.badge-item:hover {
    border-color: var(--brand-primary);
    transform: translateY(-6px);
    box-shadow: var(--brand-shadow-hover);
}

.badge-item:hover::before {
    opacity: 1;
}

.badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    flex-shrink: 0;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

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

.badge-item:nth-child(2) .badge-icon { animation-delay: 0.2s; }
.badge-item:nth-child(3) .badge-icon { animation-delay: 0.4s; }
.badge-item:nth-child(4) .badge-icon { animation-delay: 0.6s; }

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.badge-text strong {
    font-size: 1.75rem;
    color: var(--brand-secondary);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    letter-spacing: -0.5px;
}

.badge-text span {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Enhanced Content Section */
.content-section-enhanced {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Award page specific styles */
.award-item-detailed {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.award-item-detailed {
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.award-item-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.2);
}

.award-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--brand-gradient);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.award-badge.award-badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.award-item-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-item-image {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.award-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.award-item-detailed:hover .award-item-image img {
    transform: scale(1.05);
}

.award-item-text {
    flex: 1;
}

/* Award and FAQ pages - center content when no sidebar */
.content-section-enhanced .content-wrapper {
    max-width: 1200px;
}

/* When content-main is the only child (no sidebar), center it */
.content-section-enhanced .content-wrapper:not(:has(.content-sidebar)) .content-main,
.content-section-enhanced .content-wrapper .content-main:only-child {
    max-width: 1000px;
    margin: 0 auto;
}

/* For browsers that don't support :has() - use class-based approach */
.content-section-enhanced .content-wrapper.centered-content {
    grid-template-columns: 1fr;
}

.content-section-enhanced .content-wrapper.centered-content .content-main {
    max-width: 1000px;
    margin: 0 auto;
}

/* License page specific styles */
.license-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.license-card-item {
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.license-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.2);
}

.license-card-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.license-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.license-card-image img[src*="logo.png"] {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.trademark-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    padding: 1.5rem 0;
}

.trademark-logo {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent !important;
}

.license-card-item:hover .license-card-image img {
    transform: scale(1.05);
}

.license-card-content {
    flex: 1;
}

/* FAQ page specific styles */
.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* When only content-main exists (no sidebar), center it with max-width */
.content-wrapper:has(.content-main:only-child),
.content-wrapper:has(.content-main:only-of-type) {
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

.content-main {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Award and FAQ pages - full width content */
.content-section-enhanced .content-main:only-child,
.content-section-enhanced .content-main:only-of-type {
    max-width: 1000px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.5rem;
    color: var(--brand-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: left;
}

.booking-information .content-text {
    text-align: left;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: var(--brand-secondary);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.facts-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.facts-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(244, 186, 99, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.facts-list li:hover {
    background: rgba(244, 186, 99, 0.1);
    transform: translateX(5px);
}

.fact-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Shop News Section */
.shop-news-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-gradient);
    border-radius: 2px;
}


.shop-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.shop-news-card {
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
    box-shadow: var(--shadow-sm);
}

.shop-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-gradient);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    z-index: 1;
}

.shop-news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient-soft);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.shop-news-card > * {
    position: relative;
    z-index: 2;
}

.shop-news-card:hover::before {
    transform: scaleY(1);
}

.shop-news-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-8px);
    box-shadow: var(--brand-shadow-hover);
}

.shop-news-card:hover::after {
    opacity: 1;
}

.shop-news-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-gradient);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-news-badge.award-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.shop-news-badge.special-badge {
    background: var(--brand-gradient);
}

.shop-news-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.shop-news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s;
}

.shop-news-card:hover .shop-news-title {
    color: var(--brand-secondary);
}

.shop-news-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.shop-news-sushi-logo {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    opacity: 0.2;
    transition: opacity 0.3s;
    z-index: 1;
}

.shop-news-card:hover .shop-news-sushi-logo {
    opacity: 0.3;
}

/* Ranking Section */
.ranking-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

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

.ranking-card {
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
}

.ranking-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--brand-shadow-hover);
}

.ranking-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brand-gradient);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.ranking-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.ranking-card:hover .ranking-image img {
    transform: scale(1.1);
}

.ranking-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ranking-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ranking-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-secondary);
    line-height: 1.4;
}

.ranking-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--brand-gradient-soft);
    padding: 5rem 2rem;
    margin: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Combined Booking Section - Information and Calendar Side by Side */
.booking-section-combined {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.booking-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.booking-information {
    flex: 1;
    min-width: 0;
}

.booking-calendar {
    flex: 1;
    min-width: 0;
}

.booking-calendar h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-secondary);
    line-height: 1.3;
    font-weight: bold;
}

.booking-calendar p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.bokun-widget-container {
    margin: 2rem 0;
    min-height: 500px;
}

/* Mobile: Stack vertically */
@media screen and (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-information,
    .booking-calendar {
        width: 100%;
    }
    
    .booking-calendar h2 {
        font-size: 1.8rem;
    }
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--brand-secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sushi-logos-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sushi-logo-item {
    height: 80px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.sushi-logo-item:nth-child(1) { animation-delay: 0s; }
.sushi-logo-item:nth-child(2) { animation-delay: 0.5s; }
.sushi-logo-item:nth-child(3) { animation-delay: 1s; }
.sushi-logo-item:nth-child(4) { animation-delay: 1.5s; }
.sushi-logo-item:nth-child(5) { animation-delay: 2s; }
.sushi-logo-item:nth-child(6) { animation-delay: 2.5s; }

.sushi-logo-item:hover {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
}

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

/* Enhanced Video Section */
.video-section-enhanced {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.video-section-content {
    text-align: center;
}

.video-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.video-container-enhanced {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 12px;
    border: 2px solid var(--border);
    min-width: 150px;
    max-width: 200px;
    transition: all 0.3s;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-item:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(244, 186, 99, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-secondary);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

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

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

.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: var(--brand-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--brand-secondary);
    transform: translateY(-3px);
    box-shadow: var(--brand-shadow);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--brand-secondary);
    transform: translateY(-3px);
    box-shadow: var(--brand-shadow);
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: var(--brand-secondary);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    margin-top: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-section h3 {
    color: var(--brand-secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.image-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

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

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s;
}

.image-gallery figure:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.image-gallery figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.image-gallery figure:hover::after {
    opacity: 0.2;
}

/* Enhanced Image Gallery */
.image-gallery-enhanced {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    background: var(--bg);
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.gallery-overlay p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.gallery-link:hover {
    transform: translateX(5px);
    color: var(--brand-primary);
}

/* Parallax Effect */
.parallax-item {
    transition: transform 0.3s ease-out;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    padding: 4rem 2rem !important;
    border-radius: 20px;
    margin: 4rem auto !important;
    border: 2px solid rgba(244, 186, 99, 0.3);
    max-width: 1200px;
    width: calc(100% - 4rem);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    min-height: 400px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(244, 186, 99, 0.2);
}

.highlight-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.highlight-sushi-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.highlight-logo-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.highlight-logo-2 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 100px;
    height: auto;
    animation: float 8s ease-in-out infinite 1s;
}

.highlight-logo-3 {
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 90px;
    height: auto;
    animation: float 7s ease-in-out infinite 2s;
}

.highlight-logo-4 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 110px;
    height: auto;
    animation: float 9s ease-in-out infinite 0.5s;
}

.highlight-section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.highlight-header {
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-header-line {
    width: 150px;
    height: 3px;
    background: var(--brand-gradient);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
}

.highlight-header-line::before,
.highlight-header-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.highlight-header-line::before {
    left: -15px;
}

.highlight-header-line::after {
    right: -15px;
}

.highlight-section h2 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: var(--brand-secondary);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: -0.5px;
}

.highlight-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.highlight-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.highlight-features h3,
.highlight-about h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--brand-secondary);
    font-weight: bold;
    text-align: center;
}

.highlight-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.highlight-section li {
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--brand-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-section li:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.feature-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-about {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    width: 100%;
}

.highlight-about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.highlight-about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.highlight-about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.highlight-about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.highlight-about > p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-primary);
    font-size: 1.05rem;
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border-left: 4px solid var(--brand-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.highlight-about-text > p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-primary);
    font-size: 0.85rem;
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.highlight-about-text > p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--brand-primary);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
}

.highlight-about > p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.highlight-about > p:last-child {
    margin-bottom: 0;
}

.highlight-about-text > p:not(:last-child) {
    margin-bottom: 0.5rem;
}

.highlight-about-text > p:last-child {
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    margin: 3rem 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: var(--brand-gradient);
    color: var(--text-white);
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    box-shadow: 0 -4px 20px rgba(217, 119, 6, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-white);
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width var(--transition-fast);
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-column ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
    opacity: 1;
}

.social-links-footer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    list-style: none;
    padding: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.social-links-footer li {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-links-footer img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-links-footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links-footer .social-link span {
    display: none;
}

.footer-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.footer-contact-info h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-contact-item {
    margin-bottom: 1rem;
}

.footer-contact-item p {
    margin: 0.25rem 0;
    color: var(--text-white);
    font-size: 0.9rem;
}

.footer-contact-item .contact-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.footer-contact-item .contact-number {
    font-size: 0.95rem;
    font-weight: bold;
}

.social-link:hover img {
    transform: scale(1.2) rotate(5deg);
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--brand-gradient);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
        position: relative;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        flex: 0 0 auto;
        margin-right: auto;
        order: 1;
    }
    
    .logo img,
    .main-logo {
        height: 45px !important;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto;
        margin-left: auto;
        order: 2;
        position: relative;
    }
    
    /* Hide regular menu on mobile */
    .nav-menu:not(.active) {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile - デスクトップ版のスタイルを上書き */
    button.menu-toggle,
    .menu-toggle,
    header nav .menu-toggle,
    nav .menu-toggle,
    .header-container nav .menu-toggle,
    .header-container > nav > .menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > button.menu-toggle,
    nav button.menu-toggle,
    header nav button.menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        position: relative !important;
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.75rem !important;
        line-height: 1 !important;
        background: transparent !important;
        border: none !important;
        color: var(--text-white) !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        margin: 0 !important;
    }

    /* Show menu when active - MUST be after the hidden state */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        background: var(--brand-gradient) !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
        z-index: 9999 !important;
        margin-top: 0 !important;
        gap: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown-menu {
        display: block !important;
        position: static !important;
        box-shadow: none;
        padding-left: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
        margin-top: 0;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        color: rgba(255, 255, 255, 0.9);
        display: block;
    }
    
    .dropdown-menu a:hover {
        color: var(--text-white);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 1rem;
    }

    main {
        padding: 1rem;
    }
}

/* Page Specific Styles */
.page-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid var(--brand-primary);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--brand-secondary);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(244, 186, 99, 0.1);
}

/* FAQ Styles */
.faq-list {
    list-style: none;
    padding: 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-primary);
}

.faq-category-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background-color: #f5f5f5;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-secondary);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background-color: #f5f5f5;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-secondary);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

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

/* Award Section */
.award-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.award-image {
    flex: 0 0 300px;
    border-radius: 8px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.award-item:hover .award-image img {
    transform: scale(1.05);
}

.award-content {
    flex: 1;
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    /* Improved spacing and padding - 全ページ統一 */
    main {
        padding: 1.5rem 1.25rem;
    }
    
    /* セクション間のスペーシングを改善 - 全ページ統一 */
    section {
        margin-bottom: 3rem;
    }
    
    section:last-child {
        margin-bottom: 0;
    }
    
    /* 見出しのスタイル統一 - 全ページ適用 */
    h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    ul, ol {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    li {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.25rem;
    }
    
    /* Award page responsive styles - index.htmlと同じスタイルに統一 */
    .award-item-detailed > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .award-item-detailed h3 {
        font-size: 1.1rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .award-item-detailed p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .content-section-enhanced {
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
    
    /* テキストカードの横幅を広げる - フレームを無くす */
    .content-main {
        padding: 0.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    /* 文字を小さくする */
    .content-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .content-text {
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .booking-information .content-text {
        text-align: left;
    }
    
    .content-text p {
        margin-bottom: 0.5rem;
    }
    
    .booking-section-combined {
        margin: 2.5rem auto;
        padding: 0 1rem;
    }
    
    .award-item {
        flex-direction: column;
    }
    
    .award-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    /* Hero improvements */
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-overlay {
        padding: 1.5rem 1rem;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .slider-prev,
    .slider-next {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    /* Content improvements - index.htmlと同じスタイルに統一 */
    .content-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .content-text {
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .content-text p {
        margin-bottom: 0.5rem;
    }
    
    .content-text h3 {
        font-size: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .content-text ul {
        margin: 0.75rem 0;
        padding-left: 1.5rem;
    }
    
    .content-text li {
        margin-bottom: 0.5rem;
        line-height: 1.4;
        font-size: 0.75rem;
    }
    
    /* Sidebar improvements - index.htmlと同じスタイルに統一 */
    .sidebar-card {
        padding: 0.75rem;
        margin-top: 1rem;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .facts-list {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0;
    }
    
    .facts-list li {
        padding: 0.5rem;
        font-size: 0.75rem;
        line-height: 1.3;
        gap: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    .fact-icon {
        width: 24px;
        height: 24px;
    }
    
    /* News banner - スマホ版では画像の下に別セクションとして配置 */
    .hero-slider > .news-banner {
        position: static !important;
        margin-top: 0 !important;
        padding: 1.25rem 0 !important;
        background: var(--brand-gradient) !important;
    }
    
    .news-banner-content {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0 1.25rem !important;
        align-items: center;
    }
    
    .news-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        flex-shrink: 0;
    }
    
    .news-text {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
        padding: 0;
        flex: 1;
    }
    
    .news-icon {
        display: none;
    }
    
    /* Shop news - heart-bread.com style */
    .shop-news-section {
        margin: 3rem 0;
        padding: 0;
    }
    
    .shop-news-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .shop-news-card {
        padding: 0.75rem;
        padding-right: 4rem;
        border-radius: 12px;
        gap: 0.3rem;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        position: relative;
    }
    
    .shop-news-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 2;
    }
    
    .shop-news-title {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
        padding-right: 0;
        flex: 1;
    }
    
    .shop-news-excerpt {
        font-size: 0.7rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }
    
    /* Video Section - 文字を小さく */
    .video-section-enhanced {
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
    
    .video-description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    /* Ranking - heart-bread.com style */
    .ranking-section {
        margin: 3rem 0;
        padding: 0;
    }
    
    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ranking-card {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .ranking-number {
        top: 0.5rem;
        left: 0.5rem;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .ranking-image {
        height: 150px;
    }
    
    .ranking-content {
        padding: 0.75rem;
        gap: 0.3rem;
    }
    
    .ranking-date {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .ranking-title {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
    
    .ranking-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* CTA section - heart-bread.com style */
    .cta-section {
        margin: 2rem 0;
        padding: 1.5rem 0.5rem;
        position: relative;
    }
    
    .cta-section::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--brand-primary), transparent);
        margin-bottom: 1.5rem;
        opacity: 0.3;
    }
    
    .cta-content {
        padding: 0;
    }
    
    .cta-content h2 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .cta-content p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0.75rem;
        border-left: 3px solid var(--brand-primary);
        background: rgba(244, 186, 99, 0.05);
        border-radius: 4px;
    }
    
    .cta-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .btn-large {
        flex: 1;
        min-width: 140px;
        max-width: calc(50% - 0.25rem);
    }
    
    /* Buttons - improved tap targets */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 100%;
        min-height: 36px;
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    /* Highlight section - フレームを無くして横幅を活用 */
    .highlight-section {
        width: 100%;
        padding: 1.5rem 0.5rem !important;
        margin: 2rem auto;
        background: transparent !important;
        box-shadow: none !important;
        position: relative;
    }
    
    .highlight-section::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--brand-primary), transparent);
        margin: 1.5rem 0;
        opacity: 0.3;
    }
    
    .highlight-section-background {
        display: none !important;
    }
    
    .highlight-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-section h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .highlight-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .highlight-content-grid {
        gap: 1.5rem;
    }
    
    .highlight-features h3,
    .highlight-about h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .highlight-section li {
        padding: 0.5rem 0.5rem 0.5rem 2.5rem;
        margin-bottom: 0.4rem;
        border-radius: 8px;
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .feature-icon {
        left: 0.5rem;
        width: 20px;
        height: 20px;
    }
    
    .highlight-about {
        padding: 0;
        margin-top: 1rem;
        background: transparent;
        border: none;
        border-radius: 0;
        width: 100%;
    }
    
    .highlight-about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .highlight-about-image {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .highlight-about-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 200px;
    }
    
    .highlight-about-text {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .highlight-about > p {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        padding: 1rem 1rem 1rem 2.5rem;
        position: relative;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        border-left: 3px solid var(--brand-primary);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }
    
    .highlight-about-text > p {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
        position: relative;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .highlight-about > p::before {
        content: '✓';
        position: absolute;
        left: 0.75rem;
        top: 1rem;
        color: var(--brand-primary);
        font-weight: bold;
        font-size: 1rem;
        line-height: 1;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(244, 186, 99, 0.15);
        border-radius: 50%;
    }
    
    .highlight-about-text > p::before {
        content: '•';
        position: absolute;
        left: 0;
        top: 0.5rem;
        color: var(--brand-primary);
        font-weight: bold;
        font-size: 0.9rem;
        line-height: 1;
    }
    
    .highlight-about > p:not(:last-child) {
        margin-bottom: 1rem;
    }
    
    .highlight-about-text > p:not(:last-child) {
        margin-bottom: 0.5rem;
    }
    
    .highlight-logo-1,
    .highlight-logo-2,
    .highlight-logo-3,
    .highlight-logo-4 {
        width: 60px !important;
        opacity: 0.08;
    }
    
    .hero-slide {
        display: block !important;
    }
    
    .hero-slide.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-slide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Sushi logos */
    .sushi-logos-showcase {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .sushi-logo-item {
        height: 60px;
    }
    
    /* Video stats */
    .video-stats {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Award and License page mobile styles */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .license-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .award-item-detailed,
    .license-card-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .license-card-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .license-card-item p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .award-item-content {
        gap: 1rem;
    }
    
    .award-item-text h3 {
        font-size: 1.1rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .award-item-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* FAQ - index.htmlと同じスタイルに統一 */
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 0.75rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.75rem;
    }
    
    .stat-item {
        min-width: 100px;
        max-width: 150px;
        padding: 0.75rem 0.5rem;
        flex: 1 1 auto;
    }
    
    .stat-number {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .gallery-image-wrapper {
        height: 160px;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
        padding: 0.75rem;
    }
    
    .gallery-overlay h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .gallery-overlay p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    .gallery-link {
        font-size: 0.75rem;
    }
    
    /* Footer improvements */
    footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .footer-column ul li {
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .footer-column ul li a {
        font-size: 0.75rem;
        padding: 0.15rem 0;
        line-height: 1.2;
    }
    
    .social-links-footer {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-links-footer img {
        width: 24px;
        height: 24px;
    }
    
    .footer-contact-info {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-contact-info h5 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .footer-contact-item {
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .footer-contact-item p {
        margin: 0.15rem 0;
        line-height: 1.3;
    }
    
    .contact-label {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-number {
        font-size: 0.8rem;
    }
    
    .footer-contact-info {
        border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
    }
    
    .copyright {
        font-size: 0.7rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .contact-label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }
    
    .contact-number {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Content wrapper */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    /* Badges - 横2列、縦3段（スクロール短縮） */
    .featured-badges {
        margin: 2rem auto;
        padding: 1rem 0;
    }
    
    .badge-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 0.5rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .badge-item {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .badge-text strong {
        font-size: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 0.15rem;
    }
    
    .badge-text span {
        font-size: 0.7rem;
        color: var(--text-primary);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .badge-text {
        gap: 0.15rem;
    }
    
    /* Booking section mobile */
    .booking-container {
        gap: 2.5rem;
    }
    
    .booking-information {
        margin-bottom: 1rem;
    }
    
    .booking-calendar h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .booking-calendar p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .bokun-widget-container {
        margin: 1.5rem 0;
        min-height: 400px;
    }
    
    /* Image gallery */
    .image-gallery-enhanced {
        margin: 2.5rem auto;
        padding: 0 1rem;
    }
    
    /* Improved spacing between sections */
    section {
        margin-bottom: 2.5rem;
    }
    
    section:last-child {
        margin-bottom: 0;
    }
    
}

/* PC版のスタイルを明示的に定義 */
@media (min-width: 769px) {
    /* デスクトップ版のメニュー表示 */
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
        z-index: auto !important;
        margin-top: 0 !important;
        gap: 2rem !important;
    }
    
    /* デスクトップ版ではハンバーガーメニューを非表示 */
    button.menu-toggle,
    .menu-toggle,
    header nav .menu-toggle,
    nav .menu-toggle,
    .header-container nav .menu-toggle,
    .header-container > nav > .menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > button.menu-toggle,
    nav button.menu-toggle,
    header nav button.menu-toggle {
        display: none !important;
    }
    
     /* デスクトップ版のプルダウンメニュー */
     .dropdown-menu {
         display: none !important;
         position: absolute !important;
         top: calc(100% + 0.5rem) !important;
         left: -1rem !important;
         background: #fff !important;
         box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
         padding: 0.75rem 0 !important;
         margin-top: 0 !important;
         width: auto !important;
         min-width: 240px !important;
         max-width: none !important;
         box-sizing: border-box !important;
         border-radius: 8px !important;
         overflow: hidden !important;
         white-space: nowrap !important;
         z-index: 1002 !important;
         border: 1px solid rgba(244, 186, 99, 0.15) !important;
     }
     
     .dropdown:hover .dropdown-menu,
     .dropdown:focus-within .dropdown-menu,
     .dropdown-menu:hover {
         display: block !important;
     }
     
     /* プルダウンメニューが開いている間、ホバー状態を維持 */
     .dropdown:has(.dropdown-menu:hover) .dropdown-menu {
         display: block !important;
     }
     
     .dropdown-menu a {
         padding: 0.875rem 2rem 0.875rem 3rem !important;
        color: var(--text-primary) !important;
         display: flex !important;
         align-items: center !important;
         gap: 0.75rem !important;
         transition: all 0.2s ease !important;
         font-size: 0.95rem !important;
         line-height: 1.5 !important;
         position: relative !important;
     }
     
     .dropdown-menu .dropdown-icon {
         width: 22px !important;
         height: 22px !important;
         flex-shrink: 0 !important;
         object-fit: contain !important;
     }
     
     .dropdown-menu a::before {
         content: '' !important;
         position: absolute !important;
         left: 0 !important;
         top: 0 !important;
         bottom: 0 !important;
         width: 3px !important;
         background: var(--brand-gradient) !important;
         transform: scaleY(0) !important;
         transition: transform 0.2s ease !important;
     }
     
     .dropdown-menu a:hover {
         background-color: rgba(244, 186, 99, 0.08) !important;
         color: var(--brand-secondary) !important;
         padding-left: 3.25rem !important;
     }
     
     .dropdown-menu a:hover::before {
         transform: scaleY(1) !important;
     }
     
     .dropdown-menu li:first-child a {
         padding-top: 1rem !important;
     }
     
     .dropdown-menu li:last-child a {
         padding-bottom: 1rem !important;
     }
    
    .nav-menu li {
        width: auto !important;
    }
    
    .nav-menu a {
        width: auto !important;
        padding: 0.5rem 0 !important;
    }
    
    .badge-container {
        grid-template-columns: repeat(5, 1fr) !important;
    }
    
    .facts-list {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .footer-column {
        text-align: left !important;
    }
    
    .social-links-footer {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }
}

/* Additional Smooth Animations */
.ranking-card,
.shop-news-card,
.stat-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.ranking-card:nth-child(1) { animation-delay: 0.1s; }
.ranking-card:nth-child(2) { animation-delay: 0.2s; }
.ranking-card:nth-child(3) { animation-delay: 0.3s; }

.shop-news-card:nth-child(1) { animation-delay: 0.1s; }
.shop-news-card:nth-child(2) { animation-delay: 0.2s; }
.shop-news-card:nth-child(3) { animation-delay: 0.3s; }
.shop-news-card:nth-child(4) { animation-delay: 0.4s; }
.shop-news-card:nth-child(5) { animation-delay: 0.5s; }
.shop-news-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Header Logo Animation */
.logo {
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    transition: transform 0.3s;
}

.logo:hover img {
    transform: rotate(5deg);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading Animation for Images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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

/* モバイル版でハンバーガーメニューを確実に表示 - 最後に配置してデスクトップ版のスタイルを上書き */
@media screen and (max-width: 768px) {
    /* すべての可能なセレクターでハンバーガーメニューを表示 */
    button.menu-toggle,
    .menu-toggle,
    header nav .menu-toggle,
    nav .menu-toggle,
    .header-container nav .menu-toggle,
    .header-container > nav > .menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > button.menu-toggle,
    nav button.menu-toggle,
    header nav button.menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        position: relative !important;
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.75rem !important;
        line-height: 1 !important;
        background: transparent !important;
        border: none !important;
        color: var(--text-white) !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        margin: 0 !important;
    }
}

