@charset "UTF-8";

:root {
  --black: #444;
  --white: #fff;
  --purple: #8A7EF9;
  --red:#eb0000;
  --blue: #2d8cdc;
  --lblue: #28b4fa;
  --orange: #eb960f;
}

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

body {
  background: var(--white);
}

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

a,
a:visited,
a:active {
  color: var(--black);
  text-decoration: underline;
}
a:hover {
  color: var(--blue);
  text-decoration: none;
}

img {
  width: 100%;
}

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

header {
  position: relative;
  z-index: 99;
}
.menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  font-size: 1.2rem;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: all .5s;
}
.menu.in {
  opacity: 1;
  visibility: visible; 
  pointer-events: auto;
  transform: translateX(0);
}
.menu ul {
  padding: 1rem;
  border: 2px solid var(--lblue);
  border-right: none;
  border-radius: 1rem 0 0 1rem;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 0 0 4px var(--white);
}
.menu ul li a {
  text-decoration: none;
  color: var(--blue);
  display: block;
  line-height: 2;
  padding: 0 .5em;
  transition: all .3s;
}
.menu ul li a:hover {
  background: var(--blue);
  color: var(--white);
}


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

#top-img {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #5aaae6,#2d8cdc, #5aaae6);
}
#top-img>div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}
#top-kv {
  width: 50%;
}
h1 {
  width: 50%;
  text-align: center;
}
h1 img{
  width: 80%;
}
@media screen and (orientation: portrait) {
  #top-kv {
    width: 100%;
  }
  h1 {
    position: absolute;
    bottom: -4%;
    left: 0;
    width: 100%;
    z-index: 9;
    margin: 0 auto;
  }
  h1 img{
    width: 100%;
  }
}

.mainSec{
  position: relative;
  margin: 0;
  padding: 4em 1em 8em;
}
main .mainSec:nth-child(even) {
  background: #fff;
}
main .mainSec:nth-child(odd) {
  background: linear-gradient(180deg, #2d8cdc, #5aaae6);
}
/* 手前の波 */
main .mainSec:nth-child(even)::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80'>\<path d='M0,40 Q150,15 300,40 Q450,65 600,40 L600,80 L0,80 Z' fill='%23ffffff'/>\</svg>");
  background-repeat: repeat-x;
  background-size: 600px 80px;
  animation: waveFront 10s linear infinite;
  z-index: 2;
}
/* 奥の波 */
main .mainSec:nth-child(even)::after {
  content: "";
  position: absolute;
  top: -80px;          /* 少し下にずらす */
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80'>\<path d='M0,40 Q150,15 300,40 Q450,65 600,40 L600,80 L0,80 Z' fill='%23ffffff'/>\</svg>");
  background-repeat: repeat-x;
  background-size: 600px 80px;
  animation: waveBack 16s linear infinite;
  z-index: 1;
  opacity: 0.5;
}
/* 手前の波 */
main .mainSec:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80'>\<path d='M0,40 Q150,15 300,40 Q450,65 600,40 L600,80 L0,80 Z' fill='%232d8cdc'/>\</svg>");
  background-repeat: repeat-x;
  background-size: 600px 80px;
  animation: waveFront 10s linear infinite;
  z-index: 2;
}
/* 奥の波 */
main .mainSec:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: -80px;          /* 少し下にずらす */
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80'>\<path d='M0,40 Q150,15 300,40 Q450,65 600,40 L600,80 L0,80 Z' fill='%232d8cdc'/>\</svg>");
  background-repeat: repeat-x;
  background-size: 600px 80px;
  animation: waveBack 16s linear infinite;
  z-index: 1;
  opacity: 0.5;
}


@keyframes waveFront {
  from { background-position-x: 0; }
  to   { background-position-x: -600px; }
}

@keyframes waveBack {
  from { background-position-x: 0; }
  to   { background-position-x: 600px; } /* 逆方向 */
}
.max1000 {
  max-width: 1000px;
  margin: 0 auto;
}


#menulogo {
  display: none;
  width: 100%;
  margin: 1rem auto 0; 
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 4px;
  top   : 4px;
  width : 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: none;
}
.hamburger::before {
  content: '';
  display: block;
  background: var(--orange);
  width: 60px;
  height: 60px;
  border: 3px solid var(--white);
  border-radius: 50%;
}
.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: 1600px) {
 .menu {
  width: 100%;
  transition: all .4s;
  background: rgba(45,140,220,.8);
  z-index: 99;
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  justify-content: center;
  transform: translateX(0);
 }
 .menu ul {
  padding: 1em 2em;
  max-width: 500px;
  width: 80%;
  border-radius: 1rem;
  border: 2px solid var(--lblue);
 }
 .menu.active {
  opacity: 1;
  visibility: visible; 
  pointer-events: auto;
 }
 #menulogo {
   display: block;
 }
 .hamburger {
    display : block;
 }
}


