@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 よりも小さいウィンドウ幅の処理をここに書く
   }
 ------------------------------------------------------------------------ */
/* --------------------------------------------------- */
/* メインビジュアル                                    */
/* --------------------------------------------------- */
/* Index
  --------------------------------------------------- */
.ContentsDivision .Page .PageHeader .InformationBlock {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.ContentsDivision .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 .Page .PageHeader .InformationBlock .BlockContents {
    padding: 1rem;
    padding-right: 70px;
  }
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockContents p {
  text-align: justify;
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockContents .IconList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockContents .IconList dt {
  width: 25px;
  margin-right: 0.5em;
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockContents .IconList dt img {
  width: 100%;
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockContents .IconList dd {
  margin-right: 2em;
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockFooter {
  position: absolute;
  bottom: 0;
  right: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageHeader .InformationBlock .BlockFooter {
    right: 0;
  }
}
.ContentsDivision .Page .PageHeader .InformationBlock .BlockFooter img {
  height: 150px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageHeader .InformationBlock .BlockFooter img {
    height: 130px;
  }
}
.ContentsDivision .Page .PageContents {
  width: 90%;
  margin: 0 auto;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li {
  border: none;
  width: 22%;
  margin-right: 4%;
  color: #fff;
  background: rgb(101, 155, 60);
  box-shadow: 3px 4px 0px 0 rgb(75, 114, 44);
  transition: 0.3s;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li {
    width: 40%;
    margin: 0.5rem 5%;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li:first-child {
  margin-right: 0;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li:hover {
  transform: scale(1.05);
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li a {
  transition: 0.3s;
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 3rem;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockHeader .bc-blog-category-list li a {
    padding: 0.5rem;
    font-size: 1.5rem;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents {
    margin: 0 10px;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader {
  text-align: center;
  margin: 30px auto;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText {
  font-size: 4rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText::before {
  content: "";
  width: 52px;
  height: 3rem;
  background: url(../img/common/decoration/glass_s.png) no-repeat;
  background-size: contain;
  display: inline-block;
  background-position: bottom;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText::before {
    width: 26px;
    height: 1.5rem;
    padding-right: 2rem;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText::after {
  content: "";
  width: 104px;
  background: url(../img/common/decoration/glass_l.png) no-repeat;
  background-size: contain;
  display: inline-block;
  height: 3rem;
  background-position: bottom;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphHeader .HeddingText::after {
    width: 52px;
    height: 1.5rem;
    padding-left: 2rem;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li {
  border: none;
  width: 22%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li {
    width: 46%;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li:first-child {
  margin-right: 0;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li .inner a {
  transition: 0.3s;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li .inner a img {
  width: 100%;
  transition: 0.3s;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockContents .BlogParagraph .ParagraphContents .BlogList li .inner a:hover img {
  transform: scale(1.05) !important;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li {
  border: none;
  width: 22%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li {
    width: 46%;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li:first-child {
  margin-right: 0;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li .inner a {
  transition: 0.3s;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li .inner a img {
  width: 100%;
  transition: 0.3s;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock.Archives .BlockContents .BlogList li .inner a:hover img {
  transform: scale(1.05) !important;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter {
  text-align: center;
  margin-top: 50px;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a {
  background-color: #F39800;
  font-size: 3rem;
  border-radius: 4rem;
  padding: 2rem 4rem;
  color: #FFFAE2;
  margin: 50px auto;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a {
    font-size: 1.7rem;
    padding: 1rem 1.5rem;
  }
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a:hover {
  transform: scale(1.05) !important;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a .Main {
  display: block;
}
.ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a .Sub {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .SpecialExhibitionBlock .BlockFooter .GoToKoreki a .Sub {
    font-size: 1.3rem;
  }
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list {
  transform: none !important;
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li {
  display: none;
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.current {
  display: block;
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item {
  margin: 30px auto;
  width: 100% !important;
  font-size: 4rem;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item::before {
  content: "";
  width: 52px;
  height: 3rem;
  background: url(../img/common/decoration/glass_s.png) no-repeat;
  background-size: contain;
  display: inline-block;
  background-position: bottom;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item::before {
    width: 26px;
    height: 1.5rem;
    padding-right: 2rem;
  }
}
.ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item::after {
  content: "";
  width: 104px;
  background: url(../img/common/decoration/glass_l.png) no-repeat;
  background-size: contain;
  display: inline-block;
  height: 3rem;
  background-position: bottom;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageFooter .LocalNaviBlock .BlockContents .CategoryGroup .bc-blog-category-list li.bc-blog-category-list__item::after {
    width: 52px;
    height: 1.5rem;
    padding-left: 2rem;
  }
}

/* 詳細ページ
--------------------------------------------------- */
.ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox {
  display: flex;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox {
    flex-direction: column;
  }
}
.ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox li {
  width: 50%;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox li {
    width: 90%;
    padding: 0;
    margin: 20px auto;
  }
}
.ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox li img {
  width: 100%;
}
.ContentsDivision .Page .PageContents .BlockHeader .MainInfoBox li.SummaryBox p {
  font-size: 1.8rem;
  background: #FFF5C8;
}