@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/* ● style_regular_exhibition.css                                       */
/*    常設展ページ専用CSS                                 */
/*    ・ページ固有の処理を記述                            */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    各種import                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    カラー設定                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* カラー定義
   初期値は default のみだが、
   任意の文字列をキーとして使って色を定義すれば、
   サイト内で複数のカラー定義を持てる
 ------------------------------------ */
/* 引数でキーを指定して
   上記のマップで定義したカラーを返すfunction

   $contents-type: "second-color";
   のように $contents-type のキー値を変えておけば
   getBaseColor($contents-type);
   を使用した際に、別カラーをセットできる仕組み

   $base-color-map: (
     default:       rgb(81,72,63)
     second-color:  rgb(81,72,63)
   );

 ------------------------------------ */
/* カラー定義
 ------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    継承用（試作）                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 仮）疑似要素

       ::before, ::after で要素付加するときに書きがちな処理
 ------------------------------------ */
/* 画像の伸縮表示
     img要素に対して適用する。imgの幅と高さも定義すること
     上記「アスペクト比を保った表示ボックス」と併用推奨
 ------------------------------------ */
._img_contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

._img_cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    mixin 定義                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* アスペクト比を保った表示ボックス
   ※ 旧ブラウザを無視するなら  aspect-ratio: ●/●; で済むが
      非対応ブラウザにも適用したい場合の処理
      ・横幅は基本100％で扱う。100%幅以外にしたい場合はこの要素よりも親要素で適用させる

   想定しているHTML構造
     <p class="Image">
       <img src="XXXX">
     </p>
   などで、.Image に適用させ、img に object-fit でフィット方法を併記して使う


   適用例 ）
    .Image{
        @include aspect-ratio(); //デフォルトのアスペクト比を使う場合
    }
    .Image{
        @include aspect-ratio(6 / 19); //個別にアスペクト比を指定して使う場合
    }
 ------------------------------------------------------------------------ */
/* flex 関連のプロパティをまとめて定義

   適用例 ）
    .hogehoge{
        @include flex();
    }
    .hogehoge{
        @include flex(center, flex-end);
    }
 ------------------------------------------------------------------------ */
/* レスポンシブ 対応用 ブレイクポイントによる条件分岐
   適用例 ）
   @include media-query(under-bp-m) {
      $breakpoint-m よりも小さいウィンドウ幅の処理をここに書く
   }
 ------------------------------------------------------------------------ */
