@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800&display=swap');
/* ===================================================================
各展覧会ごとのスタイル
=================================================================== */

html,body {
  position: relative;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 16px;
  background: url(../img/bg-kagi.png)repeat;
  background-size: 70%;
  background-position: center;
  color: #0f0064;
  font-weight: 500;
  width: 100%;
}

p {
  transform:rotateZ(0.03deg);
  margin: .5em 0;
  text-align: justify;
  word-break: break-all;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

footer {
  background: #0064aa;
  color: #fff;
  width: 100%;
  padding: 1em;
  font-size: 12px;
}
footer>p {
  text-align: center;
}

#KV-area {
  position: fixed;
  width: 40%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  background: url(../img/kv.jpg)no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -999;
}
#KV-area>div {
  width: 70%;
  opacity: 0;
}

#main-area {
  position: absolute;
  width: 60%;
  right: 0;
  top: 0;
  background: #fffaf0;
  z-index: -99;
}

.pc-top {
  position: fixed;
  z-index: -1;
  margin: 0 auto;
  width: 60%;
  text-align: center;
}
.pc-top img{
  max-width: 1000px;
  margin: 0 auto;
}

#contents-area {
  position: relative;
  background: #a0d2dc;
  margin: 50% 0 0;
  padding: 60px 0 0;
  z-index: 10;
  transform:translate3d(0,0,10px);
}
#contents-area::before {
  content: '';
  position: absolute;
  background: url(../img/nami.svg)repeat-x;
  background-position: bottom;
  background-size: 150px;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}


.top-menu {
  position: absolute;
  bottom: 0;
  right: 20px;
  padding: 0.5em;
  margin: 0 auto;
  font-size: 21px;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 600;
  border-radius: 30px 30px 0 0;
  background: rgba(255,255,255,.6);
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  font-style: italic;
  color: #00a0be;
}

.top-menu li{
  list-style: none;
  margin: 0.4em 0;
  transform: rotateZ(0.03deg);
  text-align: center;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.top-menu li a{
  transform: rotateZ(0.03deg);
}
.top-menu li a:hover {
  color: #0064aa;
}
.top-menu li.menu-link a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 80%;
  height: 0.1em;
  transform: scale(0,0);
  background: transparent;
  margin: auto;
  transition: .3s;
}
.top-menu li.menu-top::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 80%;
  height: 0.1em;
  transform: scaleX(1.1);
  margin: auto;
  background: #00a0be;
}
.top-menu li.menu-link a:hover::after {
  transform: scaleX(1.1);
  background: #0064aa;
}


@media screen and (max-width: 1060px) {
  .top-menu {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  #KV-area {
    width: 100%;
    background-size: 100%;
    background-position: center;
    z-index: -999;
  }
  #KV-area>div {
    position: absolute;
    opacity: 1;
    top: 10px;
    left: -10px;
  }
  .top-menu {
    display: none;
  }
  #main-area {
    width: 100%;
    margin-top: 70vh;
  }
  #KV-area .sns {
    display: none;
  }
  #contents-area {
    margin: 0;
    z-index: 99;
  }
  .pc-top {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  #KV-area {
    width: 100%;
    background-size: 100%;
    background-position: top;
    z-index: -999;
  }
}
@media screen and (max-width: 750px) {
  #main-area {
    width: 100%;
    margin-top: 60vh;
  }
  #contents-area::before {
    background-size: 80px;
  }
}

.mainSec{
  position: relative;
  background: rgba(255,255,255,.8);
  border: none;
  margin: 0 auto 4em;
  padding: 0;
  border-radius: 30px;
  max-width: 1000px;
  width: 95%;
}

.max-1200 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background: none;
  padding: 2em 1.5em;
}


