/* =========================================================
   ぐるめっぽ (Gourmeppo) - Main Stylesheet
   Logo-inspired warm palette
   ========================================================= */

:root {
    --gp-orange:       #F39A2E;
    --gp-orange-dark:  #E28320;
    --gp-orange-soft:  #FFE1B8;
    --gp-brown:        #6B4226;
    --gp-brown-soft:   #A6805F;
    --gp-coral:        #E86A5C;
    --gp-coral-soft:   #FBD7D2;
    --gp-green:        #A6C34A;
    --gp-green-soft:   #E4EDC4;
    --gp-cream:        #FFF9EE;
    --gp-beige:        #F5E6C8;
    --gp-white:        #ffffff;
    --gp-ink:          #3B2718;
    --gp-ink-soft:     #6E5A48;
    --gp-line:         #EEDFC7;
    --gp-shadow:       0 6px 24px rgba(107, 66, 38, .10);
    --gp-shadow-lg:    0 16px 42px rgba(107, 66, 38, .14);
    --gp-radius:       14px;
    --gp-radius-lg:    22px;
    --gp-font-jp:      "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
    --gp-font-body:    "Noto Sans JP", "M PLUS Rounded 1c", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--gp-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gp-ink);
    background: var(--gp-cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gp-orange-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gp-coral); }

h1, h2, h3, h4, h5, h6 { font-family: var(--gp-font-jp); color: var(--gp-brown); line-height: 1.35; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gp-orange); color: #fff; padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
    background: var(--gp-white);
    border-bottom: 3px solid var(--gp-orange-soft);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 8px rgba(107, 66, 38, .06);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px; gap: 20px;
}

.site-logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--gp-brown); text-decoration: none;
}
.site-logo:hover { color: var(--gp-orange-dark); }
.site-logo__mark { flex: 0 0 auto; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__title {
    font-family: var(--gp-font-jp);
    font-weight: 800; font-size: 22px;
    color: var(--gp-brown);
    letter-spacing: .02em;
}
.site-logo__tagline { font-size: 11px; color: var(--gp-ink-soft); }
.site-logo--footer .site-logo__title { color: var(--gp-white); }
.site-logo--footer .site-logo__tagline { color: rgba(255,255,255,.7); }
.site-logo--footer .site-logo__mark svg circle { fill: var(--gp-orange); }

/* WP 標準のカスタムロゴ表示 */
.site-branding .custom-logo-link {
    display: inline-flex; align-items: center;
    text-decoration: none;
}
.site-branding .custom-logo {
    width: 25vw;
    min-width: 260px;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 900px) {
    .site-branding .custom-logo { width: 60vw; min-width: 200px; }
}

/* Menu */
.site-nav .primary-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 4px;
}
.site-nav .primary-menu a {
    display: block; padding: 10px 14px;
    font-family: var(--gp-font-jp);
    font-weight: 500;
    color: var(--gp-brown);
    border-radius: 999px;
    transition: background .2s, color .2s;
}
.site-nav .primary-menu a:hover,
.site-nav .primary-menu .current-menu-item > a {
    background: var(--gp-orange-soft); color: var(--gp-brown);
}

