/*
Theme Name: 食器と雑貨 hachi
Description: 八王子のうつわマルシェ LPテーマ
Version: 1.0
Author: Your Name
*/

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --c-red: #E64B3B;       
    --c-red-light: #F28C82;
    --c-cream: #FCF9F2;
    --c-black: #2C2C2C;
    --c-brown: #8D6E63;
    --c-yellow: #FFD54F;
    
    --f-pop: 'M PLUS 1p', sans-serif; 
    --f-mincho: 'Zen Old Mincho', serif;
    --f-body: 'Zen Kaku Gothic New', sans-serif;
    
    --header-height: 70px;
}

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

body {
    background-color: var(--c-cream);
    color: var(--c-black);
    font-family: var(--f-body);
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    padding-top: var(--header-height);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
.wrapper { width: 100%; overflow: hidden; position: relative; }

/* スマホのみ表示・改行用クラス */
.sp-only { display: none; }

/* 共通タイトルデザイン */
.section-title {
    font-family: var(--f-pop);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--c-red);
    text-align: center;
    
    width: fit-content;      
    margin: 0 auto 50px auto; 
    display: block;          
    position: relative;
    transform: none;         
    left: auto;              

    white-space: nowrap;
    text-shadow: 3px 3px 0 #fff, 5px 5px 0 rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
    line-height: 1.2;
}
.section-title::before, .section-title::after {
    content: ""; width: 30px; height: 6px; background: var(--c-yellow);
    position: absolute; top: 50%; transform: translateY(-50%);
}
.section-title::before { left: -50px; }
.section-title::after { right: -50px; }

/* =========================================
   2. HEADER
   ========================================= */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-height);
    z-index: 999;
    background: rgba(252, 249, 242, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid var(--c-red);
}
.header-inner {
    display: flex; justify-content: space-between; align-items: center;
    height: 100%; padding: 0 30px;
    max-width: 1200px; margin: 0 auto;
}
.logo img { height: 40px; width: auto; }

/* PCメニュー */
.nav-menu {
    display: flex; gap: 20px;
    font-weight: bold; font-family: var(--f-pop); font-size: 0.9rem;
}
.nav-menu a:hover { color: var(--c-red); }

/* ハンバーガーボタン（PCでは隠す） */
.hamburger { display: none; }


/* =========================================
   3. HERO (KV) - 画像切り替え版
   ========================================= */
.hero-kv-section {
    width: 100%;
    position: relative;
    margin-top: -70px; /* ヘッダーの高さ分、上に引き上げる */
    z-index: 1;
    overflow: hidden;
    line-height: 0; /* 画像下の隙間を消す */
}

.hero-kv-section picture {
    display: block;
    width: 100%;
    height: auto;
}

