@charset "UTF-8";

/* ============================
フォントサイズ
============================ */


/* ルートフォントを10px 1rem=10px */

html {
  font-size: 62.5%;
}


/* 基本のフォントを1.6rem=16px、NotoSans */

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans Japanese', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic Pro', Meiryo, Osaka, 'MS PGothic', sans-serif;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #eee;
  background: #000;
}


/* スマホの場合文字を小さく */

@media screen and (max-width: 600px) {
  html {
    font-size: 47.5%;
  }
}


/* ============================
基本のスタイル
============================ */


/* liに余計なもの出さない */

li {
  list-style: none;
  margin: 0;
}


/* 画像リンクはhoverで光る */

a img:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -o-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}


/* リンク色 */

a:link {
  color: #0087ff;
}

a:visited {
  color: #00f1ff;
}

a:hover {
  color: #ff008b;
}

a:active {
  color: #ff008b;
}


/* ============================
PC表示のみ、スマホ表示のみ
============================ */

.pc_hide {
  display: none;
}

@media screen and (max-width: 600px) {
  .sp_hide {
    display: none;
  }
  .pc_hide {
    display: block;
  }
}


/* ============================
トップへもどるボタン
============================ */

#page-top {
  width: 55px;
  height: 50px;
  display: none;
  position: fixed;
  right: 16px;
  bottom: 40px;
}

#page-top_inner {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #555;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top_inner:hover {
  background-color: #ff008b;
  opacity: 1;
}

#page-top-fixed {
  color: #fff;
  text-decoration: none;
  display: block;
}

.move-page-top {
  cursor: pointer;
}


/* ============================
ヘッダー
============================ */


/* ヘッダー全体を上部固定 */

.header {
  width: 100%;
  height: 55px;
  transition: 1s;
  display: flex;
  background: rgba(255, 255, 255, .95);
  align-items: center;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  box-shadow: 0 0px 20px 7px rgba(255, 255, 255, 0.7);
}


/* スマホ表示時の枠 */

.header__sp {
  margin: 0 auto 0 10px;
  display: flex;
  justify-content: space-between;
}


/* ジーストアロゴ */

.header__logo img {
  display: block;
  max-width: 220px;
}


/* ナビリンク横並び */

.page_nav {
  display: flex;
  margin: 0;
  padding: 0;
}


/* ナビリンクスマホ ドロワー */

@media screen and (max-width: 1024px) {
  .page_nav {
    display: none;
    background: #fff;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    opacity: 0.9;
  }
  .page_nav>li:nth-child(odd) {
    background: #f1f1f1;
  }
}

.page_nav__listitem {
  text-align: center;
}

.page_nav__listitem a,
.page_nav__listitem>span {
  text-decoration: none;
  color: #555;
  padding: 0 2.4rem 0;
  display: block;
  margin: 0;
  font-size: 1.8rem;
}


/* ドロワーメニュー時文字サイズ大きく */

@media screen and (max-width: 1024px) {
  .page_nav__listitem a,
  .page_nav__listitem>span {
    font-size: 2.4rem;
    padding: .8em 0;
  }
}

.page_nav__listitem:hover a,
.page_nav__listitem:hover>span {
  color: #ff008b;
}


/* ドロワーメニューを開くボタン */

.drawer_button {
  color: #555;
  display: none;
  font-size: 2.4rem;
  border: 1px solid;
  border-radius: 3px;
  padding: 1px 5px 3px 5px;
  margin-right: 5px;
  cursor: pointer;
}


/* ナビリンク 横並び⇔ドロワーメニュー */

@media screen and (max-width: 1024px) {
  .header__sp {
    width: 100%;
  }
  .drawer_button {
    display: block;
  }
}


/* ============================
トップ画像
============================ */

.charalogo_img {
  width: 100%;
  margin: 55px 0 0 0;
  position: relative;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: bright;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes bright{
  from{
-webkit-filter: brightness(1);
  }
  to{
-webkit-filter: brightness(1.1);
  }
}

.charalogo_img img {
  width: 100%;
}

.charalogo_img--sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .charalogo_img--pc {
    display: none;
  }
  .charalogo_img--sp {
    display: block;
  }
}

.special_popup {
  position: absolute;
  bottom: 13px;
  right: 23px;
  width: 18%;
  opacity: 0;
  animation-delay: 1s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: fadein;
}

@keyframes fadein{
  from{
opacity: 0;
  }
  to{
opacity: 1;
  }
}

.special_popup--sp {
  position: absolute;
  bottom: 56px;
  right: 10px;
  width: 35%;
}

.special_popup:hover {
  -webkit-filter: hue-rotate(285deg);
  -moz-filter: hue-rotate(285deg);
  -o-filter: hue-rotate(285deg);
  -ms-filter: hue-rotate(285deg);
  filter: hue-rotate(285deg);
}


/* ============================
メインコンテンツ共通
============================ */


/* セクション */

.contents {
  display: flex;
  justify-content: wrap;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 20px 0 0;
}


/* 外枠 スマホ表示時*/

@media screen and (max-width: 1600px) {
  .contents {
    display: block;
    padding: 0 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .contents {
    padding: 0 10px 0;
  }
}


/* 背景指定用外枠 */

.contents_wrapper {
  padding: 200px 0;
}


/* 各セクション 背景指定 */

#news {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki03.jpg") center/cover fixed;
}

#outline {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki01.jpg") center/cover fixed;
}

#special {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki04.jpg") center/cover fixed;
}

#gallery {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki05.jpg") center/cover fixed;
}

#present {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki06.jpg") center/cover fixed;
}

#goods {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki09.jpg") center/cover fixed;
}

#relation {
  background: linear-gradient( to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/bubuki08.jpg") center/cover fixed;
}


/* 見出し スマホ */

.contents__head {
  font-family: "a-otf-ud-reimin-pr6n";
  font-size: 12vw;
  font-weight: 300;
  margin: 0 50px 0 0;
  white-space: nowrap;
}


/* 1366～ 見出し 文字サイズ調整 */

@media screen and (min-width: 1366px) {
  .contents__head {
    font-size: 14.2rem;
  }
}


/* 1600～ 見出し 縦書き*/

@media screen and (min-width: 1601px) {
  .contents__head {
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    width: 221px;
  }
}


/* flexbox用インナー */

.contents__inner {
  width: -webkit-calc(100% - 221px - 100px);
  width: calc(100% - 221px - 100px);
}


/* ～1600 flexbox解除時 */

@media screen and (max-width: 1600px) {
  .contents__inner {
    width: 100%;
  }
}


/* 小見出し */

.contents__subhead {
  font-family: "a-otf-ud-reimin-pr6n";
  font-size: 2vw;
  color: #deff00;
  margin: 3.2rem 0 .8rem;
}

@media screen and (max-width: 1600px) {
  .contents__subhead {
    font-size: 3.2rem;
  }
}


/* 本文 */

.entry {
  line-height: 1.6;
  font-size: 2.2rem;
  margin: .5em 0 1em;
}


/* スマホ時 本文改行なし */

@media screen and (max-width: 600px) {
  .entry {
    font-size: 1.8rem;
  }
  .entry br {
    display: none;
  }
}


/* 注意書き 赤枠 */

.entry--attention_box {
  font-size: 1.4rem;
  border: 1px solid;
  padding: 20px;
  background: rgba(70, 0, 0, 0.59);
}

.entry--attention {
  font-size: 1.4rem;
  padding: 20px;
}


/* ============================
新着情報
============================ */

.newslist__date {
  font-size: 3.2rem;
  font-family: "a-otf-ud-reimin-pr6n";
  color: #deff00;
}

.newslist__description {
  font-size: 1.8rem;
  margin: 0 0 20px 10px;
  max-width: 1366px;
}


