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

html,body {
  position: relative;
  font-family: YakuHanJP,'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(16px, 2vw, 21px);
  color: #000;
  font-weight: 700;
  width: 100%;
  background: none;
  line-height: 1.6;
  z-index: -1;
  background: #fff;
}

p {
  margin: 0;
  text-align: center;
  word-break: break-all;
}
p span {
  display: inline-block;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #e65a00;
}
img {
  width: 100%;
}

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

.header_gee_logo {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  left: 10px;
  max-width: 150px;
  width: 10%;
  height: 50px;
  transition: all .5s;
  z-index: 9999;
}
.header_gee_logo>a {
  line-height: 0;
  /*filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 3px #fff);*/
}

main {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

footer {
  width: 100%;
  padding: 1em 1em 1.5em;
  font-size: 12px;
  background: #fff5e6;
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}

.mainSec{
  position: relative;
  margin: 0 auto;
  padding: 2em 1em;
  width: 100%;
  background: #fff5e6;
  text-align: center;
}
.mainSec:nth-child(odd){
  background: #fff;
}

.section-inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  /*background: rgba(0,0,0,.1);*/
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 0;
  top   : 0;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: none;
}
.hamburger::before {
  content: '';
  display: block;
  background: #e65a00;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 10px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: #fff;
  -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: 28%;
}
.hamburger span:nth-child(2) {
  top: 45%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 63%;
}
.hamburger p {
  position: absolute;
  display: block;
  top: -10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 1px 0 #8c5014, -1px -1px 0 #8c5014, -1px 1px 0 #8c5014, 1px -1px 0 #8c5014,0px 1px 0 #8c5014, 0-1px 0 #8c5014, -1px 0 0 #8c5014, 1px 0 0 #8c5014;
  font-size: 21px;
}

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


nav.globalMenuSp {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 990;
  top: 0;
  left: 0;
  text-align: center;
  transition: all 0.6s;
  width: 100%;
  height: 50px;
  background: none;
  background-size: 100%;
  background-position: center;
  opacity: 1;
}

nav.globalMenuSp ul {
  display: flex;
  margin: 0 10px 0 0;
  padding: 0;
  width: 100%;
  height: 40px;
  background: none;
  color: #fff;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav.globalMenuSp ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background: #000;
  color: #fff;
  padding: 0 10px;
  margin: 0 5px;
  height: 24px;
  border: 1px solid #ffffff;
}
nav.globalMenuSp ul li a:hover{
  color: #000;
  background: #f09600;
}

nav.globalMenuSp ul li.title_logo {
  display: none;
  width: 200px;
  margin: 0 auto 1em;
  border: none;
}
nav.globalMenuSp ul li.title_logo:hover {
  background: none;
}
.globalMenuSp span{
  font-size: 80%;
  font-weight: 500;
  padding-left: 0.5em;
}

h1 {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto;
}

@media screen and (max-width: 900px),(orientation: portrait) {
  nav.globalMenuSp {
    transform: translateX(100%);
    height: 100%;
    border-bottom: none;
    background-size: 100%;
    background-position: center;
    justify-content: center;
    align-items: center;
    background: url(../img/bg.webp);
    background-size: cover;
    background-position: center;
  }
  nav.globalMenuSp.active {
    transform: translate3d(0,0,20px);
  }
  .hamburger {
    display: block;
    width : 40px;
    height: 40px;
  }
  .hamburger::before {
    width: 40px;
    height: 40px;
  }
  .hamburger p {
    font-size: 14px;
  }
  .header_gee_logo {
    width: 20%;
    top: 8px;
    align-items: flex-start;
  }
  .header_gee_logo.in {
    width: 20%;
  }
  nav.globalMenuSp ul {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  nav.globalMenuSp ul li {
    width: 100%;
  }
  nav.globalMenuSp ul li a {
    font-size: 1em;
    margin: 8px auto;
    height: auto;
    max-width: 200px;
  }
  nav.globalMenuSp ul li.title_logo {
    display: block;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 3px #fff) drop-shadow(0 0 3px #fff);
  }
}

h2 {
  margin: 0 auto 1.5rem;
  padding: 0;
  text-align: center;
  max-width: 400px;
  width: 60%;
  font-size: 1.4em;
  font-weight: 700;
  background: #f09600;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  border: 1px dashed #000;
  box-shadow: 0 0 0 2px #f09600, 5px 5px 0 0 #000;
}

#access h3 {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 0;
  border: none;
  margin: 0;
  background: #e65a00;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h4 {
  color: #f09600;
  position: relative;
  font-size: 1em;
  font-weight: 700;
  margin: 1em 0 0;
  padding: 0 1em;
  border: none;
  display: inline-block;
  z-index: 1;
  background: #ffffff;
  border: 2px solid #f09600;
}