.kv-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    
    /* フワッと表示させるアニメーション */
    animation: fadeInKV 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInKV {
    0% { opacity: 0; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

/* =========================================
   4. MARQUEE
   ========================================= */
.marquee-bar {
    background: var(--c-red); padding: 12px 0;
    border-top: 3px solid var(--c-black); border-bottom: 3px solid var(--c-black);
    overflow: hidden; position: relative; 
    z-index: 20; 
    transform: rotate(1deg); 
    margin-top: -30px; 
    margin-bottom: 0; 
}
.marquee-inner {
    display: flex; white-space: nowrap;
    font-family: var(--f-pop); font-weight: 900;
    font-size: 1.3rem; color: var(--c-cream); letter-spacing: 0.05em;
}
.marquee-text {
    padding: 0 40px; animation: scrollText 20s linear infinite;
}
@keyframes scrollText { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* =========================================
   4.5 INTRO SECTION
   ========================================= */
.intro-section {
    padding: 150px 20px 100px 20px; 
    text-align: center; background: #fff;
    margin-top: -50px; position: relative; z-index: 10;
}
.intro-text {
    max-width: 800px; margin: 0 auto;
    font-size: 1.1rem; line-height: 2.2; letter-spacing: 0.05em;
}

/* =========================================
   5. ABOUT (REASON)
   ========================================= */
.concept-section {
    padding: 100px 0;
    background-image: radial-gradient(var(--c-red-light) 1px, transparent 1px);
    background-size: 20px 20px;
}
.reasons-container {
    max-width: 1100px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.reason-box {
    background: #fff; padding: 0 0 30px 0;
    border-radius: 8px; box-shadow: 8px 8px 0 var(--c-brown);
    position: relative; text-align: center; border: 3px solid var(--c-black);
    overflow: hidden;
}
.reason-img-wrap {
    width: 100%; aspect-ratio: 16 / 9;
    border-bottom: 3px solid var(--c-black);
    overflow: hidden; position: relative;
}
.reason-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.reason-box:hover .reason-img-wrap img { transform: scale(1.1); }
.reason-number {
    position: absolute; top: 0; left: 0;
    background: var(--c-yellow); color: var(--c-black);
    font-family: var(--f-pop); font-weight: 900; font-size: 1.5rem;
    padding: 10px 20px; border-right: 3px solid var(--c-black);
    border-bottom: 3px solid var(--c-black);
    z-index: 5; box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}
.reason-box h3 {
    font-family: var(--f-pop); font-weight: 800; font-size: 1.4rem;
    color: var(--c-red); margin-top: 25px; margin-bottom: 15px;
    display: inline-block; border-bottom: 3px solid var(--c-yellow);
    padding: 0 10px; line-height: 1.4;
}
.reason-box p { padding: 0 20px; font-size: 0.95rem; line-height: 1.6; }

/* タブレット調整 */
@media (max-width: 1000px) {
    .reasons-container { grid-template-columns: repeat(2, 1fr); }
    .reason-box:nth-child(3) {
        grid-column: span 2; width: 100%; max-width: 500px;
        margin-left: auto; margin-right: auto;
    }
}
@media (max-width: 600px) {
    .reasons-container { grid-template-columns: 1fr; }
    .reason-box:nth-child(3) { grid-column: auto; max-width: 100%; }
}

/* =========================================
   6. LINEUP
   ========================================= */
.lineup-section {
    padding: 100px 0; background: var(--c-cream); position: relative; overflow: hidden; 
}
.deco-dish {
    position: absolute; width: 600px; aspect-ratio: 1 / 1;
    border-radius: 50%; object-fit: cover; z-index: 0;
    opacity: 0.8; pointer-events: none; mix-blend-mode: multiply;
}
.deco-left { top: -150px; left: -200px; transform: rotate(-15deg); }
.deco-right { bottom: -150px; right: -200px; transform: rotate(15deg); }

.lineup-grid {
    max-width: 1100px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 40px; position: relative; z-index: 1;
}
.lineup-item { position: relative; }
.mt-50 { margin-top: 50px; }

.pop-sticker {
    position: absolute; background: var(--c-yellow); color: var(--c-black);
    padding: 8px 15px; font-family: var(--f-pop); font-weight: 800;
    border: 2px solid var(--c-black); box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    z-index: 20; font-size: 0.9rem;
}
.pop-1 { top: -15px; left: -10px; transform: rotate(-5deg); }
.pop-2 { bottom: 20px; right: -20px; transform: rotate(5deg); background: var(--c-red); color: #fff; }

.photo-frame {
    background: #fff; padding: 10px 10px 40px 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transform: rotate(2deg); transition: transform 0.3s;
}
.photo-frame:hover { transform: rotate(0) scale(1.02); z-index: 10; }
.txt-box {
    background: #fff; padding: 25px; border: 2px solid var(--c-black);
    margin-top: -20px; position: relative; z-index: 5;
    width: 90%; margin-left: auto; margin-right: auto;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
}
.txt-box h3 {
    font-family: var(--f-pop); font-weight: 800; font-size: 1.3rem;
    margin-bottom: 10px; color: var(--c-black);
}

/* =========================================
   7. PROFILE
   ========================================= */
.profile-section {
    padding: 80px 20px; background: var(--c-brown); color: #fff;
    position: relative; overflow: hidden;
}
.profile-section .section-title {
    color: var(--c-yellow); text-shadow: 3px 3px 0 var(--c-black);
}
.profile-inner {
    max-width: 1000px; margin: 0 auto; display: flex; align-items: flex-start; gap: 50px;
}
.signboard-img {
    width: 520px; transform: rotate(-3deg);
    border: 10px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.3); flex-shrink: 0;
    position: sticky; top: 100px;
}
.profile-text { font-family: var(--f-body); line-height: 2; flex: 1; }
.profile-name {
    font-family: var(--f-pop); font-size: 2.4rem; font-weight: 900; margin-bottom: 10px;
}
.role-wrapper {
    display: flex; align-items: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap;
}
.role { font-weight: bold; color: var(--c-yellow); margin-bottom: 0; }
.icon-insta {
    width: 24px; height: 24px; display: block; transition: transform 0.3s;
}
.icon-insta path { fill: var(--c-yellow); }
.icon-insta:hover { transform: scale(1.2); }

.history-list {
    margin-top: 40px; border-top: 1px dashed rgba(255,255,255,0.3); padding-top: 20px;
}
.history-item {
    display: flex; align-items: baseline; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dotted rgba(255,255,255,0.1);
}
.history-year {
    font-family: var(--f-pop); color: var(--c-yellow); font-size: 1.1rem; font-weight: 900; width: 90px; flex-shrink: 0;
}
.history-desc { font-size: 1rem; letter-spacing: 0.05em; }

/* =========================================
   7.5 MOVIE SECTION
   ========================================= */
.movie-section {
    padding: 80px 20px; background: #000; color: #fff; text-align: center;
}
.movie-section .section-title { color: var(--c-red); text-shadow: 2px 2px 0 #fff; }
.movie-container {
    max-width: 360px; margin: 0 auto;
    border: 4px solid #fff; box-shadow: 0 0 20px rgba(230, 75, 59, 0.5);
    aspect-ratio: 9 / 16; background: #333; overflow: hidden;
}
.movie-container img, .movie-container video {
    width: 100%; height: 100%; object-fit: cover;
}

/* =========================================
   8. SNS SECTION
   ========================================= */
 /* インスタ風カード本体 */

 .sns-section {
    padding: 100px 0;
    background-image: radial-gradient(var(--c-red-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

        .insta-card {
            flex: 0 0 300px; /* カード幅 */
            background: #fff;
            border: 2px solid var(--c-black); /* サイトの雰囲気に合わせ太枠に */
            border-radius: 12px;
            scroll-snap-align: center;
            overflow: hidden;
            box-shadow: 6px 6px 0 var(--c-brown); /* 影を茶色にしてポップに */
            transition: transform 0.3s;
            position: relative;
        }

        .insta-lead {
            max-width: 800px; 
            margin: 0 auto;
            margin-bottom: 20px;
            position: relative;
            font-size: 1.1rem; 
            line-height: 2.2; 
            letter-spacing: 0.05em;
            text-align: center; /* 👈 ここを追加！文字を中央揃えにします */
        }

        .insta-card:hover {
            transform: translateY(-5px);
        }

        /* カードヘッダー */
        .card-header {
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #eee;
        }
        .user-icon {
            width: 32px; height: 32px;
            background: var(--c-yellow);
            border-radius: 50%;
            border: 1px solid var(--c-black);
        }
        .user-name {
            font-size: 0.8rem;
            font-weight: 700;
            font-family: var(--f-body);
        }

        /* カード画像エリア */
        .card-img {
            width: 100%;
            aspect-ratio: 1 / 1; /* 正方形 */
            background: #f0f0f0;
            object-fit: cover;
            display: block;
        }

        /* アクションアイコン風装飾（飾り） */
        .card-actions {
            padding: 10px 15px 5px;
            display: flex;
            gap: 12px;
        }
        .action-icon {
            width: 20px; height: 20px;
            background: #ddd; /* アイコン代わりのダミー */
            border-radius: 4px;
            background-color: var(--c-red-light);
            mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
            mask-size: contain;
            -webkit-mask-size: contain;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
        }

        /* キャプション */
        .card-body {
            padding: 0 15px 20px;
        }
        .likes-count {
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
        }
        .caption-text {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #555;
        }
        .hashtags {
            color: var(--c-red);
            font-size: 0.8rem;
            margin-top: 5px;
            display: block;
        }

        /* 公式アカウントボタンエリア */
        .sns-btn-area {
            text-align: center;
            margin-top: 40px;
        }
        .sns-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: var(--c-black);
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-family: var(--f-pop);
            font-weight: 900;
            font-size: 1.1rem;
            border: 3px solid var(--c-black);
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .sns-btn:hover {
            background: var(--c-red);
            border-color: var(--c-red);
            transform: scale(1.05);
        }
        .sns-btn .arrow {
            font-family: serif;
        }

        /* カード全体をクリック可能にする透明リンク */
        .card-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10; /* 他の要素より上に被せる */
        }

  /* カルーセルの外枠 */
.insta-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 20px 40px 20px;
    
    /* 👇Firefox用の赤いスクロールバー設定 */
    scrollbar-color: var(--c-red) #f0f0f0; 
    scrollbar-width: thin;
}

/* 👇Chrome, Safari, Edge用の赤いスクロールバー設定 */
.insta-scroll-wrapper::-webkit-scrollbar {
    height: 10px; /* バーの太さ（お好みで調整してください） */
}

/* スクロールバーの背景（レール部分） */
.insta-scroll-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0; /* 薄いグレー */
    border-radius: 10px; /* 丸みを持たせる */
    margin: 0 20px; /* 左右に少し余白を持たせる */
}

/* スクロールバーの動く部分（赤いバー） */
.insta-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--c-red); /* テーマの赤色を使用 */
    border-radius: 10px; /* 丸みを持たせる */
}

/* スクロールバーの動く部分をホバーした時 */
.insta-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #c0392b; /* 少し濃い赤にする */
}

/* =========================================
   9. ACCESS SECTION
   ========================================= */
.access-section {
    padding: 80px 20px; background: var(--c-cream); text-align: center;
}
.access-container { max-width: 900px; margin: 0 auto; }
.map-wrapper {
    position: relative; width: 100%; height: 350px;
    margin-bottom: 30px; border: 3px solid var(--c-black);
    box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}
.map-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0); transition: background 0.3s;
}
.map-overlay:hover { background: rgba(0,0,0,0.1); }
.map-overlay::after {
    content: "Googleマップで開く";
    background: var(--c-red); color: #fff;
    padding: 10px 20px; border-radius: 30px;
    font-weight: bold; font-family: var(--f-pop);
    opacity: 0; transform: translateY(10px); transition: 0.3s;
}
.map-overlay:hover::after { opacity: 1; transform: translateY(0); }

