.shop-list-block {
  margin-top: 20px!important;
  margin-bottom: 24px!important; /* リンク周りの下の余白 */
  text-align: center;
  display: block!important;
}
.shop-list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 100px;
  border: 1px solid #999;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.shop-list-link::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #333;
  border-radius: 50%;
}
.shop-list-link:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.shop-list-link:hover::before {
  border-color: #fff;
}
.shop-list-caption {
  margin: 8px auto 0;
  font-size: 14px;
  line-height: 1.6;
  color: red;
  font-weight: bold;
}
.shop-list-note {
  margin: 0 0 12px;
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 13px;
}

.shop-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.shop-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.shop-modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-sizing: border-box;
}
.shop-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.shop-modal__title {
  margin: 0 0 16px;
  font-size: 18px;
  text-align: center;
}
.shop-modal__filter {
  margin-bottom: 12px;
  text-align: right;
}
.shop-modal__filter select {
  padding: 4px 8px;
}
.shop-list {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.shop-list th,
.shop-list td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}
.shop-list th {
  background: #f5f5f5;
}

/* ▼レスポンシブ対応
   PC（1000px以上）：モーダル幅を1000pxまで拡張し、文字サイズを基準+2px
   スマホ（767px以下）：読みやすいよう文字サイズを少し調整 */
@media (min-width: 1000px) {
  .shop-modal__body {
    max-width: 1000px;
  }
  .shop-modal__title {
    font-size: 20px; /* 基準18px +2px */
  }
  .shop-list-note {
    font-size: 15px; /* 基準13px +2px */
  }
  .shop-list {
    font-size: 15px; /* 基準13px +2px（th/tdはここから継承） */
  }
}

@media (max-width: 767px) {
  .shop-modal__body {
    width: 92%;
    padding: 20px 16px;
  }
  .shop-modal__title {
    font-size: 17px;
  }
  .shop-list-note {
    font-size: 12px;
  }
  .shop-list {
    font-size: 12px;
  }
  .shop-list th,
  .shop-list td {
    padding: 6px;
  }
}