@charset "utf-8";
/* CSS Document */

      main{ position: relative; padding-top:  8rem;}
        @media (max-width: 768px) {main{ position: relative; padding-top: 5rem!important;}}

       /* === ページタイトル（SEARCHセクション専用） === */
        .page-fv {
            /* 添付画像F59EEF6C-4EB9-44C0-A308-0BF6F5574E97.jpgを参考に作成 */
            background-image: url("../../images/menu-page-fv-pc.webp"); /* 背景画像プレースホルダー */
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
		
		@media screen and (max-width: 736px){
        .page-fv {
            background-image: url("../../images/menu-page-fv-sp.webp");
        }}		
		
        .page-fv::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }
        .fv-title-en {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: 0.05em;
            position: relative;
            z-index: 10;
        }
        .fv-title-jp {
            font-size: 1.25rem;
            color: #fff;
            margin-top: 0.5rem;
            position: relative;
            z-index: 10;
            text-align: center;
        }
        @media (max-width: 767px) {
            .page-fv { height: 250px; }
            .fv-title-en { font-size: 3rem; line-height: 0.7;}
        }

        /* アンカーナビ */
        .menu-anchor-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 5rem;
        }
		
		
        .menu-anchor-link {
            padding: 0.6rem 1.5rem;
            background: #fff;
            border: 1px solid #e5e7eb;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 9999px;
            transition: 0.3s;
            min-width: 92px;
            text-align: center;
        }
		
		@media (max-width: 768px) {
        .menu-anchor-link {
            padding: 0.6rem 0.7rem;
            min-width: 130px;
            margin-top: 0.3rem;
        }}
		
        .menu-anchor-link:hover {
            background: #433f37;
            color: #fff;
        }

      /* メニューセクション */
        
        .menu-wrap{
            padding-top: 4rem;
            padding-bottom: 9rem;
            background-color: rgb(242, 239, 234);
        }
        
        @media (max-width: 768px) {
        .menu-wrap{
            padding-top: 2rem;
            padding-bottom:6rem;
        }}        
        
        
        .menu-section {
            scroll-margin-top: 180px;
            margin-bottom: 4rem;
        }
        .menu-category-title {
            font-family: 游明朝, serif;
            font-size: 1.75rem;
            border-bottom: 2px solid #a67c34;
            display: inline-block;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
        }
        
        .menu-card {
            background: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .menu-info { flex: 1; width:100%;}
        .menu-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
		@media (max-width: 768px) {.menu-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.15rem; }}
        .menu-desc { font-size: 0.85rem; color: #666; line-height: 1.6; }
        .menu-price { font-weight: 700; font-size: 1.2rem; color: #a67c34; margin-left: 1.5rem; white-space: nowrap; }
        .menu-price span { font-size: 0.8rem; margin-left: 2px; }

        .notes-box {
            background: #ffffff96;
            padding: 2rem;
            font-size: 0.85rem;
            border-radius: 4px;
            line-height: 1.8;
        }
        /* 店舗専用案内ボックス */
        .store-identity-box {
            border: 1px solid #e5e7eb;
            background-color: #f9fafb;
            padding: 1.5rem;
            margin-bottom: 3rem;
            border-radius: 8px;
            text-align: center;
        }

        /* フェードイン */
        .fade-in-section { opacity: 0; transform: translateY(20px); transition: 0.8s ease-out; }
        .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 640px) {
            .menu-card { flex-direction: column; }
            .menu-price { margin-left: 0; margin-top: 0.75rem; font-size: 1.3rem; width: 100%; text-align: right;}
        }
		