.access-flex-wrap { display: flex; gap: 20px; align-items: stretch; }
.access-info-card {
    flex: 1; background: #fff;
    border: 3px solid var(--c-black); padding: 40px;
    border-radius: 8px; box-shadow: 8px 8px 0 var(--c-red-light);
    text-align: left;
}
.access-calendar {
    width: 300px; flex-shrink: 0; position: relative;
    display: flex; flex-direction: column;
}
.calendar-thumb {
    width: 100%; height: 100%; object-fit: cover;
    border: 3px solid var(--c-black); border-radius: 8px;
    box-shadow: 8px 8px 0 var(--c-yellow);
    cursor: pointer; transition: transform 0.3s;
}
.calendar-thumb:hover { transform: scale(1.03); }
.access-calendar::after {
    content: "TAP to ZOOM";
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7); color: #fff;
    font-size: 0.7rem; padding: 4px 8px;
    border-radius: 4px; pointer-events: none;
}

.shop-name {
    font-family: var(--f-pop); font-size: 1.8rem; font-weight: 900;
    color: var(--c-red); margin-bottom: 20px;
    border-bottom: 2px dashed #ddd; padding-bottom: 10px;
}
.shop-data-row {
    display: flex; align-items: baseline; margin-bottom: 12px; font-size: 1.05rem;
}
.shop-data-label {
    font-weight: bold; width: 80px; flex-shrink: 0; color: var(--c-brown);
}
.shop-data-val { flex: 1; line-height: 1.6; }

