/* -------------------------------------------

header

------------------------------------------- */
header {
  background: #1d2083;
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  height: 8rem;
  padding-left: 3rem;
}
header span {
  position: fixed;
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  width: 20rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    padding-left: 1.2rem;
    background: rgba(29, 32, 131, 0.8);
  }
}
/* -------------------------------------------

kv

------------------------------------------- */
@media screen and (max-width: 768px) {
  .kv {
    margin-top: -8rem;
  }
}
/* -------------------------------------------

movie

------------------------------------------- */
.movie {
  padding: 12rem 0 20rem 0;
}
.movie .wrap {
  background: #000;
}
.movie .wrap video {
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 768px) {
  .movie {
    padding: 12rem 0;
  }
}
/* -------------------------------------------

message

------------------------------------------- */
.message {
  padding: 8rem 0;
  background: url(../img/message-bg.jpg) no-repeat center/cover;
}
.message h2 {
  color: #fff;
}
.message h2 span {
  border-bottom: solid 0.8rem #fff;
}
.message .wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.message .wrap > figure {
  width: 42%;
}
.message .wrap > div {
  width: 58%;
  padding-right: 6rem;
}
.message .wrap > div h3 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}
.message .wrap > div p span {
  display: block;
  margin-top: 3rem;
  width: 14rem;
}

