html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100%;
}

/* ===== カスタムマーカー ===== */

.marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;              /* 画像＋ホール名を横並び */
  align-items: center;
  pointer-events: auto;
}

.marker-img-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2f8f83;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  background: #fff;
}

.marker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側のホール名（ズーム時のみ表示） */
.marker-label-right {
  display: none;
  margin-left: 8px;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #095c49;
  white-space: nowrap;
  border: 1px solid #2f8f83;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}




.marker.show-label .marker-label-right {
  display: inline-block;
}