/* モーダル */
.modal {
    display: none; position: fixed; z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center; justify-content: center; cursor: pointer;
}
.modal-content {
    margin: auto; display: block; width: 80%; max-width: 700px;
    max-height: 90vh; object-fit: contain;
    border: 5px solid #fff; box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s;
}
@keyframes zoomIn { from {transform:scale(0)} to {transform:scale(1)} }

/* =========================================
   10. CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 80px 20px; background: #fff;
    text-align: center; position: relative;
}
.contact-section::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.5; pointer-events: none;
}
.contact-form {
    max-width: 600px; margin: 0 auto; background: #fff; padding: 40px;
    border: 3px solid var(--c-black); position: relative;
    box-shadow: 10px 10px 0 var(--c-red-light);
    z-index: 5;
}
.dm-area {
    background: var(--c-cream); padding: 20px;
    border-radius: 8px; margin-bottom: 30px; border: 2px dashed var(--c-brown);
}
.dm-text { font-weight: bold; margin-bottom: 10px; color: var(--c-red); }
.btn-dm {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 2px solid var(--c-black);
    padding: 8px 20px; border-radius: 30px; font-weight: bold; font-size: 0.9rem;
}
.btn-dm svg { width: 18px; height: 18px; }
.btn-dm:hover { background: var(--c-yellow); }

.form-lead { margin-bottom: 20px; font-weight: bold; }
input, textarea {
    width: 100%; padding: 15px; margin-bottom: 20px;
    border: 2px solid var(--c-black); border-radius: 4px;
    font-family: inherit; background: #f9f9f9;
}
.btn-submit {
    background: var(--c-black); color: var(--c-yellow);
    font-family: var(--f-pop); font-weight: 800; font-size: 1.2rem;
    padding: 15px 60px; border: none; cursor: pointer;
    box-shadow: 5px 5px 0 #999; transition: 0.1s;
}
.btn-submit:active { transform: translateY(5px); box-shadow: none; }

/* =========================================
   11. FOOTER
   ========================================= */
