/* =========================================================
   グループ店舗カードセクション
   ========================================================= */

.shopcards-section {
  padding: 60px 0;
  background: #fafafa;
}

.shopcards-section__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding: 0 20px 8px;
}

.shopcard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0px;
  justify-content: center;
  align-items: stretch;
}

.shopcard {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.shopcard:hover {
  transform: translateY(-6px);
  box-shadow: 4px 6px 12px rgba(0,0,0,0.2);
}

.shopcard__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.shopcard__text {
  padding: 20px;
}

.shopcard__title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.shopcard__comment {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.shopcard__btn {
  display: inline-block;
  padding: 8px 24px;
  background: #111;
 color:#fff !important;
  border-radius: 4px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.shopcard__btn:hover {
  background: #f7931e; /* ブランドオレンジ */
  color: #fff;
  text-decoration: none;
}