@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
a {
  text-decoration: none;
}
ul, li{
  list-style: none;
  margin: 0;
  padding: 0;
}
/*ヘッダー*/
header {
  width: 100%;
  /*  position: fixed;*/
  top: 0;
  left: 0;
  z-index: 10;
  background: #00a0e9;
  text-align: left;
}
h1 {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}
h1 img {
  width: 45px;
  margin: 0 10px -5px 0;
}
h1 a {
  color: #fff;
}
/*コンテンツエリア*/
.wrapper {
  margin: 0 auto;
  color: #222;
}
.wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
}
/* パノラマビュー部分 */
#panorama {
  width: 100%;
  height: 700px;
}
/* サムネイル部分 */
.list_navs {
  display: flex;
/*  flex-wrap: wrap;*/
  justify-content: center;
  margin:5px -3px 15px;
  padding-left: 0;
}
.list_navs li {
  width: calc(100% / 8);
  padding: 3px 4px;
}
.list_navs li > a {
  display: inline-block;
  background-color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #222;
}
.list_navs li > a > img {
  width: 100%;
  height: auto;
}
.list_navs li > a:hover {
  opacity: 0.7;
  cursor: pointer;
}
/*マップ部分*/
.container {
  margin: 20px auto 30px;
  width: 80%;
}
.container p {
  margin-bottom: 5px;
  font-size: 14px;
  pointer-events: none;
}
.text_arrow {
  margin-right: 8px;
  vertical-align: middle;
}
img.text_arrow {
  width: 10px;
  margin: 0 3px 2px 8px;
}
.map_area {
  margin: 0 auto;
  padding: 10px 10px 0 10px;
  text-align: center;
  background: #FFFFFF;
}
/*pannellum.css編集*/
.pnlm-panorama-info {
  padding-right: 0 !important;
}
.pnlm-title-box {
  margin: 4px !important;
  padding-right: 5px;
  font-size: 16px !important;
}
.copy-light{
  text-align: center;
  font-size: 11px !important;
  font-weight: 400;
}
/* スマホ */
@media(max-width: 500px) {
body {
  max-width: 510px;
  width: 100%;
}
  .list_navs {
    flex-wrap: wrap;
    justify-content: flex-start;
    }
  .list_navs li {
    width: calc(100% / 4);
    flex-shrink: 0;
  }
/*マップ部分*/
.container {
  width: 100%;
}
}
/*デバイス横向き*/
@media (orientation: landscape) {
  /* パノラマビュー部分 */
  #panorama {
    width: 100%;
  }
}