/* products ページ固有CSS（静的products/index.htmlのインライン<style>から抽出） */
/* ===== 医療関係者ゲート ===== */
  html.gate-lock, html.gate-lock body { overflow: hidden; }
  .gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    background: rgba(244,247,246,.96);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  }
  .gate__card {
    width: min(760px, 100%);
    background: #fff;
    border: 1px solid #d7dcda;
    border-radius: 6px;
    padding: clamp(36px,5vw,64px) clamp(24px,5vw,56px);
    text-align: center;
    box-shadow: 0 24px 60px rgba(20,40,30,.10);
  }
  .gate__head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 26px; }
  .gate__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 2.5px solid #2f6fde; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #2f6fde; font-size: 24px; font-weight: 700; line-height: 1; font-family: var(--en);
  }
  .gate__title { font-size: clamp(20px,2.4vw,26px); font-weight: 700; color: var(--ink); letter-spacing: .04em; }
  .gate__lead { font-size: clamp(13px,1.05vw,15px); line-height: 2; color: #46514b; margin-bottom: 30px; }
  .gate__q { font-size: clamp(15px,1.4vw,18px); font-weight: 700; color: var(--ink); margin-bottom: 22px; }
  .gate__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .gate__btn {
    min-width: 180px; padding: 15px 28px; border-radius: 4px;
    color: #fff; font-size: 16px; font-weight: 700; letter-spacing: .08em;
    transition: opacity .2s, transform .2s;
  }
  .gate__btn:hover { opacity: .9; transform: translateY(-1px); }
  .gate__btn--yes { background: #2f6fde; }
  .gate__btn--no  { background: #9a9a9a; }
  @media (max-width: 480px) { .gate__btn { min-width: 0; flex: 1; } }

  /* ===== 製品ページ ===== */
  .pbanner {
    position: relative; padding: clamp(150px,18vw,230px) 0 clamp(48px,6vw,80px);
    background: linear-gradient(120deg, #2e9e5b 0%, #27884d 60%, #1f7d57 100%);
    color: #fff; overflow: hidden;
  }
  .pbanner::after {
    content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
    border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.14), transparent 70%);
    pointer-events: none;
  }
  .pbanner__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; z-index: 1; }
  .pbanner__en { font-family: var(--en); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1; letter-spacing: .04em; }
  .pbanner__jp { margin-top: 14px; font-size: clamp(16px,2vw,22px); font-weight: 500; letter-spacing: .06em; }

  /* ===== パンくず ===== */
  .crumb { width: min(1180px, 100% - 48px); margin: 22px auto 0; font-size: 13px; color: #78857e; }
  .crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
  .crumb a { color: #78857e; transition: color .2s; }
  .crumb a:hover { color: var(--green); }
  .crumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b8c2bc; }
  .crumb [aria-current="page"] { color: var(--ink); }

  /* ===== 一覧ラッパ ===== */
  .plist { width: min(1180px, 100% - 48px); margin: clamp(32px,4vw,52px) auto clamp(80px,10vw,120px); }

  /* ===== フィルター ===== */
  .pfilter { background: #f1f7f4; border-radius: 10px; padding: clamp(20px,2.6vw,30px); margin-bottom: clamp(36px,4.5vw,56px); }
  .pfilter__row + .pfilter__row { margin-top: 20px; }
  .pfilter__label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .06em; margin-bottom: 12px; }
  .pfilter__chips { display: flex; flex-wrap: wrap; gap: 10px; }
  .pchip {
    padding: 9px 18px; border: 1px solid #d7e3da; border-radius: 8px; background: #fff;
    font-size: 13px; color: var(--ink); cursor: pointer; transition: color .2s, border-color .2s, box-shadow .2s;
  }
  .pchip:hover { border-color: var(--green); color: var(--green); }
  .pchip.is-active { border-color: var(--green); color: var(--green); font-weight: 700; box-shadow: inset 0 0 0 1px var(--green); }

  /* ===== 商品グリッド ===== */
  .pgrid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px,3vw,44px) clamp(24px,2.8vw,40px); }
  .pcase { min-width: 0; }
  .pcase__link { display: flex; flex-direction: column; height: 100%; }
  .pcase__thumb {
    aspect-ratio: 16 / 10; border-radius: 6px; overflow: hidden; background: #fff; border: 1px solid #e7efe9;
  }
  .pcase__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .pcase__link:hover .pcase__thumb img { transform: scale(1.04); }
  .pcase__link:hover .pcase__thumb { box-shadow: 0 14px 30px rgba(31,125,73,.12); }
  .pcase__body { padding-top: 16px; }
  .pcase__cat {
    display: inline-block; font-size: 11.5px; letter-spacing: .06em; color: var(--green);
    border: 1px solid #bfe0cc; border-radius: 4px; padding: 3px 11px;
  }
  .pcase__title { margin: 12px 0 12px; font-size: clamp(16px,1.4vw,18px); font-weight: 700; color: var(--ink); line-height: 1.55; transition: color .2s; }
  .pcase__link:hover .pcase__title { color: var(--green); }
  .pcase__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 14px; }
  .pcase__tags li { font-size: 12px; color: #8b968f; }
  .pcase__tags li::before { content: "#"; color: var(--green); margin-right: 1px; }
  .pgrid__empty { display: none; padding: 48px 0; text-align: center; color: #8b968f; }
  @media (max-width: 900px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .pgrid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
