@charset "UTF-8";

:root {
  --black: #222;
  --white: #fff;
  --gray: #d5d5d5;
  --red:#eb0000;
  --blue: #0af;
}

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: 400;
  font-feature-settings: "palt";
  color: var(--black);
  width: 100%;
  background: none;
  line-height: 1.8;
  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: 1em;
  bottom: 0;
  width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible; 
  pointer-events: auto;
  transition: all .5s;
}
.menu ul {
  padding: 1.2em 1em 1.5em;
  border: 2px solid var(--black);
  border-bottom: none;
  background: rgba(255, 255, 255, .8);
  margin: 0;
}
.menu ul li a {
  text-decoration: none;
  color: var(--black);
  display: block;
  line-height: 2;
  padding: 0 .5em;
  transition: all .3s;
  border-bottom: 1px solid var(--gray);
}
.menu ul li a:hover {
  background: var(--gray);
}


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

#top-img {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url(../img/pc-kv2.webp) no-repeat;
    background-size: cover;
    background-position: right top;
}
h1 {
  position: absolute;
  margin: 0;
  width: 55%;
  max-width: 880px;
  top: 2%;
  left: 1%;
}
@media screen and (orientation: portrait) {
  #top-img {
    background: url(../img/pc-kv2.webp) no-repeat;
    background-size: cover;
    background-position: 83% center;
    max-height: 150vw;
  }
  h1 {
    position: absolute;
    margin: 0 auto;
    width: 98%;
    max-width: 100%;
    top: unset;
    bottom: 2%;
    left: 0;
    right: 0;
  }
}

.mainSec{
  position: relative;
  margin: 0;
  padding: 4em 2em;
}
main .mainSec:nth-child(even) {
  background: #fff;
}
main .mainSec:nth-child(odd) {
  background: #f9f9f9;
}

.max1000 {
  max-width: 1000px;
  margin: 0 auto;
}


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


/*　ハンバーガーボタン　*/
.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: 2px solid var(--white);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 2px;
  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(255,255,255,.8);
  z-index: 99;
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  justify-content: center;
  transform: translateX(0);
  right: 0;
  top: 0;
 }
 .menu ul {
  padding: 1em 2em 1.6em;
  max-width: 500px;
  width: 80%;
  border: 2px solid var(--black);
  background: var(--white);
 }
 .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: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  color: var(--black);
  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: -4.5em;
  margin: auto;
  width: 4em;
  height: 2px;
  background-color: var(--gray);
}
h2 span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4.5em;
  margin: auto;
  width: 4em;
  height: 2px;
  background-color: var(--gray);
}

h3 {
  margin: .5rem 0;
  padding: 0 .5rem;
  font-weight: 600;
  font-size: 1.2rem;
  border-left: 4px solid var(--blue);
}

.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(--black);
}
ul.text-list li::before {
  content: '';
  position: absolute;
  top: .42em;
  left: 0;
  margin: auto;
  width: .5em;
  height: .5em;
  background: var(--gray);
}
ul.text-list li a{
  color: var(--black);
}

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

/* campaign */
.card {
  max-width: 550px;
  margin: 0 auto;
}

/* 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: 1px solid #ccc;
}
.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-text span {
  color: var(--red);
  margin-right: .3em;
  padding-right: .4em;
  border-right: 1px solid #ccc;
}
.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0;
  color: var(--black);
  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(--blue);
  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;
  }
}

.ticket {
  background: #f9f9f9;
  padding: 1rem;
  margin: 2rem 0 1rem;
  border: 1px solid #ccc;
}

footer {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
  font-size: 12px;
  color: var(--black);
  background: #f9f9f9;
}
footer>p {
  text-align: center;
  margin: 0;
  font-weight: 400;
}
footer p.socialshare {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
.sns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .6rem;
  padding: .8rem;
  margin: 0 auto 2rem;
  border: 1px solid var(--gray);
  max-width: 200px;
  justify-content: center;
  justify-items: center;
}
.sns li {
  list-style: none;
  width: 100%;
}
.sns li a {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color: #0866ff;
}
#l-icon a{
  color: #00B900;
}
.f_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 200px;
  margin: 0 auto 2em;
}
.f_logo a {
  background: var(--white);
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}


/* table */
.detail {
  border-collapse: separate;
  border-spacing: 0 1rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
.detail th,
.detail td {
  padding: .5rem 1rem;
}
.detail th {
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  font-size: .9rem;
  font-weight: 500;
  border-right: 1px solid var(--gray);
}
.kikan {
  line-height: 1.4;
  margin: 0;
}
.kikan dt {
  margin: .6rem 0 .2rem;
  background: var(--black);
  color: var(--white);
  display: inline-block;
  border-radius: 4px;
  padding: .2rem 1rem;
  font-size: .8rem;
}
.kikan dt:first {
  margin-top: 0;
}
.kikan dd {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}
.kikan dd span{
  font-size: .9rem;
}

.store-td {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5em;
}
.store-wrap {
    position: relative;
    background: #fafafa;
    padding: .5em;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.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(--black);
    padding: 0;
}
@media screen and (max-width: 800px) {
  .store-td {
      grid-template-columns: 1fr;
  }
  .detail th {
    padding-left: 0;
  }
   .detail td {
    padding-right: 0;
   }
}

ul.attention {
    padding: 0;
    list-style: none;
    list-style-position: inside;
    margin: .5rem 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;
}

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