/* style.css — 中央揃え・縦長ファースト・Panzoom対応 */

/* Reset & base */
* { box-sizing: border-box; }
html,body { height: 100%; margin: 0; padding: 0; }
body {
  font-family: "Hiragino Sans","Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(135deg,#a8edea,#fed6e3);
  color: #222;
  -webkit-tap-highlight-color: transparent;
}

/* Header */
.site-header {
  padding: 12px 16px;
  text-align: center;
  background: linear-gradient(90deg,#6a85b6,#bac8e0);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  z-index: 60;
}
.site-header h1 { margin:0; font-size:1.15rem; }
.site-header .sub { margin-top:4px; font-size:0.85rem; opacity:.95; }

/* Tabs */
.tabs { display:flex; gap:8px; padding:8px; justify-content:center; flex-wrap:wrap; }
.tab-button {
  flex: 0 1 18%;
  min-width: 72px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.tab-button.active { background: linear-gradient(90deg,#ff9a9e,#fad0c4); color: #fff; font-weight:700; }

/* Main */
.main { display:block; padding:8px 10px 80px; } /* bottom padding for list toggle */

/* Wrapper: CENTER align the map (user requested) */
.map-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* <-- CENTER */
  overflow: visible;
  touch-action: pan-y; /* default: vertical page scroll allowed */
  padding-left: 0;
}

/* map container inline-block so width == displayed image width */
.map-container {
  display: inline-block;
  position: relative;
  height: auto;
  border-radius: 14px;
  overflow: visible;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  background: #fff;
  margin-left: 0;
}

/* map image: vertical-first (height fits viewport) */
.map-container img#mapImage {
  height: 100vh; /* fits viewport height so tall feel on mobile */
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* pin */
.pin {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -100%);
  touch-action: manipulation;
  z-index: 6;
  transition: transform .12s ease;
}
.pin img { width: 100%; height: 100%; display:block; pointer-events:none; }
.pin:active, .pin:focus { transform: translate(-50%, -100%) scale(.98); }

/* tooltip card */
.tooltip {
  position: absolute;
  z-index: 8;
  transform: translate(-50%, -120%);
  display: none;
  min-width: 200px;
  max-width: 86vw;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
  background: #fff;
  overflow: hidden;
  animation: tooltipFade .22s ease;
}
@keyframes tooltipFade {
  from { opacity: 0; transform: translate(-50%,-125%) scale(.98); }
  to   { opacity: 1; transform: translate(-50%,-120%) scale(1); }
}
.tooltip-card { position: relative; display:block; }
.tooltip-header { background: linear-gradient(90deg,#ff9a9e,#fad0c4); color:#fff; padding:10px 12px; font-weight:700; font-size:1rem; text-align:left; }
.tooltip-body { padding:10px 12px; text-align:left; font-size:0.95rem; color:#333; }
.tooltip-body img { width:100%; border-radius:8px; display:block; margin-top:8px; }
.tooltip-body p { margin:6px 0 0; line-height:1.4; }

.tooltip .close-btn {
  position:absolute; right:8px; top:8px; background: rgba(255,255,255,0.9); border:none; width:34px; height:34px; border-radius:50%; font-size:16px; cursor:pointer; z-index:12; box-shadow:0 2px 6px rgba(0,0,0,0.12);
}

/* list toggle button */
.list-toggle { position: fixed; right: 12px; bottom: 12px; z-index: 60; background: linear-gradient(90deg,#6a85b6,#bac8e0); color: #fff; border:none; padding:12px 14px; border-radius:999px; box-shadow: 0 8px 20px rgba(0,0,0,0.22); font-weight:700; cursor:pointer; }

/* bottom list panel */
.list-panel { position: fixed; left:0; right:0; bottom:0; z-index:70; background:#fff; border-top-left-radius:14px; border-top-right-radius:14px; box-shadow: 0 -8px 30px rgba(0,0,0,0.22); transform: translateY(110%); transition: transform .28s cubic-bezier(.2,.9,.2,1); max-height: 70vh; display:flex; flex-direction:column; }
.list-panel.open { transform: translateY(0); }
.list-panel-header { display:flex; align-items:center; justify-content:space-between; padding:12px; border-bottom: 1px solid #eee; }
.list-content { overflow:auto; padding:8px 12px 24px; }

/* list rows */
.shop-item { display:flex; gap:10px; padding:10px; border-radius:10px; align-items:center; cursor:pointer; transition: background .12s ease; }
.shop-item:hover { background: rgba(220,235,255,0.6); }
.shop-thumb { width:64px; height:64px; border-radius:8px; object-fit:cover; flex:0 0 64px; }
.shop-meta { text-align:left; flex:1; }
.shop-title { font-weight:700; margin:0; font-size:0.98rem; }
.shop-desc { margin:6px 0 0; font-size:0.9rem; color:#555; }

@media (min-width:520px) {
  .pin { width:48px; height:48px; }
  .tooltip { min-width:220px; }
}

/* utility */
.hidden { display:none !important; }
