@charset "utf-8";
/* CSS Document */
@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f8f8f8;
  font-size: 14px;
}

.container {
  padding: 16px;
}

.search-bar {
  margin-bottom: 12px;
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.area-btn {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 8px; /* ← 角丸で四角に */
  background: #e0e0e0;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.area-btn:hover {
  background: #d5d5d5;
}

.area-btn.active {
  background: linear-gradient(135deg, #00a2ff, #61efff);
  color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* ↓↓↓ 修正部分：2列対応 ↓↓↓ */
.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
/* ↑↑↑ 修正部分ここまで ↑↑↑ */

.shop-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shop-header {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 10px;
  cursor: pointer;
}

.shop-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.shop-name {
  font-weight: bold;
  font-size: 15px;
  color: #222;
}

.shop-body {
  display: none;
  flex-direction: column;
  padding: 0 16px 12px;
  font-size: 13px;
  color: #555;
}

.shop-body div {
  margin: 4px 0;
}

.icon {
  margin-right: 6px;
}

a[href^="tel:"] {
  color: #1e88e5;
  text-decoration: none;
}
