@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Asap+Condensed:wght@700&display=swap");
html {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #000;
}

input,
button,
textarea {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #121f2c;
}

p {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.65rem;
  margin-bottom: 1rem;
}

.min {
  font-size: 0.75rem;
  line-height: 1.4rem;
}

.sub {
  font-size: 0.9rem;
}

.bld {
  font-weight: bold;
}

.strong {
  font-size: 1.2em;
  font-weight: bold;
}

.head-box {
  font-family: "Asap Condensed", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 3.3rem;
  width: fit-content;
  text-align: center;
  position: relative;
  padding: 0 0.3em;
  line-height: 1em;
  color: #255ebf;
  margin: auto;
  margin-bottom: 1rem;
}
.head-box:before {
  content: "";
  width: 2px;
  height: 1em;
  background-color: #255ebf;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-25deg);
}
.head-box:after {
  content: "";
  width: 2px;
  height: 1em;
  background-color: #255ebf;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(25deg);
}
.head-box span {
  display: block;
  font-size: 1rem;
  text-align: center;
  line-height: 1rem;
}
.head-box span::before {
  content: "- ";
}
.head-box span::after {
  content: " -";
}

.sub-head {
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 800;
  background-color: #fff;
  color: #002f62;
  padding: 0.5rem;
  margin: 1rem auto 0.5rem;
  border-radius: 0.3rem 0.3rem 0 0;
}
.sub-head:first-of-type {
  margin-top: 0;
}
.sub-head span {
  font-size: 1rem;
}
.sub-head.fs-ita {
  font-style: italic;
}

.ticket-box .check {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-feature-settings: "palt";
  }
  p {
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-feature-settings: "palt";
  }
}
body {
  width: 100%;
  overflow-x: hidden;
  background-image: url(../images/body-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
body img {
  width: 100%;
  height: auto;
  display: block;
}

.text-link {
  text-decoration: underline;
  color: #f9d23a;
}
.text-link:active {
  text-decoration: none;
}
.text-link:visited {
  color: #c9a004;
}
.text-link:hover {
  text-decoration: none;
  color: #4386f8;
}
.text-link.coming {
  pointer-events: none;
  filter: grayscale(1);
}

.bnr-link {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.bnr-link:hover {
  opacity: 0.8;
}

.btn-trigger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 50px;
  height: 44px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  transform: scale(0.5);
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 20px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#nav-bt:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 84px;
  height: 84px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all 0.75s;
}
#nav-bt.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
#nav-bt.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn19-bar02 0.8s forwards;
  animation: active-btn19-bar02 0.8s forwards;
}
#nav-bt.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}
#nav-bt.active:after {
  -webkit-animation: active-btn19 0.7s 0.25s forwards;
  animation: active-btn19 0.7s 0.25s forwards;
}
@-webkit-keyframes active-btn19-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn19-bar02 {
  100% {
    height: 0;
  }
}
@-webkit-keyframes active-btn19 {
  0% {
    border-color: #fff;
    -webkit-transform: rotate(0);
  }
  25% {
    border-color: transparent #fff transparent transparent;
  }
  50% {
    border-color: transparent #fff #fff transparent;
  }
  75% {
    border-color: transparent #fff #fff #fff;
  }
  100% {
    border-color: #fff;
    -webkit-transform: rotate(-680deg);
  }
}
@keyframes active-btn19 {
  0% {
    border-color: #fff;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #fff transparent transparent;
  }
  50% {
    border-color: transparent #fff #fff transparent;
  }
  75% {
    border-color: transparent #fff #fff #fff;
  }
  100% {
    border-color: #fff;
    transform: rotate(-680deg);
  }
}

#main-nav {
  position: fixed;
  height: 100vh;
  width: 240px;
  top: 0;
  right: -240px;
  background-color: #001d3c;
  z-index: 6;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#main-nav .nav-inner {
  padding: 1rem;
  padding-top: 3rem;
}
#main-nav .nav-inner ul li a {
  font-size: 0.9rem;
  padding: 1rem;
  display: block;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#main-nav .nav-inner ul li a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
#main-nav .nav-inner ul li a:after {
  content: "";
  width: 5%;
  height: 2px;
  background-color: #f9d23a;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#main-nav .nav-inner ul li a:hover {
  letter-spacing: 0.2rem;
}
#main-nav .nav-inner ul li a:hover:after {
  width: 100%;
}
#main-nav .nav-inner ul li a.coming {
  opacity: 0.5;
  pointer-events: none;
}
#main-nav.active {
  right: 0;
}

.nav-bg {
  width: 0;
  height: 100vh;
  background-color: rgba(13, 45, 55, 0.3);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.nav-bg.active {
  width: 100%;
}

main {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

section {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0;
}

header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 34, 57, 0.6);
  z-index: 3;
}
header .header-inner {
  padding: 0.5rem;
}
header .header-inner .header-logo {
  width: 135px;
}

#page-header {
  padding-top: 100px;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgb(15, 157, 154));
  display: block;
  width: 100%;
}

.inner-wrap {
  padding: 0 1rem;
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
}

.bg-re {
  background-color: #001d3c;
  color: #fff;
}
.bg-re h2 {
  color: #fff;
}
.bg-re h2:after, .bg-re h2:before {
  background-color: #fff;
}
.bg-re h3 {
  background-color: #fff;
  color: #255ebf;
}
.bg-re * {
  color: #fff;
}

.bg-cl {
  background-color: #f3f9f8;
}

.bt {
  display: block;
  background: linear-gradient(#0196db, #00148d);
  width: calc(100% - 4rem - 4px);
  max-width: calc(500px - 4rem - 4px);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 1rem 2rem;
  margin: 1rem auto;
  border: 2px solid #fff;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.bt:hover {
  filter: brightness(1.25);
}
.bt.coming {
  filter: grayscale(1);
  pointer-events: none;
}

.bg-color {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  background: rgba(10, 25, 41, 0.8);
}

#mv {
  padding-top: 250px;
}
#mv .mv-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
#mv .mv-wrap.slide-1 {
  /* 1枚の時 */
  width: 100%;
  margin: 0 auto;
}
#mv .mv-wrap .mv-logo {
  position: absolute;
  left: 50%;
  top: -180px;
  max-width: 420px;
  transform: translateX(-50%);
  z-index: 10;
}
#mv .mv-wrap .main-logo {
  width: 100%;
  height: auto;
  max-width: 600px;
}

.mv-swiper .swiper-slide img {
  display: block;
}

.slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.archive {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.archive .archive-item {
  display: flex;
  position: relative;
  padding: 0.75em;
  background: #fff;
  color: #121f2c;
  margin-bottom: 1rem;
}
.archive .archive-item .col-l {
  width: 30%;
  max-width: 200px;
}
.archive .archive-item .col-r {
  width: 65%;
  padding-left: 1em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive .archive-item .col-r .date {
  font-size: 0.8em;
}
.archive .archive-item .col-r p {
  display: block;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.archive .archive-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.archive .archive-item:hover {
  opacity: 0.8;
}
.archive .archive-item:last-of-type::after {
  content: none;
}

#header-info {
  padding-top: 2rem;
}
#header-info .inner-wrap {
  position: relative;
  z-index: 3;
}
#header-info .date {
  max-width: 560px;
  width: 90%;
  margin: 0 auto 2rem;
}
#header-info .date span {
  display: inline-block;
  padding: 0.4em;
  font-size: 0.3em;
  font-weight: 800;
  line-height: 1em;
  vertical-align: middle;
  position: relative;
  color: #fff;
  width: 1em;
  height: 1em;
  text-align: center;
}
#header-info .date span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 1em;
}
#header-info .time {
  border: solid 2px #fff;
  width: fit-content;
  margin: auto;
  padding: 0.5em 1em;
  font-size: 2.5rem;
  border-radius: 4rem;
  margin-bottom: 1rem;
  line-height: 1em;
}
#header-info .time span {
  background: linear-gradient(#fdfbee, #ffce12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#header-info .time:before {
  content: "開催時間";
  font-size: 2rem;
  margin-right: 1rem;
  background: linear-gradient(#fdfbee, #ffce12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#header-info .place {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 2rem auto 1rem;
  border-bottom: solid 2px #fcec8c;
  padding: 1rem 1rem 0.5rem 1rem;
  display: inline-block;
}
#header-info .place .place-br {
  display: none;
}
#header-info .lagunasia-time {
  color: #255ebf;
  font-size: 1.4rem;
  font-weight: 600;
}
#header-info .lag-time-min {
  font-size: 0.75em;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 50px;
  background: #0d9d9a;
  width: fit-content;
  display: block;
  margin: 0.5em auto 0;
}

#inner-nav {
  background: #151f2b;
  padding-top: 2rem;
}
#inner-nav .inbt-wrap {
  display: flex;
  justify-content: space-around;
  max-width: 720px;
  margin: auto;
}
#inner-nav .inbt-wrap a {
  display: block;
  background-color: #255ebf;
  font-size: 0.75rem;
  position: relative;
  color: #fff;
}
#inner-nav .inbt-wrap a.coming {
  pointer-events: none;
  filter: brightness(0.5);
}
#inner-nav .inbt-wrap a .fa-icon {
  display: block;
  font-size: 2.5rem;
  width: 4.5rem;
  padding: 0.5em 0.8em 1.1em;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  margin: 0 auto;
}
#inner-nav .inbt-wrap a .fa-icon path {
  fill: #255ebf;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#inner-nav .inbt-wrap a .fa-icon-ticket {
  width: 4rem;
}
#inner-nav .inbt-wrap a span {
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  padding-bottom: 0.4rem;
}
#inner-nav .inbt-wrap a:after {
  content: "";
  height: 4%;
  background-color: #0c2c73;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
}
#inner-nav .inbt-wrap a:hover .fa-icon path {
  fill: #fff;
}
#inner-nav .inbt-wrap a:hover span {
  color: #fff;
}
#inner-nav .inbt-wrap a:hover:after {
  height: 100%;
}

.h-title {
  max-width: 510px;
  width: 100%;
  margin: 0 auto 1rem;
}

#introduction {
  padding-bottom: 200px;
  background: linear-gradient(#121f2c, #1a446e);
  position: relative;
}
#introduction::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: -1px;
  z-index: 1;
  background-image: url(../images/intro-bottom.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
#introduction .intro-head {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 4rem;
}
#introduction .intro-contents {
  position: relative;
  z-index: 2;
}
#introduction .intro-text {
  margin-bottom: 4rem;
}

#news {
  background: #151f2b;
}
#news .news-list {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 1rem;
}
#news .news-list li {
  background-color: #fff;
  padding: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #151f2b;
}
#news .news-list li .nl-date {
  font-size: 0.75rem;
}
#news .news-list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#news .news-list li:hover {
  opacity: 0.8;
}

#ticket {
  background: #151f2b;
  padding-top: 120px;
}
#ticket .ticket-type {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2em);
}
#ticket .ticket-type .type-item {
  width: 25%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 10px;
}
#ticket .ticket-box {
  margin-top: 3rem;
}
#ticket .ticket-item {
  font-family: "Noto Sans JP", sans-serif;
  background: #002f62;
  text-align: center;
  max-width: 600px;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;
}
#ticket .ticket-item .tuika-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
#ticket .ticket-item .tuika {
  color: #f9d23a;
  margin-left: 5%;
  font-size: 1.8rem;
  line-height: 1.3;
}
#ticket .ticket-item .tuika-min {
  display: block;
  font-size: 0.5em;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  #ticket .ticket-item .blink {
    animation: none;
  }
}
#ticket .ticket-item .blink {
  animation: blink 1s steps(1, end) infinite;
  display: block;
  font-size: 0.7em;
}
#ticket .ticket-item .gentei {
  color: #f9d23a;
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0;
}
#ticket .ticket-item .gentei span {
  font-size: 4rem;
  vertical-align: text-bottom;
  line-height: 1;
  padding: 0 0.2rem 0 0.5rem;
}
#ticket .ticket-item .gentei.gen {
  font-size: 1.6rem;
}
#ticket .ticket-item .gentei.gen-gray {
  color: #aaa;
  text-decoration: line-through;
  font-size: 1.2rem;
}
#ticket .ticket-item .gentei.gen-gray span {
  display: inline-block;
  text-decoration: line-through;
  font-size: 3rem;
}
#ticket .ticket-item .price-flex {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
}
#ticket .ticket-item .price-flex .col-l,
#ticket .ticket-item .price-flex .col-r {
  width: 48%;
  margin: 0 1%;
  border: solid 1px #fff;
}
#ticket .ticket-item .price-flex .col-l.col,
#ticket .ticket-item .price-flex .col-r.col {
  width: 100%;
}
#ticket .ticket-item .price-flex .col-l .head,
#ticket .ticket-item .price-flex .col-r .head {
  background: #fff;
  color: #002f62;
  padding: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}
#ticket .ticket-item .price-flex .col-l .price,
#ticket .ticket-item .price-flex .col-r .price {
  padding: 1rem 0.2rem;
  font-size: 2rem;
  font-weight: 800;
}
#ticket .ticket-item .price-flex .col-l .price .p-en,
#ticket .ticket-item .price-flex .col-r .price .p-en {
  font-size: 1.3rem;
}
#ticket .ticket-item .price-flex .col-l .price .p-zei,
#ticket .ticket-item .price-flex .col-r .price .p-zei {
  font-size: 0.8rem;
  padding-left: 5px;
}
#ticket .ticket-item .price-flex .col-l .price .p-num,
#ticket .ticket-item .price-flex .col-r .price .p-num {
  vertical-align: text-bottom;
  line-height: 1.3;
  padding: 0 0.1rem 0 0.2rem;
  font-size: 2.2rem;
}
#ticket .ticket-item .ticket-period {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#ticket .ticket-item .ticket-period.nizi {
  color: #00e252;
}
#ticket .ticket-item .ticket-period .times {
  font-size: 1.5rem;
}
#ticket .ticket-item .ticket-period-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
#ticket .ticket-item .ticket-period-flex .col-l {
  margin-right: 3%;
}
#ticket .ticket-item .ticket-period-flex .col-r {
  text-align: left;
  font-size: 0.9rem;
}
#ticket .ticket-information .bt {
  position: relative;
  margin-top: 2em;
}
#ticket .ticket-information .info-textbox {
  display: none;
  box-sizing: border-box;
  max-width: 800px;
  margin: auto;
  background: #f3f9f8;
  border: solid 1px #255ebf;
  padding: 0 1em;
  text-align: left;
  line-height: 2;
}
#ticket .ticket-information .info-textbox.active {
  display: block;
}
#ticket .ticket-information .info-t-item {
  padding: 1em 0;
  border-bottom: dashed 1px #255ebf;
}
#ticket .ticket-information .info-t-item:nth-last-of-type(1) {
  margin-bottom: 0;
  border-bottom: none;
}
#ticket .ticket-information .info-t-item ul {
  text-align: left;
  margin-bottom: 1em;
}
#ticket .ticket-information .info-t-item ul li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.25em;
}
#ticket .ticket-information .info-t-item ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
#ticket .ticket-information .info-t-item ul.square li::before {
  content: "■";
}
#ticket .ticket-information .info-title {
  font-size: 1.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-feature-settings: "palt";
  padding-bottom: 0.5em;
}
#ticket .ticket-information .info-desc {
  font-size: 0.9rem;
}
#ticket .ticket-information .info-place {
  display: block;
  padding: 1em 0;
}
#ticket .ticket-notes {
  max-width: 800px;
  margin: 60px auto 40px;
  width: 100%;
}
#ticket .ticket-notes p {
  text-align: center;
  padding-top: 1rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#ticket .ticket-notes ul {
  display: block;
  text-align: left;
  margin-bottom: 0;
  padding: 1rem;
  border: solid 2px #fff;
  text-align: left;
}
#ticket .ticket-notes ul li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.25em;
}
#ticket .ticket-notes ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

#purchase .cnpg {
  width: calc(100% - 4px);
  max-width: 596px;
  color: #fff;
  margin: 1rem auto;
  display: block;
  border: 2px solid #fff;
  border-radius: 0.25rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 3rem;
}
#purchase .cnpg:hover {
  filter: brightness(1.25);
}
#purchase .cnpg.coming {
  filter: grayscale(1);
  pointer-events: none;
}
#purchase .fm-image {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto;
}
#purchase .la-tickets-bts {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-around;
}
#purchase .la-tickets-bts .la-ticket {
  display: block;
  background-color: #d9e021;
  color: #255ebf;
  padding: 0.5rem 0.75rem;
  margin-bottom: 6px;
  border-radius: 0.3rem;
  border: 2px solid #fff;
  font-weight: 900;
  position: relative;
  width: calc(25% - 4px - 6px - 1.5rem);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#purchase .la-tickets-bts .la-ticket span {
  display: block;
  font-size: 0.75rem;
  color: #255ebf;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#purchase .la-tickets-bts .la-ticket a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#purchase .la-tickets-bts .la-ticket:hover {
  background-color: #255ebf;
  color: #d9e021;
}
#purchase .la-tickets-bts .la-ticket:hover span {
  color: #d9e021;
}
#purchase .la-tickets-bts .la-ticket.coming {
  pointer-events: none;
  filter: grayscale(1);
}
#purchase .la-tickets-bts .la-ticket:nth-of-type(1), #purchase .la-tickets-bts .la-ticket:nth-of-type(2) {
  width: calc(50% - 4px - 6px - 1.5rem);
}
#purchase .ticket-gs {
  background-color: #d9e021 !important;
  filter: grayscale(1);
  pointer-events: none;
}
#purchase .ticket-gs:hover {
  background-color: #d9e021 !important;
  color: #255ebf !important;
  filter: grayscale(1);
}
#purchase .purchase-box {
  margin-top: 40px;
}

#rule {
  background: #001d3c;
}
#rule .rule-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 1rem auto 0;
}

#topics {
  background: #151f2b;
}
#topics .topics-list {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#topics .topics-list .topics-card {
  width: calc(48% - 1rem - 4px);
  padding: 0.5rem;
  background-color: #002f62;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
  margin-bottom: 1rem;
  border: 2px solid #002f62;
}
#topics .topics-list .topics-card .topics-img {
  margin-bottom: 0.5rem;
}
#topics .topics-list .topics-card .topics-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
#topics .topics-list .topics-card .topics-desc {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#topics .topics-list .topics-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#topics .topics-list .topics-card {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#topics .topics-list .topics-card:hover {
  border-color: #fff;
}

#location {
  background: #001d3c;
}
#location .loca-list {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 2rem;
}
#location .loca-list .loca-card {
  width: calc(48% - 1rem - 4px);
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
#location .loca-list .loca-card .loca-img {
  margin-bottom: 0.5rem;
}
#location .loca-list .loca-card .loca-img a {
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
}
#location .loca-list .loca-card .loca-img a img {
  transition-duration: 0.3s;
}
#location .loca-list .loca-card .loca-img a:hover img {
  transform: scale(1.2);
}
#location .loca-list .loca-card .loca-img a.coming {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: brightness(0.5);
}
#location .loca-list .loca-card .loca-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

#participate {
  background: #001d3c;
  padding-top: 0;
}
#participate h3 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(#fdfbee, #ffce12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#participate .par-lead {
  color: #f9d23a;
}
#participate .par-img {
  max-width: 800px;
  margin: auto;
  position: relative;
  margin: 1rem auto;
  background-color: #fff;
}
#participate .par-img.coming {
  filter: brightness(0.5);
}
#participate .par-img.participate-img {
  max-width: 500px;
}
#participate .par-img a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#participate .par-img a.coming {
  pointer-events: none;
}

