#seichi-wrap { position: relative; }
.seichi-panel { position:absolute; right:10px; top:10px; background:#fff; padding:12px; border-radius:10px; box-shadow:0 4px 16px rgba(0,0,0,.15); width:320px; z-index:999; }
.seichi-panel .row { margin-bottom:10px; }
.seichi-panel label { display:block; font-weight:bold; margin-bottom:4px; }

.seichi-detail { position:absolute; width:240px; background:#fff; border-radius:10px; box-shadow:0 8px 24px rgba(0,0,0,.2); padding:10px; z-index:1000; }
.seichi-detail .close { position:absolute; top:6px; right:6px; }
.seichi-detail .title { font-weight:bold; margin-bottom:4px; }
.seichi-detail img.image { max-width:100%; max-height:140px; display:block; margin-bottom:6px; }
.seichi-detail .rate button { margin-right:8px; }

.seichi-list { position:absolute; left:10px; top:10px; background:#fff; width:360px; max-height:60vh; overflow:auto; border-radius:10px; box-shadow:0 6px 20px rgba(0,0,0,.18); z-index:1000; }
.seichi-list .head { display:flex; justify-content:space-between; align-items:center; padding:8px 10px; border-bottom:1px solid #eee; }
.seichi-list .list-container { padding:8px; }
.seichi-list .list-item { display:flex; gap:8px; padding:8px; border-bottom:1px solid #f0f0f0; cursor:pointer; }
.seichi-list .list-item img { width:40px; height:40px; object-fit:cover; border-radius:6px; }

.seichi-temp-marker { filter: hue-rotate(200deg) saturate(2); }
.seichi-thumbnail { border-radius:6px; }

.seichi-mypage-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.seichi-mypage-item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.seichi-mypage-item h3 {
    margin: 8px 0;
}
.seichi-mypage-item .no-thumb {
    width: 100%;
    height: 150px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 8px;
}

/* ヘッダー */
#site-header {
  background: #222;
  padding: 8px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.site-title a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}

/* ボタン風のナビゲーション */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.site-nav ul li a {
  display: inline-block;
  padding: 6px 14px;
  background: #444;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, transform 0.1s;
}

.site-nav ul li a:hover {
  background: #ffcc00;
  color: #000;
  transform: translateY(-2px);
}

/* 全画面マップ */
#seichi-map-full {
  width: 100%;
  height: calc(100vh - 50px); /* フッター分だけ高さを差し引き */
  margin: 0;
  padding: 0;
}

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