        html{
             overscroll-behavior-y: none;
        }
        body {
            font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background-size: cover;
        }

        /* ナビゲーション */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 0.1em;
        }

        .logo img {
            min-height: 100px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
        }

        .nav-links a:hover {
            color: #ff6b6b;
        }

        /* ヒーローセクション */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        .hero::before {
            content: '';
            position: fixed; /* ここをfixedにする */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1; /* コンテンツの下に配置 */
        }
        .hero-page {
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-content {
            text-align: center;
            color: #fff;
            animation: fadeInUp 1s ease;
            
        }

        .hero h1 , .hero-page h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            letter-spacing: 0.2em;
            text-shadow: 2px 2px 30px rgba(0,0,0,0.9);
            
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            letter-spacing: 0.1em;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #ff6b6b;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: bold;
            letter-spacing: 0.1em;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        /* こだわりセクション */
        .concept {
            padding: 5rem 2rem;
            background: #f8f8f8;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            letter-spacing: 0.1em;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ff6b6b;
        }

        .concept-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .concept-item {
            text-align: center;
            padding: 2rem;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .concept-item:hover {
            transform: translateY(-10px);
        }

        .concept-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: #ff6b6b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
        }

        /* メニューセクション */
        .menu {
            padding: 5rem 2rem;
            background: #1a1a1a;
            color: #fff;
        }

        .menu .section-title {
            color: #fff;
        }
        .menu-category-group{
            width: 100%;
        }
        .menu-category-group .menu-category-title {
            margin-top: 2rem;
            font-size: 1.5rem;
            background: #000;
            padding: 1rem;
        }
        .menu-grid {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
        }
        
        .menu-image {
            background: rgba(255,255,255,0.05);
            /*border: 1px solid rgba(255,255,255,0.1); */
            border-radius: 0px;
            /*padding: 2rem; */
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: normal;
            background-size: cover;
        }

        .menu-image:hover {
            /*transform: translateY(-5px); */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        .menu-grid a {
            color: #fff;
            text-decoration: none; 
        }
        /* 背景画像がある場合のテキストスタイル */
        .menu-image h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
            position: relative;
            z-index: 2;
            text-shadow: #070707 1px 0px 3px;
        }

        .menu-image p {
            position: relative;
            z-index: 2;
            margin-bottom: 0.5rem;
        }
        .menu-img-wrap{
            display: grid;
            place-items: center;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.76) 90%);
            transition-property: opacity;
            transition-duration: 0.8s;
        }
        .menu-image .menu-img-wrap div{
            border-radius: 0px;
            height: 150px;
            width: 100%;
        }
        .menu-image .menu-img-wrap div h4,.menu-image .menu-img-wrap div p{
            text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
        }
        .menu-image div.menu-img-wrap:hover {
            opacity: 0.7; 
        }
        .menu-image:hover div.menu-img-wrap{
            background: rgba(0,0,0,0.2);
        }
        .menu-image a {
            color: #fff;
            text-decoration: none;
            
        }
        .menu-price {
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 1rem;
            position: relative;
            z-index: 2;
        }

        /* 背景画像がない場合のスタイルを保持 */
        .menu-image:not([class*="menu-item-"]) {
            background: rgba(255,255,255,0.05);
        }

        .menu-image:not([class*="menu-item-"]):hover {
            background: rgba(255,255,255,0.1);
            /*transform: scale(1.05);*/
        }

        #menu-list {
            padding-bottom: 2rem;
        }

        /* 店舗情報 */
        .info {
            padding: 5rem 2rem;
            background: #f8f8f8;
        }

        .info-container {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .info-item {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .info-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
        }

        .info-item p {
            line-height: 1.8;
        }

        /* 求人情報 */
        .recruit {
            padding: 5rem 2rem;
            background: #fff;
        }

        .recruit-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .recruit-grid {
            max-width: 1000px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .recruit-item {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #ff6b6b;
        }

        .recruit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #ff6b6b;
        }

        .recruit-details p {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .recruit-details .label {
            display: inline-block;
            width: 100px;
            font-weight: bold;
            color: #666;
        }

        .recruit-benefits {
            max-width: 800px;
            margin: 0 auto 3rem;
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 10px;
        }

        .recruit-benefits h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #ff6b6b;
        }

        .recruit-benefits ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .recruit-benefits li {
            position: relative;
            padding-left: 1.5rem;
        }

        .recruit-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff6b6b;
            font-weight: bold;
        }

        .makanai-special {
            margin-top: 2rem;
            padding: 1.5rem;
            background: #fff3f3;
            border-radius: 10px;
            border: 2px solid #ff6b6b;
            position: relative;
            overflow: hidden;
        }

        .makanai-special::before {
            content: '🍴';
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 60px;
            opacity: 0.1;
        }

        .makanai-special h4 {
            font-size: 1.2rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
        }

        .makanai-special p {
            line-height: 1.8;
            font-style: italic;
        }

        .recruit-apply {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .recruit-apply h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #ff6b6b;
        }

        .contact-info {
            font-size: 1.1rem;
            margin: 2rem 0;
            line-height: 1.8;
        }

        .apply-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #ff6b6b;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: bold;
            letter-spacing: 0.1em;
            margin-top: 1rem;
        }

        .apply-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        /* フッター */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 0;
        }

        .map-container {
            width: 100%;
            height: 400px;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .footer-info {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .footerlogo {
            max-height: 100px;
        }
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }
        .footer-section a{
            color: #fff;
            text-decoration: none;;
        }
        .footer-bottom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #333;
        }

        /* アニメーション */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* スクロールアニメーション */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            body{
                margin: 0;
                background-size:800px;
                background-position: 50% 0 !important;
            }
            .section-title{
                font-size: 2rem;
            }
            .hero {
                background-size: contain;
                background-position: 50% 50%;
                background-repeat: no-repeat;
            }
            .hero h1, .hero-page h1 {
                font-size: 2.5rem;
            }
            .logo img {
                min-height: 50px;
            }
            .nav-container{
                background: rgba(20, 20, 20, 0.95);
            }
            .menu-image {
                background-size: contain;
            }
            /*　ハンバーガーメニューボタン　*/

            .hamburger-menu {
                position: fixed; /* 画面を基準に右上に固定 */
                top: 10px;
                right: 20px;
                width: 57px;
                height: 57px;
                border: none;
                background: transparent;
                cursor: pointer;
                z-index: 101; /* ヘッダー(100)より手前に表示 */
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            /* ハンバーガーの三本線 */
            .hamburger-menu__bar {
                display: block;
                width: 30px;
                height: 3px;
                background-color: white;
                margin: 6px auto;
                transition: all 0.3s;
                filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
            }
            .hamburger-menu__text {
                color: white;
                font-size: 12px;
                font-weight: bold;
                line-height: 1;
                margin-top: 0px; /* 三本線との間隔 */
                /* 影を追加して文字を読みやすくする */
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            }
            /* ボタンが active になった時（JSで制御） */
            /* 1本目の線：傾ける */
            .hamburger-menu.active .hamburger-menu__bar:nth-child(1) {
                transform: translateY(20px) rotate(45deg);
            }
            /* 2本目の線：透明にする */
            .hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
                opacity: 0;
            }
            /* 3本目の線：傾ける */
            .hamburger-menu.active .hamburger-menu__bar:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            /* ======== スライドメニュー ======== */
            .slide-menu {
                position: fixed; /* 画面に固定 */
                top: 0;
                left: 0;
                width: 250px;
                height: 100vh; /* 画面の高さ一杯 */
                background-color: #2c3e50;
                padding-top: 80px; /* ヘッダーと被らないように余白 */
                transform: translateX(-100%); /* 初期状態では画面の左外に隠す */
                transition: transform 0.3s ease-in-out; /* なめらかなアニメーション */
                z-index: 99;
            }

            /* メニューが active になった時（JSで制御） */
            .slide-menu.active {
                transform: translateX(0); /* 画面内に表示 */
            }

            /* メニューリストのスタイル */
            .slide-menu ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .slide-menu li a {
                display: block;
                color: white;
                text-decoration: none;
                padding: 15px 20px;
            }

            .slide-menu li a:hover {
                background-color: #34495e;
            }

            /* ======== オーバーレイ ======== */
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
                visibility: hidden; /* 初期状態では非表示 */
                opacity: 0;
                transition: opacity 0.3s, visibility 0.3s;
                z-index: 98;
            }

            /* オーバーレイが active になった時（JSで制御） */
            .overlay.active {
                visibility: visible;
                opacity: 1;
            }


            .nav-links {
                display: none;
            }
            
            .info-container {
                grid-template-columns: 1fr;
            }
            
            .recruit-grid {
                grid-template-columns: 1fr;
            }
            
            .recruit-benefits ul {
                grid-template-columns: 1fr;
            }
            
            .footer-info {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .map-container {
                height: 300px;
            }
            .menu-grid {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 0rem;
            }
            .hero-page{
                height: 50vh;
            }
        }