#contact {
  padding-top: 120px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  background: rgba(10, 25, 41, 0.8);
  color: #fff;
}
#contact .contact-header {
  width: calc(100% - 2em);
  margin: auto;
  text-align: left;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2em;
}
#contact .contact-header:after {
  content: "";
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #f9d23a;
}
#contact .contact-header h2 {
  padding: 0;
  text-align: left;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 0.5rem;
  width: 100%;
  color: #f9d23a;
}
#contact .contact-header h2:before, #contact .contact-header h2:after {
  content: none;
}
#contact .contact-header .upload-date {
  color: #aaa;
  font-size: 0.75rem;
}
#contact strong {
  font-weight: 800;
}
#contact .form-box {
  text-align: left;
  max-width: 700px;
  margin: 40px auto;
}
#contact .form-box .notice {
  background: #002f62;
  padding: 1em;
  margin: 1em auto;
  width: calc(100% - 2em);
}
#contact .form-box .notice img {
  max-width: 280px;
  margin: 1em auto 0;
  width: 90%;
}
#contact .form-box .label-box {
  margin-bottom: 1em;
}
#contact .form-box .form-head {
  padding-left: 1.2em;
  position: relative;
}
#contact .form-box .form-head .ast {
  font-size: 0.8rem;
  color: #f9d23a;
  position: absolute;
  top: -5px;
  left: auto;
}
#contact .form-box .form-head::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
  width: 0.8em;
  height: 0.8em;
  background: #f9d23a;
}
#contact .form-box .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 2rem;
}
#contact .form-box .wpcf7-not-valid-tip {
  color: #f9d23a;
}
#contact .form-box label {
  margin: 1em 0;
  display: block;
}
#contact .form-box input[type=text],
#contact .form-box input[type=email],
#contact .form-box input[type=url],
#contact .form-box input[type=tel] {
  width: calc(100% - 2em - 2px);
  padding: 1em;
  border: solid 1px #fff;
  background: #fff;
}
#contact .form-box textarea {
  padding: 1em;
  border: solid 1px #fff;
  display: block;
  width: calc(100% - 2em - 2px);
  background: #fff;
}
#contact .form-box input[type=submit] {
  display: block;
  background: linear-gradient(#0196db, #00148d);
  width: calc(100% - 4rem - 4px);
  max-width: calc(500px - 4rem - 4px);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1rem 2rem;
  margin: 1rem auto;
  border: 2px solid #fff;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
#contact .form-box input[type=submit]:hover {
  filter: brightness(1.25);
}
#contact .form-box .check-box-wrap {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  user-select: none;
  width: fit-content;
}
#contact .form-box .check-box-wrap label {
  display: flex;
  align-items: center;
  width: fit-content;
}
#contact .form-box .check-box-wrap label a {
  margin-left: 5px;
  display: inline-block;
}
#contact .form-box .check-box-wrap input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 3px;
  position: relative;
  transition-duration: 0.3s;
  cursor: pointer;
}
#contact .form-box .check-box-wrap input[type=checkbox]::after {
  transition-duration: 0.3s;
}
#contact .form-box .check-box-wrap input[type=checkbox]:checked {
  background-color: #f9d23a;
  border-color: #f9d23a;
}
#contact .form-box .check-box-wrap input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#contact .form-box .check-box-wrap input[type=checkbox]:focus-visible {
  outline: 2px solid #f2a549;
  outline-offset: 2px;
}
#contact .form-box .check-box-wrap .wpcf7-list-item-label {
  line-height: 1.4;
  color: #333;
}
#contact .form-box .check-box-wrap .wpcf7-list-item {
  margin-left: 0;
}

