/* === 基本 === */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  margin: 0;
  background: #fafafa;
}
.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: #333;
}

/* === Hero === */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('https://images.pexels.com/photos/697059/pexels-photo-697059.jpeg?auto=compress') center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-btn {
  background: #e8591a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #c7470d;
}

/* === 都道府県リンク === */
.pref-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem auto 2rem;
}
.pref-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: 0.2s;
}
.pref-item:hover {
  background: #e8591a;
  color: #fff;
  border-color: #e8591a;
}

/* === 店舗グリッド === */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.shop-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.shop-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.shop-name {
  font-size: 1.1rem;
  margin: 0.8rem 1rem 0.4rem;
}
.shop-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0 1rem 1.2rem;
}

.shop-card.hidden {
  display: none;
}

.load-more-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.load-more-btn {
  background: #e8591a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.load-more-btn:hover {
  background: #c7470d;
}

/* === About === */
.about-section {
  background: #f0f0f0;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}