/* 共有マーカー：停留所ピル（車両は3D押し出しへ移行済み・DOMなし） */

.stop-marker { position: relative; display: grid; place-items: center; pointer-events: none; }
.stop-marker i {
  display: block; width: 13px; height: 13px; border-radius: 50%;
  background: #ffffff; border: 4px solid #005BAC;
  box-shadow: 0 2px 10px rgba(23, 41, 60, .35);
}
.stop-marker.iias i { border-color: #f59e0b; }
.stop-marker.station i { border-color: #10b981; width: 11px; height: 11px; }
.stop-marker span {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 7px);
  padding: 4px 9px; border-radius: 7px; white-space: nowrap;
  color: #17293c; background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(23, 41, 60, .12);
  font-size: 10px; font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(23, 41, 60, .18);
}
.stop-marker.station span { color: #065f46; }
