@charset "UTF-8";
/* ===================================================================
展覧会共通のベーススタイル
=================================================================== */
/* ===================================================================
Faundation
=================================================================== */
/* 1rem = 10pxにするための設定。フォントサイズの単位はremを使用する。 */
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  color: #000;
  font-family: 'Mplus 1p', sans-serif;
  font-size: 1.4rem;
  -webkit-font-kerning: normal;
     -moz-font-kerning: normal;
          font-kerning: normal;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #20c1dd;
}
a:hover {
  text-decoration: underline;
}
a img:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

dd {
  margin-left: 0;
}

/* ===================================================================
Layout
=================================================================== */
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #ff9900;
  height: 35px;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  background: #fff;
  -webkit-transition: 1s;
          transition: 1s;
  top: 0;
  left: 0;
  position: fixed;
  box-shadow: 0 0px 20px 7px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
  }
}
.header__logo {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 10px;
}

.mainSec {
  padding: 0 5em 25px;
  margin: 50px auto 100px;
  max-width: 1024px;
  background: #fff;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .mainSec {
    padding: 0 10px 10px;
    margin: 50px 10px 100px;
  }
}



/* ===================================================================
object
=================================================================== */
/* Component
--------------------------------------------------------- */
/* Project - Component
--------------------------------------------------------- */
/* 詳細リスト
--------------------------------------------------------- */
table{
  display: table;
  border-collapse: separate;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  -webkit-border-horizontal-spacing: 10px;
  -webkit-border-vertical-spacing: 10px;
  width:80%;
  margin: 0 auto;
}

.detail_list {
  margin: 0;
}
.detail_list__title {
  font-weight: 600;
}

td.detail_list__title{
  width:120px;
  text-align: center;
  background-color: #20c1dd;
  color: #fff;
  padding: 4px;
  margin: 5px auto;
  border-radius: 10px;
  font-size: 2rem;
}

.detail_list__desc {
  font-size: 1.4rem;
}

td.detail_list__desc{
  font-size: 2.0rem;
}

@media screen and (max-width: 750px) {
  table{
    width:100%;
  }

  td.detail_list__title{
    width:40px;
    font-size: 1.0rem;
  }

  td.detail_list__desc{
    font-size: 1.5rem;
  }
}


/* ドロワーメニュー
--------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .drawer_wapper {
    display: none;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 998;
  }
}

.drawer_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .drawer_menu {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .drawer_menu__list {
    margin: 0 10px 0 0;
    list-style: none;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
}
.drawer_menu__list a,
.drawer_menu__list span {
  text-decoration: none;
  color: #333;
  padding: .6em 2.4rem;
  display: block;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .drawer_menu__list a,
  .drawer_menu__list span {
    padding: .6em 2.4rem;
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .drawer_menu__list:last-child {
    border-bottom: 2px solid #ff9900;
  }
}

.drawer_button {
  display: none;
}
@media screen and (max-width: 1024px) {
  .drawer_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* フッター
--------------------------------------------------------- */
.footer {
  background: #00b09b;
  color: #fff;
}

.copyrights {
  text-align: center;
  margin: 0 auto;
  width: 95%;
  padding: 2.5em 0 0.3em;
}
.copyrights span {
   display: inline-block;
}

/* グッズ
--------------------------------------------------------- */
.goods--limited,
.goods--presale,
.goods--present,
.goods--present2 {
  position: relative;
}

.goods--limited::after,
.goods--presale::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 70px;
  height: 70px;
}

.goods--limited::after {
  background: url(img/limited.svg);
  background-size: contain;
}

.goods--presale::after {
  background: url(img/presale.svg);
  background-size: contain;
}

.goods--present::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 60px;
  width: 70px;
  height: 70px;
  background: url(img/present.svg);
  background-size: contain;
  z-index: 2;
}

.goods--present2::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  background: url(img/present.svg);
  background-size: contain;
  z-index: 2;
}

/* ヘッダー
--------------------------------------------------------- */
.header__icon {
  height: 100%;
  width: 50px;
}

/* 画像リスト
--------------------------------------------------------- */
.img_list {
  margin-top: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .img_list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.img_list li {
  width: 18.8%;
  max-width: 300px;
  font-size: 1.6rem;
  margin:0  5px 20px;
  text-align: center;
  position: relative;
  border: 1px solid #000;
  padding: 1px 0 0 0;
}

.img_list li.tate {
  width: inherit;
}


@media screen and (max-width: 1024px) {
  .img_list li {
    width: 31%;
  }
}
@media screen and (max-width: 767px) {
  .img_list li {
    width: 45%;
  }
}

img.img_list__preitem {
    position: absolute;
    top: 5px;
    left: 0;
    width: 50px;
  }

/* インラインアイテム
--------------------------------------------------------- */
.inline_item {
  background: #fff;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .inline_item {
    display: block;
  }
}
.inline_item > div > img {
  width: 100%;
}

.inline_item__desc {
  width: 400px;
  text-align: left;
}
.inline_item__desc p {
  margin: 10px;
}
@media (max-width: 767px) {
  .inline_item__desc {
    width: 100%;
  }
}

/*非表示ボタン
--------------------------------------------------------- */
.hidden_box {
    margin: 2em 0;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    font-family: "游明朝",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","Aozora Mincho Regular",serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #21c0dc;
    cursor :pointer;
}

/*ボタンホバー時*/
.hidden_box label:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none!important;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}


/* 新着情報
--------------------------------------------------------- */
.newInfo_list {
  padding: 0;
  margin: .5em 0 2em;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 8em;
}