@media screen and (max-width: 768px) {
  .message {
    padding: 10rem 3rem;
  }
  .message h2 {
    color: #fff;
  }
  .message h2 span {
    border-bottom: solid 0.8rem #fff;
  }
  .message .wrap {
    flex-direction: column;
  }
  .message .wrap > figure {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .message .wrap > div {
    width: 100%;
    padding-right: 0;
  }
}
/* -------------------------------------------

slide

------------------------------------------- */
.slide {
  padding-bottom: 2.5rem;
}
.slide .swiper-wrapper {
  transition-timing-function: linear;
}

/* -------------------------------------------

info

------------------------------------------- */
.info {
  padding: 12rem 0;
}
.info ul {
  margin-bottom: 6rem;
}
.info ul li {
  border-bottom: solid 0.1rem #ccc;
}
.info ul li a {
  color: #ccc;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
.info ul li a span:nth-child(1) {
  width: 15rem;
}
.info ul li a span:nth-child(2) {
  width: calc(100% - 15rem);
}
.info .more-wrap {
  display: flex;
  justify-content: center;
}
.info .more-wrap a {
  width: 17rem;
  height: 5.2rem;
  border: solid 0.3rem #ccc;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-weight: bold;
}
.info .more-wrap a:hover {
  opacity: 1;
  background: #ccc;
  color: #1d2083;
}

@media screen and (max-width: 768px) {
  .info {
    padding: 10rem 3rem;
  }
  .info ul li a {
    flex-direction: column;
  }
  .info ul li a span:nth-child(1) {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .info ul li a span:nth-child(2) {
    width: 100%;
  }
}
/* -------------------------------------------

game

------------------------------------------- */
.game {
  background: url(../img/game-bg.jpg) no-repeat center/cover;
  padding: 8rem 0;
}
.game h2 {
  margin-bottom: 5rem;
  border-bottom: solid 0.3rem #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 800;
}
.game h2 .en {
  color: #0097D2;
  font-size: 1.7rem;
}
.game h2 .jp {
  font-size: 4.2rem;
  margin: 1rem 0 1.5rem 0;
}
.game > div {
  width: 60rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .game {
    padding: 8rem 3rem;
  }
  .game > div {
    width: 100%;
  }
}
/* -------------------------------------------

gallery

------------------------------------------- */
.gallery {
  padding: 12rem 0;
}
.gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery ul li {
  width: calc((100% - 3rem) / 4);
}
.gallery ul li img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .gallery {
    padding: 10rem 3rem;
  }
  .gallery ul li {
    width: calc((100% - 2rem) / 3);
  }
}
/* -------------------------------------------

member

------------------------------------------- */
.member {
  padding: 12rem 0;
  background: #fff;
  color: #000;
}
.member h2 {
  color: #1d2083;
}
.member h2 span {
  border-bottom: solid 0.8rem #1d2083;
}
.member .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.member .wrap > dl {
  width: 45%;
}
.member .wrap > dl > dt {
  font-weight: bold;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
.member .wrap > dl > dd ul li:first-child {
  border-top: solid 0.1rem #000;
}
.member .wrap > dl > dd ul li {
  border-bottom: solid 0.1rem #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  font-size: 1.5rem;
}
.member .wrap > dl > dd ul li .pos {
  width: 20%;
}
.member .wrap > dl > dd ul li .num {
  width: 20%;
}
.member .wrap > dl > dd ul li .mem {
  width: 60%;
}
.member .wrap > dl > dd ul li.coming {
  display: flex;
  justify-content: center;
  color: #A6A6A6;
}
.member p {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .member {
    padding: 10rem 3rem;
  }
  .member .wrap {
    flex-direction: column;
    gap: 5rem;
  }
  .member .wrap > dl {
    width: 100%;
  }
  .member .wrap > dl > dt {
    margin-bottom: 2rem;
  }
}
/* -------------------------------------------

emblem

------------------------------------------- */
.emblem {
  padding-top: 12rem;
}
.emblem .wrap {
  width: 64rem;
  margin: 0 auto 8rem auto;
  display: flex;
  align-items: center;
}
.emblem .wrap > figure {
  width: 42%;
}
.emblem .wrap > div {
  width: 58%;
  padding-left: 4rem;
  color: #ccc;
}
.emblem h3 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.emblem section figure {
  position: relative;
  padding: 6rem 0 3rem 0;
  background: #D9D9D9;
}
.emblem section figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.6rem;
  background: #000;
  color: #ccc;
  padding: 0.4rem 1.5rem;
}
.emblem section figure img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.emblem section figure:nth-of-type(1) {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .emblem {
    padding-top: 10rem;
  }
  .emblem .wrap {
    padding: 0 3rem;
    width: 100%;
    margin: 0 auto 6rem auto;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .emblem .wrap > figure {
    width: 70%;
  }
  .emblem .wrap > div {
    width: 100%;
    padding-left: 0;
  }
  .emblem section {
    padding: 0 3rem;
  }
  .emblem section figure {
    padding: 5rem 0 1.5rem 0;
  }
  .emblem section figure img {
    width: 90%;
  }
}
/* -------------------------------------------

ticket

------------------------------------------- */
.ticket {
  padding: 12rem 0;
}
.ticket figure {
  margin-bottom: 4rem;
}
.ticket .more-wrap {
  margin: 8rem 0;
}
.ticket dl dt {
  margin-bottom: 1rem;
}
.ticket dl ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ticket dl ul li {
  margin-left: 1.5rem;
  list-style: disc;
}

.table-wrap table {
  border: solid 0.13rem #ccc;
  width: 100%;
  border-collapse: collapse;
}
.table-wrap table thead th:nth-of-type(1) {
  width: 40rem;
}
.table-wrap table thead th:nth-of-type(2) {
  width: 12rem;
}
.table-wrap table thead th:nth-of-type(3) {
  width: 12rem;
}
.table-wrap table thead th:nth-of-type(4) {
  width: 24rem;
}
.table-wrap table th {
  background: #333;
}
.table-wrap table td {
  color: #000;
  background: #fff;
  text-align: center;
  position: relative;
}
.table-wrap table th, .table-wrap table td {
  border: solid 0.13rem #ccc;
  padding: 1rem;
  vertical-align: middle;
}
.table-wrap table .left {
  text-align: left;
}
.table-wrap table .em {
  font-weight: bold;
  color: #B21A1A;
}
.table-wrap table .adv {
  padding-left: 13rem;
}
.table-wrap table .ss-reserve,
.table-wrap table .s-reserve-n,
.table-wrap table .s-reserve-s,
.table-wrap table .sa-reserve-n,
.table-wrap table .sa-reserve-s {
  padding: 1rem 1rem 1rem 2.5rem;
}
.table-wrap table .ss-reserve::before,
.table-wrap table .s-reserve-n::before,
.table-wrap table .s-reserve-s::before,
.table-wrap table .sa-reserve-n::before,
.table-wrap table .sa-reserve-s::before {
  content: "";
  width: 1.5rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.table-wrap table .ss-reserve::before {
  background: #FFE500;
}
.table-wrap table .s-reserve-n::before {
  background: #008402;
}
.table-wrap table .s-reserve-s::before {
  background: #FF6F00;
}
.table-wrap table .sa-reserve-n::before {
  background: #002FFF;
}
.table-wrap table .sa-reserve-s::before {
  background: #FF70A4;
}
.table-wrap table .bg {
  background: #F0F0F0;
}
.table-wrap table tr.bg td {
  background: #F0F0F0;
}

@media screen and (max-width: 768px) {
  .ticket {
    padding: 10rem 3rem;
  }
  .ticket .more-wrap {
    margin: 4rem 0;
  }
  .table-wrap table {
    border: solid 0.13rem #ccc;
    width: 100%;
    border-collapse: collapse;
  }
  .table-wrap table th, .table-wrap table td {
    white-space: nowrap;
    font-size: 1.3rem;
  }
  .table-wrap table .adv {
    padding-left: 0;
  }
}
/* -------------------------------------------

event

------------------------------------------- */
.event {
  padding: 12rem 0;
}
.event ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event ul li {
  width: 100%;
}
.event ul li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .event {
    padding: 10rem 3rem;
  }
}

/* -------------------------------------------

goods

------------------------------------------- */
.goods {
  padding: 12rem 0;
}
.goods ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}
.goods ul li figure {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  aspect-ratio: 300/260;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.goods ul li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.goods ul li p {
  text-align: center;
  font-size: 1.4rem;
  color: #ccc;
}
.goods .more-wrap {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .goods {
    padding: 10rem 3rem;
  }
  .goods ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

/* -------------------------------------------

partner / supplier

------------------------------------------- */
.partner {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.supplier {
  padding-bottom: 18rem;
}

.partner h2,
.supplier h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.partner ul,
.supplier ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.partner ul li,
.supplier ul li {
  width: calc((100% - 3rem) / 3);
}

@media screen and (max-width: 768px) {
  .supplier {
    padding-bottom: 10rem;
  }
  .partner,
  .supplier {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .partner ul,
  .supplier ul {
    gap: 1.5rem;
  }
  .partner ul li,
  .supplier ul li {
    width: calc((100% - 1.5rem) / 2);
  }
}
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  background: url(../img/footer-bg.jpg) no-repeat center/cover;
  padding: 5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
}
footer .logo {
  width: 15rem;
}
footer .sns {
  display: flex;
  line-height: 1;
  justify-content: center;
  margin: 3.5rem 0;
  gap: 1.5rem;
}
footer .sns a {
  color: #000;
  font-size: 3.2rem;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */