/* =====================================================================
 * Shop Detail (single-shop.php)
 * パティスリーイチリュウ — 店舗詳細ページ専用 CSS
 *
 * Mobile First / 600 / 768 / 1024 / 1280 ブレイクポイント
 * 既存トークン (theme-base.css 末尾の 2026 RENEWAL ブロック) を活用。
 * 既存 .item-grid (products.css) / .shop-meta / .shop-card (shop.css)
 * とは命名空間が分かれているため衝突しない。
 *
 * 命名: BEM (.shop-info__row / .shop-cta-card__title 等)
 * ===================================================================== */

/* ---------------------------------------------------------------------
 * 0. 補助トークン (本ページ専用エイリアス)
 * ------------------------------------------------------------------ */
:root {
  --shop-section-gap-sm: 40px;   /* mobile  */
  --shop-section-gap-md: 64px;   /* tablet  */
  --shop-section-gap-lg: 96px;   /* desktop */

  --shop-card-radius:    12px;
  --shop-card-shadow:    0 1px 3px rgba(44, 38, 32, .06);
  --shop-card-shadow-h:  0 8px 24px rgba(44, 38, 32, .10);

  --shop-tap-min:        44px;
}

/* ---------------------------------------------------------------------
 * 1. 全体ラッパ .shop-detail (post_class)
 * ------------------------------------------------------------------ */
.shop-detail {
  color: var(--brand-ink);
  background: #fff;
  padding: 24px 0 var(--shop-section-gap-sm);
}
.shop-detail .site-container {
  width: min(100%, 1120px);
  max-width: 1120px;
}
.shop-detail .shop-section > .site-container,
.shop-detail .shop-hero > .site-container {
  width: min(calc(100% - 40px), 1120px) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.single-shop .shop-detail .shop-section > .site-container,
.single-shop .shop-detail .shop-hero > .site-container {
  width: min(calc(100% - 40px), 1120px) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 1280px) {
  .shop-detail .shop-info > .site-container,
  .shop-detail .shop-access > .site-container,
  .shop-detail .shop-intro > .site-container,
  .shop-detail .shop-featured > .site-container,
  .shop-detail .shop-cta-area > .site-container,
  .shop-detail .shop-faq > .site-container,
  .shop-detail .shop-extra > .site-container {
    width: 1120px !important;
    max-width: 1120px !important;
  }
}
@media (max-width: 767px) {
  .single-shop .shop-detail .shop-section > .site-container,
  .single-shop .shop-detail .shop-hero > .site-container {
    width: min(calc(100% - 32px), 1120px) !important;
  }
}
@media (min-width: 768px) {
  .shop-detail { padding: 32px 0 var(--shop-section-gap-md); }
}
@media (min-width: 1024px) {
  .shop-detail { padding: 40px 0 var(--shop-section-gap-lg); }
}

/* スクロール固定ヘッダ分のオフセット */
.shop-detail [id] { scroll-margin-top: 80px; }

/* 店舗詳細の実用情報は、スクロール演出の失敗で透明化しないよう常時表示する。 */
body.single-shop .shop-detail .shop-section.scroll-reveal,
body.single-shop .shop-detail .shop-cta-card.scroll-reveal,
body.single-shop .shop-detail .shop-allshops__item.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------------------------------------------------------------------
 * 2. セクション共通 .shop-section
 *    各セクションの縦リズム
 * ------------------------------------------------------------------ */
.shop-detail .shop-section {
  margin: 0 0 var(--shop-section-gap-sm);
  padding: 0;
}
.shop-detail .shop-section:last-of-type { margin-bottom: 0; }

@media (min-width: 768px) {
  .shop-detail .shop-section { margin-bottom: var(--shop-section-gap-md); }
}
@media (min-width: 1024px) {
  .shop-detail .shop-section { margin-bottom: var(--shop-section-gap-lg); }
}

/* セクション大見出し .shop-h2 */
.shop-detail .shop-h2 {
  margin: 0 0 20px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.375rem, 3.5vw, 1.75rem); /* 22 → 28px */
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}
.shop-detail .shop-h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .shop-detail .shop-h2 { margin-bottom: 28px; }
}

