@charset "UTF-8";

:root {
  --bg: #f5f0e6;
  --brown: #be8c50;
  --orange: #fa9600;
  --blue: #0078be;
  --yellow: #e1af19;
  --pink: #c8197d;
  --gray: #505050;
  --black: #111;
  --white: #fff;
  --white-rgb: 255, 255, 255;
}

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;
}
body {
  background:var(--bg);
}
body::before {
  content: '';
  background: url(../img/bg.png) repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: 150px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  html,body {
    font-size: clamp(12px, 1.2vw, 18px);
  }
}



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.6em;
  font-family: "Abril Fatface","Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.menu ul li a {
  position: relative;
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  line-height: 0.8;
  margin: 0 0 1em;
  padding: 0 0 0 1.2em;
}
.menu ul li a::before {
  content: '';
  background: url(../img/icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: 1em;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: .7;
}
.menu ul li:last-child a {
  margin: 0;
}
.menu ul li a span{
  font-size: 50%;
  font-weight: 600;
}

.menu ul li:nth-child(3) a:hover {
  color: var(--yellow);
}
.menu ul li:nth-child(4) a:hover {
  color: var(--orange);
}
.menu ul li:nth-child(5) a:hover {
  color: var(--blue);
}
.menu ul li:nth-child(2) a:hover,.menu ul li:nth-child(6) a:hover {
  color: var(--pink);
}

.menu ul li:nth-child(3) a:hover::before {
  filter: invert(89%) sepia(21%) saturate(3886%) hue-rotate(345deg) brightness(91%) contrast(93%);
}
.menu ul li:nth-child(4) a:hover::before {
  filter: invert(76%) sepia(35%) saturate(7500%) hue-rotate(3deg) brightness(101%) contrast(104%);
}
.menu ul li:nth-child(5) a:hover::before {
  filter: invert(25%) sepia(41%) saturate(6247%) hue-rotate(187deg) brightness(96%) contrast(101%);
}
.menu ul li:nth-child(2) a:hover::before,.menu ul li:nth-child(6) a:hover::before {
  filter: invert(21%) sepia(63%) saturate(4697%) hue-rotate(312deg) brightness(80%) contrast(94%);
}


#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;
  overflow: hidden;
}

#top-img {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.mainSec{
  position: relative;
  margin: 4em 0;
  padding: 0;
  overflow: hidden;
}
#menulogo {
  display: none;
  width: 70%;
  margin: 0 auto 1em 
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 1em;
  top   : 1em;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: none;
}
.hamburger::before {
  content: '';
  display: block;
  background: var(--black);
  border: 2px solid var(--white);
  width: 60px;
  height: 60px;
}
.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: 35%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 50%;
  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: 50%;
  -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;
 }
 main {
  width: 100%;
  padding: 2em 2em 0;
 }
 .menu {
  width: 100%;
  transform: translateX(100%);
  transition: all .4s;
  background: rgba(0,0,0,.7);
 }
 .menu ul {
  background: rgba(var(--white-rgb), .9);
  padding: 1em 2em 2.5em;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
 }
 .menu.active {
  transform: translateX(0);
 }
 #menulogo {
   display: block;
   margin-top: 1.5em;
  }
  .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: 2.8em;
    margin: 0 auto 2.5rem;
    line-height: 1;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    background: var(--brown);
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    padding: 1rem 0;
}
h2>div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.4rem;
  margin: auto;
  background: var(--white);
  color: var(--gray);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  font-size: 1rem;
   width: 200px;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#information h2 {
  background: var(--yellow);
}
#goods h2 {
  background: var(--orange);
}
#contents h2 {
  background: var(--blue);
}
#campaign h2 {
  background: var(--pink);
}

h3 {
  font-size: 1.2em;
  margin: 1.5rem 0 0;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
h3::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: var(--pink);
  display: block;
  margin-left: .4em;
}
#information h3 {
  color: var(--yellow);
}
#information h3::after {
  background: var(--yellow);
}
#goods h3 {
  color: var(--orange);
}
#goods h3::after {
  background: var(--orange);
}
#contents h3 {
  color: var(--blue);
}
#contents h3::after {
  background: var(--blue);
}
#campaign h3 {
  color: var(--pink);
}
#campaign h3::after {
  background: var(--pink);
}

.sp-br {
  display: none;
}

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

.coming {
  position: relative;
  background: rgba(var(--white-rgb), .5);
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming::before {
    content: 'COMING SOON';
    position: absolute;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    font-size: min(12vw, 2em);
    transform: rotate(-8deg);
    color: #a5a5a5;
    border: 1px solid #a5a5a5;
    padding: 1rem;
    line-height: 1;
}


/* info */
.detail {
  border-collapse: separate;
  border-spacing: 4px;
  margin: 1rem 0 0;
  padding: 0;
  width: 100%;
}
.detail th,
.detail td {
  padding: .5em;
}
.detail th {
  background: var(--yellow);
  white-space: nowrap;
  font-weight: 500;
  font-size: 85%;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
}
.detail td {
  background: rgba(var(--white-rgb), .5);
}
.event-link {
    display: flex;
    align-items: center;
    font-size: 90%;
    margin: .2em 0;
}
.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: #000;
  padding: 0;
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem auto 0;
  padding: 0;
  font-size: .8em;
}
.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;
    color: var(--black);
    background: rgba(var(--white-rgb), .5);
    border-radius: 5px;
}
.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;
    padding: 0;
    text-align: left;
    color: #666;
}
.goods-price {
    position: relative;
    text-align: right;
    margin-top: auto;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.goods-price span {
    font-size: 80%;
}
a.goods-link {
    padding: .5rem;
    text-align: center;
    margin: 0;
    color: var(--white);
    text-decoration: none;
    background: var(--orange);
    border-radius: 4px;
    font-weight: 500;
}
a.goods-link:hover {
  background: var(--brown);
}
@media screen and (max-width: 750px) {
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
}
p.other {
  text-align: center;
  background: var(--white);
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  padding: .5em 0;
  font-size: 1.2em;
  font-weight: bold;
  margin: 1rem 0;
}


/* campaign */
.tokuten {
  max-width: 1000px;
  margin: 1em auto;
}

/* footer */
footer {
  width: 50vw;
  margin: 0 auto;
  padding: 0 .5em 2em;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  footer {
    width: 100%;
  }
}
footer>p {
  text-align: center;
  margin: 0;
}
.socialshare {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding: .6em .8em;
  max-width: 80%;
  color: var(--white);
  font-size: .9rem;
  background: var(--brown);
}
.socialshare::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid var(--brown);
}
.socialshare p{
  margin: 0;
  text-align: center;
}
.socialshare p span{
  display: inline-block;
}

.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%;
}