.footer {
    background: var(--c-black); color: var(--c-cream);
    text-align: center; padding: 30px; margin-top: 0;
}
.footer-logo {
    width: 70px; height: auto; margin: 0 auto 20px auto; display: block;
}
.footer-sns-link {
    display: inline-block; margin-bottom: 15px; transition: transform 0.3s;
}
.footer-sns-link:hover { transform: scale(1.1); }
.footer-sns-link svg path { fill: var(--c-cream); }

/* ====================================================================
   RESPONSIVE (スマホ・タブレット用スタイル)
   ==================================================================== */
@media (max-width: 768px) {
    .hero-main { font-size: 2.5rem; }
    
    /* ▼▼▼ スマホ背景画像の切り替え ▼▼▼ */
    .hero-bg {
        /* スマホ用変数を使用 */
        background-image: radial-gradient(circle, transparent 20%, #000 120%), var(--bg-sp);
    }

    /* ▼▼▼ スマホ用お皿サイズ調整（少し小さく） ▼▼▼ */
    /* ここは数値をいじっていないので、スマホのサイズ感はキープされます */
    .item-1 { width: 180px; height: 180px; top: -5%; left: -10%; }
    .item-2 { width: 160px; height: 160px; bottom: 5%; left: -10%; }
    .item-3 { width: 200px; height: 200px; top: -5%; right: -10%; }
    .item-4 { width: 170px; height: 170px; bottom: 10%; right: -10%; }

    .profile-inner { flex-direction: column-reverse; }
    .signboard-img { width: 100%; max-width: 320px; position: static; margin: 0 auto; }
    
    .access-flex-wrap { flex-direction: column; align-items: center; }
    .access-info-card { padding: 20px; text-align: center; width: 100%; }
    .access-calendar { width: 80%; max-width: 300px; margin-top: 20px; }
    .shop-data-row { flex-direction: column; align-items: center; margin-bottom: 20px; }
    .shop-data-label { margin-bottom: 5px; color: var(--c-red); }

    .section-title {
        white-space: normal; font-size: 2.2rem; line-height: 1.4; width: 100%;
    }
    .section-title::before, .section-title::after { display: none; }

    .lineup-grid { grid-template-columns: 1fr; gap: 30px; }
    .mt-50 { margin-top: 0; }

    .header-inner { padding: 0 20px; }
    .sp-only { display: block; }

    .hamburger {
        display: block; position: relative; width: 30px; height: 24px;
        cursor: pointer; z-index: 1001;
    }
    .hamburger span {
        position: absolute; left: 0; width: 100%; height: 3px;
        background-color: var(--c-red); border-radius: 3px; transition: 0.3s;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 10px; }
    .hamburger span:nth-child(3) { top: 20px; }

    .hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

    .nav-menu {
        display: block; position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh; background: rgba(252, 249, 242, 0.98);
        padding-top: 100px; text-align: center; flex-direction: column;
        transition: transform 0.4s ease; transform: translateY(-100%); z-index: 1000;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu a {
        display: block; font-size: 1.5rem; margin-bottom: 30px; color: var(--c-black);
    }

    .deco-dish { width: 300px; }
    .deco-left { top: 100px; left: -80px; transform: rotate(-15deg); }
    .deco-right { bottom: -50px; right: -80px; }
}