.brand { display: none; }

.search-filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) minmax(120px, .8fr) minmax(120px, .8fr);
  gap: 8px;
  min-width: 0;
}

.filter-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  height: 49px;
  min-width: 0;
  padding: 0 10px;
  color: #8e7357;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 11px;
  font-weight: 800;
}

.filter-field select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.store-card .store-phone {
  display: block;
  color: #8d7358;
  white-space: normal;
}

.store-card .store-phone::before { content: "電話 "; color: #b19577; }

@media (max-width: 560px) {
  .search-filter-row { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .filter-field { grid-template-columns: 1fr; align-content: center; gap: 0; padding: 4px 10px; }
  .filter-field span { font-size: 10px; line-height: 1.1; }
  .filter-field select { font-size: 13px; }
  .store-card p { text-overflow: clip; white-space: normal; }
}

@media (max-width: 340px) {
  .search-filter-row { grid-template-columns: 1fr; }
  .search-field { grid-column: auto; }
}