/* セクション共通リード文 */
.shop-detail .shop-lead,
.shop-detail .shop-section__lead {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--brand-ink-soft);
  text-align: left;
}
@media (min-width: 768px) {
  .shop-detail .shop-lead,
  .shop-detail .shop-section__lead { text-align: center; margin-bottom: 28px; }
}

/* ---------------------------------------------------------------------
 * 3. パンくず .shop-breadcrumb
 *    モバイルで横スクロール可能 (収まらないとき)
 * ------------------------------------------------------------------ */
.shop-detail .shop-breadcrumb {
  width: 100%;
  margin: 0 auto 28px;
  padding: 0;
  font-size: var(--fs-xsmall);
  color: var(--brand-ink-soft);
  text-align: left;
}
.shop-detail .shop-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  line-height: 1.5;
  width: 100%;
}
/* 各 item を「ラベル + chevron」のセットでまとめる（chevron が単独で
 * 行頭に取り残されないように item の中に閉じ込める） */
.shop-detail .shop-breadcrumb__item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  line-height: 1.5;
}
.shop-detail .shop-breadcrumb__item:not(.shop-breadcrumb__item--current)::after {
  content: '›';
  color: var(--brand-ink-soft);
  margin: 0 4px 0 6px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 1;
  transform: translateY(-1px);
}
.shop-detail .shop-breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: var(--brand-gold-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.shop-detail .shop-breadcrumb a:hover { text-decoration: underline; }
.shop-detail .shop-breadcrumb__item--current span {
  color: var(--brand-ink);
  overflow-wrap: anywhere;
}
@media (min-width: 1024px) {
  .shop-detail .shop-breadcrumb {
    margin-bottom: 34px;
  }
}

/* ---------------------------------------------------------------------
 * 4. ヒーロー .shop-hero
 *    .shop-hero__header (eyebrow + h1) + .shop-hero__media (figure)
 *
 *    ※ HTML 上 .shop-hero__header には .page-header クラスも併記されており
 *       polish.css の `body.single-shop .page-header` 装飾 (クリーム背景の
 *       カード + 左右 16px パディング) が掛かってしまうため、ここで
 *       同じ specificity 以上で打ち消す。同様に .page-title / .text-underline /
 *       .section-title 由来のテキスト中央配置・サイズも再定義。
 * ------------------------------------------------------------------ */
.shop-detail .shop-hero { text-align: center; }

/* polish: body.single-shop .page-header の派手なカード装飾を打ち消し */
body.single-shop .shop-detail .shop-hero__header,
.shop-detail .shop-hero__header {
  margin: 0 0 20px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  text-align: center;
}
body.single-shop .shop-detail .shop-hero__header::before,
.shop-detail .shop-hero__header::before {
  content: none;
}

.shop-detail .shop-hero .shop-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: var(--fs-xsmall);
  font-weight: var(--fw-medium);
  color: var(--brand-gold-deep);
  letter-spacing: 0.14em;
}

/* polish の body.single-shop .page-title (clamp(1.8rem,6vw,2.8rem)) を
   モバイルで小さめに再定義し、.shop-hero__header の幅にきちんと収める。 */
body.single-shop .shop-detail .shop-hero__title,
.shop-detail .shop-hero__title,
.shop-detail .shop-hero .page-title {
  margin: 0;
  padding: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 5vw, 2.5rem); /* 24 → 40px */
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  text-align: center;
  display: block;
}

/* .text-underline span.underline は inline-block 中央配置に */
.shop-detail .shop-hero__title .underline {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
  border-radius: 2px;
  margin: 14px auto 0;
}

.shop-detail .shop-hero__media {
  margin: 20px 0 0;
  border-radius: var(--shop-card-radius);
  overflow: hidden;
  background: var(--brand-cream-2);
  aspect-ratio: 16 / 9;
}
.shop-detail .shop-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .shop-detail .shop-hero__media { aspect-ratio: 21 / 9; }
}

/* ---------------------------------------------------------------------
 * 5. SEO 強化見出しセクション .shop-seo-intro
 * ------------------------------------------------------------------ */
