/* InfoWindow全体 */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* 中身の余白を消す */
.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

/* 下の三角を非表示 */
.gm-style-iw-chr {
  display: none !important;
}

/* ×ボタンのスタイル */
.gm-style button.gm-ui-hover-effect {
  width: 28px !important;
  height: 28px !important;
  top: 8px !important;
  right: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.gm-style button.gm-ui-hover-effect span {
  transform: scale(0.75);
}

.gm-style button.gm-ui-hover-effect:hover {
  background: rgba(0, 0, 0, 0.08) !important;
}

/* InfoWindow内容 */
.iw {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  padding: 12px 16px;
  min-width: 200px;
}

.iw__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.iw__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.iw__badge--office {
  background: #17A3DB;
  color: white;
}

.iw__badge--warehouse {
  background: #b8cfd5;
  color: white;
}

.iw__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.4;
}

.iw__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: #1a73e8;
  padding: 0 0;
  transition: all 0.2s ease;
}

.iw__link:hover {
  color: #1557b0;
  gap: 8px;
}

.iw__link svg {
  flex-shrink: 0;
}