h2 {
  position: relative;
  font-size: 3rem;
  margin: 0 auto 2.4rem;
  line-height: .7;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: var(--lblue);
  text-align: center;
}
h2 span {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .5rem;
  padding-left: .5rem;
  margin: 0;
}
h2 span::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.5em;
  margin: auto;
  width: 2em;
  height: 2px;
  background-color: var(--lblue);
}
h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2.5em;
  margin: auto;
  width: 2em;
  height: 2px;
  background-color: var(--lblue);
}
main .mainSec:nth-child(odd) h2 {
  color: var(--white);
}
main .mainSec:nth-child(odd) h2 span::before,main .mainSec:nth-child(odd) h2 span::after  {
  background-color: var(--white);
}

h3 {
  font-size: 1.6rem;
  font-weight: 800;
  background: none;
  text-align: center;
  padding: 0;
  line-height: 1.4;
  margin: 0 0 1rem;
  background: none;
  color: var(--white);
  text-shadow: 0 0 2px var(--orange), 0 0 2px var(--orange), 0 0 2px var(--orange), 0 0 2px var(--orange), 0 0 4px var(--orange), 0 0 4px var(--orange);
}
h4 {
  font-size: 1.2em;
  position: relative;
  color: var(--white);
  border: none;
  padding: 0.5em 1.5em;
  margin: 2em 0 0;
  text-align: center;
  background: var(--blue);
}
h4>span {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--blue);
    text-shadow: none;
}

h5 {
    color: var(--lblue);
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    margin: .5rem 0 0;
    padding: 0 0 .3rem 0;
    width: 100%;
    border-bottom: 1px solid #d7f0ff;
    display: inline-block;
}

span.strong {
  background: var(--red);
  color: var(--white);
  padding: 0 .3em .1em;
  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 auto;
  max-width: 400px;
}
ul.text-list li{
  position: relative;
  margin: .5rem 0;
  line-height: 1.4;
  padding-left: 1em;
}
ul.text-list li span{
  color: var(--white);
}
ul.text-list li::before {
  content: '';
  position: absolute;
  top: .42em;
  left: 0;
  margin: auto;
  width: .5em;
  height: .5em;
  background: var(--white);
}
ul.text-list li a{
  color: var(--white);
}

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

/* contents */
.c-box {
  margin: 0 auto 1rem;
  border: 2px solid #96e1ff;
  padding: 1rem;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  color: var(--white);
}
.c-box p{
  text-align: right;
  margin-bottom: 0;
}

/* campaign */
#campaign {
  color: var(--white);
}
#campaign h3{
  text-shadow: none;
  background: #005096;
  font-size: 1.4rem;
  padding: .8rem 0 1rem;
  margin: 0 0 1rem;
}
.postcard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 1em auto;
}
.postcard3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.postcard div{
  width: calc(100% / 3);
}
.card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .5rem;
  margin: 1rem 0;
}
@media screen and (max-width: 750px) {
  .card {
    grid-template-columns: 1fr 1fr;
  }
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: 1em auto 0;
  font-size: .9rem;
}
.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);
  color: var(--black);
  border-radius: 5px;
  border: 1px solid #e5e5e5;
}
.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;
  color: var(--orange);
  font-weight: 700;
}
.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);
}
@media screen and (max-width: 700px) {
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .goods-text {
    font-size: 1em;
  }
  .goods-price {
    font-size: 1.1rem;
  }
}





footer {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
  font-size: 12px;
  color: var(--white);
  background: #5aaae6;
}
footer>p {
  text-align: center;
  margin: 0;
  font-weight: 400;
}
footer p.socialshare {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  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: collapse;
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
}
.detail tr{
  position: relative;
  border-bottom: 4px dotted #d7f4ff;
}
.detail th,
.detail td {
  padding: 1rem;
}
.detail th {
  white-space: nowrap;
  text-align: center;
  color: var(--orange);
  line-height: 1.2;
  font-size: .9rem;
  font-weight: 700;
}
.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;
    border: 1px solid #d7f0ff;
}
.event-link {
    display: flex;
    align-items: center;
    font-size: 80%;
    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(--orange);
    padding: 0;
}
@media screen and (max-width: 800px) {
  .store-td {
      grid-template-columns: 1fr;
  }
}

ul.attention {
    padding: 0;
    list-style: none;
    list-style-position: inside;
    margin: 1rem 0 0;
    font-size: .8rem;
    text-align: justify;
    font-weight: 400;
}
ul.attention li {
    position: relative;
    margin: 0 0 .4em;
    line-height: 1.5;
    padding-left: 1.1em;
}
ul.attention li::before {
    content: '※';
    position: absolute;
    left: 0;
    margin: auto;
}


.detail2 {
  border-collapse: separate;
  border-spacing: .5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
}
.detail2 th,
.detail2 td {
  padding: 1rem;
  border: 1px solid #d7f0ff;
}
.detail2 th {
  white-space: nowrap;
    text-align: center;
    color: var(--lblue);
    background: var(--white);
    line-height: 1.2;
    font-size: .9rem;
    font-weight: 700;
}


.coming {
  position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 1.6rem;
    border: 1px solid #ccc;
}