@charset "utf-8";
/*===========================
add
===========================*/


.store-section {
  padding: 80px 0;
  background: #f9fafc;
}

.store-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* グリッド */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, fit-content(300px));
  justify-content: center; /* グリッド全体を中央寄せ */
  gap: 25px;
}

/* カード */
.store-card {
  width: 300px; /* カード幅固定 */
  
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);

  text-align: center;
}

.store-card h3 {
  font-size: 18px;
  /*margin-bottom: 15px;*/
}

/* リンク */
.store-links {
  display: flex;
	justify-content: center; /* 横中央 */
  gap: 10px;
  flex-wrap: wrap;
}

.store-links a {
  font-size: 13px;
  padding: 6px 12px;
  background: #eee;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.store-links a:hover {
  background: #3498db;
  color: #fff;
}

/* グループ店舗 */
.group-list {
  margin-top: 40px;
}

.group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.group-item h3 {
	font-size: 16px;
	margin-bottom: 0px;
}
.group-item h3::after {
	height: 0px;	
}

.group-item a {
  font-size: 13px;
  text-decoration: none;
  color: #3498db;
}

/* 余白 */
.mt80 {
  margin-top: 80px;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .group-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.store-links {
  display: flex;
  justify-content: center; /* ← 横中央 */
  gap: 15px;              /* ← ボタン間の余白 */
  flex-wrap: wrap;        /* ← スマホで折り返し */
}

.store-links a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  border-radius: 4px;
  transition: 0.3s;
}

.store-links a:hover {
  background: #333;
  color: #fff;
}