.is-single {
  background-image: url(../images/body-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#page {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 0;
  padding-top: 0;
}
#page .inner-wrap {
  background: rgba(10, 25, 41, 0.8);
  padding: 6em 1em 4em;
}
#page .contents-img {
  margin-bottom: 2rem;
}
#page .contents-desc {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2em;
}
#page .contents-header {
  width: calc(100% - 2em);
  margin: auto;
  text-align: left;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2em;
}
#page .contents-header:after {
  content: "";
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #f9d23a;
}
#page .contents-header .upload-date {
  color: #aaa;
  font-size: 0.75rem;
}
#page h2 {
  padding: 0;
  text-align: left;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 0.5rem;
  width: 100%;
  color: #f9d23a;
}
#page h2:before, #page h2:after {
  content: none;
}
#page .contents-wrap {
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin: auto;
  margin-bottom: 3rem;
}
#page .contents-wrap h3 {
  border-radius: 0;
  width: calc(100% - 1.5em);
  text-align: left;
  font-size: 1.2rem;
  text-wrap: wrap;
  padding: 0.5em;
  padding-left: 1em;
  background-color: #f9d23a;
  color: #001d3c;
  margin-bottom: 0.5em;
  position: relative;
  margin: 2em 0 1em;
  font-weight: 600;
}
#page .contents-wrap h3:after {
  content: "";
  width: 3px;
  height: 100%;
  display: block;
  background-color: #001d3c;
  position: absolute;
  top: 0;
  left: 0.2rem;
}
#page .contents-wrap p {
  font-size: 1rem;
  font-weight: 500;
}
#page .contents-wrap h4 {
  border-radius: 0;
  background: #f9d23a;
  font-weight: 600;
  padding: 0.5em;
  margin: 2em auto 1em;
  width: calc(100% - 1em);
  color: #001d3c;
}
#page .contents-wrap a {
  color: #f9d23a;
  text-decoration: underline;
}
#page .contents-wrap a:visited {
  color: #c9a004;
}
#page .contents-wrap a:hover {
  text-decoration: none;
}
#page .contents-wrap .bt {
  color: #fff;
  text-decoration: none;
}
#page .contents-wrap .bt:visited {
  color: #fff;
}
#page ul li,
#page ol li {
  padding-left: 1em;
  position: relative;
  z-index: 0;
  margin-bottom: 1em;
  margin-left: 1em;
}
#page ul li:after,
#page ol li:after {
  content: "・";
  left: 0;
  top: 0;
  position: absolute;
}
#page ul li ul,
#page ul li ol,
#page ol li ul,
#page ol li ol {
  background: #eee;
  padding: 0.5em;
  margin-top: 0.5em;
}
#page ul li ul li,
#page ul li ol li,
#page ol li ul li,
#page ol li ol li {
  margin-left: 0;
  margin-bottom: 0.5em;
}
#page ul li ul li:after,
#page ul li ol li:after,
#page ol li ul li:after,
#page ol li ol li:after {
  content: "▶︎";
  background: initial;
  font-size: 0.5em;
  top: 1em;
  width: initial;
  height: initial;
}
#page .area-image-box {
  display: flex;
  flex-flow: wrap;
}
#page .area-image-box a {
  width: 31%;
  margin: 1%;
  cursor: pointer;
  overflow: hidden;
}
#page .area-image-box a img {
  aspect-ratio: 5/3;
  object-fit: cover;
  transition-duration: 0.3s;
}
#page .area-image-box a img:hover {
  transform: scale(1.2);
}
#page .bt {
  text-align: center;
}

#map {
  background: #151f2b;
}
#map .map-img iframe {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
}
#map .map-img img {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
}
#map .map-img.coming {
  filter: brightness(0.5);
}
#map .place {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 1rem auto;
  border-bottom: solid 2px #fcec8c;
  padding: 1rem 1rem 0.5rem 1rem;
  display: inline-block;
}

#access {
  background: #001d3c;
}
#access iframe {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
}
#access .access-coming {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  filter: brightness(0.5);
}

#info {
  background: #fff;
  padding: 2rem 0;
}
#info .info-img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  margin-top: 2rem;
}
#info .powerd {
  max-width: 720px;
  margin: 1em auto;
  color: #121f2c;
}
#info .powerd .powered-flex {
  display: flex;
  align-items: center;
}
#info .powerd .powered-flex a {
  display: block;
  position: relative;
  padding: 0 20px;
  width: calc(32% - 40px);
  margin: 1%;
}
#info .powerd .powered-flex a:first-of-type {
  border-right: solid 2px #121f2c;
}
#info .powerd .powered-flex a:last-of-type {
  border-left: solid 2px #121f2c;
}

