/* 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: 99999;
    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;
    }
    
    /* デスクトップ版ではハンバーガーメニューを非表示 - 後ろのメディアクエリで統一管理 */
    
    /* ランキングセクション：パソコン版では3位まで表示 */
    .ranking-card-mobile-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !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;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
    z-index: 1000;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--text-white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0.5rem;
        gap: 0.25rem;
        order: 3;
    }
    
    .lang-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }
}

.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;
    padding-left: 3rem;
    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,
#mobile-menu-toggle,
header nav .menu-toggle,
header nav button.menu-toggle,
nav .menu-toggle,
nav button.menu-toggle,
.header-container nav .menu-toggle,
.header-container nav button.menu-toggle,
.header-container > nav > .menu-toggle,
.header-container > nav > button.menu-toggle,
header .header-container nav .menu-toggle,
header .header-container nav button.menu-toggle,
header .header-container > nav > .menu-toggle,
header .header-container > nav > button.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,
.header-nav .menu-toggle,
.header-nav button.menu-toggle,
#header-nav .menu-toggle,
#header-nav 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: 100000 !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 {
    display: none !important;
}

.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(6, 1fr);
    gap: 0.75rem;
    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);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* 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 Images Grid - 3つの横長の写真を横並び */
.content-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.content-image-card {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.content-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.3);
}

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

/* Book Your Experience Section - Class Informationと同じトンマナ */
.booking-experience-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(244, 186, 99, 0.2);
}

.booking-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    font-size: 1.1rem;
}

.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-text strong {
    color: var(--text-primary);
    font-weight: normal;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sidebar-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    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: 16px;
    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;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin-bottom: 2rem;
}

.booking-information {
    width: 100%;
    min-width: 0;
}

.booking-experience-section {
    width: 100%;
    min-width: 0;
}

.booking-calendar {
    display: none; /* カレンダーはClass Informationの下に移動したため非表示 */
}

/* Privateページではbooking-calendarを表示 */
.booking-section-combined .booking-calendar {
    display: block;
}

.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 - モバイル版は後ろのメディアクエリで詳細に定義 */

.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;
}

/* パソコン版：YouTubeと統計カードを横並び */
@media (min-width: 769px) {
    .video-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .video-container-enhanced {
        flex: 0 0 auto;
        max-width: 60%;
        width: 100%;
        margin: 2rem auto;
        min-width: 0;
    }
    
    .video-wrapper {
        padding-bottom: 56.25% !important;
    }
    
    .video-stats {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 2rem !important;
        padding: 0 1rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-item {
        min-width: 0 !important;
        max-width: none !important;
        padding: 1rem 0.75rem !important;
        flex: none !important;
        margin-bottom: 0 !important;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }
}

.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: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

/* パソコン版：追加カードを表示 */
@media (min-width: 769px) {
    .gallery-card-desktop-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        box-shadow: var(--shadow-lg) !important;
        transition: all var(--transition-base) !important;
        background: var(--bg) !important;
    }
    
    .gallery-card-desktop-only:hover {
        transform: none !important;
        box-shadow: var(--shadow-lg) !important;
    }
}

.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(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    padding: 5rem 3rem !important;
    border-radius: 24px;
    margin: 5rem auto !important;
    border: none;
    max-width: 1400px;
    width: calc(100% - 4rem);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    min-height: 500px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(244, 186, 99, 0.15);
}

.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.05;
    pointer-events: none;
}

.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: 4rem;
    position: relative;
    padding-bottom: 2rem;
}

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

.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: 3rem;
    margin-bottom: 0.75rem;
    color: var(--brand-secondary);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.highlight-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.2px;
}

.highlight-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.highlight-features h3,
.highlight-about h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--brand-secondary);
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

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

.highlight-section li {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    position: relative;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--brand-primary);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(244, 186, 99, 0.1);
    font-size: 1rem;
    line-height: 1.7;
    backdrop-filter: blur(10px);
}

.highlight-section li:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(244, 186, 99, 0.2);
    border-left-width: 6px;
    border-left-color: var(--brand-secondary);
}

.feature-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-radius: 50%;
    padding: 6px;
    transition: all var(--transition-base);
}

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

.highlight-about {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    padding: 2.5rem;
    border: 1px solid rgba(244, 186, 99, 0.2);
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.highlight-about:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(244, 186, 99, 0.15);
    transform: translateY(-4px);
}

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

.highlight-about-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
}

.highlight-about:hover .highlight-about-image {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    transform: scale(1.02);
}

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

.highlight-about:hover .highlight-about-image img {
    transform: scale(1.05);
}

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

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

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

.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 {
    display: none;
}

