* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: 'Shippori Mincho', serif;
            line-height: 1.7;
            color: #4a3c28;
            background-color: #faf8f5;
            margin: 0;
            padding: 0;
            background-image: url("images/coffeeback.jpeg");
            background-size: contain;        /* ページ全体に広げる */
            background-position: center top; /* 中央寄せ */
            background-attachment: scroll; /* 固定せずスクロール */
            min-height: 100vh;
        }

        body.top-page {
            background-size: contain;
        }
                
        .section-divider svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .bottom-wave svg {
            transform: scaleY(-1); /* ← 上下反転 */
        }

        .top-wave {
            margin-bottom: -40px;   /* 上の波線の下端をセクションに近づける */
        }

        .bottom-wave {
            margin-top: -20px;      /* 下の波線の上端をセクションに近づける */
        }

        /* コンテンツ部分だけ中央寄せ */
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }


        /* header 全幅 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(139, 116, 87, 0.1);
        }


        /* ハンバーガーメニュー*/
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1100; /* メニューより上に出す */
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #4a3c28;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.2rem 0.8rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-logo img {  /*左上のサリーのlogo部分 */
            height: 60px;
            width: auto;
        }


        .nav-info {
            font-family: 'Shippori Mincho', serif;
            font-size: 0.9rem;
            color: #4a3c28;
            margin-left: 0; /* ロゴとの間隔 */
            display: flex;
            gap: 2rem; /* ブロック間の間隔 */
        }

        .nav-block {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.4;
        }

        .nav-block .label {
            font-size: 0.8rem;
            color: #7a6d5d; /* ラベルは控えめ */
        }

        .nav-block .value {
            font-size: 1rem;
            color: #4a3c28;
            text-decoration: none; /* 電話リンクの下線消し */
        }


        /* 初期状態（非表示） */
        .nav-links {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            list-style: none;   /* ← 「・」を消す */
            padding-left: 5px;    /* ← 左の余白も一緒に消す */
            margin: 0;          /* ← 余計なマージンも消す（必要なら） */
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.98);
            /* 必要なら z-index も調整 */
        }

        /* 開いている状態 */
        .nav-links.active {
            display: flex; /* ← これがないと表示されない場合がある */
            flex-direction: column;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


        /* 閉じるアニメーション中 */
        .nav-links.closing {
            opacity: 0;
            transform: translateY(-10px);
        }

        .nav-links a {    /* 右上の文字(コンセプトなど) */
            text-decoration: none;
            color: #4a3c28;
            font-weight: 400;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: #8b7457;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #8b7457;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .tel-link {
            color: #876244;         /* 文字色（例：濃いグレー） */
            font-size: 18px;     /* 文字サイズ */
            text-decoration: none; /* 下線を消す */
            font-weight: normal;   /* 太字にしたい場合 */
        }


        /* ヒーローセクション */
        .hero {
            height: 99.5vh;
            background: url("images/hero-main.jpg") no-repeat center center;
            background-size: cover;   /* ← 余白なしで画面いっぱい */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #faf8f5;
            position: relative;
            overflow: hidden;
        }

        .hero-news {
            background: url("images/hero-news.jpg") no-repeat center center;
            background-size: cover; 
        }

        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .hero-content h1 {
            font-family: 'Shippori Mincho', serif;
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1.2s ease;
            font-weight: normal;
            font-style: italic;
            letter-spacing: 2px;
        }


        .hero-content img {
            height: 250px;  
            width: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.15);
            color: #faf8f5;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 400;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            animation: fadeInUp 1.2s ease 0.6s both;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #8b7457;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

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


        /* セクション共通 */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Shippori Mincho', serif;
            font-size: 2.8rem;
            color: #8b7457;
            margin-bottom: 2.5rem;
            position: relative;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #8b7457, #c7b299);
            border-radius: 2px;
        }



        /* 画像付きコンテンツセクション */
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 3rem;
            margin: 0;
            padding: 0;
        }

        .content-section.reverse {
            direction: rtl;
        }

        .content-section.reverse > * {
            direction: ltr;
        }

        .content-text h3 {
            font-family: 'Shippori Mincho', serif;
            font-size: 2rem;
            color: #876244;
            margin-bottom: 1.5rem;
            font-weight: bold;
            letter-spacing: 1px;
            padding-right: 5rem;
            padding-left: 5rem;
        }


        /* 画像スライド横の説明文　*/
        .content-text p {  
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #5a4d3d;
            padding-left: 4rem;
            padding-right: 5rem;       
        }

        .content-image {
            width: 100%;
            max-width: 600px;     /* ← 横幅を制限して文章内に収める */
            margin: auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(139, 116, 87, 0.2);
            position: relative;
            margin: 0;
            padding: 0;
        }


        .content-image:hover {
            transform: translateY(-8px);
        }

        .image-slider {
            width: 100%;
            max-width: 1105px;
            margin: auto;
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            will-change: transform;
            isolation: isolate; /* ←追加で全体の揺れ防止 */
        }


        .slider-track {
            display: flex;
            width: 300%;
            transition: transform 0.6s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: auto;
        }

        .content-image img,
        .slide img {
            width: 33.5%;   
            height: auto;    /*　高さは自動　*/
            object-fit: contain; /* カットせず全部表示　*/
            display: block;  /* 余計な隙間を消す　*/

        }


        /* コントロール（ドット・ボタン・プログレスバー）はお好みで */
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }

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

        .slider-dot.active {
            background: rgba(255, 255, 255, 0.9);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transform-origin: center center;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 18px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            opacity: 0;
            will-change: transform, opacity;
            isolation: isolate;
        }

        .image-slider {
            transform: translateZ(0);
        }

        .slider-nav {
            transform-origin: center center;
        }

        .image-slider:hover .slider-nav {
            opacity: 1;
        }

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

        .slider-nav.prev { left: 15px; }
        .slider-nav.next { right: 15px; }

        .slider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: rgba(255, 255, 255, 0.8);
            transition: none;
            z-index: 2;
        }

        .content-image:hover .slider-progress {
            animation-play-state: paused;
        }



        /* コンセプトセクション */
        .concept {
            background: linear-gradient(135deg, #fff);
            padding-top: 30px;
            padding-right: 20px;
            padding-bottom: 20px;
            padding-left: 20px;
        }


        #concept {
          scroll-margin-top: 150px; /* ヘッダーの高さに合わせる */
        }
        


        /* お知らせセクション　*/
        .news-section {
            padding: 4rem 2rem;
            text-align: center;
            background: linear-gradient(135deg,  #faf8f5);
        }

        
        .news-section h3 {
            font-family: 'shippori Mincho', serif;
            font-size: 2.3rem;
            color: #65435;
            margin-bottom: 1.5rem;
        }

        .news-list   {
            margin-top: 1rem;
            padding: 0;
        }

        .news-list li {
            list-style: none;
            margin: 0.5rem 0;
        }

        .news-list a {
            color: #662b00;
            text-decoration: underline;
            text-decoration-thickness: 1px;   /* 下線の太さ */
            text-underline-offset: 5px;   
            font-size: 1.25rem;
        }

        .news-list a:hover {
            text-decoration: underline; /* マウスオーバーで下線 */
        }

        #news {
            scroll-margin-top: 100px; /* ヘッダーの高さに合わせる */
        }

        .news-date {
            color: #8b7457;   /* 茶系 */
            margin-right: 0.3rem;
        }



        /*　「お知らせ一覧」のサイトに飛ぶボタン　*/
        .news-more {
            text-align: right;       /* 右端に寄せる */
            padding-left: 10px;
            margin-top: 1rem;        /* 少し下げる */
        }

        .news-more a {
            color: #662b00;          
            text-decoration: none;   
            font-size: 1.25rem;       
            transition: text-decoration 0.3s ease;
        }

        .news-more a:hover {
            text-decoration: underline;  /* ホバー時のみ下線表示 */
            text-underline-offset: 4px;
        }



        /*　こだわりサイトに飛ぶ「詳しくはこちら」ボタン　*/
        .kodawari-list   {
            margin-top: 1rem;
            padding-left: 0;
            margin-left: 4.0em;      /* ← <p>と左端をぴったり合わせる */
        }

        .kodawari-list li {
            list-style: none;
            margin: 0.5rem 0;
        }

        .kodawari-list a {
            color: #662b00;
            text-decoration: underline;
            text-decoration-thickness: 1px;   /* 下線の太さ */
            text-underline-offset: 5px;   
            font-size: 1.25rem;
        }
        
        .kodawari-list a:hover {
            text-decoration: underline; /* マウスオーバーで下線 */
        }



        /* メニューセクション */
        .menu {
            background: #faf8f5;
            padding-top: 30px;
        }

        .menu-intro { /* メニューロゴ下の説明文の見せ方　*/
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .menu-intro p {  /* メニューロゴ下の説明文章　*/
            font-size: 1.25rem;
            color: #5a4d3d;
            line-height: 1.8;
        }

        .menu-category.two-column {
            background: linear-gradient(135deg, #f5f0e8, #ffffff);
            padding: 2rem;
            border-radius: 50px;
            border: 1px solid rgba(139, 116, 87, 0.1);
            box-shadow: 0 8px 25px rgba(139, 116, 87, 0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 4rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .menu-category.two-column h3 {
            font-family: 'Shippori Mincho', serif;
            font-size: 2.3rem;
            color: #734e30;
            margin-bottom: -1.5rem;
            grid-column: 1 / -1;
            text-align: center;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .menu-category.two-column h3 .sub-label {
            font-size: 1.5rem;       /* 小さめにする */
            font-weight: normal;     /* 太字にしない */
            color: #734e30;    
            margin-left: 0.1rem;     /* FOODとの間に余白 */
        }


        /*通常メニュー用*/
        .menu-category.two-column .menu-item {
            display: flex;
            align-items: baseline;
            justify-content: flex-start;
            gap: 2rem;
            border-bottom: 1px dotted rgba(139, 116, 87, 0.3);
            padding-bottom:1rem;
            margin-bottom: -1.5rem;
        }


        /* 共通で二列化できるクラス */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 4rem;
        }


        /* スマホでは1列 */
        @media (max-width: 768px) {
          .two-column {
            grid-template-columns: 1fr;
          }
        }

        
        .menu-category.two-column .menu-item-price {
            flex: 0 0 auto;
            min-width: 5.5ch;
            text-align: right;
        }

        .menu-item {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 2rem;
            border-bottom: 1px dotted rgba(139, 116, 87, 0.3);
            padding-bottom: rem;
            margin-bottom: 1.2rem;
        }

        .menu-item-info {
            flex: 1;
        }

        .menu-item-name {
            font-weight: 500;
            color: #4a3c28;
            font-size: 1rem;
            white-space: normal;     /* ← 自然な改行を許可 */
            word-break: keep-all;    /* ← 日本語の変な位置での改行を防止 */
            line-height: 1.4;        /* ← 行間を少し広げて読みやすく */
        }

        .menu-item-name-en {  /*英語版*/
            font-size: 0.85em; /* 少し小さくする */
            color: #666;       /* 落ち着いた色に */
            margin-top: -2px;  /* 上の日本語との間隔を詰める（好みで調整） */
            white-space: normal;
            word-break: keep-all;
        }
      
        .menu-item-desc {
            font-size: 1rem;
            color: #7a6d5d;
            margin-top: 0.3rem;
            line-height: 1.4;
            width: 300px;
        }

        .menu-item-price {
            display: flex;
            flex-direction: column; /* 縦並び */
            align-items: flex-end;  /* 右寄せ */
            white-space: nowrap;
        }

        .price-main {
            font-size: 0.95rem;
            font-weight: normal; /* 太字なし */
        }

        .price-sub {
            font-size: 0.85em;
            color: #666;
            margin-top: -2px;
        }
    
        .desc-line {
            border: none;
            border-top: 1px solid #ccc;   
            margin: 4px 0;
        }

        /* メニュー開閉ボタン */
        /* More/Close ボタンの見た目（テーマに合わせて茶×アイボリー） */
        .menu-more-btn-wrap {
            display: flex;
            justify-content: center;
            margin: 1px 0;
            grid-column: 1 / -1;
        }
           
        .more-toggle {
            border: 1px solid #a67c52;
            background: #fffaf2;
            color: #6d4b3e;
            font: inherit;
            font-weight: 700;
            padding: 6px 18px;
            border-radius: 999px;
            cursor: pointer;
        }

        .more-toggle:hover { 
            background: #f5e8d4; 
        }

        /* スマホ対応*/
        @media (max-width: 768px) {
            .menu-category.two-column {
                grid-template-columns: 1fr;
            }
        }

        .menu-collapsible[hidden] {
            display: none; 
        }

        
        /* 特別なメニュー用 */
        .menu-item.special-item {
            display: grid !important;   /* ← flex を上書き */
            grid-template-columns: 1fr auto; 
            gap: 1rem 2rem;
        }

        .menu-item.special-item .menu-item-info {
            grid-column: 1 / 2;
        }

        .menu-item.special-item .menu-item-price {
            grid-column: 2 / 3;
            text-align: right;
        }

        .menu-item.special-item .menu-item-desc {
            grid-column: 1 / -1; /* 横2列ぶち抜き */
            font-size: 1rem;
            color: #7a6d5d;
            margin-top: -2rem;
            line-height: 1.6;
            width: 100%;
        }


        /* アクセスセクション */
        .access {
            background: linear-gradient(135deg, #fff);
        }

        .access-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            padding-left: 2rem;
            padding-block: 0rem;
            align-items: start;
        }

        .access-info h3 {
            font-family: 'Shippori Mincho', serif;
            font-size: 1.6rem;
            color: #654535;
            margin-bottom: 0.5rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .access-info p {
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #5a4d3d;
            line-height: 1.4;
        }

        .map-placeholder {
            height: 350px;
            background: linear-gradient(135deg, #d4c4a8, #c7b299);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #faf8f5;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(139, 116, 87, 0.2);
            padding: 2rem;
            font-family: 'Shippori Mincho', Georgia, serif;
        }

        #access {
          scroll-margin-top: 150px; /* ヘッダーの高さに合わせる */
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* footer 全幅 + 中身中央寄せ */
        footer {
            background: #654500;
            color: #f5f0e8;
            padding: 4rem 2rem;
            text-align: center;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        footer p {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

    

        /* 開閉用：!important で確実に隠す */
        .is-hidden { 
            display: none !important;
        }

        .announce {
            background: #faf8f5;
            padding: 2rem;
            border-radius: 25px;
            border: 1px solid rgba(139, 116, 87, 0.1);
            box-shadow: 0 8px 25px rgba(139, 116, 87, 0.1);
            display: grid;
            gap: 2rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .announce p {
            display: block;          
            font-size: 1.0rem;
            color: #7a6d5d;
            text-align: center;    /* 中央寄せ */
            margin-top: -2rem;
            line-height: 1.6;
            padding-top: 1rem;
            padding-bottom: -5rem;
        }

        .sub-heading {
            font-family: 'Shippori Mincho', serif;
            font-size: 1rem;
            line-height: 1.4;
            margin-top: 1rem;
            grid-column: 1 / -1; /* 横2列ぶち抜き */
        }

         /* 基本のSNSアイコン（スマホ向け：小さめ） */
        .sns-icons {
            font-size: 1.5rem;
            color: #4a3c28;
            transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
            display: flex;             /* 横並び */
            justify-content: center;   /* 中央寄せ */
            gap: 20px;                 /* アイコン間隔 */
        }


        /* 768px以上の画面幅（タブレット・PC向け） */
        @media (min-width: 768px) {
            .sns-icon {
                font-size: 2.0rem;     /* 大きめに表示して見やすく */
            }
        }

        /* マウスで触れたときの演出（PC向け） */
        .sns-icon:hover {
            color: #E1306C;            /* インスタカラーに変化 */
            transform: translateY(-2px); /* 少し浮き上がる */
        }

        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: transparent;
            color: #8b7457;
            border: 1px solid #8b7457;
            border-radius: 999px;
            padding: 0.4rem 0.8rem;
            font-size: 0.95rem;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            font-family: 'Shippori Mincho', serif;
        }

        #backToTop:hover {
            background: #8b7457;
            color: #fffaf2;
        }

        #backToTop.show {
            opacity: 1;
        }




        /* スマホ・タブレット向け (768px以下) */
        @media (max-width: 768px) {

            body {
                background-size: contain !important;
                background-position: center top !important;
                overflow-x: hidden;
            }


            /* ハンバーガーメニュー */
            .hamburger {
                display: flex;
            }

            /* ナビゲーション */
            .nav-links {
                display: none; /* 初期は非表示 */
                flex-direction: column;
                align-items: flex-start;
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background: rgba(250, 248, 245, 0.98);
                padding: 1rem 2rem;
                border-top: 1px solid rgba(139, 116, 87, 0.2);
            }

            .nav-links.active {
                display: flex; /* 開いたときに表示 */
            }

            .nav-links li {
                width: 100%;
                margin: 0.3rem 0;
            }

            .nav-info {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                padding-bottom: 1rem;
                border-bottom: 1px solid rgba(139, 116, 87, 0.2);
                margin-bottom: 1rem;
            }

            /* ヒーローセクション */
            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }
            
            .hero {
                height: auto;                     
                /* 画面の高さに固定しない */
                background-size: contain;          
                /* 画像を縮小して全部見せる */
                background-repeat: no-repeat;      
                /* 繰り返さない */
                background-position: center top;   
                /* 上を優先的に見せる */
                padding-top: 70%;                  
                /* アスペクト比を保つ（画像に合わせ調整） */
                margin-top: 80px;
            }

            /* 各セクション */
            .content-section,
            .access-content {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0rem;
                padding: 0 1.5rem;
            }

            .content-section {
                grid-template-columns: 1fr;   /* 縦並び */
                padding: 0;                   /* ← sectionやcontent-sectionに余白があればリセット */
            }

            .content-section.reverse {
                direction: ltr;
            }

            .content-image {
                width: 105%;  
                margin: 0 auto;             /* ← 中央に配置 */
                max-width: none;            /* ← max-width制限を解除 */
                border-radius: 10px;       /* ← 角丸は好みで調整 */
                margin: 0 auto;
                transform: scale(1.1);  /* 10%拡大 */
                /* 必要に応じて親要素に overflow: hidden を追加 */
            }
            

            .menu-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 1rem 1rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin: 1rem 0;
                padding: 0rem;
            }

            .news-section {
                padding-top: 0rem;
                margin-top: -55px; 
            }

            .news-section .section-title {
                padding-top: 2rem;
            }
    
            .news-list a {
                color: #662b00;
                text-decoration: underline;
                text-decoration-thickness: 1px;   /* 下線の太さ */
                text-underline-offset: 5px;   
                font-size: 0.95rem;
            }

            .news-more a {
                color: #662b00;          
                text-decoration: none;   
                font-size: 0.95rem;       
                transition: text-decoration 0.3s ease;
            }


            .content-section,
            .content-image,
            .image-slider,
            .section-divider {
                margin: 0;
                padding: 0;
            }

            .content-section {
                padding : -20px;
            }

            .section-divider svg {
                display: block;
                width: 100%;
                height: auto;
            }

            .image-slider img {
                display: block;
            }

            .content-image img,
            .slide img {
                width: 33.5%;   
                height: auto;    /*　高さは自動　*/
                object-fit: contain; /* カットせず全部表示　*/
                display: block;  /* 余計な隙間を消す　*/
            }


            .content-text h3,
            .content-text p {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
                padding-top: 0.75rem;
            }

            .content-text h3 {
                font-size: 1.4rem;    /* タイトルは少し小さめに */
            }

            .content-text p {
                font-size: 1rem;     
                /* 本文も少し小さめに */
                line-height: 1.5;     
                /* 行間を少し詰める */
            }

            .content-section {
                padding-left: 1rem;
                padding-right: 1rem;
                padding-bottom: 1rem;
            }

            .content-text p {
                margin-left: 0;          /* スマホでは余白なし（画面幅を有効に使う） */
            }



             /* 店長こだわりページに飛ぶリンク */
            .kodawari-list {
                margin-left: 0;          /* 左寄せを解除 */
                text-align: center;      /* 中央寄せに切り替え */
                padding-bottom: 10px;
            }

            .kodawari-list a {
                display: inline-block;
                font-size: 1.00rem;      /* 少し見やすく */
            }
        


            .menu {
                background: #faf8f5;
                padding-top: -5px;
            }

            .menu-intro { /* メニューロゴ下の説明文の見せ方　*/
                text-align: center;
                max-width: 800px;
                margin: 0 auto 1rem;
            }

            .menu-intro p {  /* メニューロゴ下の説明文章　*/
                font-size: 0.9rem;
                color: #5a4d3d;
                line-height: 1.5;
            }

            .menu-category.two-column {
                border-radius: 30px;
                border: 1px solid rgba(139, 116, 87, 0.1);
                box-shadow: 0 8px 25px rgba(139, 116, 87, 0.1);
                display: grid;
                max-width: 100% !important; /* PC版1100pxを上書き */
                width: 100% !important; /*念のため幅を100％に固定*/
                margin: 0 rem !important; /*左右に余白*/
                padding: 0.75rem !important; /* 内側余白*/
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .menu-category.two-column h3 {
                font-size: 1.3rem;
                color: #734e30;
                line-height: 1.5;
                font-weight: bold;
                display: flex;
                flex-direction: column; /* ← 縦並びにする */
                align-items: center;    /* 中央揃えにしたい場合 */
            }

            .menu-category.two-column h3 .sub-label {
                font-size: 0.9rem;       /* 小さめにする */
                font-weight: normal;     /* 太字にしない */
                color: #734e30;    
                margin-left: 0.1rem;     /* FOODとの間に余白 */
                white-space: normal;  /* スマホでは改行してもOK */
                margin-left: 0;         /* 横の余白は不要 */
                margin-top: 0.3rem;     /* 上に少し余白を追加 */
            }

            .menu-category {
                display: grid;
                grid-template-columns: 1fr;  /* ← 強制的に1カラム */
                gap: 1.5rem;                 /* ← 各メニュー間に余白 */
            }

            .menu-item-name {
                font-size: 0.9rem;

            }

            /* メニューアイテムのテキスト調整 */
            .menu-item {
                text-align: left;     /* 左揃えで読みやすく */
                font-size: 0.85rem;      /* 少し小さめに */
                line-height: 1.2;     /* 行間を広めに */
                padding: 0.5rem 0;    /* 上下に余白 */
            }

            .menu-item-desc {
                margin-top: 0.6rem;
            }

            .menu-category.two-column .menu-item {
                flex-wrap: wrap;   /* ← はみ出し防止 */
                gap: 0.5rem;       /* ← 間隔を狭める */
                word-break: break-word;
                max-width: 100%;
            }

            .menu-item.special-item .menu-item-desc {
                margin-top: 0;    /* ← 重なり防止 */
                font-size: 0.8rem; /* ← スマホ用に少し調整してもOK */
                line-height: 1.6;
            }

            /* 画像とテキストが並んでいる場合は縦並びに */
            .menu-item img {
                max-width: 100%;
                height: auto;
                margin-bottom: 0.5rem; /* 画像と文字の間に余白 */
            }

            .menu-category,
            .menu-item {
                word-wrap: break-word;    /* 古いブラウザ用 */
                overflow-wrap: break-word; /* 標準的 */
                hyphens: auto;            /* 英語ならハイフンで分割 */
            }
        
            .menu-item-name-en {  /*英語版*/
                margin-top: 0.3rem;  
            }







            /* 💡スマホで横スクロール防止・レイアウト崩れ対策 ]
            メニュー公開後、スマホのメニュー崩れ対応で入れたもの

            */
            /* ===== Cafe Sally スマホ横スクロール完全防止 ===== */
            html, body {
              width: 100%;
              max-width: 100%;
              overflow-x: hidden;
              position: relative;
              margin: 0;
              padding: 0;
            }

            /* コンテナ類の幅調整 */
            .menu, .menu-category, .menu-item {
              max-width: 100%;
              width: 100%;
              box-sizing: border-box;
              overflow-x: hidden;
            }

            /* 特に「右端価格部分」の微ズレを防止 */
            .menu-item-price {
              text-align: right;
              max-width: 25%;
              flex: 0 0 auto;
              padding-right: 4px;
              box-sizing: border-box;
            }

            /* 万が一のはみ出し防止（画面全体を強制的に中央化） */
            /*
            body {
              transform: translateX(0);
              overflow-x: clip; /* Safari対策 */
            }
            */





            .price-sub {
                margin-top: 0.3rem;
            }

            .sub-heading {
                font-size: 0.9rem;
                margin-bottom: -1rem;
                line-height: 1.5; /*上下行間の幅*/
            }

            .announce {   /*　税込み価格表示と一品以上　*/
                padding: 1.5rem;
                display: grid;
                gap: 1rem 1rem;
                margin: 0 auto;
            }
        
            .announce p {      
                font-size: 0.85rem;
                color: #7a6d5d;
                text-align: center;    /* 中央寄せ */
                line-height: 1.2; /*上下行間の幅*/
                padding-top: 1rem;
                padding-bottom: -20rem;
            }

            .access-section {
                padding-left: 1rem;
                padding-right: 1rem;
                padding-bottom: 1rem;
                padding-top: -10rem;
            }

            .access-info h3 {
                font-family: 'Shippori Mincho', serif;
                font-size: 1.3rem;
                color: #654535;
                margin-bottom: 0.5rem;
                font-weight: 800;
                letter-spacing: 1px;
            }

            .access-info p {
                margin-bottom: 0.85rem;
                font-size: 0.90rem;
                color: #5a4d3d;
                line-height: 1.4;
            }

            .tel-link {
                text-decoration: underline;
                text-decoration-thickness: 1px;/* 下線の太さを指定 */
                text-underline-offset: 3px;/* 文字と線の距離を調整 */
            }

            .map-placeholder {
                height: 300px;
                padding: 0.5rem;
            }

            footer {
                padding: 1.5rem 1rem;
                text-align: center;
            }

            .footer-inner {
                max-width: 1200px;
                margin: 0.5 auto;
            }

            footer p {
                margin-bottom: 0rem;
                font-size: 0.9rem;
                letter-spacing: 0px;
            }

            #top {
                scroll-margin-top: 90px; 
            }

            #concept {
                scroll-margin-top: 90px; 
            }
            #menu {
                scroll-margin-top: 90px;
            }
            #access {
                scroll-margin-top: 90px;
            }


        }


        /* PC向け (768px以上) */
        @media (min-width: 768px) {
            .nav-links {
                display: flex !important;
                flex-direction: row;
                align-items: center;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                position: static !important;
                background: transparent;
                width: auto;
                padding: 1rem 2rem 1rem 1.5rem;
                gap: 2rem;
            }

            .nav-links li {
                margin: 0;
                padding-left: 1.5rem;
            }

            .nav-info {
                flex-direction: row;
                gap: 2rem;
                padding-left: 1.5rem;
            }

            .hamburger {
                display: none !important;
            }
        }

