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

html,body {
  position: relative;
  font-family: YakuHanRP,'Zen Maru Gothic', sans-serif;
  font-size: clamp(16px, 2vw, 21px);
  color: #3c2800;
  font-weight: 700;
  width: 100%;
  background: none;
  line-height: 1.6;
  z-index: -1;
  background: url(../img/bg.webp)repeat,#cfa97c;
  background-size: 1474px;
  background-position: center top;
}
/*
body::before {
  position: fixed;
  top: 0;
  content: '';
  background: url(../img/bg.webp)repeat,#cfa97c;
  background-size: 1474px;
  background-position: center top;
  width: 100%;
  height: 100%;
  z-index: -2;
}
*/

p {
  margin: 0;
  text-align: center;
  word-break: break-all;
}
p span {
  display: inline-block;
  background: linear-gradient(transparent 0%, #ffd250 0%);
  margin: 4px 0;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #007850;
}
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: #ffd250;
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}

.mainSec{
  position: relative;
  margin: 0 auto;
  border: none;
  padding: 1em 0 3em;
  max-width: 1200px;
  width: 96%;
}
.max-1200 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 1em .5em;
  /*background: rgba(0,0,0,.1);*/
}

#section-wrap {
  position: relative;
}
#section-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2em;
  background: url(../img/left.webp)repeat-y;
  background-size: 100%;
  background-position: right top;
  height: 100%;
  width: 30%;
  max-width: 400px;
}
#section-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2em;
  background: url(../img/right.webp)repeat-y;
  background-size: 100%;
  background-position: right top;
  height: 100%;
  width: 30%;
  max-width: 400px;
  z-index: -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: #007850;
  border: 2px solid #3c2800;
  border-top: none;
  border-right: none;
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 20px;
}
.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: #007850;
  padding: 0 10px;
  margin: 0 5px;
  height: 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 1px 1px 2px #3c2800;
}
nav.globalMenuSp ul li a:hover{
  color: #3c2800;
  background: #ffd250;
}

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;
  margin: 50px auto;
  width: auto;
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
  background: url(../img/top-bg.webp)repeat;
  background-size: 60%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1>div {
  position: absolute;
  width: 100%;
  max-width: 1300px;
  height: 90%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
h1>div img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  filter: drop-shadow(0 0 5px #000);
}
h1::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 100%;
  height: 100%;
  /*background: rgba(0,0,0,.4);*/
}

@media screen and (max-width: 1023px),(orientation: portrait) {
  nav.globalMenuSp {
    transform: translateX(100%);
    height: 100%;
    background: #996c36;
    background: -webkit-repeating-linear-gradient(-45deg, #996c36, #996c36 10px, #8b6124 10px, #8b6124 20px);
    background: repeating-linear-gradient(-45deg, #996c36, #996c36 10px, #8b6124 10px, #8b6124 20px);
    border-bottom: none;
    background-size: 100%;
    background-position: center;
    justify-content: center;
    align-items: center;
  }
  nav.globalMenuSp.active {
    transform: translate3d(0,0,20px);
  }
  .hamburger {
    display: block;
    width : 50px;
    height: 50px;
  }
  .hamburger::before {
    width: 50px;
    height: 50px;
  }
  .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 {
    padding: 0;
    font-size: 1.2em;
    margin: 8px 0;
    border-radius: 10px;
  }
  nav.globalMenuSp ul li.title_logo {
    display: block;
    filter: drop-shadow(0 0 3px #3c2800);
  }
  h1 {
    margin: 25px;
    height: calc(100vh - 50px);
    height: calc(100svh - 50px);
    background-size: 100%;
  }
  h1>div {
    width: 95%;
    max-width: 900px;
  }
}

h2 {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 400px;
  width: 60%;
  font-size: 1.4em;
  font-weight: 700;
  background: #007850;
  color: #fff;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px #007850;
}

h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 0.4em 0 0.4em;
  line-height: 1.3;
  border: none;
  margin: 0;
  background: #3c2800;
  width: 100%;
}

h4 {
  color: #fff;
  position: relative;
  font-size: 1em;
  font-weight: 700;
  margin: 1em 0 0;
  padding: 0 1em;
  border: none;
  display: inline-block;
  z-index: 1;
  background: #3c2800;
  border-radius: 50px;
}

.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: 2px;
  background: none;
  color: #fff;
  border-bottom: 1px dashed #fff;
  font-weight: 900;
}
.news-box dd {
  margin: 0.5em 0;
  line-height: 1.8;
  padding: 0;
}
.news-box dd span{
  background: linear-gradient(transparent 0%, #ffd250 0%);
  display: inline;
  padding: 0;
}

/* campaign */
.postcard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0;
  margin: 0 auto;
  max-width: 800px;
}

@media screen and (max-width: 500px) {
  .postcard {
    grid-template-columns: 1fr 1fr;
  }
}

/* goods */
.goods_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  text-align: center;
  margin: .5em auto;
  padding: 0;
  align-items: center;
}
.goods_list li{
  position: relative;
  line-height: 1.5;
  margin: 0;
  list-style: none;
  padding: 0;
  border: 2px solid #3c2800;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}
.goods_list li:nth-child(3){
  background: url(../img/goods-bg01.jpg)repeat;
  background-size: cover;
  background-position: center;
}
.goods_list li:nth-child(1){
  background: url(../img/goods-bg02.jpg)repeat;
  background-size: cover;
  background-position: center;
}
.goods_list li:nth-child(2){
  background: url(../img/goods-bg03.jpg)repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 700px) {
  .goods_list {
    grid-template-columns: 1fr;
  }
  .goods_list li{
    height: 100px;
   }
}

/* access */
.store-outer {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
}
.store-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 49%;
  padding: 0;
  margin: 0 0 1em;
  border: 2px solid #3c2800;
  align-content: flex-start;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.store-wrap:last-child {
  margin-bottom: 0;
}
.store-map {
  width: 100%;
  padding: 0.5em 0.5em 0;
}
.store-text {
  margin: 0;
  padding: 0.5em;
  width: 100%;
}
.store-text>h4{
  margin: 0;
  font-size: 80%;
}
.store-text>p {
  margin-top: 0;
}
.store-link-wrap {
  display: flex;
}
a.store-link{
  position: relative;
  background: #fff;
  padding: 0.2em;
  margin: 0.5em auto;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 350px;
  font-size: 14px;
  border-radius: 30px;
  color: #007850;
  font-size: 80%;
  border: 1px solid #007850;
}
a.store-link:hover{
  background: #007850;
  color: #fff;
}
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 #007850;
  border-right: 2px solid #007850;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.store-link:hover::before{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 700px) {
  .store-wrap {
    width: 100%;
  }
}

.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;
}
.t-icon a {
  color: #1DA1F2;
}
.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-radius: 5px 0 0 5px;
  border: 2px solid #3c2800;
  border-right: 2px dashed #3c2800;
  background: #fff;
}
.detail th>span{
  display: inline-block;
}
.detail td {
  position: relative;
  font-weight: 700;
  border-radius: 0 5px 5px 0;
  border: 2px solid #3c2800;
  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;
}
.detail td>span{
  display: flex;
  justify-content: center;
  align-items: center;
}

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