/* ===== 検索ページ ===== */
.sr-main { padding-bottom: 80px; }
.it-back { width: 40px; height: 40px; border: none; border-radius: 50%; background: rgba(20,35,61,0.06); font-size: 18px; cursor: pointer; color: var(--navy); }
.it-htitle { flex: 1; text-align: center; font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 18px; color: var(--navy); opacity: 1; }

/* カテゴリタブ */
.sr-cats {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 68px 16px 8px; scrollbar-width: none;
  position: sticky; top: 0; z-index: 20; background: var(--paper);
}
.sr-cats::-webkit-scrollbar { display: none; }
.sr-cat {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 64px; padding: 10px 6px;
  border: 1.5px solid #e6ddcd; background: white;
  border-radius: 14px; font-family: inherit; font-size: 11px; font-weight: 700;
  color: var(--slate); cursor: pointer; transition: all 0.25s;
}
.sr-cat span { font-size: 22px; }
.sr-cat.active {
  background: linear-gradient(135deg, var(--navy), #243b5e);
  color: white; border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(20,35,61,0.25);
}

/* 検索フォーム */
.sr-form {
  margin: 8px 16px 0;
  background: white;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.srf-field { margin-bottom: 14px; }
.srf-field:last-of-type { margin-bottom: 18px; }
.srf-label { font-size: 12px; font-weight: 700; color: var(--slate); margin-bottom: 7px; display: block; }
.srf-input {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #e6ddcd; border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fdfbf7; outline: none;
}
.srf-input:focus { border-color: var(--violet); }
.srf-row { display: flex; gap: 10px; }
.srf-row .srf-field { flex: 1; }
.srf-toggle { display: flex; gap: 8px; margin-bottom: 14px; }
.srf-toggle button {
  flex: 1; padding: 10px; border: 1.5px solid #e6ddcd; background: #fdfbf7;
  border-radius: 10px; font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--slate); cursor: pointer;
}
.srf-toggle button.on { background: var(--navy); color: white; border-color: var(--navy); }
.srf-search {
  width: 100%; padding: 16px;
  border: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), #6845e0);
  color: white; font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 16px;
  cursor: pointer; box-shadow: 0 10px 26px rgba(132,94,247,0.4);
}
.srf-search:active { transform: scale(0.98); }

/* 結果ヘッダー */
.sr-result-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 8px;
}
.srh-count { font-size: 13px; font-weight: 700; color: var(--ink); }
.srh-tools { display: flex; gap: 8px; }
.srh-tool {
  border: 1.5px solid #e6ddcd; background: white;
  font-family: inherit; font-size: 12px; font-weight: 700; color: var(--slate);
  padding: 7px 12px; border-radius: 100px; cursor: pointer;
}

/* 結果一覧（縦リストカード） */
.sr-results { padding: 4px 16px 0; display: flex; flex-direction: column; gap: 14px; }
.sr-card {
  background: white; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card); cursor: pointer; display: flex;
  transition: transform 0.2s;
}
.sr-card:active { transform: scale(0.98); }
.sr-card-img {
  width: 120px; flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center; font-size: 44px;
}
.sr-card-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; }
.sr-mini-badge {
  font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 100px; color: white;
  backdrop-filter: blur(4px); white-space: nowrap;
}
.mb-unvisited { background: rgba(132,94,247,0.92); }
.mb-rally { background: rgba(255,107,93,0.92); }
.mb-diary { background: rgba(77,212,172,0.92); }
.sr-card-body { flex: 1; padding: 13px 14px; min-width: 0; }
.sr-card-loc { font-size: 11px; color: var(--slate); font-weight: 600; }
.sr-card-name {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ink); margin: 3px 0 6px; line-height: 1.3;
}
.sr-card-meta { font-size: 11px; color: var(--slate); margin-bottom: 8px; }
.sr-card-foot { display: flex; align-items: flex-end; justify-content: space-between; }
.sr-card-rating { font-size: 12px; font-weight: 700; color: var(--ink); }
.sr-card-rating .star { color: var(--gold); }
.sr-card-rating .cnt { color: var(--slate); font-weight: 500; font-size: 10px; }
.sr-card-price { text-align: right; }
.sr-cp-num { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 17px; color: var(--navy); }
.sr-cp-unit { font-size: 10px; color: var(--slate); }
.sr-cp-drop { font-size: 10px; color: var(--coral); font-weight: 700; }

/* 空状態 */
.sr-empty {
  text-align: center; padding: 60px 30px; color: var(--slate);
}
.sr-empty .se-emoji { font-size: 56px; margin-bottom: 16px; }
.sr-empty .se-title { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.sr-empty .se-text { font-size: 13px; line-height: 1.6; }

.sr-foot { text-align: center; font-size: 11px; color: var(--slate); margin: 24px 0; }

/* ===== 絞り込みシート ===== */
.fs-section { padding: 6px 22px 4px; }
.fs-label { font-size: 12px; font-weight: 700; color: var(--slate); margin: 12px 0 10px; }
.fs-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fs-chip {
  border: 1.5px solid #e6ddcd; background: #fdfbf7;
  font-family: inherit; font-size: 13px; font-weight: 700; color: var(--slate);
  padding: 9px 14px; border-radius: 100px; cursor: pointer;
}
.fs-chip.fs-on { background: var(--navy); color: white; border-color: var(--navy); }
.fs-actions { display: flex; gap: 10px; padding: 18px 22px 8px; }
.fs-clear {
  flex: 0 0 90px; padding: 14px; border: 1.5px solid #e6ddcd; background: white;
  border-radius: 14px; font-family: inherit; font-weight: 700; font-size: 14px; color: var(--slate); cursor: pointer;
}
.fs-apply {
  flex: 1; padding: 14px; border: none; border-radius: 14px;
  background: linear-gradient(135deg,var(--violet),#6845e0); color: white;
  font-family: "Zen Maru Gothic",sans-serif; font-weight: 900; font-size: 15px; cursor: pointer;
}

/* 検索カテゴリのピクトグラム */
.sr-cat .ysm-ic { width:22px; height:22px; }
.bn-item .ysm-ic { width:24px; height:24px; }

.sr-widget-box { margin: 8px 16px 0; }