/** Shopify CDN: Minification failed

Line 1468:0 Unexpected "}"

**/
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #1a1a1a;
    --accent: #c8000a;
    --accent-hover: #a30008;
    --border: #ddd;
    --border-light: #eee;
    --bg-light: #f4f4f4;
    --text-main: #1a1a1a;
    --text-sub: #555;
    --text-muted: #888;
    --text-price: #c8000a;
    --success: #1a7a2e;
    --warning: #d45500;
    --info: #1558b0;
    --font: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    --radius: 3px;
    --shadow: 0 1px 4px rgba(0,0,0,.12);
    --shadow-md: 0 2px 10px rgba(0,0,0,.15);
  }

  body { font-family: var(--font); font-size: 13px; color: var(--text-main); background: var(--bg-light); line-height: 1.5; }
  a { color: var(--text-main); text-decoration: none; }
  a:hover { color: var(--accent); text-decoration: underline; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  input, select, button { font-family: var(--font); }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

  /* ── REVIEW RIBBON ── */
  .phase-ribbon { background: #1558b0; color: #fff; text-align: center; padding: 6px; font-size: 12px; font-weight: bold; }
  .phase-ribbon span { background: #fff; color: #1558b0; border-radius: 3px; padding: 1px 8px; margin-right: 8px; font-size: 11px; }

  /* ══════════════════════════════════════════
     HEADER
  ══════════════════════════════════════════ */
  .site-header { position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-md); }

  /* ── HEADER TOP（tenpos.com共通ヘッダー：TEL・マイページ・お気に入り） ── */
  .header-top { background: #f5f5f5; border-bottom: 1px solid var(--border); font-size: 12px; }
  .header-top .container { display: flex; align-items: center; justify-content: space-between; height: 36px; }
  .header-top__left { display: flex; align-items: center; gap: 14px; }
  .header-top__tel { display: flex; align-items: center; gap: 5px; font-size: 14px; font-weight: bold; color: var(--text-main); }
  .header-top__tel:hover { color: var(--accent); text-decoration: none; }
  .header-top__hours { font-size: 11px; color: var(--text-muted); }
  .header-top__right { display: flex; align-items: stretch; }
  .header-top__link { display: flex; align-items: center; gap: 4px; padding: 0 12px; color: var(--text-sub); border-left: 1px solid var(--border); white-space: nowrap; font-size: 12px; position: relative; }
  .header-top__link:hover { color: var(--accent); text-decoration: none; background: #ececec; }
  .header-top__link.fav-active { color: var(--accent); }
  .header-top__fav-badge { background: var(--accent); color: #fff; font-size: 9px; font-weight: bold; border-radius: 8px; padding: 0 4px; line-height: 14px; min-width: 14px; text-align: center; display: none; }
  .header-top__fav-badge.show { display: inline-block; }

  /* お気に入りボタン（商品カード上） */
  .fav-btn { position: absolute; top: 7px; right: 7px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.92); border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; z-index: 2; transition: all .15s; line-height: 1; color: #bbb; }
  .fav-btn:hover { background: #fff; border-color: var(--accent); color: var(--accent); }
  .fav-btn.active { background: #fff0f0; border-color: var(--accent); color: var(--accent); }

  .header-main { background: #fff; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .header-main .container { display: flex; align-items: center; gap: 16px; }

  .logo { flex-shrink: 0; }
  .logo__name { display: block; font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
  .logo__sub { display: block; font-size: 9px; color: var(--text-muted); margin-top: -2px; }

  /* 検索バー（1次：カテゴリ絞り込み＋フリーワード） */
  /* 検索窓サイズ統一 2026-07-03 */
  .search-bar { flex: 1; display: flex; height: 40px; border: 2px solid var(--primary); border-radius: var(--radius); overflow: hidden; max-width: none; }
  .search-bar__cat { flex-shrink: 0; padding: 0 10px; border: none; border-right: 1px solid var(--border); background: #f7f7f7; font-size: 12px; cursor: pointer; min-width: 120px; }
  .search-bar__input { flex: 1; border: none; padding: 0 12px; font-size: 14px; outline: none; }
  .search-bar__input::placeholder { color: #aaa; }
  .search-bar__btn { flex-shrink: 0; background: var(--primary); color: #fff; border: none; padding: 0 20px; font-size: 13px; font-weight: bold; cursor: pointer; }
  .search-bar__btn:hover { background: var(--accent); }

  .header-actions { display: flex; gap: 8px; flex-shrink: 0; margin-left: auto; }
  .header-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 14px; border-radius: var(--radius); font-size: 11px; border: 1px solid var(--border); background: #fff; cursor: pointer; position: relative; color: var(--text-main); gap: 2px; min-width: 64px; }
  .header-btn:hover { background: #f5f5f5; color: var(--text-main); text-decoration: none; }
  .header-btn--quote { border-color: var(--info); color: var(--info); }
  .header-btn--quote:hover { background: #e8f0fe; }
  .header-btn--cart { background: var(--accent); border-color: var(--accent); color: #fff; }
  .header-btn--cart:hover { background: var(--accent-hover); color: #fff; }
  .header-btn__icon { font-size: 18px; line-height: 1; }
  .header-btn__badge { position: absolute; top: 4px; right: 6px; background: #ff0; color: #1a1a1a; font-size: 9px; font-weight: bold; border-radius: 8px; padding: 0 4px; line-height: 14px; }

  /* ── スマホ ハンバーガーボタン（PC非表示） ── */
  .mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-main); padding: 4px 6px; line-height: 1; }

  /* ── スマホ ナビドロワー ── */
  .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; }
  .mobile-nav-overlay.open { display: block; }
  .mobile-nav-drawer { position: fixed; top: 0; left: -290px; width: 280px; height: 100%; background: #fff; z-index: 301; overflow-y: auto; transition: left .25s ease; box-shadow: 2px 0 12px rgba(0,0,0,.2); }
  .mobile-nav-drawer.open { left: 0; }
  .mobile-nav-drawer__top { display: flex; justify-content: flex-end; padding: 10px 12px; border-bottom: 1px solid var(--border); }
  .mobile-nav-drawer__close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-sub); padding: 4px; }
  .mobile-header-info { background: #1a1a1a; color: #fff; padding: 14px 16px; }
  .mobile-header-info__tel { display: flex; flex-direction: column; margin-bottom: 10px; }
  .mobile-header-info__tel a { color: #fff; text-decoration: none; font-size: 16px; font-weight: bold; display: flex; align-items: center; gap: 6px; }
  .mobile-header-info__tel-hours { font-size: 11px; color: #ccc; margin-top: 4px; padding-left: 22px; }
  .mobile-header-info__links { display: flex; gap: 16px; flex-wrap: wrap; }
  .mobile-header-info__link { color: #fff; text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 4px; }
  .mobile-header-info__link:hover { opacity: .8; color: #fff; text-decoration: none; }
  .mobile-nav-drawer__nav { padding: 0; }
  .mobile-nav-drawer__link { display: block; padding: 14px 20px; font-size: 14px; color: var(--text-main); border-bottom: 1px solid var(--border-light); }
  .mobile-nav-drawer__link:hover { background: #f5f5f5; text-decoration: none; }
  body.drawer-open { overflow: hidden; }

  /* ══════════════════════════════════════════
     ③ 4軸メガナビ（商品カテゴリ/業種/メーカー/カタログ）
  ══════════════════════════════════════════ */
  .mega-nav { background: #2a2a2a; position: relative; z-index: 90; }
  .mega-nav .container { display: flex; align-items: stretch; justify-content: space-between; }
  .mega-nav__axes { display: flex; }

  .mega-axis { position: relative; }
  .mega-axis__trigger {
    display: flex; align-items: center; gap: 5px;
    padding: 11px 18px; background: none; border: none;
    border-right: 1px solid #3a3a3a; cursor: pointer;
    font-size: 12px; font-weight: bold; color: #ddd;
    white-space: nowrap; height: 100%; transition: background .15s;
  }
  .mega-axis__trigger:hover, .mega-axis__trigger.open { background: #3a3a3a; color: #fff; }
  .mega-axis__trigger .arr { font-size: 9px; opacity: .7; }
  .mega-axis__trigger.new-tag::after { content: '1次'; font-size: 9px; background: var(--accent); color: #fff; padding: 1px 4px; border-radius: 2px; margin-left: 4px; }

  /* ドロップダウンパネル */
  .mega-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 220px; background: #fff;
    border: 1px solid var(--border); border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-md); z-index: 200; padding: 8px 0;
  }
  .mega-dropdown.wide { min-width: 320px; }
  .mega-dropdown.open { display: block; }
  .mega-drop-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; font-size: 13px; color: var(--text-main); }
  .mega-drop-item:hover { background: #f5f5f5; color: var(--accent); text-decoration: none; }
  .mega-drop-item__count { font-size: 11px; color: var(--text-muted); }
  .mega-drop-item__badge { font-size: 10px; background: #fff3e0; color: var(--warning); padding: 1px 5px; border-radius: 2px; }
  .mega-drop-divider { height: 1px; background: var(--border-light); margin: 6px 0; }
  .mega-drop-title { padding: 6px 16px 4px; font-size: 10px; color: var(--text-muted); font-weight: bold; letter-spacing: 0.5px; }
  .mega-drop-footer { padding: 8px 16px; border-top: 1px solid var(--border-light); }
  .mega-drop-footer a { font-size: 12px; color: var(--info); font-weight: bold; }

  /* メガナビ右側CTA */
  .mega-nav__ctas { display: flex; align-items: center; gap: 8px; padding: 0 12px; }
  .mega-cta { padding: 7px 16px; border-radius: var(--radius); font-size: 12px; font-weight: bold; white-space: nowrap; }
  .mega-cta--quote { background: var(--accent); color: #fff; }
  .mega-cta--quote:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
  .mega-cta--corp { border: 1px solid #aaa; color: #ddd; }
  .mega-cta--corp:hover { background: #3a3a3a; color: #fff; text-decoration: none; }

  /* ── B2B アラートバー ── */
  .b2b-bar { display: none; } /* フェーズ2以降で復活予定 */
  .b2b-bar--visible { background: #fffbe6; border-bottom: 2px solid #f0c040; padding: 7px 0; }
  .b2b-bar .container { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
  .b2b-bar__item { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: bold; flex-shrink: 1; min-width: 0; }
  .b2b-bar__item .ico { font-size: 14px; flex-shrink: 0; }
  .b2b-bar__cta { margin-left: auto; background: #1558b0; color: #fff; padding: 6px 16px; border-radius: var(--radius); font-size: 12px; font-weight: bold; white-space: nowrap; flex-shrink: 0; }
  .b2b-bar__cta:hover { background: #0d3d80; color: #fff; text-decoration: none; }

  /* ══════════════════════════════════════════
     ④ カテゴリナビゲーションバー (2026-07-06)
  ══════════════════════════════════════════ */
  .site-cat-nav { background: #fff; border-bottom: 1px solid var(--border); position: relative; z-index: 100; }
  .site-cat-nav .container { padding: 0; }
  /* 変更前（左寄り）
  .site-cat-nav__list { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; height: 44px; }
  .site-cat-nav__item { position: relative; display: flex; align-items: stretch; }
  .site-cat-nav__link, .site-cat-nav__btn { padding: 0 14px; }
  */
  /* 変更後（均等配置） */
  .site-cat-nav__list { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; height: 44px; width: 100%; }
  .site-cat-nav__item { position: relative; display: flex; align-items: stretch; flex: 1; justify-content: center; }
  .site-cat-nav__link,
  .site-cat-nav__btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 0 8px; font-size: 14px; color: var(--text-main);
    white-space: nowrap; background: none; border: none; cursor: pointer;
    height: 100%; text-decoration: none; width: 100%;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
  }
  .site-cat-nav__link:hover,
  .site-cat-nav__btn:hover,
  .site-cat-nav__btn[aria-expanded="true"] { color: var(--accent); border-bottom-color: var(--accent); }
  .site-cat-nav__arr { transition: transform .2s; }
  .site-cat-nav__btn[aria-expanded="true"] .site-cat-nav__arr { transform: rotate(180deg); }
  /* メガパネル */
  .site-cat-nav__mega { display: none; position: absolute; top: 100%; left: 0; min-width: 700px; background: #fff; border: 1px solid var(--border); border-top: none; box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 200; }
  .site-cat-nav__mega.is-open { display: block; }
  .site-cat-nav__mega-inner { display: flex; }
  .site-cat-nav__mega-left { width: 180px; flex-shrink: 0; border-right: 1px solid var(--border); padding: 8px 0; background: #fafafa; }
  .site-cat-nav__mega-cat { display: block; padding: 10px 16px; font-size: 14px; color: var(--text-main); text-decoration: none; border-left: 3px solid transparent; }
  .site-cat-nav__mega-cat:hover,
  .site-cat-nav__mega-cat.is-active { background: #fff; border-left-color: var(--accent); color: var(--accent); }
  .site-cat-nav__mega-divider { height: 1px; background: var(--border); margin: 6px 0; }
  .site-cat-nav__mega-all { display: block; padding: 10px 16px; font-size: 13px; color: var(--accent); text-decoration: none; }
  .site-cat-nav__mega-all:hover { text-decoration: underline; }
  .site-cat-nav__mega-right { flex: 1; padding: 16px; min-width: 0; }
  .site-cat-nav__mega-group { display: none; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .site-cat-nav__mega-group.is-active { display: grid; }
  .site-cat-nav__mega-thumb { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; text-decoration: none; color: var(--text-main); font-size: 12px; padding: 8px; border-radius: 4px; transition: background .15s; }
  .site-cat-nav__mega-thumb:hover { background: #f5f5f5; color: var(--accent); }
  .site-cat-nav__mega-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
  .site-cat-nav__mega-thumb-img.no-img { width: 100%; aspect-ratio: 4/3; background: var(--bg-light); border-radius: 4px; }
  /* SPドロワー追加リンク */
  .mobile-nav-extra { border-top: 1px solid var(--border); padding: 8px 0; }
  .mobile-nav-extra__link { display: block; padding: 12px 20px; font-size: 14px; color: var(--text-main); text-decoration: none; border-bottom: 1px solid var(--bg-light); }
  .mobile-nav-extra__link:hover { color: var(--accent); }

  /* ── CHAIR専用説明文 ── */
  .chair-description { margin-bottom: 20px; }
  .chair-description__heading { font-size: 22px; font-weight: bold; margin-bottom: 10px; color: var(--text-main); }
  .chair-description__text { font-size: 14px; line-height: 1.8; color: #555; }

  /* ── SECTION COMMON ── */
  .section { padding: 28px 0; }
  .section--gray { background: var(--bg-light); }
  .section--white { background: #fff; }
  .section-hd { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; border-left: 4px solid var(--accent); padding-left: 10px; }
  .section-hd__title { font-size: 17px; font-weight: 900; }
  .section-hd__sub { font-size: 12px; color: var(--text-muted); margin-left: 10px; }
  .section-hd__more { font-size: 12px; color: var(--info); }

  /* ── HERO ── */
  .hero { background: #fff; border-bottom: 1px solid var(--border); }
  .hero .container { display: grid; grid-template-columns: 1fr 300px; gap: 0; }
  .hero-main { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #1a1a1a 100%); padding: 36px 36px 36px 32px; display: flex; flex-direction: column; gap: 16px; }
  .hero-main__badge { display: inline-block; background: var(--accent); color: #fff; font-size: 11px; font-weight: bold; padding: 3px 10px; border-radius: 2px; letter-spacing: 1px; width: fit-content; }
  .hero-main__title { font-size: 26px; font-weight: 900; color: #fff; line-height: 1.3; }
  .hero-main__title span { color: #ffd700; }
  .hero-main__desc { font-size: 12px; color: #ccc; line-height: 1.7; }
  .hero-main__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn { display: inline-block; padding: 10px 22px; border-radius: var(--radius); font-size: 13px; font-weight: bold; cursor: pointer; border: none; transition: all .15s; text-align: center; }
  .btn--primary { background: var(--accent); color: #fff; }
  .btn--primary:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
  .btn--outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
  .btn--outline-white:hover { background: #fff; color: var(--primary); text-decoration: none; }
  .btn--blue { background: var(--info); color: #fff; }
  .btn--blue:hover { background: #0d3d80; color: #fff; text-decoration: none; }
  .btn--lg { padding: 12px 26px; font-size: 14px; }
  .btn--sm { padding: 6px 14px; font-size: 12px; }
  .btn--full { width: 100%; }
  .btn--favorite { background: #fff; color: #d4606a; border: 1px solid #d4606a; }
  .btn--favorite:hover { background: #FDECEF; border-color: #F5C2C7; color: #C8000A; }
  .btn--favorite.is-active { background: var(--accent); color: #fff; }
  .hero-main__stats { display: flex; gap: 20px; }
  .hero-stat__num { font-size: 20px; font-weight: 900; color: #ffd700; }
  .hero-stat__label { font-size: 10px; color: #aaa; }
  .hero-side { background: #f7f7f7; border-left: 1px solid var(--border); padding: 18px; display: flex; flex-direction: column; gap: 10px; }
  .hero-side__title { font-size: 13px; font-weight: bold; border-bottom: 2px solid var(--primary); padding-bottom: 8px; margin-bottom: 2px; }
  .quick-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-weight: bold; }
  .quick-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
  .quick-link__ico { font-size: 18px; width: 26px; text-align: center; }
  .quick-link__arr { margin-left: auto; color: var(--text-muted); }

  /* ══════════════════════════════════════════
     ② 見積→納期確認→発注の一気通貫フロー（1次）
  ══════════════════════════════════════════ */
  .quote-flow { background: #fff; border-bottom: 2px solid var(--border-light); }
  .quote-flow .container { display: flex; align-items: stretch; }
  .qf-label { background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; padding: 0 20px; font-size: 11px; font-weight: bold; writing-mode: horizontal-tb; flex-shrink: 0; letter-spacing: 0.5px; gap: 6px; }
  .qf-steps { display: flex; flex: 1; }
  .qf-step { flex: 1; display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-right: 1px solid var(--border-light); }
  .qf-step:last-child { border-right: none; }
  .qf-step__num { width: 26px; height: 26px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; }
  .qf-step__title { font-size: 12px; font-weight: 900; }
  .qf-step__desc { font-size: 10px; color: var(--text-sub); margin-top: 2px; }
  .qf-arrow { display: flex; align-items: center; padding: 0 4px; color: var(--text-muted); font-size: 16px; }
  .qf-cta { display: flex; align-items: center; padding: 12px 20px; flex-shrink: 0; border-left: 2px solid var(--border); background: #f7f7f7; gap: 8px; }

  /* ── INFO STRIP ── */
  .info-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .info-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
  .info-item { padding: 16px 18px; border-right: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
  .info-item:last-child { border-right: none; }
  .info-item__ico { font-size: 26px; flex-shrink: 0; }
  .info-item__title { font-size: 13px; font-weight: bold; }
  .info-item__desc { font-size: 11px; color: var(--text-sub); margin-top: 2px; line-height: 1.5; }

  /* ── CATEGORY GRID ── */
  .cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .cat-card__head { background: var(--primary); color: #fff; padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
  .cat-card__head-ico { font-size: 24px; }
  .cat-card__head-name { font-size: 17px; font-weight: 900; }
  .cat-card__head-sub { font-size: 11px; color: #bbb; }
  .cat-card__head-badge { background: #444; font-size: 11px; padding: 3px 10px; border-radius: 10px; margin-left: auto; }
  .cat-card__body { padding: 16px; }
  .sub-cat-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .sub-cat-item { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: #f7f7f7; border-radius: var(--radius); font-size: 13px; font-weight: bold; border: 1px solid transparent; }
  .sub-cat-item:hover { background: #fff; border-color: var(--accent); color: var(--accent); text-decoration: none; }
  .sub-cat-item__count { margin-left: auto; font-size: 11px; color: var(--text-muted); font-weight: normal; }
  .cat-card__footer { padding: 12px 20px; border-top: 1px solid var(--border-light); background: #fafafa; display: flex; justify-content: space-between; align-items: center; }
  .cat-card__footer a { font-size: 12px; color: var(--info); font-weight: bold; }
  .cat-card__footer-note { font-size: 11px; color: var(--text-muted); }

  /* ══════════════════════════════════════════
     ① 業種・シーン別ナビ（1次昇格・8業種カード）
  ══════════════════════════════════════════ */
  .industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 8px; transition: border-color .15s, box-shadow .15s; }
  .industry-card:hover { border-color: var(--accent); box-shadow: var(--shadow); text-decoration: none; }
  .industry-card__ico { font-size: 30px; }
  .industry-card__name { font-size: 14px; font-weight: 900; color: var(--text-main); }
  .industry-card__desc { font-size: 11px; color: var(--text-sub); line-height: 1.5; }
  .industry-card__tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px; }
  .industry-card__tag { font-size: 10px; background: #f0f0f0; color: var(--text-sub); padding: 2px 6px; border-radius: 2px; }
  .industry-card:hover .industry-card__name { color: var(--accent); }

  /* ── RANKING ── */
  .ranking-tabs { display: flex; gap: 4px; margin-bottom: 14px; }
  .rank-tab { padding: 7px 18px; background: #eee; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-weight: bold; cursor: pointer; color: var(--text-sub); }
  .rank-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
  .ranking-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .rank-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; }
  .rank-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
  .rank-num { position: absolute; top: 0; left: 0; background: var(--primary); color: #fff; font-size: 11px; font-weight: 900; padding: 3px 8px; border-radius: 0 0 var(--radius) 0; z-index: 1; }
  .rank-num--1 { background: #c8970a; }
  .rank-num--2 { background: #777; }
  .rank-num--3 { background: #8b5e3c; }
  .rank-card__img { width: 100%; aspect-ratio: 4/3; background: #f5f5f5; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e8e8, #f5f5f5); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #ccc; }
  .rank-card__body { padding: 10px; }
  .rank-card__cat { font-size: 10px; color: var(--text-muted); margin-bottom: 3px; }
  .rank-card__name { font-size: 12px; font-weight: bold; color: var(--text-main); margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  /* ④ 商品カード B2B価格表示：税抜メイン */
  .price-notax { font-size: 17px; font-weight: 900; color: var(--text-price); }
  .price-notax-unit { font-size: 11px; color: var(--text-muted); font-weight: normal; }
  .price-tax-note { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
  .price-bulk { font-size: 10px; color: var(--warning); font-weight: bold; margin-top: 2px; }

  /* ④ 商品カード バッジ類 */
  .card-badges { display: flex; gap: 4px; flex-wrap: wrap; margin: 5px 0; }
  .badge { display: inline-block; padding: 2px 7px; border-radius: 2px; font-size: 10px; font-weight: bold; }
  .badge--made { background: #e6f4ea; color: var(--success); }       /* 既製品 */
  .badge--order { background: #fff3e0; color: var(--warning); }      /* 受注生産 */
  .badge--corp { background: #e8f0fe; color: var(--info); }          /* 法人納入実績 */
  .badge--delivery { background: #e8f0fe; color: var(--info); }
  .badge--stock { background: #e6f4ea; color: var(--success); }

  .tag { display: inline-block; padding: 2px 6px; border-radius: 2px; font-size: 10px; font-weight: bold; }
  .tag--new { background: var(--accent); color: #fff; }
  .tag--bulk { background: #fff3e0; color: var(--warning); }

  .rank-card__dim { font-size: 10px; color: var(--text-sub); margin-top: 4px; }
  .rank-card__qty { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
  .qty-input { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .qty-btn { width: 26px; height: 26px; background: #f0f0f0; border: none; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .qty-btn:hover { background: var(--primary); color: #fff; }
  .qty-field { width: 36px; height: 26px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 13px; font-weight: bold; }
  .rank-card__add { flex: 1; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-size: 11px; font-weight: bold; padding: 0 8px; height: 26px; cursor: pointer; }
  .rank-card__add:hover { background: var(--accent-hover); }
  .rank-card__quote { width: 26px; height: 26px; background: var(--info); color: #fff; border: none; border-radius: var(--radius); font-size: 10px; cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center; text-decoration: none; }
  .rank-card__quote:hover { background: #0d3d80; color: #fff; text-decoration: none; }

  /* ══════════════════════════════════════════
     ② メーカーから探す（1次）
  ══════════════════════════════════════════ */
  .maker-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .maker-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .maker-card:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
  .maker-card__logo { font-size: 22px; }
  .maker-card__name { font-size: 13px; font-weight: bold; color: var(--text-main); }
  .maker-card:hover .maker-card__name { color: var(--accent); }
  .maker-card__count { font-size: 10px; color: var(--text-muted); }
  .maker-more { text-align: center; margin-top: 12px; }
  .maker-more a { font-size: 13px; color: var(--info); font-weight: bold; }

  /* ── B2B FEATURES ── */
  .b2b-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .b2b-feat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px; }
  .b2b-feat__ico { font-size: 28px; margin-bottom: 10px; }
  .b2b-feat__title { font-size: 14px; font-weight: 900; margin-bottom: 6px; }
  .b2b-feat__desc { font-size: 12px; color: var(--text-sub); line-height: 1.6; }
  .b2b-feat__link { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--info); font-weight: bold; }
  .b2b-cta-banner { background: #1a1a1a; color: #fff; padding: 32px; border-radius: var(--radius); display: flex; align-items: center; gap: 40px; margin-top: 20px; }
  .b2b-cta-banner__text { flex: 1; }
  .b2b-cta-banner__title { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
  .b2b-cta-banner__title span { color: #ffd700; }
  .b2b-cta-banner__desc { font-size: 13px; color: #ccc; }
  .b2b-cta-banner__btns { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
  /* No.23② 変更前: .btn { border: none } (line 834) が .btn--outline-white の border を上書きするため
     スコープ付き高詳細度ルール (0,2,0) で白枠線・白文字を強制 */
  .b2b-cta-banner .btn--outline-white { background: rgba(255,255,255,.18); border: none; color: #fff; }
  .b2b-cta-banner .btn--outline-white:hover { background: #fff; color: #1a1a1a; text-decoration: none; }

  /* No.37: カート税表記 1行表示 */
  .tax-note { white-space: nowrap; }

  /* 「買い物を続ける」: チェックアウトボタン直下（モバイル）/ PayPal直下（PC） */
  .cart__continue-shopping { text-align: center; margin-top: 14px; }
  .cart__continue-shopping .underlined-link { font-size: 14px; }

  /* No.38: スライドバナー SPスワイプ対応 */
  slideshow-component .slideshow.banner { touch-action: pan-y; }
  #heroCarousel { touch-action: pan-y; }

  /* ── FOOTER ── */
  .footer { background: #1a1a1a; color: #bbb; margin-top: 40px; }
  .footer-main { padding: 36px 0; }
  .footer-main .container { display: grid; grid-template-columns: 260px 1fr; gap: 48px; }
  .footer-brand__name { font-size: 20px; font-weight: 900; color: #fff; white-space: nowrap; }
  .footer-brand__tagline { font-size: 11px; color: #888; margin-top: 4px; }
  .footer-brand__tel-num { font-size: 18px; font-weight: bold; color: #fff; margin-top: 14px; }
  .footer-brand__tel-note { font-size: 11px; color: #888; }
  .footer-brand__links { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
  .footer-brand__links a { font-size: 12px; color: #aaa; }
  .footer-social { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
  .footer-social__link { display: flex; align-items: center; gap: 8px; color: #aaa; font-size: 12px; text-decoration: none; transition: color .15s; }
  .footer-social__link:hover { color: #fff; }
  .footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .footer-nav__title { font-size: 12px; font-weight: bold; color: #fff; border-bottom: 1px solid #333; padding-bottom: 8px; margin-bottom: 10px; }
  .footer-nav__list { display: flex; flex-direction: column; gap: 6px; }
  .footer-nav__list a { font-size: 11px; color: #aaa; }
  .footer-nav__list a:hover { color: #fff; text-decoration: none; }
  .footer-bottom { background: #111; padding: 12px 0; }
  .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #666; }
  .footer-bottom__links { display: flex; gap: 16px; }
  .footer-bottom__links a { color: #666; }

  /* ── HERO CAROUSEL ── */
  .hero-carousel { position: relative; overflow: hidden; }
  .carousel-track { display: flex; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; }
  .carousel-slide { flex: 0 0 100%; min-width: 100%; height: 280px; display: flex; align-items: center; position: relative; overflow: hidden; }
  .slide-inner { position: relative; z-index: 1; padding: 0 80px; max-width: 1280px; margin: 0 auto; width: 100%; }
  .slide-eyebrow { display: inline-block; font-size: 11px; font-weight: bold; letter-spacing: 2px; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
  .slide-title { font-size: 26px; font-weight: 900; line-height: 1.25; margin-bottom: 8px; }
  .slide-sub { font-size: 13px; line-height: 1.6; margin-bottom: 16px; max-width: 520px; }
  .slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .slide-deco { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); font-size: 140px; opacity: 0.07; user-select: none; pointer-events: none; line-height: 1; }
  .slide-1 { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 55%, #1a1a1a 100%); }
  .slide-1 .slide-eyebrow { background: var(--accent); color: #fff; }
  .slide-1 .slide-title { color: #fff; }
  .slide-1 .slide-title span { color: #ffd700; }
  .slide-1 .slide-sub { color: #ccc; }
  .slide-2 { background: linear-gradient(135deg, #0d3d80 0%, #1558b0 60%, #0d3d80 100%); }
  .slide-2 .slide-eyebrow { background: #fff; color: #1558b0; }
  .slide-2 .slide-title { color: #fff; }
  .slide-2 .slide-title span { color: #ffd700; }
  .slide-2 .slide-sub { color: #c5d8f7; }
  .slide-3 { background: linear-gradient(135deg, #1a3a1a 0%, #2a5a2a 60%, #1a3a1a 100%); }
  .slide-3 .slide-eyebrow { background: #ffd700; color: #1a1a1a; }
  .slide-3 .slide-title { color: #fff; }
  .slide-3 .slide-title span { color: #ffd700; }
  .slide-3 .slide-sub { color: #b8d8b8; }
  /* No.35: バナーボタン視認性修正（WCAG AA 4.5:1以上） */
  /* Slide1: 法人・大量注文の相談 — 半透明白背景でボタン存在感を明示 */
  .slide-1 .btn--outline-white { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }
  .slide-1 .btn--outline-white:hover { background: #fff; color: #1a1a1a; text-decoration: none; }
  /* Slide2: 法人会員登録（無料）— 白地＋濃紺テキスト (対比 7.5:1) */
  .slide-2 .btn--outline-white { background: #fff; color: #0d3d80; border-color: #fff; }
  .slide-2 .btn--outline-white:hover { background: #e8f0fb; color: #0a2e5c; text-decoration: none; }
  /* Slide2: 見積依頼はこちら — 濃紺地＋白テキスト (対比 8.3:1)。背景#0d3d80〜#1558b0から分離 */
  .slide-2 .btn--blue { background: #2a6ab5; color: #fff; }
  .slide-2 .btn--blue:hover { background: #fff; color: #0d3d80; text-decoration: none; }
  /* Slide3: 商品を見る — 半透明白背景でボタン存在感を明示 */
  .slide-3 .btn--outline-white { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }
  .slide-3 .btn--outline-white:hover { background: #fff; color: #1a3a1a; text-decoration: none; }
  /* 画像型スライド共通 */
  .carousel-slide.slide-img { position: relative; overflow: hidden; }
  .carousel-slide.slide-img .slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .carousel-slide.slide-img .slide-overlay { position: absolute; inset: 0; z-index: 1; }
  .carousel-slide.slide-img .slide-inner { position: relative; z-index: 2; }
  /* slide-new-2 / slide-new-3 テキストカラー */
  .slide-new-2 .slide-eyebrow, .slide-new-3 .slide-eyebrow { background: var(--accent); color: #fff; }
  .slide-new-2 .slide-title, .slide-new-3 .slide-title { color: #fff; }
  .slide-new-2 .slide-title span, .slide-new-3 .slide-title span { color: #ffd700; }
  .slide-new-2 .slide-sub, .slide-new-3 .slide-sub { color: #eee; }
  .slide-new-2 .btn--outline-white, .slide-new-3 .btn--outline-white { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }
  .slide-new-2 .btn--outline-white:hover, .slide-new-3 .btn--outline-white:hover { background: #fff; color: #1a1a1a; text-decoration: none; }
  .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,.4); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; line-height: 1; padding: 0; }
  .carousel-btn:hover { background: rgba(0,0,0,.7); }
  .carousel-btn--prev { left: 16px; }
  .carousel-btn--next { right: 16px; }
  .carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
  .carousel-dot.active { background: #fff; transform: scale(1.35); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .ranking-list { grid-template-columns: repeat(4, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .maker-grid { grid-template-columns: repeat(4, 1fr); }
    .b2b-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sub-cat-list { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .carousel-slide { height: auto; min-height: 220px; }
    .slide-inner { padding: 16px 24px; }
    .slide-title { font-size: 20px; }
    .slide-sub { font-size: 12px; margin-bottom: 12px; }
    .slide-btns { flex-wrap: nowrap; gap: 8px; }
    .slide-btns .btn { flex: 1; padding: 10px 8px; font-size: 12px; text-align: center; }
    .slide-deco { display: none; }
    .carousel-btn { width: 34px; height: 34px; font-size: 20px; }
    .header-top { display: none; }
    .header-main .container { flex-wrap: wrap; gap: 10px; }
    .logo { order: 1; } .header-actions { order: 2; }
    .search-bar { order: 3; width: 100%; max-width: 100%; }
    .search-bar__cat { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; order: -1; border: 1px solid var(--border); border-radius: var(--radius); width: 44px; height: 44px; padding: 0; font-size: 18px; }
    .header-btn--cart { min-width: 44px; height: 44px; padding: 0 10px; font-size: 10px; gap: 1px; }
    .header-btn--cart .header-btn__icon { font-size: 18px; line-height: 1; }
    .mega-nav__axes { overflow: visible; } /* Fix: overflow-x:auto clipped absolute dropdown and consumed touch events */
    .b2b-bar .container { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; gap: 16px; padding-bottom: 4px; }
    .b2b-bar__item { flex-shrink: 0; white-space: nowrap; min-width: auto; }
    .b2b-bar__cta { flex-shrink: 0; margin-left: 0; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-side { display: none; }
    .qf-steps { flex-direction: column; }
    .sub-cat-list { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .ranking-list { grid-template-columns: repeat(2, 1fr); }
    .ranking-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .rank-tab { flex-shrink: 0; white-space: nowrap; word-break: keep-all; overflow-wrap: break-word; }
    .maker-grid { grid-template-columns: repeat(3, 1fr); }
    .b2b-features-grid { grid-template-columns: 1fr; }
    .info-strip .container { grid-template-columns: 1fr 1fr; }
    .footer-main .container { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .b2b-cta-banner { flex-direction: column; text-align: center; }
    .site-cat-nav { display: none; }
  }

  /* ══════════════════════════════════════════
     PRODUCTS PAGE
  ══════════════════════════════════════════ */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --primary: #1a1a1a;
    --accent: #c8000a;
    --accent-hover: #a30008;
    --border: #ddd;
    --border-light: #eee;
    --bg-light: #f4f4f4;
    --bg-white: #fff;
    --text-main: #1a1a1a;
    --text-sub: #555;
    --text-muted: #888;
    --text-price: #c8000a;
    --success: #1a7a2e;
    --warning: #d45500;
    --info: #1558b0;
    --font: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'MS PGothic', sans-serif;
    --radius: 3px;
    --shadow: 0 1px 4px rgba(0,0,0,.1);
    --shadow-md: 0 2px 10px rgba(0,0,0,.15);
  }
  body { font-family: var(--font); font-size: 13px; color: var(--text-main); background: var(--bg-light); line-height: 1.5; }
  a { color: var(--text-main); text-decoration: none; }
  a:hover { color: var(--accent); }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  input, select, button { font-family: var(--font); }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

  /* ===================== HEADER (same as index) ===================== */
  .site-header { position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-md); }
  .header-top { background: #1a1a1a; color: #ccc; padding: 5px 0; font-size: 11px; }
  .header-top .container { display: flex; justify-content: space-between; align-items: center; }
  .header-top a { color: #ccc; }
  .header-top__tel { font-size: 12px; font-weight: bold; color: #fff; }
  .header-top__links { display: flex; gap: 14px; }
  .header-main { background: #fff; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .header-main .container { display: flex; align-items: center; gap: 16px; }
  .logo { flex-shrink: 0; }
  .logo__name { display: block; font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
  .logo__sub { display: block; font-size: 9px; color: var(--text-muted); margin-top: -2px; }
  /* 検索窓サイズ統一 2026-07-03 */
  .search-bar { flex: 1; display: flex; height: 40px; border: 2px solid var(--primary); border-radius: var(--radius); overflow: hidden; max-width: none; }
  .search-bar__cat { flex-shrink: 0; padding: 0 10px; border: none; border-right: 1px solid var(--border); background: #f7f7f7; font-size: 12px; min-width: 120px; }
  .search-bar__input { flex: 1; border: none; padding: 0 12px; font-size: 14px; outline: none; }
  .search-bar__input::placeholder { color: #aaa; }
  .search-bar__btn { flex-shrink: 0; background: var(--primary); color: #fff; border: none; padding: 0 20px; font-size: 13px; font-weight: bold; cursor: pointer; }
  .search-bar__btn:hover { background: var(--accent); }
  .header-actions { display: flex; gap: 8px; flex-shrink: 0; margin-left: auto; }
  .header-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 14px; border-radius: var(--radius); font-size: 11px; border: 1px solid var(--border); background: #fff; cursor: pointer; color: var(--text-main); gap: 2px; min-width: 64px; position: relative; }
  .header-btn--cart { background: var(--accent); border-color: var(--accent); color: #fff; }
  .header-btn--quote { border-color: var(--info); color: var(--info); }
  .header-btn__icon { font-size: 18px; }
  .header-btn__badge { position: absolute; top: 4px; right: 6px; background: #ff0; color: #1a1a1a; font-size: 9px; font-weight: bold; border-radius: 8px; padding: 0 4px; line-height: 14px; }
  .cat-nav { background: #2a2a2a; }
  .cat-nav .container { display: flex; }
  .cat-nav__list { display: flex; }
  .cat-nav__list a { display: block; padding: 10px 16px; color: #ddd; font-size: 12px; font-weight: bold; white-space: nowrap; border-right: 1px solid #3a3a3a; }
  .cat-nav__list a:hover, .cat-nav__list a.active { background: #3a3a3a; color: #fff; }
  .cat-nav__list .highlight a { color: #ffd700; }
  .cat-nav__list .sep { flex: 1; }

  /* ===================== BREADCRUMB ===================== */
  .breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0; }
  .breadcrumb__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
  .breadcrumb__item { font-size: 12px; color: var(--text-muted); }
  .breadcrumb__item a { color: var(--info); }
  .breadcrumb__item a:hover { text-decoration: underline; }
  .breadcrumb__sep { color: var(--text-muted); }

  /* ===================== TEMPLATE SWITCHER ===================== */
  .template-bar { background: #fff; border-bottom: 2px solid var(--border); padding: 10px 0; }
  .template-bar .container { display: flex; align-items: center; gap: 16px; }
  .template-bar__label { font-size: 11px; color: var(--text-muted); font-weight: bold; flex-shrink: 0; }
  .template-tabs { display: flex; gap: 4px; }
  .template-tab { padding: 5px 14px; border: 1px solid var(--border); border-radius: 2px; font-size: 12px; cursor: pointer; background: #fff; color: var(--text-sub); font-weight: bold; }
  .template-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
  .template-tab:hover { border-color: var(--primary); }
  .template-tab--disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
  .template-notice { font-size: 11px; color: var(--text-muted); margin-left: auto; }

  /* ===================== LAYOUT ===================== */
  .page-body { padding: 16px 0 40px; }
  .page-body .container { display: grid; grid-template-columns: 240px 1fr; gap: 16px; align-items: start; }

  /* ===================== SIDEBAR / FILTER ===================== */
  .filter-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .filter-header { background: var(--primary); color: #fff; padding: 10px 14px; font-size: 13px; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }
  .filter-clear { font-size: 11px; color: #aaa; cursor: pointer; background: none; border: none; color: #ffcdd2; }
  .filter-clear:hover { color: #fff; }
  .filter-section { border-bottom: 1px solid var(--border-light); padding: 12px 14px; }
  .filter-section:last-child { border-bottom: none; }
  .filter-section__title { font-size: 12px; font-weight: bold; margin-bottom: 8px; color: var(--primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
  .filter-section__toggle { font-size: 14px; color: var(--text-muted); }
  .filter-section__body { display: flex; flex-direction: column; gap: 5px; }
  .filter-check { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-sub); cursor: pointer; }
  .filter-check input { accent-color: var(--accent); width: 13px; height: 13px; flex-shrink: 0; }
  .filter-check__count { margin-left: auto; color: var(--text-muted); font-size: 11px; }
  .filter-range { display: flex; align-items: center; gap: 6px; }
  .filter-range input[type="number"] { width: 70px; padding: 5px 8px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; text-align: right; }
  .filter-range__sep { color: var(--text-muted); flex-shrink: 0; }
  .filter-range__unit { font-size: 11px; color: var(--text-muted); }
  .filter-apply { display: block; width: 100%; margin-top: 10px; padding: 8px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-size: 12px; font-weight: bold; cursor: pointer; }
  .filter-apply:hover { background: var(--accent-hover); }
  .color-swatches { display: flex; flex-wrap: wrap; gap: 5px; }
  .color-swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
  .color-swatch.active, .color-swatch:hover { border-color: var(--primary); outline: 2px solid #aaa; outline-offset: 1px; }

  /* テンプレート切替で表示する追加フィルタ */
  .filter-section--equipment { display: none; }
  .filter-section--consumable { display: none; }
  body.tpl-equipment .filter-section--equipment { display: block; }
  body.tpl-consumable .filter-section--consumable { display: block; }

  /* ===================== PRODUCT AREA ===================== */
  .product-area { display: flex; flex-direction: column; gap: 12px; }

  .result-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .result-bar__count { font-weight: bold; font-size: 14px; }
  .result-bar__count span { color: var(--accent); font-size: 18px; }
  .result-bar__keyword { font-size: 12px; color: var(--text-sub); }
  .sort-bar { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .sort-label { font-size: 12px; color: var(--text-muted); }
  .sort-select { padding: 5px 10px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; }
  .view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .view-btn { width: 30px; height: 28px; border: none; background: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); border-right: 1px solid var(--border); }
  .view-btn:last-child { border-right: none; }
  .view-btn.active { background: var(--primary); color: #fff; }

  /* Active filters display */
  .active-filters { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
  .active-filter-tag { display: flex; align-items: center; gap: 4px; padding: 3px 10px 3px 8px; background: #e8f0fe; border: 1px solid #c5d8fb; border-radius: 12px; font-size: 11px; color: var(--info); }
  .active-filter-tag__remove { cursor: pointer; font-size: 14px; line-height: 1; color: var(--info); }
  .active-filter-label { font-size: 11px; color: var(--text-muted); }

  /* ===================== PRODUCT GRID ===================== */
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .product-grid.list-view { grid-template-columns: 1fr; }

  /* --- Card: Grid View --- */
  .pcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; }
  .pcard:hover { border-color: var(--accent); box-shadow: var(--shadow); }
  .pcard__badges { position: absolute; top: 6px; left: 6px; display: flex; flex-direction: column; gap: 3px; z-index: 1; }
  .badge { display: inline-block; padding: 2px 6px; border-radius: 2px; font-size: 10px; font-weight: bold; }
  .badge--new { background: var(--accent); color: #fff; }
  .badge--sale { background: #ffd700; color: #1a1a1a; }
  .pcard__img { width: 100%; aspect-ratio: 4/3; background: #f5f5f5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .pcard__img .img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #ccc; background: linear-gradient(135deg, #ebebeb, #f8f8f8); }
  .pcard__body { padding: 10px; }
  .pcard__top { display: flex; gap: 6px; align-items: flex-start; margin-bottom: 3px; }
  .pcard__cat { font-size: 10px; color: var(--text-muted); }
  .pcard__code { font-size: 10px; color: var(--text-muted); margin-left: auto; }
  .pcard__name { font-size: 12px; font-weight: bold; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .pcard__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2px; }
  .pcard__price { font-size: 18px; font-weight: 900; color: var(--text-price); }
  .pcard__price-note { font-size: 10px; color: var(--text-muted); }

  /* 家具テンプレ固有 */
  .pcard__attrs { display: flex; flex-direction: column; gap: 2px; margin-bottom: 6px; }
  .pcard__attr { display: flex; gap: 4px; font-size: 11px; }
  .pcard__attr-label { color: var(--text-muted); min-width: 32px; flex-shrink: 0; }
  .pcard__attr-val { color: var(--text-sub); }

  /* 機器テンプレ固有 (将来用) */
  .pcard__spec-table { width: 100%; font-size: 10px; border-collapse: collapse; margin-bottom: 6px; }
  .pcard__spec-table td { padding: 2px 4px; border-bottom: 1px solid var(--border-light); vertical-align: top; }
  .pcard__spec-table td:first-child { color: var(--text-muted); width: 60px; }

  /* 消耗品テンプレ固有 (将来用) */
  .pcard__lot-price { background: #fff3e0; border: 1px solid #ffd699; border-radius: var(--radius); padding: 5px 8px; font-size: 11px; margin-bottom: 6px; }
  .pcard__lot-price table { width: 100%; }
  .pcard__lot-price td { padding: 1px 4px; }
  .pcard__lot-price .price-col { color: var(--text-price); font-weight: bold; text-align: right; }

  .tag { display: inline-block; padding: 2px 7px; border-radius: 2px; font-size: 10px; font-weight: bold; white-space: nowrap; }
  .tag--stock-ok { background: #e6f4ea; color: var(--success); }
  .tag--stock-low { background: #fff3cd; color: #856404; }
  .tag--stock-ng { background: #fce8e8; color: var(--accent); }
  .tag--delivery { background: #e8f0fe; color: var(--info); }
  .tag--delivery-slow { background: #fff3cd; color: #856404; }
  .pcard__actions { display: flex; gap: 6px; align-items: center; }
  .qty-input { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .qty-btn { width: 28px; height: 30px; background: #f0f0f0; border: none; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .qty-btn:hover { background: var(--primary); color: #fff; }
  .qty-field { width: 42px; height: 30px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 13px; font-weight: bold; }
  .pcard__cart-btn { flex: 1; height: 30px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-size: 12px; font-weight: bold; cursor: pointer; }
  .pcard__cart-btn:hover { background: var(--accent-hover); }
  .pcard__quote-btn { height: 30px; padding: 0 10px; background: #fff; color: var(--info); border: 1px solid var(--info); border-radius: var(--radius); font-size: 11px; font-weight: bold; cursor: pointer; white-space: nowrap; }
  .pcard__quote-btn:hover { background: #e8f0fe; }

  /* --- Card: List View --- */
  .product-grid.list-view .pcard { display: grid; grid-template-columns: 180px 1fr; }
  .product-grid.list-view .pcard__img { aspect-ratio: unset; height: 160px; }
  .product-grid.list-view .pcard__body { padding: 14px; }
  .product-grid.list-view .pcard__name { font-size: 14px; -webkit-line-clamp: 1; }
  .product-grid.list-view .pcard__attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
  .product-grid.list-view .pcard__actions { flex-wrap: wrap; }

  /* Template-specific visibility */
  /* furniture */
  .pcard .show-equipment { display: none; }
  .pcard .show-consumable { display: none; }
  /* equipment template */
  body.tpl-equipment .pcard .show-furniture { display: none; }
  body.tpl-equipment .pcard .show-equipment { display: block; }
  /* consumable template */
  body.tpl-consumable .pcard .show-furniture { display: none; }
  body.tpl-consumable .pcard .show-consumable { display: block; }

  /* ===================== PAGINATION ===================== */
  .pagination-outer { display: flex; justify-content: center; align-items: center; gap: 4px; padding: 20px 0; }
  .page-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; cursor: pointer; background: #fff; color: var(--text-main); }
  .page-btn:hover { border-color: var(--accent); color: var(--accent); }
  .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: bold; }
  .page-btn--arrow { font-size: 16px; }
  .page-dots { color: var(--text-muted); padding: 0 4px; }

  /* ===================== FOOTER ===================== */
  .footer { background: #1a1a1a; color: #bbb; margin-top: 20px; }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom .container { display: flex; justify-content: space-between; font-size: 11px; color: #666; }
  .footer-links { display: flex; gap: 16px; }
  .footer-links a { color: #666; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1024px) {
    .page-body .container { grid-template-columns: 210px 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .header-main .container { flex-wrap: wrap; }
    .logo { order: 1; }
    .header-actions { order: 2; }
    .search-bar { order: 3; width: 100%; max-width: 100%; }
    .cat-nav__list { overflow-x: auto; flex-wrap: nowrap; }
    .page-body .container { grid-template-columns: 1fr; }
    .filter-panel { position: fixed; left: -280px; top: 0; height: 100vh; z-index: 200; width: 280px; overflow-y: auto; transition: left .3s; box-shadow: var(--shadow-md); }
    .filter-panel.open { left: 0; }
    .filter-toggle-btn { display: flex; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid.list-view { grid-template-columns: 1fr; }
    .product-grid.list-view .pcard { grid-template-columns: 120px 1fr; }
  }

  /* ── 業種タブ（1次）── */
  .industry-tabs-bar { background: #fff; border-bottom: 2px solid var(--border); overflow-x: auto; white-space: nowrap; }
  .industry-tabs-bar .container { display: flex; gap: 0; padding-left: 0; padding-right: 0; }
  .industry-tab { display: inline-block; padding: 10px 16px; font-size: 12px; font-weight: bold; color: var(--text-sub); text-decoration: none; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
  .industry-tab:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
  .industry-tab.active { color: var(--primary); border-bottom-color: var(--accent); }

    /* ══════════════════════════════════════════
     PRODUCTS DETAIL PAGE
  ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --primary: #1a1a1a;
    --accent: #c8000a;
    --accent-hover: #a30008;
    --border: #ddd;
    --border-light: #eee;
    --bg-light: #f4f4f4;
    --bg-white: #fff;
    --text-main: #1a1a1a;
    --text-sub: #555;
    --text-muted: #888;
    --text-price: #c8000a;
    --success: #1a7a2e;
    --warning: #d45500;
    --info: #1558b0;
    --font: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'MS PGothic', sans-serif;
    --radius: 3px;
    --shadow: 0 1px 4px rgba(0,0,0,.1);
    --shadow-md: 0 2px 10px rgba(0,0,0,.15);
  }
  body { font-family: var(--font); font-size: 13px; color: var(--text-main); background: var(--bg-light); line-height: 1.5; }
  a { color: var(--text-main); text-decoration: none; }
  a:hover { color: var(--accent); }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  input, select, button, textarea { font-family: var(--font); }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

  /* ===================== HEADER ===================== */
  .site-header { position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-md); }
  .header-top { background: #1a1a1a; color: #ccc; padding: 5px 0; font-size: 11px; }
  .header-top .container { display: flex; justify-content: space-between; }
  .header-top a { color: #ccc; }
  .header-top__tel { font-size: 12px; font-weight: bold; color: #fff; }
  .header-top__links { display: flex; gap: 14px; }
  .header-main { background: #fff; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .header-main .container { display: flex; align-items: center; gap: 16px; }
  .logo { flex-shrink: 0; }
  .logo__name { display: block; font-size: 22px; font-weight: 900; color: var(--primary); }
  .logo__sub { display: block; font-size: 9px; color: var(--text-muted); margin-top: -2px; }
  /* 検索窓サイズ統一 2026-07-03 */
  .search-bar { flex: 1; display: flex; height: 40px; border: 2px solid var(--primary); border-radius: var(--radius); overflow: hidden; max-width: none; }
  .search-bar__cat { flex-shrink: 0; padding: 0 10px; border: none; border-right: 1px solid var(--border); background: #f7f7f7; font-size: 12px; min-width: 120px; }
  .search-bar__input { flex: 1; border: none; padding: 0 12px; font-size: 14px; outline: none; }
  .search-bar__input::placeholder { color: #aaa; }
  .search-bar__btn { flex-shrink: 0; background: var(--primary); color: #fff; border: none; padding: 0 20px; font-size: 13px; font-weight: bold; cursor: pointer; }
  .search-bar__btn:hover { background: var(--accent); }
  .header-actions { display: flex; gap: 8px; flex-shrink: 0; margin-left: auto; }
  .header-btn { display: flex; flex-direction: column; align-items: center; padding: 6px 14px; border-radius: var(--radius); font-size: 11px; border: 1px solid var(--border); background: #fff; cursor: pointer; color: var(--text-main); gap: 2px; min-width: 64px; position: relative; }
  .header-btn--cart { background: var(--accent); border-color: var(--accent); color: #fff; }
  .header-btn--quote { border-color: var(--info); color: var(--info); }
  .header-btn__icon { font-size: 18px; }
  .header-btn__badge { position: absolute; top: 4px; right: 6px; background: #ff0; color: #1a1a1a; font-size: 9px; font-weight: bold; border-radius: 8px; padding: 0 4px; line-height: 14px; }
  .cat-nav { background: #2a2a2a; }
  .cat-nav .container { display: flex; }
  .cat-nav__list { display: flex; }
  .cat-nav__list a { display: block; padding: 10px 16px; color: #ddd; font-size: 12px; font-weight: bold; white-space: nowrap; border-right: 1px solid #3a3a3a; }
  .cat-nav__list a:hover, .cat-nav__list a.active { background: #3a3a3a; color: #fff; }
  .cat-nav__list .highlight a { color: #ffd700; }
  .cat-nav__list .sep { flex: 1; }

  /* ===================== BREADCRUMB ===================== */
  .breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0; }
  .breadcrumb__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
  .breadcrumb__item { font-size: 12px; color: var(--text-muted); }
  .breadcrumb__item a { color: var(--info); }
  .breadcrumb__sep { color: var(--text-muted); }

  /* ===================== PRODUCT MAIN ===================== */
  .product-main { padding: 20px 0; }
  .product-main .container { display: grid; grid-template-columns: 200px 1fr 400px; gap: 20px; align-items: stretch; }

  /* --- Gallery --- */
  .gallery { display: flex; flex-direction: column; gap: 10px; }
  .gallery__main { width: 100%; flex: none; aspect-ratio: 608 / 531.25; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .gallery__main img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .gallery__main-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; color: #ccc; background: linear-gradient(135deg, #f0f0f0, #fafafa); }
  .gallery__zoom-hint { position: absolute; bottom: 10px; right: 10px; font-size: 10px; color: var(--text-muted); background: rgba(255,255,255,0.9); padding: 3px 8px; border-radius: 2px; }
  .gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
  .gallery__thumb { width: 72px; height: 60px; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; padding-top: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; background: #f5f5f5; font-size: 24px; color: #ccc; }
  .gallery__thumb img { width: 100%; height: 100% !important; object-fit: contain; display: block; }
  .gallery__thumb.active { border-color: var(--primary); }
  .gallery__thumb:hover { border-color: var(--accent); }

  /* --- Product Description (gallery外・gridの4番目) --- */
  .product-description { grid-column: 2 / 4; padding-bottom: 20px; }

  /* --- Product Info --- */
  .product-info { display: flex; flex-direction: column; gap: 8px; }
  .pinfo__category { font-size: 11px; color: var(--text-muted); }
  .pinfo__category a { color: var(--info); }
  .pinfo__title { font-size: 18px; font-weight: 900; line-height: 1.4; }
  .pinfo__code { font-size: 11px; color: var(--text-muted); display: flex; gap: 12px; }

  /* Price block */
  .price-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; }
  .price-block__row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
  .price-main { font-size: 32px; font-weight: 900; color: var(--text-price); }
  .price-tax { font-size: 12px; color: var(--text-muted); }
  .price-original { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
  .price-off { font-size: 13px; background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 2px; font-weight: bold; }
  .price-excl { font-size: 13px; color: var(--text-sub); margin-top: 2px; }

  /* Bulk pricing */
  .bulk-pricing { background: #fff3e0; border: 1px solid #ffd699; border-radius: var(--radius); padding: 12px 14px; }
  .bulk-pricing__title { font-size: 12px; font-weight: bold; color: var(--warning); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
  .bulk-table { width: 100%; border-collapse: collapse; font-size: 12px; }
  .bulk-table th { background: #ffe5b4; padding: 5px 10px; text-align: left; font-size: 11px; color: #856404; font-weight: bold; }
  .bulk-table td { padding: 5px 10px; border-bottom: 1px solid #ffd699; }
  .bulk-table tr:last-child td { border-bottom: none; }
  .bulk-table .price-col { font-weight: bold; color: var(--text-price); text-align: right; }
  .bulk-table .off-col { color: var(--warning); font-size: 11px; text-align: right; }
  .bulk-table .current-row { background: #fff8e1; }

  /* Stock / Delivery */
  .stock-delivery { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .sd-item__label { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; }
  .sd-item__value { font-size: 14px; font-weight: bold; }
  .sd-item__value.stock-ok { color: var(--success); }
  .sd-item__value.stock-low { color: #856404; }
  .sd-item__value.stock-ng { color: var(--accent); }
  .sd-item__sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .sd-divider { grid-column: 1 / -1; border-top: 1px solid var(--border-light); }
  .sd-item--full { grid-column: 1 / -1; }

  /* Color / variant selection */
  .variant-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; }
  .variant-label { font-size: 12px; font-weight: bold; margin-bottom: 8px; }
  .variant-label span { color: var(--text-muted); font-weight: normal; font-size: 11px; margin-left: 6px; }
  .color-options { display: flex; gap: 6px; flex-wrap: wrap; }
  .color-opt { display: flex; flex-direction: column; align-items: center; gap: 3px; cursor: pointer; }
  .color-opt__swatch { width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent; }
  .color-opt.active .color-opt__swatch, .color-opt:hover .color-opt__swatch { border-color: var(--primary); outline: 2px solid #aaa; outline-offset: 1px; }
  .color-opt__label { font-size: 10px; color: var(--text-muted); }

  /* Quantity & CTA */
  .purchase-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
  .purchase-block__qty-row { display: flex; align-items: center; gap: 12px; }
  .purchase-block__qty-label { font-size: 12px; font-weight: bold; flex-shrink: 0; }
  .qty-input { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .qty-btn { width: 38px; height: 42px; background: #f0f0f0; border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .qty-btn:hover { background: var(--primary); color: #fff; }
  .qty-field { width: 70px; height: 42px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 18px; font-weight: bold; }
  .qty-unit { font-size: 12px; color: var(--text-muted); }
  .qty-total { font-size: 12px; color: var(--text-sub); }
  .qty-total strong { color: var(--text-price); font-size: 15px; }
  .purchase-block__btns { display: flex; flex-direction: column; gap: 8px; }
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 20px; border-radius: var(--radius); font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: all .15s; text-decoration: none; }
  .btn--primary { background: var(--accent); color: #fff; }
  .btn--primary:hover { background: var(--accent-hover); color: #fff; }
  .btn--buy-now { background: var(--primary); color: #fff; }
  .btn--buy-now:hover { background: #333; color: #fff; }
  .btn--quote { background: #fff; color: var(--info); border: 2px solid var(--info); }
  .btn--quote:hover { background: #e8f0fe; color: var(--info); }
  .btn--favorite { background: #fff; color: var(--text-sub); border: 1px solid var(--border); font-size: 12px; padding: 8px 16px; }
  .btn--full { width: 100%; }


  /* ===================== TEMPLATE INDICATOR ===================== */
  .template-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border: 1px solid var(--border); border-radius: 2px; font-size: 11px; color: var(--text-muted); background: #f9f9f9; }

  /* ===================== PRODUCT TABS ===================== */
  .product-tabs-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin: 16px 0; overflow: hidden; }
  .tabs-nav { display: flex; border-bottom: 2px solid var(--border); }
  .tab-btn { padding: 12px 20px; font-size: 13px; font-weight: bold; cursor: pointer; background: none; border: none; color: var(--text-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; }
  .tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
  .tab-btn:hover { color: var(--primary); background: #f9f9f9; }
  .tab-pane { display: none; padding: 20px 24px; }
  .tab-pane.active { display: block; }

  /* Spec table - Extensible attribute design */
  .spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .spec-table caption { text-align: left; font-weight: bold; font-size: 14px; padding: 0 0 12px; }
  .spec-table th { background: #f5f5f5; padding: 9px 14px; text-align: left; font-weight: bold; color: var(--text-sub); width: 180px; border: 1px solid var(--border); vertical-align: top; font-size: 12px; }
  .spec-table td { padding: 9px 14px; border: 1px solid var(--border); color: var(--text-main); vertical-align: top; }
  .spec-table tr:nth-child(even) td { background: #fafafa; }
  .spec-section { margin-bottom: 24px; }
  .spec-section__title { font-size: 13px; font-weight: bold; color: var(--primary); border-left: 3px solid var(--accent); padding-left: 8px; margin-bottom: 10px; }

  /* Usage scenarios */
  .usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .usage-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
  .usage-card__ico { font-size: 28px; margin-bottom: 8px; }
  .usage-card__title { font-size: 13px; font-weight: bold; margin-bottom: 4px; }
  .usage-card__desc { font-size: 11px; color: var(--text-sub); line-height: 1.6; }

  /* Reviews */
  .review-summary { display: grid; grid-template-columns: 200px 1fr; gap: 24px; margin-bottom: 24px; }
  .review-score { text-align: center; padding: 20px; background: #f9f9f9; border-radius: var(--radius); }
  .review-score__num { font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; }
  .review-score__stars { font-size: 20px; color: #f0a500; margin: 6px 0; }
  .review-score__count { font-size: 12px; color: var(--text-muted); }
  .review-bars { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
  .review-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; }
  .review-bar__label { width: 30px; text-align: right; }
  .review-bar__track { flex: 1; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
  .review-bar__fill { height: 100%; background: #f0a500; border-radius: 4px; }
  .review-bar__count { width: 24px; color: var(--text-muted); }
  .review-item { border-top: 1px solid var(--border-light); padding: 16px 0; }
  .review-item__header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 8px; }
  .review-item__stars { color: #f0a500; font-size: 14px; }
  .review-item__title { font-weight: bold; font-size: 13px; }
  .review-item__meta { font-size: 11px; color: var(--text-muted); margin-left: auto; }
  .review-item__body { font-size: 12px; color: var(--text-sub); line-height: 1.7; }
  .review-item__tags { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
  .review-tag { padding: 2px 8px; background: #f0f0f0; border-radius: 10px; font-size: 11px; color: var(--text-muted); }

  /* ===================== RELATED / RECENTLY VIEWED ===================== */
  .section { padding: 24px 0; }
  .section-hd { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; border-left: 4px solid var(--accent); padding-left: 10px; }
  .section-hd__title { font-size: 16px; font-weight: 900; }
  .section-hd__more { font-size: 12px; color: var(--info); }
  .products-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .pcard-mini { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .pcard-mini:hover { border-color: var(--accent); }
  .pcard-mini__img { aspect-ratio: 1/1; background: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #ccc; }
  .pcard-mini__body { padding: 8px; }
  .pcard-mini__name { font-size: 11px; font-weight: bold; margin-bottom: 4px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .pcard-mini__price { font-size: 14px; font-weight: 900; color: var(--text-price); }
  .pcard-mini__meta { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

  /* ===================== FOOTER ===================== */
  .footer { background: #1a1a1a; color: #bbb; margin-top: 20px; }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom .container { display: flex; justify-content: space-between; font-size: 11px; color: #666; }
  .footer-links { display: flex; gap: 16px; }
  .footer-links a { color: #666; }

  /* ===================== PRODUCT SIDEBAR ===================== */
  .product-sidebar { display: flex; flex-direction: column; gap: 8px; }
  .back-to-list { display: block; padding: 9px 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-weight: bold; color: var(--text-main); text-align: center; }
  .back-to-list:hover { background: #f5f5f5; color: var(--text-main); }
  .filter-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .filter-header { background: var(--primary); color: #fff; padding: 9px 12px; font-size: 12px; font-weight: bold; }
  .filter-section { border-bottom: 1px solid var(--border-light); padding: 10px 12px; }
  .filter-section:last-child { border-bottom: none; }
  .filter-section__title { font-size: 11px; font-weight: bold; margin-bottom: 7px; color: var(--primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
  .filter-section__toggle { font-size: 11px; color: var(--text-muted); }
  .filter-section__body { display: flex; flex-direction: column; gap: 4px; }
  .filter-check { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-sub); cursor: pointer; line-height: 1.4; }
  .filter-check input { accent-color: var(--accent); width: 12px; height: 12px; flex-shrink: 0; }
  .filter-check__count { margin-left: auto; color: var(--text-muted); font-size: 10px; flex-shrink: 0; }
  .filter-range { display: flex; align-items: center; gap: 4px; margin-top: 6px; flex-wrap: wrap; }
  .filter-range input[type="number"] { width: 58px; padding: 4px 5px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 11px; text-align: right; }
  .filter-range__sep { color: var(--text-muted); font-size: 11px; }
  .filter-range__unit { font-size: 10px; color: var(--text-muted); }
  .filter-apply { display: block; width: 100%; margin-top: 8px; padding: 7px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-size: 11px; font-weight: bold; cursor: pointer; }
  .filter-apply:hover { background: var(--accent-hover); }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1024px) {
    .product-main .container { grid-template-columns: 170px 1fr 360px; gap: 14px; }
    .products-row { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 768px) {
    .header-main .container { flex-wrap: wrap; }
    .logo { order: 1; }
    .header-actions { order: 2; }
    .search-bar { order: 3; width: 100%; max-width: 100%; }
    .cat-nav__list { overflow-x: auto; flex-wrap: nowrap; }
    .product-main .container { grid-template-columns: 1fr; }
    .product-sidebar { display: none; }
    .product-description { grid-column: 1; }
    .usage-grid { grid-template-columns: 1fr; }
    .products-row { grid-template-columns: repeat(2, 1fr); }
    .review-summary { grid-template-columns: 1fr; }
    .stock-delivery { grid-template-columns: 1fr; }
  }

/* ══════════════════════════════════════════
   PREDICTIVE SEARCH DROPDOWN
══════════════════════════════════════════ */
/* overflow fix: allow dropdown to escape the search-bar boundary */
.search-bar { overflow: visible; }
.search-bar__cat { border-radius: var(--radius) 0 0 var(--radius); }
.search-bar__btn { border-radius: 0 var(--radius) var(--radius) 0; }
.search-bar__input-wrap { flex: 1; min-width: 0; position: relative; display: flex; align-items: stretch; }
.search-bar__input-wrap .search-bar__input { flex: 1; width: 100%; }

.ps-dropdown { position: absolute; top: calc(100% + 3px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 4px 12px rgba(0,0,0,.15); z-index: 500; overflow: hidden; }
.ps-list { list-style: none; margin: 0; padding: 4px 0; }
.ps-item__link { display: flex; align-items: center; gap: 10px; padding: 8px 12px; color: var(--text-main); text-decoration: none; transition: background .1s; }
.ps-item__link:hover { background: #f7f7f7; color: var(--text-main); text-decoration: none; }
.ps-item__img { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-light); border-radius: 2px; background: #f0f0f0; }
.ps-item__img--none { display: inline-block; }
.ps-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ps-item__name { font-size: 12px; font-weight: 500; line-height: 1.4; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-item__price { font-size: 11px; color: var(--text-price); }
.ps-loading { padding: 14px 12px; text-align: center; font-size: 12px; color: var(--text-muted); }
.ps-footer { padding: 8px 12px; border-top: 1px solid var(--border-light); background: #fafafa; text-align: right; }
.ps-footer__link { font-size: 12px; color: var(--accent); }
.ps-footer__link:hover { text-decoration: underline; }
@media (max-width: 768px) { .ps-dropdown { left: 0; right: 0; } }

/* ============================================================
   PDP スマホ表示崩れ修正 (〜768px)
   ============================================================ */
@media (max-width: 768px) {
  /*
   * 商品ギャラリー SP 修正: padding-top ハック採用
   * height:0 + padding-top:75% で 4:3 コンテナを生成。
   * position:relative は base で設定済み。
   */
  .gallery__main {
    display: block;
    flex: none;             /* PC の flex:1 をリセット */
    height: 0;
    padding-top: 75%;       /* 3/4 = 75% → 4:3 アスペクト比 */
    overflow: hidden;
  }
  .gallery__main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .gallery__zoom-hint {
    display: none;
  }
  .gallery__thumb {
    overflow: hidden;
    padding-top: 0;
    align-items: center;
  }
  .gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 数量行: 狭い画面で合計金額が折り返せるように */
  .purchase-block__qty-row {
    flex-wrap: wrap;
  }
  .qty-total {
    width: 100%;
    margin-top: 2px;
  }

  /* 商品タブナビ: 横スクロール対応 (タブが画面幅を超えても崩れない) */
  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 14px;
  }

  /* スペックテーブル: 4列テーブルが横幅に収まらない場合に横スクロール */
  .spec-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spec-table {
    font-size: 11px;
    min-width: 280px;
  }
  .spec-table th {
    width: auto;
    min-width: 80px;
    padding: 6px 8px;
    font-size: 11px;
  }
  .spec-table td {
    padding: 6px 8px;
    font-size: 11px;
  }

  /* 商品説明テキスト: 行間・フォントサイズを可読領域に合わせて調整 */
  .product-info > div[style*="line-height"] {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* ============================================================
   ランキングカード 数量・ボタン修正
   PC・スマホ共通: 2段レイアウト（上段: qty / 下段: カートへ+見積）
   PDP定義（.qty-btn 38px / .qty-field 70px）を子孫セレクターで上書き。
   ============================================================ */
.rank-card__qty { width: 100%; flex-wrap: wrap; gap: 4px; }
.rank-card__qty .qty-input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
/* -+ボタンとinputを比率（29%:42%:29%）で全幅に分配 */
.rank-card__qty .qty-btn  { flex: 0 0 29%; height: 30px; font-size: 13px; }
/* input数字を中央揃え + Firefox スピンボタン非表示 */
.rank-card__qty .qty-field { flex: 0 0 42%; min-width: 0; height: 30px; font-size: 12px; text-align: center; -moz-appearance: textfield; }
/* Chrome/Safari/Edge スピンボタン非表示 */
.rank-card__qty .qty-field::-webkit-outer-spin-button,
.rank-card__qty .qty-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* 下段: カートへ（flex:1）＋見積（min-width:44px）横並び */
.rank-card__add  { flex: 1; font-size: 13px; white-space: nowrap; height: 30px; line-height: 30px; padding: 0 8px; }
.rank-card__quote {
  flex-shrink: 0;
  min-width: 44px;
  width: auto;
  padding: 0 8px;
  height: 30px;
  font-size: 12px;
}

/* 見積ボタン: PC = 見積へ進む / スマホ = 見積 */
.rq-sp { display: none; }

@media (max-width: 768px) {
  /* スマホのみ: 2列表示でボタンエリアを下部に固定 */
  .rank-card { display: flex; flex-direction: column; }
  .rank-card__body { flex: 1; display: flex; flex-direction: column; }
  .rank-card__qty { margin-top: auto; }
  /* 見積ボタンテキスト切り替え */
  .rq-pc { display: none; }
  .rq-sp { display: inline; }
}

/* ══════════════════════════════════════════
   カテゴリサイドバーナビゲーション
══════════════════════════════════════════ */
.page-with-sidebar {
  display: flex;
  align-items: flex-start;
}

.page-main-content {
  flex: 1;
  min-width: 0;
}

.cat-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 150px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #3a5a3a transparent;
}

.cat-sidebar__inner {
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}

.cat-sidebar__header {
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cat-sidebar__header-ico { font-size: 14px; }

.cat-sidebar__group { padding: 6px 0; }

.cat-sidebar__group-title {
  font-size: 10px;
  font-weight: bold;
  color: rgba(255,255,255,.5);
  padding: 6px 14px 3px;
  letter-spacing: 0.8px;
}

.cat-sidebar__link {
  display: block;
  padding: 7px 14px 7px 20px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  transition: background .12s, color .12s;
  position: relative;
}

.cat-sidebar__link::before {
  content: '›';
  position: absolute;
  left: 10px;
  color: rgba(255,255,255,.35);
}

.cat-sidebar__link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}

.cat-sidebar__link.is-active {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-weight: bold;
}

.cat-sidebar__link.is-active::before { color: rgba(255,255,255,.9); }

.cat-sidebar__divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 2px 0;
}

.cat-sidebar__all-link {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: bold;
  color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(255,255,255,.1);
  transition: background .12s;
}

.cat-sidebar__all-link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
}

/* ── SP版ドロワー カテゴリナビ ── */
.mobile-nav-cat { background: var(--primary); border-top: 1px solid rgba(255,255,255,.12); }
.mobile-nav-cat__group { padding: 6px 0; }
.mobile-nav-cat__group-title { font-size: 10px; font-weight: bold; color: rgba(255,255,255,.5); padding: 6px 16px 3px; letter-spacing: 0.8px; }
.mobile-nav-cat__link { display: block; padding: 9px 16px 9px 26px; font-size: 13px; color: rgba(255,255,255,.85); position: relative; }
.mobile-nav-cat__link::before { content: '›'; position: absolute; left: 14px; color: rgba(255,255,255,.35); }
.mobile-nav-cat__link:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.mobile-nav-cat__divider { height: 1px; background: rgba(255,255,255,.1); margin: 2px 0; }
.mobile-nav-cat__all { display: block; padding: 11px 16px; font-size: 13px; font-weight: bold; color: rgba(255,255,255,.8); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav-cat__all:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }

/* ── トップページ カテゴリ＋サイドバー レイアウト ── */
.top-cat-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.top-cat-content {
  flex: 1;
  min-width: 0;
}

.top-cat-layout .cat-sidebar {
  width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 150px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

@media (max-width: 768px) {
  .page-with-sidebar { display: block; }
  .cat-sidebar { display: none; }
  .top-cat-layout { display: block; }
  .top-cat-layout .cat-sidebar { display: none; }
}

/* 画像なしプレースホルダー（商品詳細ページ） */
.no-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.no-image-placeholder__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
}

  /* お気に入りアイコン ツールチップ */
  .favorite-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .favorite-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
  }

  .favorite-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #333;
  }

  .favorite-icon-wrapper:hover .favorite-tooltip {
    opacity: 1;
  }

  /* お気に入り登録 スライドイントースト */
  .fav-toast {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateX(16px) translateY(-50%);
    opacity: 0;
    background: #d4606a;
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 200;
    line-height: 1.6;
  }
  .fav-toast.show {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
    pointer-events: auto;
  }
  .fav-toast__line1 { display: block; }
  .fav-toast__action {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    white-space: nowrap;
  }
  .fav-toast__action:hover { color: #fff; text-decoration: none; }
  .fav-toast.show:hover { background: #FDECEF; border: 1px solid #F5C2C7; color: #C8000A; }
  .fav-toast.show:hover .fav-toast__action { color: #C8000A; }
  @media (max-width: 749px) {
    .fav-toast {
      left: 0;
      right: 0;
      top: calc(100% + 8px);
      transform: translateY(-8px) translateX(0);
      text-align: center;
    }
    .fav-toast.show {
      transform: translateY(0) translateX(0);
    }
  }
}

/* ── SP版ヘッダーアイコン (2026-06) ── */
.header-icon-btn {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
  text-decoration: none;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.header-icon-btn--fav { position: relative !important; }
.header-icon-btn:hover { opacity: 0.7; text-decoration: none; }
.header-icon-btn__badge {
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  left: auto !important;
  bottom: auto !important;
  min-width: 16px !important;
  height: 16px !important;
  padding: 0 3px !important;
  background: #E84000 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  border-radius: 8px !important;
  text-align: center !important;
  pointer-events: none !important;
  z-index: 1 !important;
  display: none;
}
.header-icon-btn__badge.show { display: inline-block !important; }

/* ── SP版ヘッダーレイアウト修正 ── */
@media screen and (max-width: 989px) {
  /* コンテナ：1行目にロゴ+アクション、2行目に検索窓 */
  .header-main .container {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    padding: 8px 16px !important;
  }
  /* ロゴ：左端・縮まない */
  .logo {
    order: 1 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin-right: 8px !important;
    margin-left: 16px !important;
  }
  /* アイコン群（ハンバーガー含む）：ロゴの直右隣 */
  .header-actions {
    order: 2 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* 検索窓：2行目・全幅 */
  .search-bar {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-top: 8px !important;
  }
  .search-bar__cat { display: none; }
  /* 旧ボタン・見積依頼を非表示 */
  .header-actions .header-btn--quote { display: none !important; }
  .header-btn--cart { display: none !important; }
  /* ハンバーガーを header-actions 内でアイコンと同サイズに */
  .header-actions .mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    order: 4 !important;
  }
  /* SP：テキストラベル・電話ブロック非表示 */
  .header-icon-btn__label { display: none !important; }
  .header-tel-block { display: none !important; }
}

/* PC版：アイコン＋テキストラベル縦並び表示 */
@media screen and (min-width: 990px) {
  .header-icon-btn {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 4px 8px;
    gap: 4px;
  }
  .header-icon-btn__icon,
  .header-icon-btn__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-icon-btn__label {
    display: block;
    font-size: 11px;
    color: var(--text-main);
    white-space: nowrap;
  }
  /* 電話番号ブロック */
  .header-tel-block {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    padding: 4px 8px;
    cursor: pointer;
    border-left: 1px solid var(--border);
    margin-left: 4px;
  }
  .header-tel-block:hover { opacity: 0.8; text-decoration: none; }
  .header-tel-block__icon { flex-shrink: 0; color: var(--primary); }
  .header-tel-block__info { display: flex; flex-direction: column; line-height: 1.3; }
  .header-tel-block__number { font-size: 15px; font-weight: bold; white-space: nowrap; }
  .header-tel-block__hours { font-size: 11px; color: var(--text-sub); white-space: nowrap; }
  .mobile-menu-btn { display: none !important; }
}

/* ── モバイルナビドロワー：右側からスライドイン ── */
.mobile-nav-drawer {
  left: auto !important;
  right: 0 !important;
  transform: translateX(100%) !important;
  transition: transform .25s ease !important;
  box-shadow: -2px 0 12px rgba(0,0,0,.2) !important;
}
.mobile-nav-drawer.open {
  transform: translateX(0) !important;
}

/* ── PC版ヘッダー上部バー：カートリンク SP非表示 (2026-06) ── */
@media (max-width: 768px) {
  .header-top__cart-link {
    display: none;
  }
}

/* ── 税抜価格を非表示 (2026-06) ── */
.bsr__price-ex {
  display: none !important;
}