.shop-detail .shop-seo-intro .shop-h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem); /* SEO H2 は本文寄りで控えめ */
  text-align: left;
}
.shop-detail .shop-seo-intro .shop-h2::after {
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 768px) {
  .shop-detail .shop-seo-intro .shop-h2 { text-align: center; }
  .shop-detail .shop-seo-intro .shop-h2::after { margin-left: auto; margin-right: auto; }
}

/* ---------------------------------------------------------------------
 * 6. 店舗情報 .shop-info / .shop-info__list
 *    list は dl, row は div, label は dt, value は dd
 * ------------------------------------------------------------------ */
.shop-detail .shop-info__title { margin-bottom: 20px; }

.shop-detail .shop-info__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--shop-card-radius);
  box-shadow: var(--shop-card-shadow);
}
.shop-detail .shop-info__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 6px 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--brand-line);
  align-items: baseline;
}
.shop-detail .shop-info__row:first-child { border-top: 0; padding-top: 4px; }
.shop-detail .shop-info__row:last-child { padding-bottom: 4px; }

.shop-detail .shop-info__label {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: var(--fs-xsmall);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  color: var(--brand-gold-deep);
  line-height: 1.6;
}
.shop-detail .shop-info__value {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--brand-ink);
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}
.shop-detail .shop-info__value a {
  color: var(--brand-gold-deep);
  text-decoration: none;
}
.shop-detail .shop-info__value a:hover { color: var(--brand-gold); text-decoration: underline; }

/* 行内アクション (例: 「地図で見る」) */
/* 「地図で見る」リンクは住所の下に独立配置（pill 型・小サイズ） */
.shop-detail .shop-info__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
  padding: 6px 14px;
  font-size: var(--fs-xsmall);
  font-weight: 600;
  border: 1px solid var(--brand-gold);
  border-radius: 999px;
  color: var(--brand-gold-deep) !important;
  background: #fff;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1.2;
  transition: background 0.15s ease-out;
}
.shop-detail .shop-info__action::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z' fill='black'/></svg>") no-repeat center / contain;
}
.shop-detail .shop-info__action:hover {
  background: var(--brand-cream);
}

/* タブレット以上: ラベル幅とパディングを広げる */
@media (min-width: 768px) {
  .shop-detail .shop-info__list {
    padding: 24px 28px;
  }
  .shop-detail .shop-info__row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 6px 24px;
    padding: 16px 0;
  }
  .shop-detail .shop-info__row:first-child { padding-top: 4px; }
  .shop-detail .shop-info__row:last-child  { padding-bottom: 4px; }
}

/* ---------------------------------------------------------------------
 * 7. アクセス＋地図 .shop-access
 *    地図 .shop-map (shop.css の height:300px 指定を上書き)
 *    ボタン .shop-access__btn / --primary
 * ------------------------------------------------------------------ */
.shop-detail .shop-access .shop-map-wrap {
  margin: 0;
  border-radius: var(--shop-card-radius);
  overflow: hidden;
  border: 1px solid var(--brand-line);
  box-shadow: var(--shop-card-shadow);
  background: var(--brand-cream-2);
}
.shop-detail .shop-access .shop-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--brand-cream-2);
}
@media (min-width: 1024px) {
  .shop-detail .shop-access .shop-map { aspect-ratio: 21 / 9; }
}

.shop-detail .shop-access__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
}
.shop-detail .shop-access__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--shop-tap-min);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-decoration: none;
  background: #fff;
  color: var(--brand-gold-deep);
  border: 1px solid var(--brand-gold);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.shop-detail .shop-access__btn:hover {
  background: var(--brand-cream);
  text-decoration: none;
  transform: translateY(-1px);
}
.shop-detail .shop-access__btn--primary {
  background: var(--brand-gold-deep);
  color: #fff;
  border-color: var(--brand-gold-deep);
}
.shop-detail .shop-access__btn--primary:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}
.shop-detail .shop-access__btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}
@media (min-width: 600px) {
  .shop-detail .shop-access__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .shop-detail .shop-access__btn { min-width: 220px; }
}

/* ---------------------------------------------------------------------
 * 8. 店舗紹介 .shop-intro
 * ------------------------------------------------------------------ */
