@charset "UTF-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 50%, #1a1a1a 100%);
            color: #fff;
            overflow-x: hidden;
            margin-left: 250px;
            transition: margin-left 0.3s ease;
        }
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100vh;
            background: linear-gradient(180deg, rgba(255, 87, 34, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 2rem 0;
            box-shadow: 4px 0 20px rgba(255, 87, 34, 0.3);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand {
            text-align: center;
            padding: 0 1rem 2rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
        }
        
        .navbar-brand h2 {
            font-size: 1.5rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            margin-bottom: 0.5rem;
        }
        
        .navbar-brand p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .nav-item {
            margin-bottom: 0.5rem;
        }
        
        .nav-link {
            display: block;
            padding: 1rem 1.5rem;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            font-size: 1.1rem;
            position: relative;
        }
        
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #fff;
            transform: translateX(5px);
        }
        
        .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            border-left-color: #fff;
            font-weight: bold;
            color: #2c1810;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-toggle {
            display: none;
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 1001;
            background: linear-gradient(45deg, #FF5722, #FFD700);
            border: none;
            color: white;
            padding: 0.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .nav-toggle:hover {
            transform: scale(1.1);
        }

        .site-header.hide{
            top: -200px;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.3) 0%, transparent 30%),
                radial-gradient(circle at 80% 30%, rgba(255, 87, 34, 0.3) 0%, transparent 30%),
                radial-gradient(circle at 60% 80%, rgba(255, 193, 7, 0.2) 0%, transparent 30%);
            overflow: hidden;
        }
        
        .fireworks {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .firework {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            animation: explode 2s ease-out infinite;
        }
        
        .firework:nth-child(1) {
            top: 10%;
            left: 20%;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.8) 0%, transparent 70%);
            animation-delay: 0s;
        }
        
        .firework:nth-child(2) {
            top: 20%;
            right: 15%;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.8) 0%, transparent 70%);
            animation-delay: 0.5s;
        }
        
        .firework:nth-child(3) {
            bottom: 30%;
            left: 30%;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.6) 0%, transparent 70%);
            animation-delay: 1s;
        }
        
        @keyframes explode {
            0% {
                transform: scale(0) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: scale(1.2) rotate(180deg);
                opacity: 0.8;
            }
            100% {
                transform: scale(2) rotate(360deg);
                opacity: 0;
            }
        }
        
        .main-title {
            text-align: center;
            z-index: 10;
            position: relative;
        }
        
        .title-text {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FFD700, #FF8C00, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
            margin-bottom: 1rem;
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
            to { text-shadow: 0 0 40px rgba(255, 193, 7, 0.8); }
        }
        
        .subtitle {
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 2rem;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
        }
        
        .beer-glass {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 150px;
            height: 200px;
            background: linear-gradient(to bottom, #FFF 0%, #FFF 20%, #FFD700 20%, #FF8C00 100%);
            border-radius: 10px 10px 15px 15px;
            animation: float 3s ease-in-out infinite;
        }
        
        .beer-foam {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 40px;
            background: #FFF;
            border-radius: 50%;
            animation: foam 2s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(10px); }
        }
        
        @keyframes foam {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.1); }
        }
        
        .food-items {
            position: absolute;
            left: 10%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .food-item {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-image: url("https://shopping.geocities.jp/kouragumi/sale/beergarden/img/shohin1.jpg");
            animation: bounce 2s ease-in-out infinite;
        }
        
        .food-item:nth-child(1) {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .food-item:nth-child(2) {
            background: linear-gradient(45deg, #FF9800, #FFD54F);
            animation-delay: 0.3s;
        }
        
        .food-item:nth-child(3) {
            background: linear-gradient(45deg, #8BC34A, #4CAF50);
            animation-delay: 0.6s;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .container_slid {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: absolute;
            top: 75% !important;
        }

        .scroll-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .scroll-wrapper {
            display: flex;
            width: calc(200% + 40px);
            animation: scroll 20s linear infinite;
        }

        .scroll-wrapper:hover {
            animation-play-state: paused;
        }

        .image-item {
            flex: 0 0 250px;
            height: 180px;
            margin: 10px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(45deg, #ff6b6b, #ffa726, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .image-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .image-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* 実際の画像用のスタイル */
        .actual-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 画像を枠にフィットさせる（推奨） */
            object-position: center;
            transition: transform 0.3s ease;
        }

        /* 画像サイズ対応のバリエーション */
        .fit-contain .actual-image {
            object-fit: contain; /* 画像全体を表示（余白あり） */
        }

        .fit-fill .actual-image {
            object-fit: fill; /* 画像を強制的に伸縮 */
        }

        .fit-scale-down .actual-image {
            object-fit: scale-down; /* 小さい画像はそのまま、大きい画像は縮小 */
        }

        .fit-none .actual-image {
            object-fit: none; /* 元のサイズのまま（中央でクリップ） */
        }

        .image-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        .image-item:hover .image-content::before {
            transform: translateX(100%);
        }

        .image-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 20px 15px 15px;
            text-align: center;
            font-weight: bold;
            font-size: 0.3em;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .coupon-section {
            background: linear-gradient(135deg, #FF5722 0%, #FF8C00 100%);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .coupon-content {
            position: relative;
            z-index: 2;
        }
        
        .coupon-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .coupon-deals {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .deal {
            background: rgba(255, 255, 255, 0.9);
            color: #FF5722;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            font-size: 1.5rem;
            font-weight: bold;
            transform: scale(1);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .deal:hover {
            transform: scale(1.05);
        }
        
        .period {
            font-size: 1.2rem;
            margin-top: 1rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            display: inline-block;
        }
        
        .menu-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
        }

        .menu-section2 {
            margin: 0 auto;
            padding: 20px;
        }
        
        .menu-title {
            text-align: center;
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 3rem;
        }
        
        .menu-grid {

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0 auto;
        }

        .menu-grid2 {
            word-wrap: break-word;
            gap: 20px;
        }

        
        .menu-item {
            background: linear-gradient(135deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(255, 193, 7, 0.3);
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
        }
        
        .menu-item h3 {
            font-size: 1.5rem;
            color: #2c1810;
            margin-bottom: 1rem;
        }

        .menu-item p {
    color:#2c1810;
}
        
        .menu-item.special-offer {
            position: relative;
            background:#ffffff;
            border: 20px solid #bd0202;
        }

        .menu-item.special-offer2 {
            position: relative;
            background:#ffffff;
            border: 10px solid #0221bd;
        }
        .menu-item.special-offer4 {
            position: relative;
            background:#ffffff;
            border: 10px solid #02bd66;
        }

        .menu-item.special-offer3 {
            position: relative;
            background:#ffffff;
            border: 10px solid #dbc501;
        }
        
        .sale-badge {
            position: absolute;
            top: -30px;
            right: -10px;
            background-color:#bd0202;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .sale-badge2 {
            position: absolute;
            top: -30px;
            right: -10px;
            background-color:#0221bd;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
        }
        .sale-badge3 {
            position: absolute;
            top: -30px;
            right: -10px;
            background-color:#02bd66;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .badge-red{
            background-color: #bd0202;
        }

        .badge-blue{
            background-color: #0221bd;
        }
        .badge-green{
            background-color: #02bd66;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 20, 147, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0); }
        }
        
        .price-section {
            margin: 1rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        
        .original-price {
            font-size: 1.2rem;
            color: #2c1810;
            text-decoration: line-through;
        }
        
        .sale-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #bd0202;
        }

        [data-shipping*="送料無料"] .price small .text-muted {
    color: #bd0202 !important;
}

.text-muted {
    color: #b2c0cc !important;
}
        
        .order-btn {
            background:#bd0202;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .order-btn:hover {
            transform: translateY(-2px);
        }

        .order-btn a {
            color: white;
        }
        
        @media (max-width: 768px) {
            .title-text {
                font-size: 2.5rem;
            }
            
            .beer-glass, .food-items {
                display: none;
            }
            
            .coupon-deals {
                flex-direction: column;
                align-items: center;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                margin-left: 0;
            }
            
            .navbar {
                transform: translateX(-100%);
            }
            
            .navbar.active {
                transform: translateX(0);
            }
            
            .nav-toggle {
                display: block;
            }
        }
        
        .container {
    font-family: 'Yu Gothic UI', 'Segoe UI Black', 'Osaka', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.cord-body h3{
     color:rgb(65, 32, 32);
}