.menu-toggle {
    display: none;
    background: none; border: 0; padding: 8px; cursor: pointer;
    gap: 5px; flex-direction: column;
}
.menu-toggle__bar {
    display: block; width: 24px; height: 3px;
    background: var(--gp-brown); border-radius: 2px;
    transition: transform .2s;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    .menu-toggle { display: inline-flex; }
    .site-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff;
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease;
        box-shadow: 0 8px 22px rgba(107, 66, 38, .12);
    }
    .site-nav.is-open { max-height: 600px; }
    .site-nav .primary-menu { flex-direction: column; padding: 12px; gap: 0; }
    .site-nav .primary-menu a { padding: 12px 16px; border-radius: 10px; }
    .site-logo__tagline { display: none; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px;
    padding: 12px 26px;
    font-family: var(--gp-font-jp);
    font-weight: 700; font-size: 15px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
    text-decoration: none;
    line-height: 1.2;
}
.btn--primary {
    background: var(--gp-orange); color: #fff;
    box-shadow: 0 6px 16px rgba(243, 154, 46, .35);
}
.btn--primary:hover { background: var(--gp-orange-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost {
    background: #fff; color: var(--gp-brown); border-color: var(--gp-orange-soft);
}
.btn--ghost:hover { background: var(--gp-orange-soft); color: var(--gp-brown); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--gp-cream) 0%, var(--gp-orange-soft) 100%);
    padding: 60px 0 80px;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
    position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55;
}
.hero__blob--1 { width: 320px; height: 320px; background: var(--gp-orange); top: -80px; right: -60px; }
.hero__blob--2 { width: 260px; height: 260px; background: var(--gp-green); bottom: -60px; left: -40px; opacity: .35; }
.hero__blob--3 { width: 200px; height: 200px; background: var(--gp-coral); top: 30%; left: 40%; opacity: .25; }

.hero__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 40px; align-items: center;
}
.hero__eyebrow {
    display: inline-block;
    background: #fff; color: var(--gp-brown);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    margin: 0 0 18px;
    box-shadow: 0 2px 8px rgba(107,66,38,.08);
}
.hero__title {
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1.25;
    margin: 0 0 20px;
    color: var(--gp-brown);
    font-weight: 800;
}
.hero__title br { display: block; }
.hero__lead {
    font-size: 16px; color: var(--gp-ink-soft);
    margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__illust {
    text-align: center;
}
.hero__illust svg { max-width: 460px; width: 100%; margin: 0 auto; }

@media (max-width: 800px) {
    .hero { padding: 40px 0 50px; }
    .hero__inner { grid-template-columns: 1fr; gap: 20px; }
    .hero__illust { order: -1; max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 60px 0; }
.section--alt { background: #fff; }
.section__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}
.section__title {
    font-size: clamp(22px, 3.4vw, 30px); margin: 0;
    color: var(--gp-brown);
    display: inline-flex; align-items: center; gap: 12px;
    font-weight: 800;
}
.section__title::before {
    content: ""; display: inline-block;
    width: 30px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--gp-orange), var(--gp-coral));
}
.section__lead { color: var(--gp-ink-soft); margin: 4px 0 0; max-width: 640px; }
.section__more {
    color: var(--gp-orange-dark); font-weight: 700; font-size: 14px;
    padding: 8px 16px; border-radius: 999px;
    background: #fff; border: 2px solid var(--gp-orange-soft);
    transition: background .2s;
}
.section__more:hover { background: var(--gp-orange-soft); color: var(--gp-brown); }

/* =========================================================
   Search Form
   ========================================================= */
.section--search { background: var(--gp-white); border-top: 1px solid var(--gp-line); border-bottom: 1px solid var(--gp-line); }
.section--search-compact { padding: 30px 0; }

.gourmeppo-search {
    background: #fff;
    border: 1px solid var(--gp-line);
    border-radius: var(--gp-radius-lg);
    padding: 22px;
    box-shadow: var(--gp-shadow);
}
.gourmeppo-search__keyword {
    display: flex; gap: 10px; margin-bottom: 14px;
}
.gourmeppo-search__keyword input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid var(--gp-line);
    border-radius: 999px;
    background: var(--gp-cream);
    color: var(--gp-ink);
    outline: none;
    transition: border-color .2s, background .2s;
    font-family: inherit;
}
.gourmeppo-search__keyword input:focus { border-color: var(--gp-orange); background: #fff; }
.gourmeppo-search__submit {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gp-orange); color: #fff;
    border: 0; border-radius: 999px;
    padding: 0 22px; cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(243,154,46,.32);
    transition: background .2s;
}
.gourmeppo-search__submit:hover { background: var(--gp-orange-dark); }