.shop-detail .shop-intro__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: 1.95;
  color: var(--brand-ink);
}
.shop-detail .shop-intro__body p { margin: 0 0 1.2em; }
.shop-detail .shop-intro__body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
 * 9. 人気商品セクション .shop-featured
 *    .shop-featured__grid は .item-grid と合成 (products.css に既存スタイル)
 *    ここでは下のリンクボタン群と余白だけ調整
 * ------------------------------------------------------------------ */
.shop-detail .shop-featured__grid {
  margin: 0;
}

.shop-detail .shop-featured__more {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin: 24px 0 0;
}
.shop-detail .shop-featured__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--shop-tap-min);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-decoration: none;
  background: #fff;
  color: var(--brand-gold-deep);
  border: 1px solid var(--brand-gold);
  transition: background-color .2s ease, transform .15s ease;
}
.shop-detail .shop-featured__btn:hover {
  background: var(--brand-cream);
  text-decoration: none;
  transform: translateY(-1px);
}
.shop-detail .shop-featured__btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}
@media (min-width: 600px) {
  .shop-detail .shop-featured__more {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shop-detail .shop-featured__btn { min-width: 200px; }
}

/* ---------------------------------------------------------------------
 * 10. CTA セクション .shop-cta-area
 *     .shop-cta-area__grid > .shop-cta-card (article)
 *     カード内: __title / __body / __btn
 * ------------------------------------------------------------------ */
.shop-detail .shop-cta-area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .shop-detail .shop-cta-area__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.shop-detail .shop-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 24px;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 100%);
  border: 1px solid var(--brand-gold-soft);
  border-radius: var(--shop-card-radius);
  box-shadow: var(--shop-card-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-width: 0;
  text-align: center;
}
.shop-detail .shop-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shop-card-shadow-h);
  border-color: var(--brand-gold);
}
.shop-detail .shop-cta-card__thumb {
  display: block;
  width: 100%;
  margin: 0 auto 2px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}
.shop-detail .shop-cta-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}
.shop-detail .shop-cta-card__body-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  text-align: center;
}
.shop-detail .shop-cta-card__title {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  line-height: 1.45;
  color: var(--brand-ink);
}
.shop-detail .shop-cta-card__body {
  margin: 0 auto;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--brand-ink-soft);
  flex: 1;
  text-align: center;
}
.shop-detail .shop-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--shop-tap-min);
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-decoration: none;
  background: var(--brand-gold-deep);
  color: #fff;
  border: 1px solid var(--brand-gold-deep);
  transition: background-color .2s ease, transform .15s ease;
}
.shop-detail .shop-cta-card__btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.shop-detail .shop-cta-card__btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}
.shop-detail .shop-cta-card__btn::after {
  content: ' ›';
  display: inline-block;
  margin-left: 6px;
  transition: transform .2s ease;
}
.shop-detail .shop-cta-card__btn:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------------------
 * 11. (削除) 近隣店舗 .shop-nearby
 *     2026-04-26: 「全店舗一覧」セクションへ統合のため HTML から撤去。
 *     関連 CSS も削除済み。詳細は README-v2-CHANGES.md を参照。
 * ------------------------------------------------------------------ */

/* ---------------------------------------------------------------------
 * 12. FAQ .shop-faq
 *     .shop-faq__list > .shop-faq__item (details) > .shop-faq__q (summary) + .shop-faq__a (div)
 * ------------------------------------------------------------------ */
.shop-detail .shop-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.shop-detail .shop-faq__item {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--shop-card-radius);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.shop-detail .shop-faq__item[open] {
  box-shadow: var(--shop-card-shadow);
  border-color: var(--brand-gold-soft);
}
.shop-detail .shop-faq__q {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--shop-tap-min);
  padding: 14px 48px 14px 52px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--brand-ink);
}
.shop-detail .shop-faq__q::-webkit-details-marker { display: none; }
.shop-detail .shop-faq__q::before {
  content: 'Q';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 13px;
  color: #fff;
  background: var(--brand-gold-deep);
  border-radius: 999px;
}
.shop-detail .shop-faq__q::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-gold-deep);
  border-bottom: 2px solid var(--brand-gold-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.shop-detail .shop-faq__item[open] .shop-faq__q::after {
  transform: translateY(-30%) rotate(-135deg);
}
.shop-detail .shop-faq__q:hover { background: var(--brand-cream-2); }
.shop-detail .shop-faq__q:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: -2px;
}

