@charset "UTF-8";


/* --------------------------------
検索ページ 左側メニュー
-------------------------------- */
.btn_goto_ecsite {
    background-color: #1565C0;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 24px 20px;
    cursor: pointer;

}

/* ========================================
   作品ページ ページネーションクリック問題修正
   問題: .single-bg-area-wrap.over-elm要素がz-index:9で
         ページネーションボタンを覆い、PC表示でクリック不可
   修正日: 2025-08-08
   影響: market/artworks/配下の約700ページ
   ======================================== */

/* over-elm要素のマウスイベントを無効化 */
.single-bg-area-wrap.over-elm {
  pointer-events: none !important;
}

/* 内部のインタラクティブ要素は有効化 */
.single-bg-area-wrap.over-elm a,
.single-bg-area-wrap.over-elm button {
  pointer-events: auto !important;
}

/* ページネーションを確実にクリック可能に */
.artwork-slider-pagination {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.artwork-slider-pagination .swiper-pagination-bullet {
  position: relative !important;
  z-index: 10 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
