@charset "UTF-8";

:root {
  --pink: #f03c82;
  --gray: #ccc;
  --black: #222;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --purple: #786eaa;
  --purple-rgb: 120, 110, 170;
}

html,body {
  position: relative;
  font-family: YakuHanJP,"Noto Sans JP", sans-serif;
  font-size: clamp(12px, 3.3vw, 18px);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--black);
  width: 100%;
  background: none;
  line-height: 1.6;
  z-index: -1;
  background: rgba(var(--purple-rgb), 0.7);
}
@media screen and (min-width: 1025px) {
  html,body {
    font-size: clamp(12px, 1.2vw, 18px);
  }
}

@media screen and (min-width: 1025px) {
  .bg-line {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -9;
  }
  .bg-line::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 20vh;
    background: rgba(var(--purple-rgb), 1);
    transform: scale(2) rotate(10deg);
  }
  .bg-line::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 2vh;
    background: rgba(var(--purple-rgb), 1);
    transform: scale(2) rotate(-10deg);
  }
}


p {
  margin: .5em 0;
  text-align: left;
  word-break: break-all;
}
.small {
  font-size: max(11px, 80%);
}

a,
a:visited,
a:active {
  color: #003cb4;
  text-decoration: underline;
}
a:hover {
  color: #1a73e8;
}

img {
  width: 100%;
}

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

header {
  position: relative;
}
.menu {
  position: fixed;
  right: 0;
  width: 25vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 1.2em;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.menu ul li a {
  text-decoration: none;
  color: var(--white);
  display: block;
  border-bottom: 1px solid var(--white);
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .menu ul li a:hover {
    background-color: rgba(50,40,90,.2);
  }
  .menu ul li a.active {
    background: linear-gradient(90deg, rgb(50 40 90) , transparent);
  }
}

#left-area {
  position: fixed;
  width: 25vw;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-img {
  position: relative;
  width: 70%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: url(../img/h1.webp) no-repeat;
  background-size: contain;
  background-position: center;
}

main {
  position: relative;
  margin: 0 auto;
  width: 50vw;
  padding: 0 2em;
  background: rgba(50,40,90,.7);
  overflow: hidden;
}

#top {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
#sp-logo {
  display: none;
}
.mainSec{
  position: relative;
  margin: 2em 0;
  padding: 1.6em;
  background: #ffffff;
  border: 1px solid #000;
  overflow: hidden;
}
.mainSec::before {
  content: '';
  position: absolute;
  top: -.3vw;
  left: -.2vw;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
  font-size: min(8vw, 3em);
  line-height: 1;
  color: #f5f5fa;
}
#information.mainSec::before {
  content: ':INFORMATION';
}
#special.mainSec::before {
  content: ':SPECIAL';
}
#campaign.mainSec::before {
  content: ':CAMPAIGN';
}
#goods.mainSec::before {
  content: ':GOODS';
}
#access.mainSec::before {
  content: ':ACCESS';
}
#link.mainSec::before {
  content: ':LINK';
}

#menulogo {
  display: none;
  width: 70%;
  margin: 0 auto 1em 
}


/*　ハンバーガーボタン　*/
.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: var(--black);
  width: 60px;
  height: 60px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: var(--white);
  -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: 30%;
}
.hamburger span:nth-child(2) {
  top: 45%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 60%;
}

/* ナビ開いてる時のボタン */
.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);
}

@media screen and (max-width: 750px) {
  .hamburger {
    width : 40px;
    height: 40px;
  }
  .hamburger::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 1024px) {
 #left-area {
  display: none;
 }
 #top {
  margin-bottom: 24vw;
 }
 main {
  width: 100%;
  padding: 2em 2em 0;
 }
 .menu {
  width: 100%;
  transform: translateX(100%);
  transition: all .4s;
  background: rgba(50,40,90,.8);
 }
 .menu ul {
  background: rgba(var(--white-rgb), .9);
  padding: 1em 2em 2.5em;
  border-radius: 10px;
  max-width: 80%;
 }
 .menu ul li a {
  color: var(--black);
  border-color: var(--black);
 }
 .menu.active {
  transform: translateX(0);
 }
 #menulogo {
   display: block;
   margin-top: 1.5em;
  }
  #sp-logo {
    display: block;
    position: absolute;
    bottom: -19vw;
    right: 4%;
    width: 58%;
    margin: 0 auto;
  }
  .hamburger {
    display : block;
  }
}

@media screen and (max-width: 750px) {
  main {
    padding: 1em;
  }
}