.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;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* メニューが開いている時は表示 */
    body.menu-open .nav-menu,
    html.menu-open .nav-menu,
    .header-nav.active .nav-menu,
    #header-nav.active .nav-menu,
    nav.header-nav.active .nav-menu,
    nav#header-nav.active .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    /* Show hamburger menu on mobile - デスクトップ版のスタイルを上書き */
    button.menu-toggle,
    .menu-toggle,
    #mobile-menu-toggle,
    header nav .menu-toggle,
    header nav button.menu-toggle,
    nav .menu-toggle,
    nav button.menu-toggle,
    .header-container nav .menu-toggle,
    .header-container nav button.menu-toggle,
    .header-container > nav > .menu-toggle,
    .header-container > nav > button.menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container > nav > button.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,
    header nav button[class*="menu-toggle"],
    nav button[class*="menu-toggle"],
    .header-container nav button[class*="menu-toggle"],
    .header-nav .menu-toggle,
    .header-nav button.menu-toggle,
    #header-nav .menu-toggle,
    #header-nav button.menu-toggle,
    #header-nav #mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 100000 !important;
        position: relative !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-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 - 参考サイトの実装に基づく */
    body.menu-open .header-nav.active,
    body.menu-open #header-nav.active,
    body.menu-open #header-nav,
    html.menu-open .header-nav.active,
    html.menu-open #header-nav.active,
    html.menu-open #header-nav,
    body.menu-open nav.header-nav.active,
    body.menu-open nav#header-nav.active,
    body.menu-open nav#header-nav,
    .header-nav.active,
    #header-nav.active,
    nav.header-nav.active,
    nav#header-nav.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        background: var(--brand-gradient) !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        padding: 80px 1rem 1rem 1rem !important;
        box-sizing: border-box !important;
        z-index: 2147483647 !important;
        margin-top: 0 !important;
        gap: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    /* メニュー内のul要素のスタイル */
    body.menu-open .header-nav.active .nav-menu,
    body.menu-open #header-nav.active .nav-menu,
    .header-nav.active .nav-menu,
    #header-nav.active .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    /* Menu overlay */
    .menu-overlay {
        display: none;
    }
    
    body.menu-open .menu-overlay.active,
    body.menu-open #menu-overlay.active,
    html.menu-open .menu-overlay.active,
    html.menu-open #menu-overlay.active,
    .menu-overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 2147483646 !important;
    }
    
    /* Body menu-open state */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    html.menu-open {
        overflow: hidden !important;
    }
    
    /* メニューが開いている時、すべてのfixed/sticky要素を確実に下げる */
    body.menu-open header,
    body.menu-open .header-container,
    body.menu-open .menu-toggle,
    html.menu-open header,
    html.menu-open .header-container,
    html.menu-open .menu-toggle {
        z-index: 1 !important;
        position: relative !important;
        transform: none !important;
        -webkit-transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }

    /* モバイル版でプルダウンメニューを常に表示 */
    body.menu-open .dropdown-menu,
    html.menu-open .dropdown-menu,
    .header-nav.active .dropdown-menu,
    #header-nav.active .dropdown-menu {
        display: block !important;
        position: static !important;
        box-shadow: none !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        background: transparent !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: auto !important;
    }
    
    .dropdown-menu li {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem 1rem 3.5rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        transition: all 0.3s !important;
    }
    
    .dropdown-menu a:hover {
        color: var(--text-white) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        padding-left: 4rem !important;
    }
    
    .dropdown-menu .dropdown-icon {
        display: none !important;
    }
    
    .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;
        display: flex;
        flex-direction: column;
    }
    
    /* スマホ版でAbout Our Sushi Making Classesセクションを非表示 */
    .highlight-about {
        display: none !important;
    }
    
    /* スマホ版でWhat You'll Learnセクションを非表示 */
    .highlight-section {
        display: none !important;
    }
    
    /* 問い合わせフォームは表示 */
    #contact-form.highlight-section {
        display: block !important;
    }
    
    /* スマホ版でQuick Facts（サイドバー）を非表示 */
    .content-sidebar {
        display: none !important;
    }
    
    /* スマホ版のセクション順番を変更 */
    .hero-slider {
        order: 1;
    }
    
    .content-section-enhanced {
        order: 2;
    }
    
    .image-gallery-enhanced {
        order: 3;
    }
    
    .booking-section-combined {
        order: 4;
    }
    
    /* セクション間のスペーシングを改善 - 全ページ統一 */
    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 1rem auto;
        padding: 0 0.5rem;
    }
    
    /* About Sushi Making Tokyo/Osaka セクション - スマホ版デザイン（ミニマルスタイル） */
    .content-section-enhanced .content-main {
        padding: 1.25rem 0.75rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        border: none;
        margin: 1rem 0;
        position: relative;
    }
    
    .content-section-enhanced .content-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--brand-gradient);
        border-radius: 1px;
    }
    
    /* タイトルラッパーとロゴ - スマホ版のみ */
    .content-title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    
    .content-title-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
        opacity: 0.85;
        animation: float 3s ease-in-out infinite;
    }
    
    /* 文字を小さくする */
    .content-section-enhanced .content-title {
        font-size: 1.25rem;
        margin-bottom: 0;
        margin-top: 0;
        line-height: 1.4;
        text-align: center;
        color: var(--brand-secondary);
        font-weight: 700;
        padding: 0;
        border: none;
        position: relative;
        letter-spacing: -0.3px;
    }
    
    .content-section-enhanced .content-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--brand-gradient);
        margin: 0.75rem auto 0;
        border-radius: 1px;
    }
    
    
    .content-section-enhanced .content-text {
        font-size: 1.0rem;
        line-height: 1.65;
        text-align: center;
        color: var(--text-primary);
        margin-top: 1rem;
    }
    
    .content-section-enhanced .content-text p {
        margin-bottom: 1rem;
        padding: 0;
        background: transparent;
        border-radius: 0;
        border-left: none;
        position: relative;
        padding-left: 0;
    }
    
    .content-section-enhanced .content-text p::before {
        display: none;
    }
    
    .content-section-enhanced .content-text strong {
        color: var(--text-primary);
        font-weight: normal;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    .booking-information .content-text {
        text-align: left;
    }
    
    /* スマホ版専用の写真ショーケース - デフォルトで非表示 */
    .mobile-image-showcase {
        display: none;
    }
    
    .mobile-showcase-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 1 / 1;
    }
    
    .mobile-showcase-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(244, 186, 99, 0.3);
    }
    
    .mobile-showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .mobile-showcase-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
        padding: 0.75rem;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-showcase-item:hover .mobile-showcase-overlay {
        transform: translateY(0);
    }
    
    .mobile-showcase-overlay h4 {
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
    }
    
    /* パソコン版では非表示 */
    @media (min-width: 769px) {
        .mobile-image-showcase {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: hidden !important;
        }
    }
    
    /* スマホ版のみ表示 */
    @media (max-width: 768px) {
        .mobile-image-showcase {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            margin: 1.5rem 0;
            padding: 0;
            visibility: visible !important;
            opacity: 1 !important;
            height: auto !important;
            overflow: visible !important;
        }
    }
    
    .content-text p {
        margin-bottom: 0.5rem;
    }
    
    .booking-section-combined {
        margin: 1.5rem auto;
        padding: 0;
    }
    
    /* モバイル版：予約カレンダーを先に表示 */
    .booking-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .booking-calendar {
        display: block !important; /* Privateページのカレンダーを表示 */
        order: -1; /* カレンダーを先に表示 */
        width: 100%;
        padding: 1.25rem 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        border: 2px solid rgba(244, 186, 99, 0.2);
    }
    
    .booking-calendar h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        text-align: center;
        color: var(--brand-secondary);
        font-weight: 700;
    }
    
    .booking-calendar p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: center;
        color: var(--text-secondary);
    }
    
    .bokun-widget-container {
        margin: 0;
        min-height: 450px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        padding: 0.5rem;
        box-sizing: border-box;
    }
    
    .booking-information {
        width: 100%;
        order: -1;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .booking-information .content-title,
    .booking-experience-section .content-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
        text-align: center;
        color: var(--brand-secondary);
        font-weight: 700;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(244, 186, 99, 0.3);
    }
    
    .booking-experience-section {
        order: 1;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid rgba(244, 186, 99, 0.3);
    }
    
    .booking-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .booking-information .content-text {
        font-size: 0.8rem;
        line-height: 1.6;
        color: var(--text-primary);
    }
    
    .booking-information .content-text h3 {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: var(--brand-secondary);
        padding-left: 0.5rem;
        border-left: 3px solid var(--brand-primary);
    }
    
    .booking-information .content-text ul {
        margin: 0.75rem 0;
        padding-left: 1.75rem;
    }
    
    .booking-information .content-text li {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 0.4rem;
        position: relative;
    }
    
    .booking-information .content-text li::marker {
        color: var(--brand-primary);
    }
    
    .booking-information .content-text p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
    .booking-information .content-text strong {
        color: var(--text-primary);
        font-weight: normal;
    }
    
    .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: 16px;
    }
    
    .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;
        border-radius: 12px;
    }
    
    .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;
    }
    
    /* スマホ版：contactページのSNSロゴと文字サイズを縮小 */
    .cta-section a[href*="youtube"],
    .cta-section a[href*="instagram"],
    .cta-section a[href*="facebook"],
    .cta-section a[href*="tiktok"] {
        gap: 0.4rem !important;
    }
    
    .cta-section a[href*="youtube"] img,
    .cta-section a[href*="instagram"] img,
    .cta-section a[href*="facebook"] img,
    .cta-section a[href*="tiktok"] img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .cta-section a[href*="youtube"] span,
    .cta-section a[href*="instagram"] span,
    .cta-section a[href*="facebook"] span,
    .cta-section a[href*="tiktok"] span {
        font-size: 0.75rem !important;
        font-weight: 500 !important;
    }
    
    .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: 0.5rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    /* 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: 0;
        max-width: none;
        padding: 0.6rem 0.4rem;
        flex: 1 1 calc(50% - 0.25rem);
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 1.1rem;
        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.75rem;
        padding: 0;
    }
    
    .gallery-card-desktop-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .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;
    }
    
    /* Content Images Grid - スマホ版 */
    .content-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .content-image-card {
        border-radius: 12px;
    }
    
    /* 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 */
    /* デスクトップ版の予約セクションは既存のスタイルを維持 */
    
    /* Image gallery */
    .image-gallery-enhanced {
        margin: 2.5rem auto;
        padding: 0 0.5rem;
    }
    
    /* Improved spacing between sections */
    section {
        margin-bottom: 2.5rem;
    }
    
    section:last-child {
        margin-bottom: 0;
    }
    
    /* Quick Facts Mobile - 横3列×縦2行のグリッドレイアウト */
    .quick-facts-mobile {
        display: block;
        margin: 0.75rem 0 1.5rem 0;
        padding: 0 0.5rem;
        background: linear-gradient(135deg, rgba(244, 186, 99, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
        border-radius: 16px;
        padding: 1.25rem 0.75rem;
    }
    
    .quick-facts-title {
        font-size: 1.2rem;
        color: var(--brand-secondary);
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0;
    }
    
    .quick-facts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0;
    }
    
    .quick-fact-card {
        background: #ffffff;
        border: none;
        border-radius: 16px;
        padding: 1rem 0.75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 100px;
        text-align: center;
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        cursor: pointer;
        will-change: transform, box-shadow;
    }
    
    .quick-fact-card:nth-child(1) { animation-delay: 0.1s; }
    .quick-fact-card:nth-child(2) { animation-delay: 0.2s; }
    .quick-fact-card:nth-child(3) { animation-delay: 0.3s; }
    .quick-fact-card:nth-child(4) { animation-delay: 0.4s; }
    .quick-fact-card:nth-child(5) { animation-delay: 0.5s; }
    .quick-fact-card:nth-child(6) { animation-delay: 0.6s; }
    
    .quick-fact-card:hover {
        transform: translateY(-8px) scale(1.05) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%) !important;
    }
    
    .quick-fact-card:active {
        transform: translateY(-4px) scale(1.02) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .quick-fact-icon {
        width: 45px;
        height: 45px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .quick-fact-content {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        width: 100%;
        text-align: center;
    }
    
    .quick-fact-content strong {
        font-size: 0.65rem;
        color: var(--text-primary);
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 0.15rem;
    }
    
    .quick-fact-content p {
        font-size: 0.75rem;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.4;
        font-weight: 500;
    }
    
    /* パソコン版では非表示 */
    @media (min-width: 769px) {
        .quick-facts-mobile {
            display: none;
        }
    }
    
}

/* PC版のスタイルを明示的に定義 */
@media (min-width: 769px) {
    /* デスクトップ版：ロゴを非表示 */
    .content-section-enhanced .content-title-logo {
        display: none !important;
    }
    
    .content-section-enhanced .content-title-wrapper {
        display: block !important;
    }
    
    /* 左右のカードの配置を揃える（下のカードに揃える） */
    .content-main {
        display: flex;
        flex-direction: column;
    }
    
    .content-sidebar {
        display: flex;
        flex-direction: column;
    }
    
    .sidebar-card {
        flex: 1;
    }
    
    /* Content Images Grid - パソコン版 */
    .content-images-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    /* パソコン版：Quick Factsのデザイン - 背景オレンジ、横長カード縦1列、ロゴと文字横並び */
    .sidebar-card {
        background: linear-gradient(135deg, rgba(244, 186, 99, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
        border: none;
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(244, 186, 99, 0.12);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .sidebar-card::before {
        display: none;
    }
    
    .sidebar-card h3 {
        font-size: 1.75rem;
        color: var(--brand-secondary);
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
        padding-bottom: 1.25rem;
        border-bottom: 3px solid rgba(244, 186, 99, 0.3);
        letter-spacing: -0.3px;
        position: relative;
    }
    
    .sidebar-card h3::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--brand-gradient);
        border-radius: 2px;
    }
    
    .facts-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .facts-list li {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        padding: 0.75rem 1.25rem;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        font-size: 0.95rem;
        color: var(--text-primary);
        line-height: 1.5;
        min-height: 55px;
        width: 100%;
    }
    
    .facts-list li:hover {
        background: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .facts-list li .fact-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: linear-gradient(135deg, rgba(244, 186, 99, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
        border-radius: 50%;
        padding: 10px;
        transition: all 0.3s ease;
    }
    
    .facts-list li:hover .fact-icon {
        background: linear-gradient(135deg, rgba(244, 186, 99, 0.25) 0%, rgba(217, 119, 6, 0.25) 100%);
        transform: scale(1.1);
    }
    
    .facts-list li .fact-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    .facts-list li .fact-text {
        flex: 1;
        min-width: 0;
    }
    
    .facts-list li strong {
        display: inline;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brand-secondary);
        margin-right: 0.5rem;
        letter-spacing: -0.2px;
    }
    
    .facts-list li .fact-text span:not(strong) {
        font-size: 0.95rem;
        color: var(--text-primary);
        line-height: 1.6;
    }
    
    /* スマホ版のQuick Factsをパソコン版で完全に非表示 */
    .quick-facts-mobile {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    /* デスクトップ版のメニュー表示 */
    .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;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* デスクトップ版ではactiveクラスを無視 - モバイル版のスタイルを上書きしないように */
    .nav-menu.active {
        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;
        visibility: visible !important;
        opacity: 1 !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    /* デスクトップ版ではハンバーガーメニューを非表示 */
    button.menu-toggle,
    .menu-toggle,
    #mobile-menu-toggle,
    header nav .menu-toggle,
    header nav button.menu-toggle,
    nav .menu-toggle,
    nav button.menu-toggle,
    .header-container nav .menu-toggle,
    .header-container nav button.menu-toggle,
    .header-container > nav > .menu-toggle,
    .header-container > nav > button.menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container > nav > button.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,
    .header-nav .menu-toggle,
    .header-nav button.menu-toggle,
    #header-nav .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: 0.5rem !important;
         background: #fff !important;
         box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
         padding: 0.5rem 0 0.5rem 1rem !important;
         margin-top: 0 !important;
         width: auto !important;
         min-width: 320px !important;
         border-radius: 12px !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 1.5rem 0.875rem 3rem !important;
        color: var(--text-primary) !important;
         display: flex !important;
         align-items: center !important;
         gap: 0.875rem !important;
         transition: all 0.2s ease !important;
         font-size: 0.95rem !important;
         line-height: 1.6 !important;
         position: relative !important;
         white-space: nowrap !important;
     }
     
     .dropdown-menu .dropdown-icon {
         width: 20px !important;
         height: 20px !important;
         flex-shrink: 0 !important;
         object-fit: contain !important;
         opacity: 0.85 !important;
     }
     
     .dropdown-menu a::before {
         display: none !important;
     }
     
     .dropdown-menu a:hover {
         background-color: rgba(244, 186, 99, 0.08) !important;
         color: var(--brand-secondary) !important;
         padding-left: 2.875rem !important;
         padding-right: 1.5rem !important;
     }
     
     .dropdown-menu a:hover .dropdown-icon {
         opacity: 1 !important;
     }
     
     
     .dropdown-menu li:first-child a {
         padding-top: 0.875rem !important;
     }
     
     .dropdown-menu li:last-child a {
         padding-bottom: 0.875rem !important;
     }
    
    .nav-menu li {
        width: auto !important;
    }
    
    .nav-menu a {
        width: auto !important;
        padding: 0.5rem 0 !important;
    }
    
    .badge-container {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 1.5rem !important;
        max-width: 1800px !important;
        margin: 0 auto !important;
    }
    
    .badge-item {
        padding: 1rem 0.75rem !important;
        gap: 0.75rem !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .badge-icon {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
    }
    
    .badge-text {
        min-width: 0 !important;
        flex: 1 !important;
    }
    
    .badge-text strong {
        font-size: 1.1rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }
    
    .badge-text span {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
    }
    
    .facts-list {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 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;
    }
    
    /* Hero Slider - PC版専用スタイル */
    .hero-slider {
        height: 92vh !important;
        min-height: 750px !important;
    }
    
    /* Highlight Section - PC版専用スタイル */
    .highlight-section {
        padding: 4rem 3rem !important;
        max-width: 1200px;
        margin: 4rem auto !important;
    }
    
    .highlight-header {
        margin-bottom: 3rem;
    }
    
    .highlight-content-grid {
        gap: 3rem;
        margin-top: 2.5rem;
    }
    
    .highlight-section h2 {
        font-size: 2.5rem;
    }
    
    .highlight-subtitle {
        font-size: 1.2rem;
    }
    
    .highlight-features h3,
    .highlight-about h3 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .highlight-section li {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        left: 1rem;
    }
    
    .highlight-about {
        padding: 2.5rem;
    }
    
    .highlight-about-images img {
        height: 180px;
    }
    
    /* Content Section のサイズ調整 */
    .content-section-enhanced {
        margin: 3rem auto;
        padding: 0 2rem;
        max-width: 1400px;
    }
    
    /* ホテル情報セクション専用の幅調整 */
    .content-section-enhanced .content-main:has(.hotel-info-wrapper) {
        max-width: 100%;
    }
    
    .content-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Video Section のサイズ調整 */
    .video-section-enhanced {
        margin: 3rem auto;
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .video-container-enhanced {
        flex: 0 0 60%;
        max-width: 60%;
        margin: 1.5rem 0;
    }
    
    /* Schedule Cards のサイズ調整 */
    .schedule-cards-grid {
        gap: 0.5rem;
        margin: 2rem 0;
    }
    
    .schedule-card {
        padding: 0.7rem 2rem;
        gap: 2.5rem;
    }
    
    .schedule-card-title {
        font-size: 1.8rem !important;
        min-width: 130px;
        padding-right: 2rem;
    }
    
    .schedule-card-content {
        gap: 0.1rem !important;
    }
    
    .schedule-item {
        gap: 1.2rem;
        padding: 0.1rem 0 !important;
    }
    
    .schedule-card-time {
        font-size: 1.25rem !important;
        min-width: 100px;
        padding: 0.3rem 0.6rem !important;
    }
    
    .schedule-card-activity {
        font-size: 1.1rem !important;
        line-height: 1.15 !important;
    }
    
    .schedule-card-time-full {
        font-size: 1.25rem !important;
        padding: 0.35rem 0.7rem !important;
        width: auto !important;
        text-align: left !important;
    }
    
    .schedule-card-activity-full {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }
    
    .schedule-item-full {
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    
    .schedule-cards-grid {
        gap: 0.5rem !important;
    }
    
    .schedule-card {
        padding: 0.7rem 2rem !important;
    }
    
    /* Hotel Info のサイズ調整 */
    .hotel-info-wrapper {
        gap: 3rem;
        margin-top: 2rem;
        grid-template-columns: 1.3fr 1fr;
        align-items: stretch;
    }
    
    .hotel-images {
        display: flex;
        align-items: stretch;
        height: 100%;
        position: relative;
    }
    
    .hotel-images img {
        width: 100%;
        height: auto;
        min-height: 400px;
        max-height: 450px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
    }
    
    .hotel-info-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hotel-info-content {
        padding: 0;
    }
    
    .hotel-info-content .content-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hotel-info-content .content-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .hotel-info-images {
        margin: 1.5rem 0;
    }
    
    .hotel-info-images img {
        height: 180px;
    }
    
    .hotel-contact {
        margin-top: 1.5rem;
    }
    
    /* Gallery のサイズ調整 */
    .image-gallery-enhanced {
        margin: 3rem auto;
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Additional Images のサイズ調整 */
    .additional-images-grid {
        gap: 2rem;
        margin: 2.5rem 0;
    }
    
    .additional-image-card img {
        height: 350px;
    }
    
    .highlight-about-content {
        gap: 2.5rem;
    }
    
    .highlight-about-text p {
        font-size: 1.05rem;
        line-height: 1.9;
    }
    
    /* Booking Section - PC版で横並び */
    .booking-container {
        flex-direction: row !important;
        gap: 3rem !important;
        align-items: flex-start !important;
    }
    
    .booking-information {
        flex: 1;
        width: auto;
    }
    
    .booking-experience-section {
        flex: 1;
        width: auto;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !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,
    #mobile-menu-toggle,
    header nav .menu-toggle,
    header nav button.menu-toggle,
    nav .menu-toggle,
    nav button.menu-toggle,
    .header-container nav .menu-toggle,
    .header-container nav button.menu-toggle,
    .header-container > nav > .menu-toggle,
    .header-container > nav > button.menu-toggle,
    header .header-container nav .menu-toggle,
    header .header-container nav button.menu-toggle,
    header .header-container > nav > .menu-toggle,
    header .header-container > nav > button.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,
    header nav button[class*="menu-toggle"],
    nav button[class*="menu-toggle"],
    .header-container nav button[class*="menu-toggle"],
    .header-nav .menu-toggle,
    .header-nav button.menu-toggle,
    #header-nav .menu-toggle,
    #header-nav button.menu-toggle,
    #header-nav #mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 100000 !important;
        position: relative !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-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;
    }
    
    /* モバイル版でメニューがactiveの時に確実に表示 - 参考サイトの実装に基づく */
    body.menu-open .header-nav.active,
    body.menu-open #header-nav.active,
    body.menu-open #header-nav,
    html.menu-open .header-nav.active,
    html.menu-open #header-nav.active,
    html.menu-open #header-nav,
    body.menu-open nav.header-nav.active,
    body.menu-open nav#header-nav.active,
    body.menu-open nav#header-nav,
    .header-nav.active,
    #header-nav.active,
    nav.header-nav.active,
    nav#header-nav.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        background: var(--brand-gradient) !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        padding: 80px 1rem 1rem 1rem !important;
        box-sizing: border-box !important;
        z-index: 2147483647 !important;
        margin-top: 0 !important;
        gap: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    /* メニュー内のul要素（.nav-menu）を確実に表示 */
    body.menu-open .header-nav.active .nav-menu,
    body.menu-open #header-nav.active .nav-menu,
    body.menu-open #header-nav .nav-menu,
    html.menu-open .header-nav.active .nav-menu,
    html.menu-open #header-nav.active .nav-menu,
    html.menu-open #header-nav .nav-menu,
    body.menu-open nav.header-nav.active .nav-menu,
    body.menu-open nav#header-nav.active .nav-menu,
    body.menu-open nav#header-nav .nav-menu,
    .header-nav.active .nav-menu,
    #header-nav.active .nav-menu,
    nav.header-nav.active .nav-menu,
    nav#header-nav.active .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* メニュー内のli要素のスタイル */
    body.menu-open .header-nav.active .nav-menu li,
    body.menu-open #header-nav.active .nav-menu li,
    .header-nav.active .nav-menu li,
    #header-nav.active .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* メニュー内のリンクのスタイル */
    body.menu-open .header-nav.active .nav-menu > li > a,
    body.menu-open #header-nav.active .nav-menu > li > a,
    .header-nav.active .nav-menu > li > a,
    #header-nav.active .nav-menu > li > a {
        display: block !important;
        padding: 1rem 1.5rem !important;
        color: var(--text-white) !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        transition: background-color 0.3s !important;
    }
    
    body.menu-open .header-nav.active .nav-menu > li > a:hover,
    body.menu-open #header-nav.active .nav-menu > li > a:hover,
    .header-nav.active .nav-menu > li > a:hover,
    #header-nav.active .nav-menu > li > a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* プルダウンメニューがある項目の▼アイコンを非表示 */
    body.menu-open .header-nav.active .nav-menu > li.dropdown > a::after,
    body.menu-open #header-nav.active .nav-menu > li.dropdown > a::after,
    .header-nav.active .nav-menu > li.dropdown > a::after,
    #header-nav.active .nav-menu > li.dropdown > a::after {
        display: none !important;
    }
    
    /* Menu overlay - モバイル版 */
    .menu-overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999998 !important;
    }
    
    /* デスクトップ版：ロゴを非表示 */
    .content-section-enhanced .content-title-logo {
        display: none !important;
    }
    
    .content-section-enhanced .content-title-wrapper {
        display: block !important;
    }
}

/* Schedule List - 横並びスタイル */
.schedule-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.schedule-list li {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(244, 186, 99, 0.3);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.schedule-list li:hover {
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 186, 99, 0.2);
}

/* モバイル版：スケジュールも横1列に */
@media (max-width: 768px) {
    .schedule-list {
        flex-direction: row;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .schedule-list li {
        padding: 0.4rem 0.5rem;
        font-size: 0.8rem;
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        white-space: nowrap;
    }
}

/* Schedule Cards - Sushi Making on the SEA */
.schedule-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.schedule-card {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.25);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-card-title {
    font-size: 1.2rem;
    color: var(--brand-secondary);
    margin-bottom: 0;
    font-weight: 700;
    padding: 0;
    border-bottom: none;
    border-right: 2px solid rgba(244, 186, 99, 0.2);
    padding-right: 1.5rem;
    text-align: left;
    position: relative;
    min-width: 80px;
    flex-shrink: 0;
}

.schedule-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding-top: 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
}

.schedule-item-full {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.schedule-card-time {
    font-weight: 600;
    color: var(--brand-secondary);
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    background: rgba(244, 186, 99, 0.08);
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 70px;
    text-align: center;
}

.schedule-card-time-full {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    width: auto;
    text-align: left;
}

.schedule-card-activity {
    color: var(--text-primary);
    font-size: 0.85rem;
    line-height: 1.4;
    flex: 1;
}

.schedule-card-activity-full {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0;
}

/* モバイル版：Schedule Cards */
@media (max-width: 768px) {
    .schedule-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin: 0.75rem 0;
    }
    
    .schedule-card {
        background: #ffffff;
        border: none;
        border-radius: 16px;
        padding: 0.7rem 0.9rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, box-shadow;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.9rem;
    }
    
    .schedule-card:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
    }
    
    .schedule-card::before {
        display: none;
    }
    
    .schedule-card-title {
        font-size: 0.95rem;
        color: var(--brand-secondary);
        margin-bottom: 0;
        padding-bottom: 0;
        padding-right: 0.9rem;
        border-bottom: none;
        border-right: 2px solid rgba(244, 186, 99, 0.2);
        font-weight: 700;
        text-align: left;
        min-width: 55px;
        flex-shrink: 0;
    }
    
    .schedule-card-content {
        gap: 0.25rem;
        flex: 1;
        padding-top: 0;
    }
    
    .schedule-item {
        gap: 0.5rem;
        padding: 0.15rem 0;
        align-items: center;
    }
    
    .schedule-item-full {
        gap: 0.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .schedule-card-time {
        font-size: 0.7rem;
        padding: 0.18rem 0.35rem;
        min-width: 50px;
        line-height: 1.15;
    }
    
    .schedule-card-time-full {
        font-size: 0.72rem;
        padding: 0.22rem 0.45rem;
        width: auto;
        text-align: left;
    }
    
    .schedule-card-activity {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .schedule-card-activity-full {
        font-size: 0.72rem;
        line-height: 1.25;
        text-align: left;
    }
    
    /* セクション全体のマージン調整 */
    .content-section-enhanced {
        margin: 1.5rem auto;
        padding: 0 0.75rem;
    }
    
    .content-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
}

/* Hotel Information - THE SCENE */
.hotel-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 1.5rem;
}

.hotel-images {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.hotel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-images img:hover {
    transform: scale(1.02);
}

/* Highlight About Images */
.highlight-about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
}

.highlight-about-images::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-radius: 16px;
    z-index: -1;
}

.highlight-about-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.highlight-about-images img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.3);
    border-color: var(--brand-primary);
}

/* Hotel Info Images */
.hotel-info-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hotel-info-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-info-images img:hover {
    transform: scale(1.05);
}

/* モバイル版：Hotel Info Images を正方形で横並びに */
@media (max-width: 768px) {
    .hotel-info-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1rem 0;
        width: 100%;
    }
    
    .hotel-info-images img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
    }
}

