/* ラッパ */
.pano-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px; /* 任意。不要なら削除 */
  margin: 0 auto;
}

/* ビュー本体：初期は透明 → 読込完了でフェードイン */
.js-panorama {
  width: 100%;
  height: 480px;               /* PC高さ：調整可 */
  opacity: 0;
  background-color: #f5f5f5;   /* 読込中の下地色（お好みで） */
  transition: opacity 0.3s ease;
}

.js-panorama.is-loaded {
  opacity: 1;
}

/* スマホ高さ */
@media (max-width: 991px) {
  .js-panorama { height: 320px; }
}

/* 「ぐるっと見る」ラベル */
.pano-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(0,0,0,.65);
  border-radius: 16px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: opacity .2s ease, transform .2s ease;
}

.pano-label:hover { opacity: .9; transform: translateY(-1px); }

@media (max-width: 767px) {
  .pano-label { left: 10px; bottom: 10px; font-size: 10px; padding: 5px 10px; }
}

/* 小さな“360°”丸アイコン */
.pano-label__icon {
  width: 14px; height: 14px;
  border-radius: 999px; border: 2px solid #fff;
  position: relative; display: inline-block;
}
.pano-label__icon::after {
  content: "360°";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  font-size: 6px; font-weight: 600;
}
.pano-label__text { white-space: nowrap; }

