:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #63716c;
  --line: #d8dfdc;
  --panel: #ffffff;
  --soft: #f5f7f6;
  --accent: #127c7a;
  --accent-strong: #0e5c5a;
  --amber: #d9822b;
  --rose: #bc4b5f;
  --shadow: 0 16px 40px rgba(23, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body,
.app-shell {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: var(--soft);
}

button,
input {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(300px, 340px) 1fr;
  min-height: 100vh;
}

.sidebar {
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid var(--line);
  box-shadow: 10px 0 35px rgba(23, 33, 31, 0.08);
  overflow: auto;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.data-notice {
  margin: 14px 0 0;
  padding: 10px 11px;
  color: #4f3b1e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  background: #fff8e8;
  border: 1px solid #ead6ac;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.icon-button,
.text-button,
.metric-tab,
.bedroom-tab {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 8px;
}

.icon-button:hover,
.text-button:hover,
.metric-tab:hover,
.bedroom-tab:hover {
  border-color: rgba(18, 124, 122, 0.5);
}

.control-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.field-label,
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-box {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-tab,
.bedroom-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.bedroom-tab {
  min-height: 40px;
}

.metric-tab.active,
.bedroom-tab.active {
  border-color: var(--accent);
  background: #e7f3f1;
  color: var(--accent-strong);
}

.range-control {
  width: 100%;
  height: 28px;
  accent-color: var(--accent);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--ink);
  font-size: 14px;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.note {
  order: 30;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.map-stage {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #eef6f4;
}

.map-search {
  position: relative;
  z-index: 20;
  padding: 12px 14px;
  background: rgba(238, 246, 244, 0.96);
  border-bottom: 1px solid var(--line);
}

.map-search .field-label {
  display: none;
}

.map-search .search-box {
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(23, 33, 31, 0.14);
}

.map-controls {
  position: relative;
  z-index: 20;
  display: grid;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(238, 246, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.map-controls-row {
  display: grid;
  gap: 8px;
}

.map-controls-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.map-controls-help {
  margin: 0;
  color: rgba(99, 113, 108, 0.95);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.metric-color-help {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

.metric-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  color: rgba(23, 33, 31, 0.82);
  white-space: nowrap;
}

.metric-color-swatch {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--swatch, #127c7a);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 14px rgba(23, 33, 31, 0.14);
  flex: 0 0 10px;
}

.map-controls .segmented {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
}

.map-controls .segmented::-webkit-scrollbar {
  height: 8px;
}

.map-controls .segmented::-webkit-scrollbar-thumb {
  background: rgba(23, 33, 31, 0.18);
  border-radius: 999px;
}

.map-controls .metric-tab,
.map-controls .bedroom-tab {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 10px;
  scroll-snap-align: start;
}

.map-controls .metric-tab svg {
  width: 16px;
  height: 16px;
}

.map-controls .bedroom-tab {
  min-height: 32px;
}

#map {
  width: 100%;
  height: calc(100vh - 69px - 118px);
  min-height: calc(100vh - 69px - 118px);
  background: #eef6f4;
}

.map-status {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 500;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.station-marker {
  filter: drop-shadow(0 6px 14px rgba(23, 33, 31, 0.18));
}

.station-div-icon {
  background: transparent;
  border: 0;
}

.station-pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px)));
  white-space: nowrap;
  pointer-events: auto;
}

.station-pin .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--station-color, #1a5fd6);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(23, 33, 31, 0.2);
}

.station-pin .label {
  display: none;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

/* Label is toggled per marker via JS. */
.station-pin.show-label .label {
  display: inline-flex;
}

.station-tooltip {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 5px;
}

.station-tooltip .sub {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  margin-top: 1px;
}

.svg-station-dot {
  fill: #1a5fd6;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2.8;
  filter: drop-shadow(0 4px 10px rgba(23, 33, 31, 0.24));
}

.svg-station-label {
  fill: #17211f;
  font-size: 14px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 4.2;
  stroke-linejoin: round;
  pointer-events: none;
}

.sidebar-detail {
  order: 10;
  padding: 16px 0 0;
  background: transparent;
  border: 1px solid var(--line);
  border-width: 0 0 1px;
  border-radius: 8px;
}

.popular-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.popular-list {
  display: grid;
  gap: 8px;
}

.popular-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 9px 10px;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.popular-item.active,
.popular-item:hover {
  border-color: var(--accent);
  background: #eef8f6;
}

.popular-rank {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 50%;
}

.popular-item strong {
  display: block;
  font-size: 14px;
}

.popular-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.popular-item b {
  color: var(--accent-strong);
  font-size: 13px;
}

.detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.detail-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
}

.score-pill {
  display: grid;
  width: 62px;
  height: 54px;
  place-items: center;
  flex: 0 0 62px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 8px;
  background: var(--accent);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.metric-grid div {
  min-height: 68px;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-grid .metric-note {
  display: block;
  margin-top: 6px;
  color: #5d6a66;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.metric-grid strong {
  font-size: 15px;
  line-height: 1.2;
}

#selectedSummary {
  margin: 0;
  color: #31403c;
  font-size: 14px;
  line-height: 1.65;
}

.insight-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.insight-list div {
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insight-list span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.insight-list p {
  margin: 0;
  color: #31403c;
  font-size: 13px;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  padding: 6px 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  background: #e7f3f1;
  border-radius: 8px;
}

.info-block {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.info-block > span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span,
.store-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: #2d3834;
  font-size: 12px;
  font-weight: 800;
  background: #eef4f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.station-list {
  display: grid;
  gap: 8px;
}

.station-item {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.station-item strong {
  color: #17211f;
  font-size: 13px;
}

.station-item small {
  color: #5d6a66;
  font-size: 12px;
  line-height: 1.45;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.store-pill {
  display: grid;
  gap: 3px;
  min-height: 64px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.store-pill strong {
  color: #17211f;
  font-size: 12px;
}

.store-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.store-pill small {
  color: #5d6a66;
  font-size: 11px;
  line-height: 1.35;
}

.chain-summary {
  margin: 10px 0 0;
  color: #31403c;
  font-size: 13px;
  line-height: 1.55;
}


.chain-grid .store-pill strong {
  font-size: 15px;
  line-height: 1.1;
}

.chain-grid .store-pill span {
  font-size: 12px;
}

.store-pill[data-state="あり"] {
  background: #e7f3f1;
}

.store-pill[data-state="要確認"] {
  background: #f8f1e6;
}

.store-pill[data-state="なし"] {
  background: #f4edf0;
}

.comment-form {
  display: grid;
  gap: 8px;
}

.comment-form textarea {
  width: 100%;
  min-height: 78px;
  resize: vertical;
  padding: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.comment-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(18, 124, 122, 0.12);
}

.comment-submit {
  justify-self: end;
}

.comment-list {
  display: grid;
  gap: 8px;
}

.comment-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comment-item p,
.empty-comments {
  margin: 0;
  color: #31403c;
  font-size: 13px;
  line-height: 1.55;
}

.comment-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.comment-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.comment-delete {
  padding: 0;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.legend {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  transform: scale(0.7);
  transform-origin: left bottom;
}

.legend-edge {
  flex: 0 0 auto;
}

.legend-note {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(99, 113, 108, 0.92);
  font-size: 11px;
  font-weight: 900;
}

.rail-legend {
  position: absolute;
  left: 24px;
  bottom: 74px;
  z-index: 500;
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: scale(0.6);
  transform-origin: left bottom;
}

.rail-legend-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.rail-legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.rail-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.rail-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 5px;
  background: var(--swatch, #1a5fd6);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(23, 33, 31, 0.2);
}

.legend-scale {
  display: grid;
  width: 118px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--amber), var(--accent));
}

.icon-button svg,
.text-button svg,
.metric-tab svg,
.search-box svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hyogo-svg-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  cursor: default;
  touch-action: none;
  background: #eef6f4;
}

.hyogo-svg-map.dragging {
  cursor: grabbing;
}

.map-sea {
  fill: transparent;
}

.boundary-fill {
  stroke: #ffffff;
  stroke-width: 2.6;
  filter: drop-shadow(0 2px 4px rgba(23, 33, 31, 0.2));
}

.boundary-fill:hover {
  stroke: #17211f;
  stroke-width: 3.2;
}

.boundary-fill.selected {
  stroke: #17211f;
  stroke-width: 4.4;
}

.svg-hit-area {
  fill: rgba(255, 255, 255, 0.001);
  stroke: transparent;
  cursor: pointer;
  pointer-events: all;
}

.svg-label-leader {
  stroke: rgba(23, 33, 31, 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 3 4;
  pointer-events: none;
}

.svg-label-box {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(18, 124, 122, 0.28);
  stroke-width: 1;
  cursor: pointer;
  pointer-events: auto;
}

.simple-map-land {
  fill: #f9fbf8;
  stroke: rgba(23, 33, 31, 0.24);
  stroke-width: 3;
  filter: drop-shadow(0 12px 22px rgba(23, 33, 31, 0.08));
}

.simple-map-region {
  fill: rgba(23, 33, 31, 0.62);
  font-size: 17px;
  font-weight: 900;
}

.simple-map-region-line {
  fill: none;
  stroke: rgba(18, 124, 122, 0.22);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

.simple-map-water-label {
  fill: rgba(18, 92, 90, 0.5);
  font-size: 15px;
  font-weight: 900;
}

.svg-area-label {
  fill: #17211f;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 4.2;
  stroke-linejoin: round;
}

.boundary-label {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #17211f;
  font-size: 11px;
  font-weight: 900;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.85),
    1px -1px 0 rgba(255, 255, 255, 0.85),
    -1px 1px 0 rgba(255, 255, 255, 0.85),
    1px 1px 0 rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.boundary-point-label {
  color: #17211f;
  font-size: 10px;
  transform: translateY(-16px);
}

.boundary-point-label.selected {
  color: #0e5c5a;
  font-size: 12px;
}

.boundary-label::before,
.boundary-label::after {
  display: none;
}

@media (max-width: 900px) {
  html,
  body,
  .app-shell {
    height: auto;
  }

  .app-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "sidebar";
  }

  .map-stage {
    grid-area: map;
    order: 1;
  }

  .sidebar {
    grid-area: sidebar;
    order: 2;
    display: flex;
    min-height: auto;
    max-height: none;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }

  .brand,
  .data-notice,
  .control-section,
  .sidebar-detail,
  .note {
    margin-inline: 0;
  }

  .brand {
    order: 10;
    margin-top: 14px;
    padding: 14px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .data-notice {
    order: 11;
  }

  .control-section {
    order: 12;
    padding: 14px 0;
  }

  .control-section:nth-of-type(2) {
    order: 12;
  }

  .control-section:nth-of-type(3) {
    order: 13;
  }

  .map-stage {
    min-height: min(72vh, 620px);
  }

  #map {
    height: calc(min(72vh, 620px) - 69px - 118px);
    min-height: calc(min(72vh, 620px) - 69px - 118px);
  }

  .hyogo-svg-map {
    min-height: min(72vh, 620px);
  }

  .map-status {
    display: none;
  }

  .sidebar-detail {
    order: 20;
    margin-top: 14px;
    padding: 16px 14px;
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .note {
    order: 30;
  }

  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .legend {
    left: 12px;
    bottom: 12px;
  }

  .rail-legend {
    left: 12px;
    bottom: 64px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 20px;
  }

  .segmented {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-tab,
  .bedroom-tab {
    min-height: 46px;
    font-size: 12px;
  }

  .control-section {
    padding-block: 12px;
  }

  .detail-heading {
    align-items: center;
  }

  h2 {
    font-size: 22px;
  }

  .score-pill {
    width: 54px;
    height: 48px;
    flex-basis: 54px;
    font-size: 16px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid div {
    min-height: 62px;
    padding: 9px;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .map-stage,
  .hyogo-svg-map {
    min-height: 66vh;
  }

  #map {
    height: calc(66vh - 69px - 132px);
    min-height: calc(66vh - 69px - 132px);
  }

  .legend {
    display: none;
  }
}

.zoom-controls {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  gap: 8px;
  z-index: 1200;
}

.map-reset-button {
  display: inline-flex;
  width: auto;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(23, 33, 31, 0.12);
}

.map-reset-button:hover {
  border-color: rgba(18, 124, 122, 0.5);
  background: #ffffff;
}

.map-reset-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}
