@charset "UTF-8";

:root {
  --bg: #fbfbfb;
  --blue: #1ea0dc;
  --green: #5aaa32;
  --yellow: #f0e628;
  --pink: #dc78a0;
  --red: #e10000;
  --gray: #505050;
  --black: #464646;
  --white: #fff;
  --white-rgb: 255, 255, 255;
}

html,body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 2.4vw, 18px);
  font-feature-settings: "palt";
  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.webp) repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: min(112vw, 842px);
  background-position: center top;
  z-index: -1;
}


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


#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: 84%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: url(../img/logo.webp) no-repeat;
  background-size: contain;
  background-position: center;
}

main {
  position: relative;
  margin: 0 auto;
  width: 50vw;
  max-width: 1000px;
  padding: 0;
}

#top-img {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.mainSec{
  position: relative;
  margin: 6em 0;
  padding: 2em;
  background: var(--white);
}
@media screen and (max-width: 700px) {
  .mainSec{
    padding: 2em 1em;
    margin: 4em 0;
  }
}
#mi06 {
  position: absolute;
  background: url(../img/mi06.webp) no-repeat;
  background-size: contain;
  background-position: top;
  width: min(24%, 160px);
  height: 200px;
  z-index: 1;
  top: -6vw;
  left: -3vw;
}
@media screen and (min-width: 1025px) {
  #mi06 {
    top: -3em;
    left: -2em;
  }
}
#mi02 {
  position: absolute;
  background: url(../img/mi02.webp) no-repeat;
  background-size: contain;
  background-position: top;
  width: min(22%, 160px);
  height: 200px;
  z-index: 1;
  top: -14vw;
  right: -2vw;
}
@media screen and (min-width: 1025px) {
  #mi02 {
    top: -8em;
    right: -2em;
  }
}
#mi05 {
  position: absolute;
  background: url(../img/mi05.webp) no-repeat;
  background-size: contain;
  background-position: top;
  width: min(22%, 150px);
  height: 200px;
  z-index: 1;
  top: -12vw;
  left: -1vw;
}
@media screen and (min-width: 1025px) {
  #mi05 {
    top: -6em;
    left: -1em;
  }
}


.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-run {
  opacity: 0;
  transform: translate(-30px, -20px);
}
.fade-run.show {
  opacity: 1;
  animation: runIn 1s ease-out forwards;
}
@keyframes runIn {
  0% {
    opacity: 0;
    transform: translate(-30px, -20px) rotate(-10deg);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -10px) rotate(10deg);
  }
  40% {
    transform: translate(-10px, -5px) rotate(-10deg);
  }
  60% {
    transform: translate(-5px, -2px) rotate(10deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
.fade-run-left {
  opacity: 0;
  transform: translate(30px, 40px);
}
.fade-run-left.show {
  opacity: 1;
  animation: runLeft 1s ease-out forwards;
}
@keyframes runLeft {
  0% {
    opacity: 0;
    transform: translate(30px, 40px) rotate(10deg);
  }
  20% {
    opacity: 1;
    transform: translate(20px, 30px) rotate(-10deg);
  }
  40% {
    transform: translate(10px, 20px) rotate(10deg);
  }
  60% {
    transform: translate(5px, 10px) rotate(-10deg);
  }
  80% {
    transform: translate(2px, 5px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

.menu {
  position: fixed;
  right: 0;
  width: 25vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  font-size: 1.6em;
  font-weight: 800;
}
.menu ul{
  position: relative;
  background: var(--white);
  padding: 1em 1em 5em;
  text-align: center;
  border: 2px solid #ddd;
}
.menu ul li a {
  position: relative;
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: .4em 0;
  white-space: nowrap;
  display: block;
  border-bottom: 2px solid #ddd;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--blue) 0%, var(--blue) 25%,
    var(--green) 25%, var(--green) 50%,
    var(--yellow) 50%, var(--yellow) 75%,
    var(--pink) 75%,var(--pink) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: all .4s;
}
.menu ul li a:hover::after {
  transform: scaleX(1);
}
.menu ul::after {
  position: absolute;
  content: '';
  background: url(../img/mi01.webp) no-repeat;
  background-size: contain;
  background-position: right bottom;
  height: 5em;
  width: 200px;
  right: -2em;
  bottom: -.5em;
}
.menu ul::before {
  content: 'MENU';
  position: absolute;
  top: -.8em;
  left: 0;
  right: 0;
  max-width: 100px;
  margin: auto;
  background: var(--black);
  color: var(--white);
  font-size: 70%;
  font-weight: 600;
  clip-path: polygon(.5em 0%, calc(100% - .5em) 0%, 100% 50%, calc(100% - .5em) 100%, .5em 100%, 0% 50%);
}

/*　ハンバーガーボタン　*/
.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);
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  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);
}

#menulogo {
  display: none;
}

@media screen and (max-width: 1700px) {
 #left-area {
  display: none;
 }
 main {
  width: 100%;
  padding: 2em 2em 0;
  overflow: hidden;
 }
 .menu {
  width: 50%;
  transform: translateX(100%);
  transition: all .4s;
  background: rgba(255,255,255,.7);
 }
 .menu ul {
  max-width: 300px;
  width: 70%;
 }
 .menu.active {
  transform: translateX(0);
 }
 #menulogo {
   display: block;
    width: 100%;
    margin: .5em 0;
    transform: scale(1.1) translateX(3px);
  }
  .hamburger {
    display : block;
  }
}