.gourmeppo-search__geo {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 12px 4px;
    border-bottom: 1px dashed var(--gp-line);
    margin-bottom: 14px;
}
.gp-geo-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gp-green-soft); color: var(--gp-brown);
    border: 2px solid var(--gp-green);
    padding: 8px 16px; border-radius: 999px;
    font-family: inherit; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .1s;
}
.gp-geo-btn:hover { background: var(--gp-green); color: #fff; }
.gp-geo-btn.is-active { background: var(--gp-green); color: #fff; }

.gp-distance { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gp-ink-soft); }
.gp-distance select {
    border: 2px solid var(--gp-line); border-radius: 999px;
    padding: 6px 12px; font-family: inherit; background: #fff;
    color: var(--gp-brown); font-weight: 700; cursor: pointer;
}

.gp-geo-status { font-size: 13px; color: var(--gp-ink-soft); }
.gp-geo-status.is-ok { color: var(--gp-green); font-weight: 700; }
.gp-geo-status.is-err { color: var(--gp-coral); font-weight: 700; }

.gourmeppo-search__filters summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--gp-orange-soft);
    color: var(--gp-brown);
    font-weight: 700; font-family: var(--gp-font-jp);
    user-select: none;
}
.gourmeppo-search__filters summary::-webkit-details-marker { display: none; }
.gourmeppo-search__filters summary::before { content: "▶"; font-size: 10px; transition: transform .2s; }
.gourmeppo-search__filters[open] summary::before { transform: rotate(90deg); }
.gourmeppo-search__count:not(:empty)::before { content: "("; }
.gourmeppo-search__count:not(:empty)::after  { content: ")"; }

.gourmeppo-search__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px; margin-top: 18px;
}
.gourmeppo-search__field {
    border: 0; margin: 0; padding: 0;
    background: var(--gp-cream);
    border-radius: var(--gp-radius);
    padding: 14px 14px 12px;
}
.gourmeppo-search__field legend {
    font-family: var(--gp-font-jp);
    font-weight: 700; font-size: 13px;
    color: var(--gp-brown);
    padding: 0 0 6px;
}
.gourmeppo-search__chips {
    display: flex; flex-wrap: wrap; gap: 6px;
    max-height: 170px;
    overflow-y: auto;
    padding: 2px 6px 2px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--gp-orange-soft) transparent;
    /* スクロール可能なことを示す上下フェード */
    mask-image: linear-gradient(180deg, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
}
.gourmeppo-search__chips::-webkit-scrollbar { width: 6px; }
.gourmeppo-search__chips::-webkit-scrollbar-track { background: transparent; }
.gourmeppo-search__chips::-webkit-scrollbar-thumb {
    background: var(--gp-orange-soft);
    border-radius: 999px;
}
.gourmeppo-search__chips::-webkit-scrollbar-thumb:hover { background: var(--gp-orange); }

.gp-chip { position: relative; }
.gp-chip input { position: absolute; opacity: 0; pointer-events: none; }
.gp-chip span {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1.5px solid var(--gp-line);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--gp-ink);
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    font-weight: 500;
}
.gp-chip:hover span { border-color: var(--gp-orange); }
.gp-chip input:checked + span {
    background: var(--gp-orange); border-color: var(--gp-orange); color: #fff;
    font-weight: 700;
}
.gp-chip input:focus-visible + span { outline: 2px solid var(--gp-brown); outline-offset: 2px; }

.gourmeppo-search__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 20px; padding-top: 16px;
    border-top: 1px dashed var(--gp-line);
}

/* =========================================================
   Shop Grid & Card
   ========================================================= */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.shop-card {
    background: #fff;
    border-radius: var(--gp-radius-lg);
    overflow: hidden;
    box-shadow: var(--gp-shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--gp-shadow-lg); }

.shop-card__link { display: flex; flex-direction: column; color: inherit; text-decoration: none; height: 100%; }