.newInfo_list dt{
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.newInfo_list dt:before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;/*線の上下位置*/
  display: inline-block;
  width: 150px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #999;/*線の色*/
}

/* トップへもどる
--------------------------------------------------------- */
.page_top {
  width: 55px;
  height: 50px;
  display: none;
  position: fixed;
  right: 16px;
  bottom: 105px;
}
.page_top__inner {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #555;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
.page_top__inner:hover {
  background-color: #FF9900;
  opacity: 1;
}
.page_top__buttom {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  display: block;
}

/* ソーシャルリスト（アイコン）
--------------------------------------------------------- */
.socialshare{
  text-align: center;
  margin:.5em;
}

.sociallist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 5px;
}

.sociallist__item {
  width: 65px;
  height: 65px;
  display: inline-block;
  border-radius: 3px;
  margin: 0px 10px;
  -webkit-transition: .1s;
          transition: .1s;
}
.sociallist__item > a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sociallist__item > a > svg {
  height: 60%;
  margin: 0;
  padding: 0;
  width: 60%;
}
.sociallist__item > a > svg > path {
  fill: #FFF;
}
.sociallist__item:hover {
  border-radius: 0;
}
.sociallist__item--twitter {
  background: #1DA1F2;
}
.sociallist__item--twitter:hover {
  outline: 5px solid #1DA1F2;
}
.sociallist__item--facebook {
  background: #3B5998;
}
.sociallist__item--facebook:hover {
  outline: 5px solid #3B5998;
}
.sociallist__item--tumblr {
  background: #36465D;
}
.sociallist__item--tumblr:hover {
  outline: 5px solid #36465D;
}
.sociallist__item--line {
  background: #00C300;
}
.sociallist__item--line:hover {
  outline: 5px solid #00C300;
}
.sociallist__item--mail {
  background: #f90;
}
.sociallist__item--mail:hover {
  outline: 5px solid #f90;
}
.sociallist__item--mail:hover img {
  opacity: 1;
}

/* アクセス
--------------------------------------------------------- */
.store_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .store_wrapper {
    display: block;
  }
}

.store_map {
  width: 50%;
  height: 300px;
  margin: 0 2em 0 0;
}
@media (max-width: 767px) {
  .store_map {
    width: 100%;
    height: auto;
  }
}

/* タグ
--------------------------------------------------------- */
.tag {
  border-radius: 3px;
  background: #333;
  color: #fff;
  border-radius: 3px;
  padding: .1em 1em .15em;
  margin: 0 1em 0 0;
}
.tag--large {
  font-size: 2rem;
}
.tag--small {
  font-size: 1.2rem;
}
.tag--limited {
  background: #EC7980;
}
.tag--presale {
  background: #F9BF11;
  color: #fff;
}

/* project
--------------------------------------------------------- */
.background {
  background: #f1f1f1;
}

.move-page-top {
  cursor: pointer;
}
/* ----------------------------
メインセクション内アイテム
---------------------------- */
.mainSec__head {
  margin-top: 0;
  padding: .5em 0;
}

.entry--attention {
  color: #990000;
}

.entry__emphasis{
  font-size: 120%;
}

@media screen and (max-width: 1280px) {
  .topImg {
    margin: 50px 0 0;
    max-width: 100%;
  }
}
/* utility
--------------------------------------------------------- */
/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t {
  vertical-align: top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4 {
  border-radius: 4px;
}

.u-br-8 {
  border-radius: 8px;
}

.u-br-12 {
  border-radius: 12px;
}

.u-br-16 {
  border-radius: 16px;
}

/* border-none */
.u-br-0 {
  border: none;
}

.u-br-t-0 {
  border-top: none;
}

.u-br-r-0 {
  border-right: none;
}

.u-br-b-0 {
  border-bottom: none;
}

.u-br-l-0 {
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf {
  *zoom: 1;
}

.u-cf:after {
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb {
  display: table !important;
}

.u-d-tbc {
  display: table-cell !important;
}

.u-d-b {
  display: block !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-f {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-d-n {
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l {
  float: left !important;
}

.u-fl-r {
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10 {
  font-size: 10rem !important;
}

.u-fz-12 {
  font-size: 12rem !important;
}

.u-fz-14 {
  font-size: 14rem !important;
}

.u-fz-16 {
  font-size: 16rem !important;
}

.u-fz-18 {
  font-size: 18rem !important;
}

.u-fz-20 {
  font-size: 20rem !important;
}

.u-fz-22 {
  font-size: 22rem !important;
}

.u-fz-24 {
  font-size: 24rem !important;
}

.u-fz-26 {
  font-size: 26rem !important;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc {
  display: box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-a {
  margin-left: auto !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-a {
  margin-left: auto !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-a {
  margin-left: auto !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-a {
  margin-left: auto !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap {
  white-space: nowrap;
}

.u-mx-img {
  max-width: 100%;
}

.u-tx-inside {
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0 {
  margin-top: 0 !important;
}

.u-pt-8 {
  margin-top: 8px !important;
}

.u-pt-16 {
  margin-top: 16px !important;
}

.u-pt-24 {
  margin-top: 24px !important;
}

.u-pt-32 {
  margin-top: 32px !important;
}

.u-pt-40 {
  margin-top: 40px !important;
}

.u-pt-48 {
  margin-top: 48px !important;
}

.u-pt-56 {
  margin-top: 56px !important;
}

.u-pt-64 {
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a {
  position: absolute !important;
}

.u-pos-r {
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-td-u {
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto {
  width: auto !important;
}

.u-maw-full {
  max-width: 100% !important;
}

.u-maw-half {
  max-width: 50% !important;
}

/*# sourceMappingURL=style.css.map */