@media screen and (max-width: 750px) {
  main {
    padding: 1em;
  }
  .hamburger {
    width : 40px;
    height: 40px;
  }
  .hamburger::before {
    width: 40px;
    height: 40px;
  }
  .menu {
    width: 100%;
  }
}

h1 {
  position: absolute;
  top: 3%;
  right: 0;
  left: 0;
  width: 90%;
  margin: auto;
  padding: 0;
}
h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2em;
  font-weight: 800;
  margin: 0 0 1rem;
}
h2 div:nth-child(2){
  letter-spacing: 4px;
  padding: 0 .4em;
}
h2 div:nth-child(odd){
  flex-grow: 1;
  height: .4em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
h2 div span:nth-child(1) {
  background: var(--blue);
}
h2 div span:nth-child(2) {
  background: var(--green);
}
h2 div span:nth-child(3) {
  background: var(--yellow);
}
h2 div span:nth-child(4) {
  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;
}

.sp-br {
  display: none;
}

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

.coming {
  position: relative;
  background: #ccc;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coming::before {
  content: 'COMING SOON';
  position: absolute;
  font-weight: 600;
  font-size: min(12vw, 2em);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem;
  line-height: 1;
}
.coming::after {
  content: '';
  position: absolute;
  background: url(../img/mi03.webp) no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 100%;
  height: min(18vh, 200px);
  bottom: -1em;
}

ul.attention {
    padding: 0;
    list-style: none;
    list-style-position: inside;
    margin: 1rem 0 0;
    font-size: .9rem;
    text-align: justify;
}
ul.attention li {
    position: relative;
    margin: 0 0 .2em;
    line-height: 1.5;
    padding-left: 1.1em;
}
ul.attention li::before {
    content: '※';
    position: absolute;
    left: 0;
    margin: auto;
    color: var(--red);
}


/* info */
.event-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: 1em auto;
}
.event-box {
  font-size: .9em;
  position: relative;
  padding: 1em 0;
  background: var(--white);
  border-radius: 8px;
  border: 2px solid #ddd;
  text-align: center;
}
.event-box span {
  font-size: 1.4em;
  font-weight: 700;
}
.event-box.fin::before {
  position: absolute;
  content: '終了';
  top: -.6em;
  right: -.4em;
  background: var(--red);
  color: var(--white);
  padding: 0 1em;
  font-size: 90%;
}
.event-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}
.event-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: .5em 0 0;
}
a.info-x svg {
  width: 1.6em;
  margin-right: .5em;
  background: #000;
  color: #fff;
  border-radius: 3px;
  padding: 4px;
}
.event-link a:hover {
  color: var(--blue);
}

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


.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 tr:nth-child(1) th,.detail tr:nth-child(5) th {
  background: var(--blue);
}
.detail tr:nth-child(2) th,.detail tr:nth-child(6) th {
  background: var(--green);
}
.detail tr:nth-child(3) th,.detail tr:nth-child(7) th {
  background: var(--yellow);
}
.detail tr:nth-child(4) th,.detail tr:nth-child(8) th {
  background: var(--pink);
}
.detail td span{
  display: inline-block;
}
.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 {
  position: relative;
  padding-left: 1.6em;
  margin-left: .4em;
}
a.info-map::before {
  position: absolute;
  content: '';
  background: url(../img/map.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.5em;
  height: 2em;
  margin: auto;
}

/* campaign */
.tokuten {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1em;
  margin: 1em 0;
}
@media screen and (max-width: 750px) {
  .tokuten {
    grid-template-columns: 1fr 1fr;
  }
}

/* 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(--black);
    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;
}


/* 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 4.6em .6em 1em;
  max-width: 80%;
  color: var(--white);
  font-size: .9rem;
  background: var(--black);
  border-radius: 4px;
}
.socialshare::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid var(--black);
}
.socialshare::after {
  position: absolute;
  content: '';
  background: url(../img/mi04.webp) no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 6em;
  height: 200%;
  bottom: 0;
  right: -1.2em;
  z-index: 1;
}
.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%;
}