/* ============================
開催概要
============================ */


/* 開催場所 外枠 */

.place {
  display: flex;
  margin: 100px 0 50px 0;
  height: 500px;
  justify-content: space-between;
}


/* 開催場所 flexbox用 */

.place__inner {
  width: 48%;
}

.place__head {
  font-family: "a-otf-ud-reimin-pr6n";
  font-size: 3.2rem;
  margin: 0;
  color: #deff00;
  line-height: 1;
  margin: 0 0 10px;
}

.place__head__smaller {
  font-size: 1.8rem;
}

.place__date {
  font-family: "a-otf-ud-reimin-pr6n";
  font-size: 2.8rem;
  color: #deff00;
  margin: 0 0 10px;
}

.place__map {
  width: 48%;
  height: 100%;
}

.place__outline th {
  vertical-align: top;
  padding: 0 1.6rem 0;
  text-align: right;
}


/* スマホ 開催場所 flexbox解除 */

@media screen and (max-width: 768px) {
  .place {
    display: block;
  }
  .place__inner,
  .place__map {
    width: 100%;
  }
  .place__map {
    height: 350px;
  }
}


/* ============================
特別企画
============================ */


/* 手に入れろ */

.special__catch {
  font-family: "a-otf-ud-reimin-pr6n";
  color: #ff008b;
  font-size: 14.2rem;
  font-weight: 300;
  margin: -42px 0 0;
  letter-spacing: -10px;
}

@media screen and (max-width: 1600px) {
  .special__catch {
    font-size: 10vw;
    margin: 0;
  }
}

@media screen and (max-width: 414px) {
  .special__catch {
    letter-spacing: 0;
  }
}


/* ============================
展示内容
============================ */
.gallery_list{
  margin: 0;
  padding:0;
  display: flex;
  flex-wrap: wrap;
}

.gallery_list__item{
  width: 19%;
  max-width: 500px;
}

.gallery_list__item img{
  display: block;
}

/* ============================
展覧会限定特典
============================ */

.present_img{
  max-width: 500px;
}



/* ============================
グッズ情報
============================ */

.goods_list{
  margin: 0;
  padding:0;
}

.goods_item{
  display: flex;
  margin:0px 0 40px;
}

.goods_item__img{
  max-width: 350px;
  margin: 0 25px 0 0;
}

.goods_item__img img{
  width: 100%;
}

.goods_item__text{
  width: -webkit-calc(100% - 350px - 25px);
  width: calc(100% - 350px - 25px);
}

.goods_comingsoon {
  font-family: "a-otf-ud-reimin-pr6n";
  color: #fff;
  font-size: 12vw;
  font-weight: 300;
  margin: -42px 0 0;
}


.goods_item__name{
  font-family: "a-otf-ud-reimin-pr6n";
  color: #deff00;
  font-size:2.0rem;
  margin: .5em 0;
}

.goods_item__size,
.goods_item__price,
.goods_item__note{
  margin: .5em 0;
}

@media screen and (max-width: 768px) {
  .goods_comingsoon {
    margin: 0;
  }

  .goods_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .goods_item{
  display: block;
  width: 46%;
}

  .goods_item__img{
  margin: 0;
  }

  .goods_item__note{
    display: none;
  }

  .goods_item__text{
    width: 100%;
  }
}

/* ============================
フッター
============================ */


/* アイコン */

.flex__icon {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}

.flex__icon>div {
  margin: 0 5px;
}

.header__store {
  width: 93px;
  height: 28px;
  background: #e65e21;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin: 0 0 5px 0;
}

.header__store a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.copyright {
  font-size: 1.4rem;
  text-align: center;
  margin: 0;
}



/* ============================
ユニバーサルクラス
============================ */

.u-ol-b{
outline: 1px solid #000 !important;
}

.u-ol-w{
outline: 1px solid #fff !important;
}