.shop-detail .shop-faq__a {
  position: relative;
  padding: 4px 20px 18px 52px;
}
.shop-detail .shop-faq__a::before {
  content: 'A';
  position: absolute;
  left: 16px;
  top: 4px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 13px;
  color: var(--brand-gold-deep);
  background: var(--brand-cream);
  border: 1px solid var(--brand-gold-soft);
  border-radius: 999px;
}
.shop-detail .shop-faq__a p {
  margin: 0 0 0.6em;
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--brand-ink-soft);
}
.shop-detail .shop-faq__a p:last-child { margin-bottom: 0; }
.shop-detail .shop-faq__a a {
  color: var(--brand-gold-deep);
  text-decoration: underline;
}
.shop-detail .shop-faq__a a:hover { color: var(--brand-gold); }

/* ---------------------------------------------------------------------
 * 13. 追記セクション .shop-extra (the_content / お知らせ)
 * ------------------------------------------------------------------ */
.shop-detail .shop-extra__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--brand-ink);
}
.shop-detail .shop-extra__body p { margin: 0 0 1em; }
.shop-detail .shop-extra__body p:last-child { margin-bottom: 0; }
.shop-detail .shop-extra__body a {
  color: var(--brand-gold-deep);
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
 * 14. アクセシビリティ / 動きを抑えるユーザ向け
 * ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .shop-detail .shop-cta-card,
  .shop-detail .shop-cta-card:hover,
  .shop-detail .shop-access__btn,
  .shop-detail .shop-access__btn:hover,
  .shop-detail .shop-featured__btn,
  .shop-detail .shop-featured__btn:hover,
  .shop-detail .shop-faq__q::after,
  .shop-detail .shop-cta-card__btn::after {
    transition: none !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------------------
 * 15. 全店舗一覧セクション（ページ最下部・全 11 店舗共通）
 *     近隣店舗セクションを廃止し、代わりに全店舗を等価で並べる。
 * ------------------------------------------------------------------ */
.shop-detail .shop-allshops {
  background: var(--brand-cream-2, #f5edd8);
  padding-block: var(--shop-section-gap-md, 56px);
  width: 100%;
}
.shop-detail .shop-allshops__grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .shop-detail .shop-allshops__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .shop-detail .shop-allshops__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
.shop-detail .shop-allshops__item { margin: 0; }
.shop-detail .shop-allshops__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: #fff;
  border: 1px solid var(--brand-line, #e6d9b8);
  border-radius: var(--shop-card-radius, 12px);
  padding: 18px 18px 22px;
  text-decoration: none;
  color: var(--brand-ink, #2f2a21);
  box-shadow: var(--shop-card-shadow, 0 1px 2px rgba(60,42,15,.06));
  transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
  text-align: center;
}
.shop-detail a.shop-allshops__card:hover,
.shop-detail a.shop-allshops__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shop-card-shadow-h, 0 6px 14px rgba(60,42,15,.1));
  border-color: var(--brand-gold, #c19a3d);
}
.shop-detail .shop-allshops__card--current {
  background: #fff;
  border-color: var(--brand-gold, #c19a3d);
  box-shadow: 0 0 0 2px rgba(193,154,61,.15) inset;
}
.shop-detail .shop-allshops__thumb {
  width: min(100%, 220px);
  margin: 0 auto 14px;
}
.shop-detail .shop-allshops__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}
.shop-detail .shop-allshops__thumb:has(.shop-allshops__thumb-placeholder) {
  width: 72px;
}
.shop-detail .shop-allshops__thumb-placeholder {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: var(--brand-cream, #faf7ef);
  color: var(--brand-gold-deep, #a07f2c);
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  border-radius: 50%;
}
.shop-detail .shop-allshops__body {
  width: 100%;
}
.shop-detail .shop-allshops__name {
  margin: 0 0 4px;
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--brand-ink);
  text-align: center;
}
.shop-detail .shop-allshops__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-gold-deep, #a07f2c);
  border-radius: 999px;
  vertical-align: middle;
}
.shop-detail .shop-allshops__area {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--brand-gold-deep, #a07f2c);
  font-weight: 600;
}
.shop-detail .shop-allshops__addr {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--brand-ink-soft, #5a4f3e);
}
.shop-detail .shop-allshops__meta {
  width: fit-content;
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 8px;
  font-size: 12.5px;
  color: var(--brand-ink-soft, #5a4f3e);
  text-align: left;
}
.shop-detail .shop-allshops__meta dt {
  font-weight: 600;
  color: var(--brand-ink);
}
.shop-detail .shop-allshops__meta dd { margin: 0; }
.shop-detail .shop-allshops__more {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-gold-deep, #a07f2c);
}
.shop-detail .shop-allshops__more::after {
  content: ' ›';
  transition: transform .2s ease-out;
}
.shop-detail a.shop-allshops__card:hover .shop-allshops__more::after,
.shop-detail a.shop-allshops__card:focus-visible .shop-allshops__more::after {
  transform: translateX(2px);
}
.shop-detail .shop-allshops__cta {
  margin: 28px 0 0;
  text-align: center;
}
.shop-detail .shop-allshops__cta-link {
  display: inline-block;
  padding: 12px 28px;
  min-height: var(--shop-tap-min, 44px);
  background: var(--brand-gold, #c19a3d);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease-out;
}
.shop-detail .shop-allshops__cta-link:hover,
.shop-detail .shop-allshops__cta-link:focus-visible {
  background: var(--brand-gold-deep, #a07f2c);
}

.shop-detail .shop-allshops__title-line {
  display: inline;
}
@media (max-width: 767px) {
  .shop-detail .shop-allshops__title-line {
    display: block;
  }
}

.shop-detail .shop-section--seo-detail {
  margin-top: clamp(28px, 6vw, 48px);
}
.shop-detail .shop-collapse {
  border: 1px solid var(--brand-line, #e8decc);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 24px rgba(43,32,23,.05);
  overflow: hidden;
}
.shop-detail .shop-collapse__summary {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.shop-detail .shop-collapse__summary::-webkit-details-marker { display: none; }
.shop-detail .shop-collapse__summary-label {
  font-size: clamp(16px, 4.2vw, 19px);
  line-height: 1.55;
  font-weight: 600;
  color: var(--brand-ink, #2b2017);
}
.shop-detail .shop-collapse__summary-hint {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-cream-2, #f7f1e6);
  color: var(--brand-gold-deep, #8a6a3f);
  font-size: 11.5px;
  line-height: 1.4;
  letter-spacing: .03em;
}
.shop-detail .shop-collapse__body {
  padding: 20px;
  border-top: 1px solid var(--brand-line, #e8decc);
}
.shop-detail .shop-section--seo-detail .shop-h2 {
  font-size: clamp(20px, 5vw, 25px);
  line-height: 1.65;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.shop-detail .shop-section--seo-detail .shop-lead,
.shop-detail .shop-section--seo-detail .shop-intro__body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--brand-ink-soft, #5a4f3e);
}
.shop-detail .shop-section--seo-detail .shop-collapse__h3 {
  margin: 30px 0 12px;
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--ff-serif, serif);
  font-weight: 500;
  color: var(--brand-ink, #2b2017);
}
@media (max-width: 767px) {
  .shop-detail .shop-collapse__summary,
  .shop-detail .shop-collapse__body {
    padding: 16px;
  }
  .shop-detail .shop-section--seo-detail .shop-h2 {
    text-align: left;
    font-size: 18px;
  }
  .shop-detail .shop-section--seo-detail .shop-h2::after {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-detail .shop-allshops__card,
  .shop-detail .shop-allshops__card:hover,
  .shop-detail .shop-allshops__more::after,
  .shop-detail .shop-allshops__cta-link,
  .shop-detail .shop-allshops__cta-link:hover {
    transition: none !important;
    transform: none !important;
  }
}

/* End of shop-detail.css */
