/* ============================================================
   Shop List Page  ― 店舗一覧ページ専用
   ============================================================ */

#shoplist {
  background: var(--color-white);
}

/* ---- 地域ブロック ---- */
.shop-region {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.shop-region:last-child {
  margin-bottom: 0;
}

/* ---- 地域見出し ---- */
.shop-region-title {
  font-family: var(--font-ja);
  font-size: clamp(22px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: var(--color-blue);
  padding: 22px clamp(20px, 2vw, 32px);
  border-radius: 4px;
  margin-bottom: 16px;
  display: block;
}

/* ---- 店舗グリッド ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ---- 店舗カード ---- */
.shop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
  background: var(--color-white);
  border: 1px solid rgba(0, 18, 181, 0.12);
  border-radius: 6px;
  position: relative;
  will-change: transform;
  transition:
    background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 18, 181, 0.09);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.shop-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

.shop-card:hover::after {
  opacity: 1;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.shop-card-name {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.03em;
}

.shop-card-address {
  font-size: clamp(12px, 0.9vw, 13px);
  color: rgba(35, 24, 21, 0.55);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.shop-card-tel {
  font-size: clamp(12px, 0.9vw, 13px);
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---- 矢印：円ボタン（btn-pill-arrowと統一） ---- */
.shop-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card:hover .shop-card-arrow {
  transform: translateX(4px);
  background: var(--color-blue-dk);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}
