body {
  font-family: "Twemoji Country Flags", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Noto Sans CJK JP", Osaka, Meiryo, メイリオ, "MS PGothic", "ＭＳ Ｐゴシック", YuGothic, "Yu Gothic", "Hiragino Sans GB", "Helvetica Neue", HelveticaNeue, Helvetica, "Noto Sans", Roboto, Arial, "Arial Unicode MS", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── wrap ── */
.wrap {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 40px;
}

/* ── main ── */
.main {
  padding: 48px 0 96px;
}

/* ── page heading ── */
.page-heading {
  margin-bottom: 40px;
  text-align: center;
}

.page-heading__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.page-heading__desc {
  font-size: 13px;
  line-height: 1.85;
  color: #555;
}

/* ── filters ── */
.filters {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-end;
}

.filter-box {
  flex: 1;
  min-width: 0;
}

.filter-box__label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}

/* prefecture select */
.select-wrap {
  position: relative;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 20px;
  background: #f0f0f0;
  font-size: 13px;
  color: #333;
  gap: 8px;
  text-align: left;
  transition: background .15s;
}

.select-trigger:hover {
  background: #e6e6e6;
}

.select-trigger.is-open {
  background: #f0f0f0;
  border-radius: 20px 20px 0 0;
}

.select-trigger__text {
  flex: 1;
}

.select-trigger__caret {
  flex-shrink: 0;
  color: #555;
  transition: transform .22s;
}

.select-trigger.is-open .select-trigger__caret {
  transform: rotate(180deg);
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #f4f4f4;
  border: none;
  border-radius: 0 0 16px 16px;
  max-height: 300px;
  overflow-y: auto;
}

.select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.select-dropdown::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 3px;
  min-height: 80px;
}

.select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 14px;
  height: 40px;
  font-size: 14px;
  text-align: left;
  border: none;
  background: none;
  color: #333;
  cursor: pointer;
  transition: background .1s;
}

.select-option:hover:not(:disabled) {
  background: #e6e6e6;
}

.select-option.is-selected {
  font-weight: 700;
}

.select-option:disabled {
  color: #bbb;
  cursor: default;
}

.select-option__check {
  flex-shrink: 0;
  color: #333;
}

/* store name search */
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  background: #fff;
  transition: border-color .15s;
}

.search-wrap:focus-within {
  border-color: #333;
}

.search-wrap__input {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 16px;
  font-size: 13px;
  color: #333;
  background: none;
  border: none;
  outline: none;
  border-radius: 20px;
  -webkit-appearance: none;
  appearance: none;
}

.search-wrap__input::placeholder {
  color: #b0b0b0;
}

.search-wrap__input::-webkit-search-cancel-button {
  display: none;
}

.search-wrap__clear {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  transition: color .15s;
}

.search-wrap__clear:hover {
  color: #333;
}

/* ── store section ── */
.store-section__head {
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.store-section__count {
  font-size: 16px;
  color: #333;
}

/* store list */
.store-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

.store-row[hidden] {
  display: none;
}


.store-row__badge {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

.store-row__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #111;
}

.store-row__link {
  font-size: 12px;
  color: #005DB5;
  text-decoration: none;
  transition: opacity .15s;
}

.store-row__link:hover {
  opacity: .7;
}

.store-empty {
  padding: 56px 0;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* ── responsive ── */
@media (max-width: 767px) {
  .wrap {
    padding-inline: 16px;
  }

  .main {
    padding: 28px 0 64px;
  }

  .page-heading__title {
    font-size: 22px;
  }

  .page-heading {
    margin-bottom: 28px;
  }

  .page-heading__desc br {
    display: none;
  }

  .filters {
    flex-direction: column;
    gap: 0;
    margin-inline: -16px;
    margin-bottom: 24px;
  }

  .filter-box {
    width: 100%;
    padding: 14px 16px;
  }

  .filter-box__label {
    margin-bottom: 10px;
  }

  .select-trigger,
  .search-wrap {
    width: 100%;
  }
}