/* Additional Images Grid */
.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.additional-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(244, 186, 99, 0.25);
}

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


/* モバイル版：Additional Images */
@media (max-width: 768px) {
    .highlight-about-images {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .highlight-about-images img {
        height: 150px;
    }
    
    .hotel-info-images {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .hotel-info-images img {
        height: 150px;
    }
    
    .additional-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .additional-image-card img {
        height: 200px;
    }
}

.hotel-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-info-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-primary);
}

.hotel-contact {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
    border-radius: 10px;
    border: 1px solid rgba(244, 186, 99, 0.3);
}

.hotel-contact p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hotel-contact a {
    color: var(--brand-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hotel-contact a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* モバイル版：Hotel Information */
@media (max-width: 768px) {
    .hotel-info-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hotel-images {
        gap: 0.75rem;
    }
    
    .hotel-images img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    .hotel-info-content {
        gap: 1rem;
    }
    
    .hotel-info-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hotel-info-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .hotel-info-images img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
    }
    
    .hotel-contact {
        padding: 0.75rem;
    }
    
    .hotel-contact p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Dietary Options Grid - 4つのカード形式 */
.dietary-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.dietary-option-card {
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(244, 186, 99, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}


.dietary-option-card:hover {
    background: linear-gradient(135deg, rgba(244, 186, 99, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 186, 99, 0.2);
}

.dietary-option-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.dietary-option-card p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* モバイル版：Dietary Optionsを2列に */
@media (max-width: 768px) {
    .dietary-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .dietary-option-card {
        padding: 0.4rem 0.5rem;
        gap: 0.25rem;
    }
    
    
    .dietary-option-card h4 {
        font-size: 0.85rem;
        margin-bottom: 0;
        margin-top: 0;
        line-height: 1.1;
    }
    
    .dietary-option-card p {
        font-size: 0.65rem;
        line-height: 1.15;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin: 1rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--brand-secondary);
    font-weight: 600;
}

.breadcrumb-list a {
    color: var(--brand-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-list a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.breadcrumb-list span[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0 0.75rem;
        margin: 0.75rem auto;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

/* Quick Factsカードのホバーエフェクト - グローバル */
.quick-fact-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.quick-fact-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