footer {
  background: linear-gradient(#151f2b, #203952);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}
footer::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 9;
  background-image: url(../images/intro-bottom.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
footer .ft-wrap {
  position: relative;
  z-index: 10;
}
footer .footer-bt {
  margin-bottom: 2rem;
}
footer .footer-bt a {
  background-color: #18324b;
  color: #fff;
  padding: 1rem;
  width: calc(100% - 2rem);
  height: auto;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
footer .footer-bt a:hover {
  filter: brightness(1.2);
}
footer .footer-bt a.coming {
  pointer-events: none;
  opacity: 0.5;
}
footer .ft-bnr {
  max-width: 500px;
  width: calc(100% - 2em);
  margin: 3rem auto;
}
footer .footer-sns {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
footer .footer-sns .fs-hl {
  margin-bottom: 0;
  font-size: 0.75rem;
  padding: 0.5em 0.5em 0.5em 0.5em;
  border-radius: 2em;
  display: block;
  margin: auto;
  width: fit-content;
}
footer .footer-sns .fs-icons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
}
footer .footer-sns .fs-icons.coming {
  opacity: 0.5;
  pointer-events: none;
}
footer .footer-sns .fs-icons a {
  display: block;
  margin: 0.5em;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
footer .footer-sns .fs-icons a .fa-icon {
  display: block;
  font-size: 2.7rem;
  width: 2.5rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
footer .footer-sns .fs-icons a .fa-icon path {
  fill: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
footer .footer-sns .fs-icons a .fa-icon-yt {
  width: 3rem;
}
footer .footer-sns .fs-icons a:hover {
  opacity: 0.6;
}
footer .footer-link {
  color: #fff;
  text-align: center;
}
footer .footer-link a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}
footer .credit {
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 2rem;
}

.ac-link-box {
  margin-bottom: 2em;
}
.ac-link-box .ac-link-list {
  max-width: 300px;
  width: 100%;
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 0.75em;
}
.ac-link-box .ac-link-list .link-item {
  margin-top: 0.5em;
}
.ac-link-box .ac-link-list .link-item a {
  color: white;
  text-decoration: underline;
  transition: all 0.3s linear;
}
.ac-link-box .ac-link-list .link-item a:hover {
  color: #f9d23a;
}

@media screen and (max-width: 900px) {
  #mv {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  #mv .mv-wrap .mv-logo {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
    max-width: 400px;
  }
}
@media screen and (max-width: 600px) {
  header .header-inner .header-logo {
    width: 100px;
  }
  #mv {
    /* height: 65vh;
    height: 65dvh; */
    height: auto;
    padding-top: 80px;
  }
  #mv .mv-wrap {
    padding-top: 20px;
  }
  #mv .mv-wrap .mv-logo {
    display: none;
  }
  .bt {
    font-size: 1rem;
  }
  #header-info {
    padding-top: 0;
  }
  #header-info .time {
    box-sizing: border-box;
    width: 100%;
    font-size: 2rem;
  }
  #header-info .time:before {
    display: block;
    margin-right: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  #header-info .place .place-br {
    display: block;
  }
  #introduction {
    padding-bottom: 120px;
  }
  #ticket {
    padding-top: 60px;
  }
  #topics .topics-list .topics-card {
    width: calc(100% - 1rem);
  }
  #location .loca-list .loca-card {
    width: calc(100% - 1rem);
  }
  #inner-nav {
    padding-bottom: 0;
  }
  #inner-nav .inbt-wrap {
    flex-wrap: wrap;
    max-width: 480px;
  }
  #inner-nav .inbt-wrap a {
    width: 45%;
    margin-bottom: 5%;
  }
  #inner-nav .inbt-wrap a i {
    font-size: 3.5rem;
    width: 4rem;
    margin: auto;
    padding: 0.6em 0.8em 1em;
  }
  #ticket .ticket-type {
    flex-wrap: wrap;
    width: 100%;
  }
  #ticket .ticket-type .type-item {
    width: 48%;
    margin: 1%;
  }
  #ticket .ticket-information .info-title {
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-feature-settings: "palt";
  }
  #ticket .ticket-information .info-desc {
    font-size: 12px;
  }
  #ticket .ticket-box .schedule-check .sp {
    display: block;
  }
  #purchase .la-tickets-bts .la-ticket {
    width: calc(50% - 4px - 6px - 1.5rem);
  }
  #info .powerd .powered-flex a {
    padding: 0 10px;
    width: calc(32% - 20px);
  }
  .is-single #info {
    margin-top: 0;
  }
  #page {
    padding-top: 80px;
  }
  #page .inner-wrap {
    padding: 2em 1em 4em;
  }
}

/*# sourceMappingURL=style.css.map */
