#map {
  position: fixed;
  top: 35px; /* ← ステータスバーの高さに合わせる */
  left: 0;
  width: 100%;
  height: calc(100vh - 35px); /* ← その分だけ縮める */
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 999;
}

#map.visible {
  opacity: 1;
  pointer-events: auto;
}

#map-ui {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;     /* ← これが重要 */
  width: auto;  /* ← 100% をやめる */
  height: 90vh;
  background: rgba(255,255,255,0.95);
  border-top: 3px solid #0077b6;
  padding: 20px;
  z-index: 1000;
  display: none;
}

#map-ui.show {
  display: block;
}
