/*------------------------------------
  共通スタイル
------------------------------------*/
.panorama .container {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 30px 0;
  margin: 20px 0 10px 0;
  background-color: #000000
}
.panorama .nav-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center
}
.panorama .nav-container a {
  margin: 0 20px
}
.panorama .nav-container a {
  background-color: #fff;
}
.panorama .nav-container a.on {
  background-color: #f7931e;
}
.panorama .panorama_attention{font-size: 11px;
    line-height: 1.3em;padding: 0 0 10px 30px}
@media screen and (max-width: 1000px) {
  .panorama .container {
    grid-template-rows: 1fr;
    width: 100vw;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
  }
  .panorama .nav-container {
    width: 100vw;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3px;
    padding: 10px
  }
  .panorama .nav-container a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px
  }
  .panorama .nav-container a img {
    height: 50px;
    width: auto
  }
  .panorama .nav-container a:nth-child(1) img {
    height: 60px;
    width: auto
  }
}
/*------------------------------------
  VR Viewer 360°（pannellum）のスタイル
------------------------------------*/
.panorama .pannellum-wrap {
  /*  flex: 1;*/
  position: relative;
  height: 650px
}
.panorama #panorama {
  width: 100%;
  height: 100%;
  position: relative;
}
.panorama .controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 9999;
  pointer-events: auto;
}
.panorama .button-group {
  display: flex;
  gap: 6px;
}
.panorama .controls button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.panorama .controls button:hover {
  background-color: rgba(255, 255, 255, 1);
}
/* pannellumのコンパスアイコンは非表示 */
.panorama .pnlm-compass {
  display: none !important;
}
@media screen and (max-width: 1000px) {
.panorama .controls {
display: none	
  }
  .panorama .pannellum-wrap {
    height: 400px
  }
  .panorama .pannellum {
    width: 100vw;
    height: 400px
  }
  .panorama #panorama {
    width: 100vw;
  }
}
@media screen and (max-width: 600px) {
  .panorama .pannellum-wrap {
    height: 310px
  }
  .panorama .pannellum {
    height: 310px
  }

}
/*------------------------------------
  パノラマ横スクロール用のスタイル
------------------------------------*/
.panorama .slider-container {
  flex: 1;
  overflow: hidden;
  background: #000;
  position: relative;
  cursor: grab;
  height: 650px
}
.panorama .slider-container:active {
  cursor: grabbing;
}
.panorama .slider {
  display: flex;
  position: absolute;
  width: max-content;
}
.panorama .slider img {
  height: 650px;
  min-width: 100vh;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}

@media screen and (max-width: 1000px) {
  .panorama .slider-container {
    width: 100vw;
    height: 400px
  }
  .panorama .slider img {
    height: 400px;
    min-width: 100vh;
  }
}
@media screen and (max-width: 600px) {
  .panorama .slider-container {
    height: 310px
  }
  .panorama .slider img {
    height: 310px;
  }
}