.shop-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--gp-orange-soft) center/cover no-repeat;
}
.shop-card__badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gp-coral); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    box-shadow: 0 2px 6px rgba(232,106,92,.4);
}
.shop-card__distance {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(255,255,255,.95);
    color: var(--gp-brown);
    font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.shop-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.shop-card__tags {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 4px;
}
.shop-card__tags li {
    font-size: 11px; font-weight: 700;
    color: var(--gp-orange-dark);
    background: var(--gp-orange-soft);
    padding: 2px 10px; border-radius: 999px;
}

.shop-card__title {
    font-size: 17px; margin: 4px 0 0;
    color: var(--gp-brown); line-height: 1.4;
    font-weight: 800;
}
.shop-card__en {
    color: var(--gp-brown-soft);
    font-size: 12px; margin: 0;
    letter-spacing: .04em;
}
.shop-card__midashi {
    color: var(--gp-ink-soft);
    font-size: 13px; margin: 4px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.shop-card__meta {
    margin-top: auto; padding-top: 12px;
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    border-top: 1px dashed var(--gp-line);
    font-size: 12px; color: var(--gp-ink-soft);
    font-weight: 500;
}

/* =========================================================
   Tiles (Category / Area)
   ========================================================= */
.tile-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.tile-grid--sm { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

.tile {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: var(--gp-radius);
    border: 2px solid var(--gp-line);
    color: var(--gp-brown);
    text-decoration: none;
    transition: transform .15s, border-color .2s, background .2s;
    min-height: 90px;
    font-weight: 700;
}
.tile:hover {
    transform: translateY(-2px);
    border-color: var(--gp-orange);
    background: var(--gp-orange-soft);
    color: var(--gp-brown);
}
.tile--sm { min-height: 60px; padding: 14px 16px; }
.tile__label { font-family: var(--gp-font-jp); font-size: 15px; }
.tile__count { font-size: 12px; color: var(--gp-orange-dark); font-weight: 700; margin-top: 6px; }

/* Scenes chips */
.scene-list { display: flex; flex-wrap: wrap; gap: 10px; }
.scene-chip {
    display: inline-flex; align-items: center;
    padding: 10px 20px; background: #fff;
    border: 2px solid var(--gp-line);
    border-radius: 999px; color: var(--gp-brown);
    font-weight: 700; font-family: var(--gp-font-jp);
    transition: background .2s, border-color .2s, color .2s;
}
.scene-chip:hover { background: var(--gp-coral); border-color: var(--gp-coral); color: #fff; }

/* =========================================================
   Page Hero (archive/tax/single)
   ========================================================= */
.page-hero {
    background: linear-gradient(135deg, var(--gp-orange-soft) 0%, var(--gp-cream) 100%);
    padding: 46px 0;
    text-align: center;
    border-bottom: 3px solid var(--gp-orange-soft);
}
.page-hero__eyebrow {
    display: inline-block;
    background: #fff; color: var(--gp-brown);
    padding: 4px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: .1em; text-transform: uppercase;
}
.page-hero__title {
    font-size: clamp(24px, 4vw, 34px); margin: 0;
    color: var(--gp-brown); font-weight: 800;
}
.page-hero__lead { margin: 10px 0 0; color: var(--gp-ink-soft); }

/* 検索結果ブロック（AJAX / 通常表示 共通） */
.search-result-wrap:not(:empty) {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px dashed var(--gp-line);
}
[data-search-results] > .shop-grid { margin-top: 24px; }
[data-search-results] > .no-results { margin-top: 24px; }

.archive-toolbar { margin: 8px 0 20px; }
.archive-toolbar__count { color: var(--gp-ink-soft); font-size: 14px; margin: 0; }
.archive-toolbar__count strong { color: var(--gp-orange-dark); font-size: 18px; }

.no-results {
    text-align: center; padding: 60px 20px;
    background: #fff; border-radius: var(--gp-radius-lg);
    color: var(--gp-ink-soft);
}

/* =========================================================
   Pagination
   ========================================================= */
.pagination {
    margin-top: 40px;
    text-align: center;
}
.pagination .nav-links {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
/* nav-links が無いマークアップにも対応 */
.pagination > ul {
    list-style: none;
    margin: 0; padding: 0;
    display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.pagination > ul > li { margin: 0; }

.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px;
    border-radius: 999px;
    background: #fff; color: var(--gp-brown);
    border: 2px solid var(--gp-line);
    font-weight: 700; font-size: 14px; line-height: 1;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.pagination a.page-numbers:hover {
    background: var(--gp-orange-soft);
    border-color: var(--gp-orange);
    color: var(--gp-brown);
}
.pagination .page-numbers.current {
    background: var(--gp-orange);
    border-color: var(--gp-orange);
    color: #fff;
}
.pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    min-width: 24px; padding: 0 4px;
    color: var(--gp-ink-soft);
}
/* 「投稿ナビゲーション」等の見出しは非表示 */
.pagination .screen-reader-text { display: none; }

/* =========================================================
   Single Shop
   ========================================================= */
.shop-single { padding-bottom: 60px; }

/* Top: gallery + head を2カラム */
.shop-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 36px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (max-width: 900px) {
    .shop-top { grid-template-columns: 1fr; gap: 22px; padding-top: 20px; }
}

.shop-gallery { min-width: 0; }
.shop-gallery__main {
    width: 100%;
}
.shop-gallery__main img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--gp-radius-lg);
    box-shadow: var(--gp-shadow-lg);
    background: var(--gp-orange-soft);
}
.shop-gallery__thumbs {
    margin: 12px 0 0;
    padding: 0; list-style: none;
    display: flex; gap: 8px; overflow-x: auto;
}
.shop-gallery__thumb {
    padding: 0; border: 3px solid transparent; background: none;
    cursor: pointer; border-radius: 10px; overflow: hidden;
    transition: border-color .2s;
    flex: 0 0 78px;
}
.shop-gallery__thumb img { width: 78px; height: 58px; object-fit: cover; }
.shop-gallery__thumb.is-active { border-color: var(--gp-orange); }

.shop-head {
    background: #fff;
    padding: 26px 28px;
    border-radius: var(--gp-radius-lg);
    border: 1px solid var(--gp-line);
    box-shadow: var(--gp-shadow);
    min-width: 0;
}
@media (max-width: 900px) {
    .shop-head { padding: 22px; }
}
.shop-head__tags {
    list-style: none; padding: 0; margin: 0 0 12px;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.shop-head__tags a {
    font-size: 12px; font-weight: 700;
    background: var(--gp-orange-soft); color: var(--gp-brown);
    padding: 4px 12px; border-radius: 999px;
}
.shop-head__title { font-size: clamp(24px, 4vw, 34px); margin: 0; color: var(--gp-brown); }
.shop-head__en { color: var(--gp-brown-soft); margin: 6px 0 0; font-size: 14px; letter-spacing: .04em; }
.shop-head__midashi { margin: 14px 0 0; font-size: 15px; color: var(--gp-ink); }
.shop-head__meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-top: 16px;
    font-size: 13px; color: var(--gp-ink-soft); font-weight: 600;
}
.shop-head__actions {
    margin-top: 20px;
    display: flex; gap: 10px; flex-wrap: wrap;
}

.shop-body {
    display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px;
    padding-top: 30px;
    align-items: flex-start;
}
@media (max-width: 900px) { .shop-body { grid-template-columns: 1fr; } }

.card {
    background: #fff;
    border-radius: var(--gp-radius-lg);
    padding: 24px;
    box-shadow: var(--gp-shadow);
    margin-bottom: 20px;
}
.card__title {
    margin: 0 0 16px; padding: 0 0 12px;
    font-size: 18px; color: var(--gp-brown);
    border-bottom: 2px dashed var(--gp-orange-soft);
}
.card--coupon {
    background: linear-gradient(135deg, #FFF6DD 0%, #FFE7C2 100%);
    border: 2px dashed var(--gp-coral);
}
.card--coupon .card__title { color: var(--gp-coral); border-bottom-color: rgba(232,106,92,.4); }
.coupon__main {
    font-size: 22px; font-weight: 800; color: var(--gp-coral);
    font-family: var(--gp-font-jp); margin: 0 0 4px;
}
.coupon__sub { font-size: 14px; color: var(--gp-brown); margin: 0 0 12px; }
.coupon__meta { display: grid; grid-template-columns: 110px 1fr; gap: 4px 12px; margin: 0; font-size: 13px; }
.coupon__meta dt { color: var(--gp-brown); font-weight: 700; }
.coupon__meta dd { margin: 0; color: var(--gp-ink); }

.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td {
    padding: 12px 14px; border-bottom: 1px solid var(--gp-line);
    vertical-align: top; text-align: left;
}
.info-table th {
    width: 130px;
    background: var(--gp-cream);
    color: var(--gp-brown);
    font-weight: 700;
    border-radius: 6px;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.chip-list li, .chip-list li a {
    display: inline-block;
    background: var(--gp-green-soft); color: var(--gp-brown);
    padding: 3px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 700; text-decoration: none;
}
.chip-list li a:hover { background: var(--gp-green); color: #fff; }

.pay-row { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; padding: 4px 0; }
.pay-row__label { font-weight: 700; color: var(--gp-brown); font-size: 13px; }
.pay-chip {
    display: inline-block;
    background: var(--gp-cream); border: 1.5px solid var(--gp-line);
    color: var(--gp-ink); padding: 2px 10px;
    border-radius: 6px; font-size: 11.5px; font-weight: 600;
    margin: 2px 2px 2px 0;
}
.link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.link-list a { color: var(--gp-orange-dark); font-weight: 600; }

.map-wrap { border-radius: var(--gp-radius); overflow: hidden; box-shadow: var(--gp-shadow); }
.map-links { text-align: right; margin: 10px 0 0; }

.tag-group { margin-bottom: 14px; }
.tag-group__label { font-size: 13px; color: var(--gp-brown-soft); margin: 0 0 6px; font-weight: 700; }

.related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.related-list a {
    display: flex; gap: 10px; padding: 8px;
    background: var(--gp-cream); border-radius: 12px;
    text-decoration: none; color: inherit;
    transition: background .2s;
}
.related-list a:hover { background: var(--gp-orange-soft); }
.related-list__img {
    width: 72px; height: 72px; border-radius: 10px;
    background: var(--gp-orange-soft) center/cover no-repeat;
    flex: 0 0 auto;
}
.related-list__body { display: flex; flex-direction: column; justify-content: center; }
.related-list__title { font-family: var(--gp-font-jp); font-weight: 700; color: var(--gp-brown); font-size: 14px; line-height: 1.4; }
.related-list__meta { font-size: 11px; color: var(--gp-ink-soft); margin-top: 2px; }

.prose p { line-height: 1.9; }
.prose h2 { margin-top: 30px; font-size: 20px; }
.prose h3 { margin-top: 24px; font-size: 17px; }
.prose ul, .prose ol { padding-left: 1.5em; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--gp-brown); color: #F3E4D0;
    margin-top: 60px;
}
.site-footer a { color: #F3E4D0; }
.site-footer a:hover { color: var(--gp-orange); }

.site-footer__inner {
    padding: 50px 20px 40px;
    display: grid; gap: 40px;
    grid-template-columns: 1.4fr 2fr;
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; } }

.site-footer__desc { font-size: 13px; opacity: .85; margin: 14px 0 0; line-height: 1.7; }
.site-footer__cols {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
@media (max-width: 700px) { .site-footer__cols { grid-template-columns: repeat(2, 1fr); } }
.site-footer__col h4 {
    font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gp-orange); margin: 0 0 12px;
    padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.15);
}
.site-footer__col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
    font-size: 13px;
}

.site-footer__bar {
    background: rgba(0,0,0,.15);
    padding: 16px 20px;
    text-align: center;
    font-size: 12px; color: rgba(255,255,255,.65);
}

/* =========================================================
   404
   ========================================================= */
.section--404 { padding: 100px 20px; text-align: center; }
.err404__code {
    font-size: 120px; font-family: var(--gp-font-jp); font-weight: 800;
    color: var(--gp-orange); margin: 0; line-height: 1;
}
.err404__title { margin: 10px 0 12px; }
.err404__lead { color: var(--gp-ink-soft); margin: 0 0 24px; }

/* =========================================================
   Utility
   ========================================================= */
::selection { background: var(--gp-orange-soft); color: var(--gp-brown); }
