/* ===============================
   PSVボタン共通デザイン
   =============================== */

/* クリック時（アクティブ状態） */
.psv-button--active {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* ホバー時に少し拡大するエフェクト */
.psv-button--hover-scale {
  transition: transform 0.2s ease;
}

.psv-button--hover-scale:hover {
  transform: scale(1.15);
}

/* ===============================
   ページ全体レイアウト設定
   =============================== */

html,
body {
  margin: 0;
  height: 100vh; /* ← 100%より安定する */
  overflow: hidden;
}

/* PSVのメインコンテナ */
#viewer {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

/* ===============================
   PSVナビバー位置調整
   =============================== */

.psv-navbar {
  position: absolute !important;
  bottom: 0 !important; /* safe-area未対応ブラウザでも安定 */
  z-index: 1000 !important;
}

/* ===============================
   サイドパネル内の画像調整
   =============================== */

.psv-panel-content img.marker-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}

