/* ピックアップサロン一覧 */
.pickup-salon-section {
  padding: 40px 20px;
}
.pickup-salon-title {
  font-size: 1.6em;
  color: #e60012;
  text-align: center;
  margin: 20px 0;
  border-bottom: 2px solid #005bac;
  display: inline-block;
  padding-bottom: 8px;
}
.salon-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 0 20px;
}
.salon-list::-webkit-scrollbar {
  height: 6px;
}
.salon-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}

/* 各カード */
.salon-card {
  flex: 0 0 auto;
  width: 320px;
  background: #fff;
  border: 2px solid #005bac;
  border-left: 6px solid #e60012;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.salon-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.salon-card-body {
  padding: 16px;
}
.salon-card-title {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 8px;
}
.salon-card-station {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 12px;
}
.salon-card-btn {
  display: inline-block;
  background: linear-gradient(90deg,#e60012,#005bac);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity .3s;
}
.salon-card-btn:hover {
  opacity: .8;
}

/* 空状態メッセージ */
.salon-card-none {
  text-align: center;
  color: #555;
  padding: 20px;
}