/* ===========================
   店舗紹介セクション
=========================== */
.shops {
  background-color: #fff8f8;
  padding: 60px 20px;
  text-align: center;
}

.shops-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.shops h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #a45c6d;
}

.shop-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.shop-card {
  background-color: #fff;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
}

.shop-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.shop-card h3 {
  font-size: 1.2rem;
  color: #a45c6d;
  margin-bottom: 10px;
}

.shop-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.map-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f8b3c1;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

.map-button:hover {
  background-color: #e39da9;
}

/* ▼ Googleマップ埋め込み枠 */
.map-embed {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}


/* ===========================
   店舗紹介セクション：レスポンシブ対応（shops.css専用）
=========================== */
@media (max-width: 768px) {
  .shop-cards {
    flex-direction: column;
    align-items: center;
  }

  .shop-card {
    width: 90%;
    max-width: 360px;
  }

  .map-embed {
    height: 180px;
  }
}