/* --------------------------------------------------- */
/* メインビジュアル                                    */
/* --------------------------------------------------- */
/* InformationBlock
  --------------------------------------------------- */
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents {
  background: #FFFAE2;
  border-radius: 8px;
  padding: 2rem 3rem;
  padding-right: 120px;
  min-height: 13rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents {
    padding: 1rem;
    padding-right: 70px;
  }
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents p {
  text-align: justify;
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents .IconList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents .IconList dt {
  width: 25px;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents .IconList dt {
    margin-right: 0.1em;
  }
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents .IconList dt img {
  width: 100%;
}
.ContentsDivision .ContentsArea .Page .PageHeader .InformationBlock .BlockContents .IconList dd {
  margin-right: 1em;
  display: inline-block;
  word-break: keep-all;
}
.ContentsDivision .ContentsArea .Page .PageHeader .BlockFooter {
  position: absolute;
  bottom: 0;
  right: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .Page .PageHeader .BlockFooter {
    right: 0;
  }
}
.ContentsDivision .ContentsArea .Page .PageHeader .BlockFooter img {
  height: 150px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .Page .PageHeader .BlockFooter img {
    height: 130px;
  }
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox {
  position: relative;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox {
    width: 100%;
    margin: 0 auto 40px;
    padding-bottom: 40px;
  }
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox:first-child::after {
  border-bottom: dashed 4px #000;
  padding-bottom: 80px;
  content: "";
  display: block;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap {
  position: relative;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .BaseMap img {
  width: 100%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .MapPoint {
  position: absolute;
  padding: 0;
  margin: 0;
  transition: 0.3s;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .MapPoint:hover {
  transform: scale(1.5);
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .MapPoint a .Title {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .MapPoint a::before {
  content: "";
  background: url(../img/common/icon/360point_ico.png) no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
  display: block;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox .FloorMap .MapPoint a::before {
    width: 30px;
    height: 30px;
  }
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(2) {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(3) {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(4) {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(5) {
  top: 66%;
  left: 62.5%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(6) {
  top: 62%;
  left: 45%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(7) {
  top: 78%;
  left: 24%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(8) {
  top: 47%;
  left: 22%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(9) {
  top: 52%;
  left: 53%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(10) {
  top: 72%;
  left: 18%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(11) {
  top: 28%;
  left: 30%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(12) {
  top: 43%;
  left: 31%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.SecondFloor .FloorMap .MapPoint:nth-child(13) {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint {
  display: none;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint:nth-child(2) {
  display: block;
  top: 65%;
  left: 61%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint:nth-child(3) {
  display: block;
  top: 72%;
  left: 18%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint:nth-child(4) {
  display: block;
  top: 52%;
  left: 18%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint:nth-child(13) {
  display: block;
  top: 75%;
  left: 40%;
}
.ContentsDivision .ContentsArea .PageContents .BlockContents .MapBox.ThirdFloor .FloorMap .MapPoint:nth-child(13) a::before {
  background: url(../img/common/icon/infopoint_ico.png) no-repeat;
  background-size: contain;
}

/* MainContentsArea
--------------------------------------------------- */
.ContentsDivision {
  /* InformationBlock
   --------------------------------------------------- */
}
.ContentsDivision .ArticlePage {
  background: #ccc;
  position: relative;
  padding: 0;
}
.ContentsDivision .ArticlePage .BlogBlock {
  margin-top: 50px;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents {
  position: relative;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Box {
  position: relative;
  max-width: 100%;
  padding-top: 56%;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Box iframe {
  border: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .PageTitle {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  margin: 10px;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .PageTitle h1 {
  font-size: 2rem;
  word-break: keep-all;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul {
  list-style: none;
  text-align: right;
  margin: 10px;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul li {
  margin-bottom: 1rem;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul li a .Icon {
  position: relative;
  cursor: pointer;
  padding: 0 0.5rem 0.5rem;
  font-size: 2rem;
  border-radius: 2.5rem;
  display: inline-block;
  color: #fff;
  background: #ea6817;
  transition: 0.3s;
  line-height: 2.5rem;
  text-align: center;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul li a .Icon .BtnText {
  width: auto;
  position: absolute;
  top: 50%;
  right: 80%;
  transform: translateY(-50%);
  margin-right: 8px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666;
  font-size: 0.7em;
  color: #fff;
  text-align: center;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all;
  display: inline-block;
  word-break: keep-all;
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul li a .Icon .BtnText::before {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 12px solid #666; /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 50%;
  left: 99%;
  transform: translateY(-50%);
}
.ContentsDivision .ArticlePage .BlogBlock .BlockContents .Image360Option ul li a .Icon:hover .BtnText {
  right: 100%; /* X軸の位置（スライド） */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}
@media screen and (max-width: 767px) {
  .ContentsDivision {
    color: #4A4A49;
    width: 100%;
  }
}
.ContentsDivision .InformationBlock {
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px;
}
.ContentsDivision .InformationBlock .BlockContents {
  background: #FFFAE2;
  border-radius: 8px;
  padding: 2rem 3rem;
  padding-right: 120px;
  min-height: 13rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .InformationBlock .BlockContents {
    padding: 1rem;
    padding-right: 70px;
  }
}
.ContentsDivision .InformationBlock .BlockContents p {
  text-align: justify;
}
.ContentsDivision .InformationBlock .BlockFooter {
  position: absolute;
  bottom: 0;
  right: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .InformationBlock .BlockFooter {
    right: 0;
  }
}
.ContentsDivision .InformationBlock .BlockFooter img {
  height: 150px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .InformationBlock .BlockFooter img {
    height: 130px;
  }
}
.ContentsDivision .MainMenuBlock,
.ContentsDivision .SearchBlock {
  padding: 0 20px;
}
.ContentsDivision .MainMenuBlock .BlockContents,
.ContentsDivision .SearchBlock .BlockContents {
  margin-bottom: 30px;
}
.ContentsDivision .BlockFooter {
  text-align: center;
  margin-bottom: 50px;
}

.MainMenuBlock .BlockContents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: space-around;
}
@media screen and (max-width: 767px) {
  .MainMenuBlock .BlockContents ul {
    flex-direction: column;
  }
}
.MainMenuBlock .BlockContents ul .MainSearchButton {
  font-size: 3rem;
  width: 48%;
  margin-bottom: 3rem;
  padding: 0;
  transition: 0.3s;
}
.MainMenuBlock .BlockContents ul .MainSearchButton:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .MainMenuBlock .BlockContents ul .MainSearchButton {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.MainMenuBlock .BlockContents ul .MainSearchButton a {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
}