/* ===== STORE page blocks ===== */
/* STOREセクション同士の間隔を調整 */
.page-store .store-section {
  margin-top: 140px; /* ← 間隔を狭めたい時 */
  padding-bottom: 1px; /* マージン相殺防止 */
}
.page-store .store-section.wide-gap {
  margin-top: 100px; /* ← 間隔を広げたい時（クラスを追加して制御） */
  margin-bottom: 180px;
}
.store-section .section-title {
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs27);
  letter-spacing: .07em;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.page-store .store-section .subtitle {
  font-family: var(--fn-jp);
  font-size: var(--fs11);
  letter-spacing: .12em;
  margin: 0 0 40px;
  color: #000;
  opacity: .85;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.store-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 130px;
  padding: 22px 40px;
  background: #F4F1EC; /* やさしいベージュ（画像イメージ） */
  text-decoration: none;
  color: inherit;
}
.store-card .icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFF;
  flex-shrink: 0;
}
.store-card .icon img {
  width: 26px;
  height: 26px;
}
.store-card .label {
  display: block; /* 幅を持たせる */
  width: 100%; /* カード幅いっぱいに広げる */
  text-align: center; /* テキストを中央寄せ */
  font-size: var(--fs13);
  letter-spacing: .1em;
  line-height: 1.8;
}
/* hover (PC) */
@media (hover:hover) and (pointer:fine) {
  .store-card:hover {
    opacity: .9;
    transform: translateY(-1px);
    transition: .2s ease;
  }
}
/* ダミーカード（ONLINE SHOPの空枠） */
.store-card.is-empty {
  background: transparent;
  border: 1px solid transparent;
  pointer-events: none;
}
/* SP: 1カラム */
@media (max-width: 767px) {
  .page-store .store-section {
    margin-top: 100px; /* ← 間隔を狭めたい時 */
  }
  .page-store .store-section.wide-gap {
    margin-top: 40px; /* ← 間隔を広げたい時（クラスを追加して制御） */
    margin-bottom: 50px;
  }
  .page-store .store-section .subtitle {
    margin: 0 0 20px;
  }
  .store-grid {
    grid-template-columns: 1fr;
  }
.store-card.is-empty {
  display: none;
}
}