/* 2026-09-05 夜 大隆さん指示: 「ショップから探す」欄（掲載ショップ一覧）。BUZZ棚と同じ枠の作り。 */
.shop-directory { position: relative; margin: 24px 0; padding: clamp(18px, 3vw, 28px); border: 1px solid #ded7ff; border-radius: 26px;
  background: radial-gradient(circle at 92% 10%, #23b8ff14 0 18%, transparent 19%), linear-gradient(135deg, #fff 0%, #f1f7ff 60%, #f6f3ff 100%); box-shadow: 0 18px 50px #3023660d; scroll-margin-top: 84px; }
.shop-directory.hidden { display: none; }
.shop-directory-heading { display: flex; flex-direction: column; gap: 6px; }
.shop-directory-heading h2 { margin: 4px 0 0; font-size: clamp(20px, 5.4vw, 32px); letter-spacing: -.035em; }
.shop-directory-note, .shop-directory-loading { margin: 0; color: var(--muted, #6f6a8a); font-size: 11px; line-height: 1.6; }
.shop-directory-list { display: grid; gap: 10px; margin-top: 14px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.shop-directory-card { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid #e6e1ff; border-radius: 18px; background: #fff; color: inherit; text-decoration: none; }
.shop-directory-card:hover, .shop-directory-card:focus-visible { border-color: var(--violet, #7357ff); box-shadow: 0 8px 22px #7357ff1f; }
.shop-directory-logo { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; display: grid; place-items: center; background: #f4f0ff; }
.shop-directory-logo img { width: 100%; height: 100%; object-fit: cover; }
.shop-directory-logo-text { font-weight: 900; font-size: 20px; color: #5140ba; }
.shop-directory-body { display: grid; gap: 3px; min-width: 0; }
.shop-directory-name { font-size: 15px; line-height: 1.3; }
.shop-directory-tagline { color: var(--muted, #6f6a8a); font-size: 11.5px; line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.shop-directory-coupon { font-style: normal; font-size: 10.5px; font-weight: 800; color: #d1327f; }
.shop-directory-arrow { color: var(--violet, #7357ff); font-weight: 900; }
#shopSearchButton.hidden { display: none; }
.shop-directory-item { display: grid; gap: 6px; }
.shop-directory-amazon { justify-self: start; padding: 7px 12px; border: 1px solid var(--violet, #7357ff); border-radius: 12px; background: #f4f0ff; color: #4f36b5; font-size: 12px; font-weight: 800; text-decoration: none; }