.sp-br {
  display: none;
}
ul.text-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0;
}
ul.text-list li{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
ul.text-list li::before{
  content: '●';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #007850;
}

@media screen and (max-width: 750px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}

/* news */
.news-box {
  background: none;
  height: 120px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}
.news-box dt,.news-box dd{
  margin: 0;
}
.news-box dt {
  font-size: 80%;
  display: inline-block;
  padding: 0 0.5em;
  letter-spacing: 1px;
  background: #fff;
  color: #000000;
  font-weight: 700;
}
.news-box dd {
  margin: 0 0 0.5em;
  padding: 0;
}

#gallery p span {
  color: #f09600;
  transform: rotate(45deg);
}

/* tokuten */
.tokuten-img {
  max-width: 511px;
  margin: 1em auto 0;
  border: 1px solid #000;
}

/* goods */
.goods_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.goods_list li{
  position: relative;
  line-height: 1.5;
  margin: 0;
  list-style: none;
  padding: 0 0 1.7em;
  border: 1px solid #000;
  overflow: hidden;
  background: #fff;
}
.goods_list li a{
  text-decoration: none;
}
.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 {
  padding: 0.2em 0.5em 0;
  line-height: 1.3;
  font-size: clamp(14px, 2vw, 18px);
}
.goods_name {
  text-align: justify;
}
.goods_price {
  position: absolute;
  text-align: right;
  bottom: 0;
  right: 0;
  padding: 0.1em;
  margin: 0;
  color: #fff;
  background: #000;
}
.goods_price>span {
  font-size: 80%;
}

.goods_list li::before {
  content: '先行販売';
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  border: 1px solid #f09600;
  color: #f09600;
  font-size: min(3vw,14px);
  padding: 0 5px;
}

@media screen and (max-width: 600px) {
  .goods_list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }
}

/* access */
.store-outer {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
.store-wrap {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #000000;
}
.store-map {
  width: 100%;
  height: 30vh;
  padding: .5em .5em 0;
}
.store-text {
  margin: 0;
  padding: 0 0.5em;
  width: 100%;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.2;
}
.store-text>p {
  margin-top: 0;
}
.store-link-wrap {
  display: flex;
}
a.store-link{
  position: relative;
  background: #f09600;
  padding: 0.2em;
  margin: 0 auto 0.5rem;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 350px;
  border-radius: 30px;
  color: #fff;
  font-size: 80%;
  line-height: 2;
  text-decoration: none;
}
a.store-link:hover{
  background: #e65a00;
}
a.store-link::before {
  position: absolute;
  content: '';
  display: block;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: none;
  border-left: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.store-link:hover::before{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.store-info {
  border-collapse: separate;
  border-spacing: 0 0.5em;
}
.store-info th{
  font-size: 80%;
  border: 1px solid #e65a00;
  color: #e65a00;
  padding: 4px;
  white-space: nowrap;
  margin: 0;
}
.store-info td{
  text-align: left;
  padding: 0 0 0 0.5em;
}
@media screen and (max-width: 760px) {
  .store-outer {
    grid-template-columns: 1fr;
  }
  #access h3 {
    font-size: 14px;
    width: 50px;
    height: 50px;
  }
}


.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  font-size: 50px;
  margin: 5px;
}
li.share-icon {
  font-size: 16px;
  margin-left: 0;
  font-weight: 700;
}
.t-icon a {
  color: #000000;
  font-size: 57px;
}
.f-icon a {
  color: #1877f2;
}
.l-icon a {
  color: #00B900;
}
.sns li a:hover {
  opacity: .8;
}

#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: 0 10px;
  margin: 0.5em auto;
  padding: 0;
  line-height: 1.3;
}
.detail th,
.detail td {
  padding: 0.5em;
}
.detail th {
  font-weight: 700;
  text-align: center;
  border: 1px solid #000000;
  border-right: 1px dashed #000000;
  background: #fff;
  font-size: 120%;
}
.detail span{
  font-size: 70%;
}
.detail td {
  position: relative;
  font-weight: 700;
  border: 1px solid #000000;
  border-left: none;
  background: #fff;
}
.detail td a{
  font-size: 65%;
  border: 1px dashed #3c2800;
  padding: 0 0.4em;
  margin-left: 0.4em;
}
.detail td a:hover {
  border: 1px dashed #007850;
}

@media screen and (max-width: 600px) {
  .detail {
    width: 100%;
    padding: 0;
  }
  .detail th, .detail td {
    display: block;
  }
  .detail th {
    border-right: 1px solid #000;
    border-bottom: 1px dashed #000;
  }
  .detail td {
    border-top: none;
    border-left: 1px solid #000;
  }
}