h1 {
  position: absolute;
  bottom: 3%;
  right: 2%;
  width: 90%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  h1 {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

h2 {
  position: relative;
  font-size: 2em;
  margin: 0 auto 1rem;
  text-align: left;
  line-height: 1;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
h2::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--black);
  display: block;
  margin-left: .2em;
}


h3 {
  font-size: 1.2em;
  font-weight: 700;
  background: none;
  text-align: center;
  padding: 1rem 0;
  line-height: 1.3;
  border: none;
  margin: .5rem 0 1rem;
  background: none;
  border: 2px solid var(--black);
}
h3 span.b-bg {
  background: var(--black);
  color: var(--white);
  padding: 4px;
  line-height: 1;
  display: inline-block;
  margin: 0 2px 2px;
}

.h3-sub {
  position: relative;
  color: var(--white);
  border: none;
  padding: 0.5em 1.5em;
  margin: 2em 0 0;
  text-align: center;
  background: var(--black);
}
.h3-sub>span {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--white);
  color: var(--black);
  font-size: 1em;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--black);
}

h4 {
  color: var(--purple);
  position: relative;
  font-size: 1em;
  font-weight: 700;
  margin: .5em 0 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--purple);
  display: inline-block;
}

span.strong {
  background: var(--pink);
  color: var(--white);
  padding: 0 0.3em;
  margin: 0 0.2em;
  line-height: 1.2;
  display: inline-block;
  font-weight: 500;
}

.sp-br {
  display: none;
}
ul.text-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0;
}
ul.text-list li{
  position: relative;
  margin: .5rem 0;
  line-height: 1.4;
  padding-left: 1em;
}
ul.text-list li span{
  color: var(--black);
}
ul.text-list li::before {
  content: '';
  position: absolute;
  top: .42em;
  left: 0;
  margin: auto;
  width: .5em;
  height: .5em;
  background: var(--purple);
  transform: rotate(45deg);
}
ul.text-list li a{
  text-decoration-color: var(--black);
}
ul.text-list li a:hover{
  text-decoration-color: #1a73e8;
}
ul.text-list li a span:hover{
  color: #1a73e8;
}

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


/* campaign */
.postcard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 1em auto;
}
.postcard3 {
  width: 100%;
  margin: 1em auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: .4em;
}
.postcard div{
  width: calc(100% / 4);
}
@media screen and (max-width: 750px) {
  .postcard3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: .2em;
  }
  .postcard div {
    width: calc(100%/2);
  }
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin: 1em auto 0;
  font-size: .9rem;
  max-width: 660px;
}
.goods-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: .5em;
  line-height: 1.2;
  position: relative;
  background: var(--white);
  border: 1px solid #f1f0f6;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: var(--white);
}
.goods-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}
.goods-text {
  line-height: 1.4;
  font-size: .9em;
  padding: 0;
}

.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0;
}
.goods-price span {
  font-size: 80%;
}
a.goods-link {
  font-size: .9em;
  padding: .5rem;
  text-align: center;
  margin: 0;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
}
a.goods-link:hover {
  background: var(--purple);
  color: var(--white);
}

.geetokuten {
  display: flex;
}
.geetokuten>div {
  text-align: center;
}
.geetokuten>div img{
  max-width: 120px;
  margin: 0 auto;
  display: block;
}
.geetokuten>div span{
  font-size: .8rem;
}

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



footer {
  width: 50vw;
  margin: 0 auto;
  padding: 0 .5em 2em;
  font-size: 12px;
  background: rgba(50,40,90,.7);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  footer {
    width: 100%;
  }
}
footer>p {
  text-align: center;
  margin: 0;
}
footer p.socialshare {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: var(--white);
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  padding: 8px;
  border-radius: 4px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color: #0866ff;
}
#l-icon a{
  color: #00B900;
}
.gee_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 300px;
  margin: 0 auto 2em;
}
.gee_logo a {
  background: var(--white);
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}


/* table */
.detail {
  border-collapse: separate;
  border-spacing: 4px;
  margin: .5em 0;
  padding: 0;
  width: 100%;
}
.detail th,
.detail td {
  padding: .5em;
}
.detail th {
  background: var(--purple);
  white-space: nowrap;
  font-weight: 500;
  font-size: 85%;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
  width: auto;
}
.detail td {
  background: rgba(var(--purple-rgb), .1);
  width: 100%;
}
.store-td {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5em;
}
.store-wrap {
    position: relative;
    background: var(--white);
    padding: .5em;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--black);
}
.event-link {
    display: flex;
    align-items: center;
    font-size: 60%;
    margin: .2em 0;
    justify-content: center;
    width: 100%;
}
.event-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
a.info-x {
    margin-right: .4em;
}
a.info-x svg {
    width: 1.6em;
    margin-right: .3em;
    background: #000;
    color: #fff;
    border-radius: 3px;
    padding: 4px;
}
a.info-map svg {
    width: 1.5em;
    color: var(--black);
    padding: 0;
}
@media screen and (max-width: 800px) {
  .store-td {
      grid-template-columns: 1fr;
  }
  .event-link {
    font-size: 90%;
  }
  .store-wrap {
    padding: .8em 0;
  }
}