a.map_link {
  text-decoration: underline;
}
a.map_link:hover {
  color: #23b9e6;
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 999;
  right : 13px;
  top   : 12px;
  width : 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
}
.hamburger img {
  position: absolute;
  top: 0;
  left: 0;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.menu-close {
  opacity: 0;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active .menu-open {
  opacity: 0;
}
.hamburger.active .menu-close {
  opacity: 1;
}


nav.globalMenuSp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 990;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  transform: translateX(200%);
  transition: all 0.6s;
  width: 50%;
  height: 100%;
  background: #fffaf0;
  border-left: 5px solid #0064ab;
  opacity: 0;
}

nav.globalMenuSp ul {
  background: none;
  margin: 0 1em;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #0064ab;
}
/*
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
*/

nav.globalMenuSp ul li:hover{
  background :rgba(20,110,255,.1);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #0064ab;
  padding: .8em 0;
  text-decoration :none;
  font-size: 1.2em;
  font-weight: 800;
  transform: rotateZ(0.03deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gee_logo {
  border: none!important;
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}
nav.globalMenuSp ul li.gee_logo:hover {
  background: none;
}
.globalMenuSp span,.top-menu span{
  font-size: .7em;
  font-weight: 500;
  padding-left: 0.5em;
}


/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translate3d(100%,0,20px);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  nav.globalMenuSp {
    transform: translateX(100%);
    width: 100%;
    border-left: none;
  }
  nav.globalMenuSp.active {
    transform: translate3d(0,0,20px);
  }
  .hamburger {
    width : 15%;
    height: 15%;
  }
}


h2 {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 1em;
  line-height: 2;
  background: url(../img/buttonbg.png),#00a0be;
  background-size: cover;
  background-position: right bottom;
  color: #fff;
  z-index: 1;
  border-radius: 50px;
  border: 3px solid #ecf6f8;
  text-align: center;
  max-width: 300px;
  width: 90%;
}

h3 {
  transform: rotateZ(0.03deg);
  font-size: 1.2em;
  font-weight: 800;
  background: none;
  color: #0064aa;
  text-align: center;
  padding: 0 0 0.4em;
  line-height: 1.3;
  border-bottom: 1px dashed #0064aa;
  margin: 1em 0;
}

.h3-sub {
  position: relative;
  background: repeating-linear-gradient(-45deg, #006fbd, #006fbd 5px, #0064aa 5px, #0064aa 10px);
  color: #fff;
  padding: 0.5em;
  border: none;
  margin: 2em 0 0;
  border-radius: 50px;
}
.h3-sub::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0064aa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #0064aa;
  font-size: 24px;
}
.special1::before {
  content: '1';
}
.special2::before {
  content: '2';
}

h4 {
  color: #00a0be;
  position: relative;
  font-size: 1em;
  font-weight: 700;
  transform: rotateZ(0.03deg);
  margin: 1em 0 0;
  padding: 0 0 0.2em;
  border-bottom: 1px solid #00a0be;
  display: inline-block;
}

.sp-br {
  display: none;
}
ul.text-list {
  padding: 0;
  color: #0064aa;
  list-style: disc;
  transform: rotateZ(0.03deg);
  list-style-position: outside;
  margin: 1em 0 0 2em;
}
ul.text-list li{
  padding-left: 0;
}
ul.text-list li span{
  color: #0f0064;
}
ul.text-list a span:hover{
  color: #23b9e6;
}

@media screen and (max-width: 750px) {
  html,body {
    font-size: 14px;
  }
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  h2 img{
    max-width: 600px;
    width: 98%;
  }
}

/* news */
.news-box {
  background: none;
  height: 120px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}
.news-box dt,.news-box dd{
  transform: rotateZ(0.03deg);
  margin: 0;
}
.news-box dt {
  color: #00a0be;
  font-size: 80%;
  border: 1px solid #00a0be;
  display: inline-block;
  padding: 0 1em;
  background: #dcebf0;
}
.news-box dd {
  border-bottom: 1px dashed #0f0064;
  margin: 0 0 0.5em;
  line-height: 1.2;
  padding: 0.5em 0;
}

/* campaign */
.postcard,.postcard4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 1em auto 0;
}
.postcard div{
  width: calc(100%/3 - 5px);
  margin-bottom: 10px;
}
.postcard4 div{
  width: calc(100%/4 - 5px);
  margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .postcard div,.postcard4 div{
    width: calc(100%/2 - 5px);
  }
}

/* goods */
.goods_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin: 2em 0 0;
  padding: 0;
}
.goods_list li{
  position: relative;
  width: 32%;
  line-height: 1.5;
  margin: 0 0 2em;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #a0d2dc;
  padding: 0 0 1.5em;
}
.goods_img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
}
.goods_list li img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.goods_text {
  background: #dcebf0;
  padding: 0.5em;
  height: 100%;
  line-height: 1.4;
  font-size: 90%;
}
.goods_price {
  position: absolute;
  text-align: right;
  bottom: 0.2em;
  right: 0.5em;
  padding: 0.2em;
}
.tokuten {
  position: relative;
  background: #fff;
  padding: 0.5em 0.5em 0;
  border-radius: 20px;
  margin: 30px 0;
  line-height: 0;
}
.tokuten:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
}


@media screen and (max-width: 800px) {
  .goods_list li{
    width: 48.8%;
  }
}
@media screen and (max-width: 600px) {
  .goods_list {
    justify-content: center;
  }
  .goods_list li{
    width: 90%;
  }
}

/* access */
.store-wrap {
  display: flex;
  width: 100%;
}
.store-map {
  width: 50%;
}
.store-text {
  margin-left: 30px;
  width: 50%;
}
.store-text>h4{
  margin: 0;
}
.store-text>p{
  margin-top: 0;
}
a.store-link{
  background: #fff;
  border: 1px solid #00a0be;
  color: #00a0be;
  padding: 0.4em;
  margin: 1em auto;
  display: block;
  transform: rotateZ(0.03deg);
  text-align: center;
  width: 100%;
  font-size: .9em;
  border-radius: 30px;
  box-shadow: 0 2px 0 #00a0be;
}
a.store-link:hover{
  background: rgba(40,165,230,.1);
}

@media screen and (max-width: 750px) {
  .store-wrap {
    flex-wrap: wrap;
  }
  .store-map,.store-text {
    width: 100%;
  }
  .store-text {
    margin: 1em 0 0;
  }
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: -15px 0 30px;
}
.sns li {
  list-style: none;
  font-size: 50px;
  margin: 5px;
}
li.share-icon {
  font-size: 16px;
  font-weight: bold;
  margin-left: 0;
}
.t-icon a {
  color: #1DA1F2;
}
.f-icon a {
  color: #1877f2;
}
.l-icon a {
  color: #00B900;
}
.sns li a:hover {
  color: #fff;
}

#page_top {
  width: 70px;
  height: auto;
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  opacity: .8;
}
#page_top a{
  display: block;
}
#page_top img{
  filter: drop-shadow(2px 1px 0 #fff);
}
#page_top:hover {
  transform: translateY(-10px);
  opacity: 1;
}

/* table */
.detail {
  border-collapse: separate;
  border-spacing: 4px;
  margin: 1em 0 0;
  padding: 0;
  width: 100%;
  transform: rotateZ(0.03deg);
}
.detail th,
.detail td {
  padding: .5em 1em;
  border-radius: 5px;
}
.detail th {
  background: #00a0be;
  color: #fff;
  font-weight: normal;
  min-width: 100px;
  text-align: center;
}
.detail td {
  background: #dcebf0;
}

#particles-js {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -999;
}