@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =16px */
  line-height: 1.6;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #14294C;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  body {
    font-size: 4vw;
  }
}
@media screen and (max-width: 950px) {
  body.on {
    overflow: hidden;
  }
}

.font-en {
  font-family: "Unbounded", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 981px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 980px) {
  .pc {
    display: none !important;
  }
}
.bg-line-top {
  background: repeating-linear-gradient(to right, #14294C 0px, #14294C 7px, transparent 7px, transparent 14px);
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translateY(50%);
  z-index: 10;
}
@media screen and (max-width: 950px) {
  .bg-line-top {
    background: repeating-linear-gradient(to right, #14294C 0px, #14294C 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
    height: 2.6666666667vw;
  }
}

.bg-line-bottom {
  background: repeating-linear-gradient(to right, #14294C 0px, #14294C 7px, transparent 7px, transparent 14px);
  width: 100%;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 950px) {
  .bg-line-bottom {
    background: repeating-linear-gradient(to right, #14294C 0px, #14294C 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
    height: 2.6666666667vw;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 50px);
  height: calc(100% - 80px);
}
@media screen and (max-width: 950px) {
  .modal__body {
    max-width: 85vw;
    max-height: calc(100vh - 16vw);
  }
}
.modal__body-inner {
  width: 1000px;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  overflow: auto;
  display: grid;
  place-items: center;
}
.modal__close {
  display: block;
  color: #FF5E14;
  font-size: 2.4rem;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}
@media screen and (max-width: 950px) {
  .modal__close {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.modal__link {
  display: block;
}
@media (any-hover: hover) {
  .modal__link:hover {
    opacity: 1;
    filter: brightness(0.85);
  }
}

.mv {
  position: relative;
  z-index: 30;
}
.mv__nav {
  position: absolute;
  bottom: min(2.7777777778vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 min(4.1666666667vw, 60px);
  background-color: #fff;
  border: 3px solid #14294C;
  border-radius: 50px;
}
@media screen and (max-width: 950px) {
  .mv__nav {
    position: fixed;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    left: auto;
    bottom: auto;
    transform: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
  }
}
@media screen and (max-width: 950px) {
  .mv__btn {
    width: 10.6666666667vw;
    height: 5.3333333333vw;
    position: relative;
    z-index: 10;
    transition: opacity 0.3s;
    opacity: 0;
  }
}
@media screen and (max-width: 950px) {
  .mv__btn.active {
    opacity: 1;
  }
}
@media screen and (max-width: 950px) {
  .mv__btn.on .--line:first-of-type {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
  }
}
@media screen and (max-width: 950px) {
  .mv__btn.on .--line:nth-of-type(2) {
    opacity: 0;
    transform: translate(50%, -50%);
  }
}
@media screen and (max-width: 950px) {
  .mv__btn.on .--line:last-of-type {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
@media screen and (max-width: 950px) {
  .mv__btn .--line {
    width: 10.6666666667vw;
    height: 0.8vw;
    background-color: #14294C;
    position: absolute;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
  }
}
@media screen and (max-width: 950px) {
  .mv__btn .--line:first-of-type {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 950px) {
  .mv__btn .--line:nth-of-type(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 950px) {
  .mv__btn .--line:last-of-type {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 951px) {
  .mv__menu {
    display: block !important;
  }
}
@media screen and (max-width: 950px) {
  .mv__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    z-index: 5;
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .mv__menu > div {
    display: grid;
    place-items: center;
    height: 100%;
  }
}
.mv__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .mv__list {
    display: block;
    overflow: auto;
  }
}
.mv__list li:not(:first-of-type) {
  position: relative;
}
.mv__list li:not(:first-of-type)::after {
  content: "";
  width: min(0.4166666667vw, 6px);
  height: min(0.4166666667vw, 6px);
  background-color: #93D721;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 950px) {
  .mv__list li:not(:first-of-type)::after {
    width: 1.6vw;
    height: 1.6vw;
    top: 0;
    left: 50%;
    transform: translate(0, -50%);
  }
}
.mv__list a {
  display: block;
  padding: min(1.3888888889vw, 20px);
  font-weight: 900;
  font-size: min(1.1111111111vw, 1.6rem);
}
@media screen and (max-width: 950px) {
  .mv__list a {
    font-size: 4.2666666667vw;
    padding: 4vw 2.6666666667vw;
    text-align: center;
  }
}

section {
  padding: 140px 0;
}
@media screen and (max-width: 950px) {
  section {
    padding: 16vw 0;
  }
}

.bg-green {
  background-image: url("../images/main-bg.webp");
  background-repeat: repeat;
  background-size: 1368px 366px;
}
@media screen and (max-width: 950px) {
  .bg-green {
    background-image: url("../images/main-bg-sp.webp");
    background-size: 100% auto;
  }
}

.bg-blue {
  background-image: url("../images/bg-blue.webp");
  background-repeat: repeat;
  background-size: 304px 459px;
}
@media screen and (max-width: 950px) {
  .bg-blue {
    background-image: url("../images/bg-blue-sp.webp");
    background-size: 100% auto;
  }
}

.section-top .inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10.9375%;
}
@media screen and (max-width: 950px) {
  .section-top .inner {
    flex-direction: column;
    gap: 8vw;
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.section-top .inner > div {
  width: 46.875%;
}
@media screen and (max-width: 950px) {
  .section-top .inner > div {
    width: 100%;
  }
}
.section-top .inner > img {
  width: 42.109375%;
}
@media screen and (max-width: 950px) {
  .section-top .inner > img {
    width: 100%;
  }
}
.section-top__movie {
  max-width: 560px;
  aspect-ratio: 560/315;
  margin: 0 auto;
}
.section-top__movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-top__title {
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 950px) {
  .section-top__title {
    font-size: 6.6666666667vw;
  }
}
.section-top p {
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 950px) {
  .section-top p {
    margin-top: 5.3333333333vw;
  }
}
.section-top p:first-of-type {
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .section-top p:first-of-type {
    margin-top: 8vw;
  }
}

.section-title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 950px) {
  .section-title {
    font-size: 4vw;
  }
}
.section-title .--top {
  display: block;
  line-height: 1.25;
  font-size: 4.8rem;
  font-weight: 900;
}
@media screen and (max-width: 950px) {
  .section-title .--top {
    font-size: 9.6vw;
  }
}

.about {
  position: relative;
}
.about .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 950px) {
  .about .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.about__body {
  margin-top: 42px;
}
@media screen and (max-width: 950px) {
  .about__body {
    margin-top: 10.6666666667vw;
  }
}
.about__body dl {
  border: 1px solid #929292;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .about__body dl {
    border-radius: 5.3333333333vw;
  }
}
.about__body dl > div {
  display: flex;
}
@media screen and (max-width: 950px) {
  .about__body dl > div {
    display: block;
  }
}
.about__body dl > div:not(:first-of-type) {
  border-top: 1px solid #929292;
}
.about__body dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  flex: 0 0 auto;
  background-color: #14294C;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .about__body dl dt {
    width: 100%;
    padding: 2.6666666667vw;
  }
}
.about__body dl dd {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 950px) {
  .about__body dl dd {
    padding: 3.7333333333vw 4.2666666667vw;
    font-size: 4vw;
    text-align: center;
  }
}
.about__body dl dd .--gray {
  display: block;
  font-size: 1.4rem;
  color: #929292;
  margin-top: 5px;
}
@media screen and (max-width: 950px) {
  .about__body dl dd .--gray {
    font-size: 3.2vw;
    margin-top: 0.5333333333vw;
    text-align: left;
  }
}
@media screen and (max-width: 950px) {
  .about__body dl dd.sp-left {
    text-align: left;
  }
}
.about__body dl dd a {
  text-decoration: underline;
}

.guest .inner {
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .guest .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.guest__title {
  text-align: center;
  font-size: 3.8rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  .guest__title {
    font-size: 8vw;
    margin-bottom: 10.6666666667vw;
  }
}
.guest__body {
  display: flex;
  align-items: flex-end;
  gap: 5.8823529412%;
}
@media screen and (max-width: 950px) {
  .guest__body {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6.6666666667vw 8.9552238806%;
  }
}
.guest__item {
  width: 29.4117647059%;
  padding-bottom: 34px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .guest__item {
    width: 45.5223880597%;
    padding-bottom: 4.5333333333vw;
  }
}
.guest__item-top {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 950px) {
  .guest__item-top {
    margin-bottom: 1.0666666667vw;
    font-size: 4.8vw;
  }
}
.guest__item-top .--top {
  display: block;
  font-weight: 900;
  font-size: 3.6rem;
}
@media screen and (max-width: 950px) {
  .guest__item-top .--top {
    font-size: 4.2666666667vw;
  }
}
.guest__img {
  width: 93.3333333333%;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .guest__img {
    width: 38.9333333333vw;
  }
}
.guest__btn {
  display: block;
  width: 100%;
  padding: 18px 70px 18px 70px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  background-color: #FF5E14;
  border-radius: 60px;
  border: 3px solid #14294C;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 950px) {
  .guest__btn {
    padding: 0.8vw 6.6666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 16vw;
    border: 0.5333333333vw solid #FF5E14;
  }
}
@media (any-hover: hover) {
  .guest__btn:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
}
.guest__btn .--icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #14294C;
  border: 3px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 950px) {
  .guest__btn .--icon {
    width: 6.4vw;
    height: 6.4vw;
    right: 1.0666666667vw;
    border: 0.5333333333vw solid #fff;
  }
}
.guest__btn .--icon::before, .guest__btn .--icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
.guest__btn .--icon::before {
  width: 3px;
  height: 18px;
}
@media screen and (max-width: 950px) {
  .guest__btn .--icon::before {
    width: 0.5333333333vw;
    height: 2.4vw;
  }
}
.guest__btn .--icon::after {
  width: 18px;
  height: 3px;
}
@media screen and (max-width: 950px) {
  .guest__btn .--icon::after {
    width: 2.4vw;
    height: 0.5333333333vw;
  }
}

.modal-prof {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: none;
}
.modal-prof__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-prof__body {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 950px) {
  .modal-prof__body {
    width: 93.3333333333vw;
  }
}
.modal-prof__body > div {
  width: 100%;
  max-height: 95vh;
  overflow: auto;
  height: 100%;
  padding: 40px 20px;
  border-radius: 40px;
  background-color: #fff;
  border: 6px solid #FF5E14;
}
@media screen and (max-width: 950px) {
  .modal-prof__body > div {
    max-height: calc(100vh - 24vw);
    max-height: calc(100dvh - 24vw);
    padding: 10.6666666667vw 4vw;
    border-radius: 5.3333333333vw;
    border: 0.8vw solid #FF5E14;
  }
}
.modal-prof__body > div img {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .modal-prof__body > div img {
    max-width: 53.3333333333vw;
  }
}
.modal-prof__body > div .--name {
  font-weight: bold;
  font-size: 2rem;
  margin: 10px 0 20px;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .modal-prof__body > div .--name {
    font-size: 5.3333333333vw;
    margin: 2.6666666667vw 0 5.3333333333vw;
  }
}
.modal-prof__body > div .--top {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 950px) {
  .modal-prof__body > div .--top {
    font-size: 3.7333333333vw;
  }
}
.modal-prof__body > div .--text {
  font-size: 1.6rem;
}
@media screen and (max-width: 950px) {
  .modal-prof__body > div .--text {
    font-size: 3.7333333333vw;
  }
}
.modal-prof__close {
  font-size: 2rem;
  font-weight: bold;
  color: #FF5E14;
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
}
@media screen and (max-width: 950px) {
  .modal-prof__close {
    font-size: 4.8vw;
    left: auto;
    right: 1.3333333333vw;
    top: auto;
    bottom: calc(100% + 1.3333333333vw);
  }
}

.event {
  position: relative;
}
.event .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 950px) {
  .event .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.event__item {
  margin-top: 20px;
  border: 8px solid #14294C;
  border-radius: 40px;
  background-color: #fff;
  padding: 60px 10.9090909091%;
  font-size: 1.8rem;
}
@media screen and (max-width: 950px) {
  .event__item {
    margin-top: 5.3333333333vw;
    border: 1.0666666667vw solid #14294C;
    padding: 8vw 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.event__item:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  .event__item:first-of-type {
    margin-top: 10.6666666667vw;
  }
}
.event__item a {
  text-decoration: underline;
}
.event h3 {
  font-weight: 900;
  font-size: min(2.9090909091vw, 3.2rem);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .event h3 {
    font-size: 5.3333333333vw;
    flex-direction: column;
    letter-spacing: -0.02em;
    text-align: center;
  }
}
.event h3 .--num {
  font-size: min(4.3636363636vw, 4.8rem);
  color: #FF5E14;
  margin-right: 30px;
}
@media screen and (max-width: 950px) {
  .event h3 .--num {
    font-size: 8vw;
    margin-right: 0;
  }
}
.event h3 .--small {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-left: 10px;
}
@media screen and (max-width: 950px) {
  .event h3 .--small {
    font-size: 3.2vw;
    margin-top: 1.3333333333vw;
  }
}
.event .large-text {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .event .large-text {
    font-size: 5.3333333333vw;
  }
}
.event .line-dashed {
  width: 100%;
  height: 3px;
  margin: 40px 0;
  background: repeating-linear-gradient(to right, #14294C 0px, #14294C 5px, transparent 5px, transparent 10px);
}
@media screen and (max-width: 950px) {
  .event .line-dashed {
    margin: 8vw 0;
  }
}
.event .text-indent {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 950px) {
  .event .text-indent {
    font-size: 4.2666666667vw;
  }
}
.event .text-indent.--small {
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 950px) {
  .event .text-indent.--small {
    font-size: 3.7333333333vw;
  }
}
.event .text-indent .--dot-orange {
  color: #FF5E14;
}
.event .text-indent .--gray {
  color: #929292;
}
@media screen and (max-width: 950px) {
  .event .text-indent .--gray {
    display: block;
    padding-left: 1em;
  }
}
.event__btn {
  text-decoration: none !important;
  display: block;
  margin-top: 30px;
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  background-color: #FF5E14;
  border: 3px solid #14294C;
  border-radius: 50px;
  padding: 14px;
}
@media screen and (max-width: 950px) {
  .event__btn {
    margin-top: 8vw;
    font-size: 4.2666666667vw;
    padding: 3.2vw 1.3333333333vw;
  }
}
.event .mt10 {
  margin-top: 10px;
}
@media screen and (max-width: 950px) {
  .event .mt10 {
    margin-top: 2.6666666667vw;
  }
}
.event .mt30 {
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .event .mt30 {
    margin-top: 8vw;
  }
}
.event .mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  .event .mt40 {
    margin-top: 10.6666666667vw;
  }
}
.event__note {
  margin-top: 40px;
  padding: 40px 10.9090909091%;
  background-color: #FFFFE6;
  border-radius: 10px;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .event__note {
    margin-top: 10.6666666667vw;
    padding: 8vw 4vw;
  }
}
.event__note dd {
  margin-top: 6px;
}
@media screen and (max-width: 950px) {
  .event__note dd {
    margin-top: 1.6vw;
  }
}
.event__note dd .--indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.event .ticket-table {
  margin-top: 30px;
  border: 3px solid #14294C;
  border-top: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .event .ticket-table {
    margin-top: 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.event .ticket-table .--left {
  width: calc(100% - 200px);
  border-right: 2px solid #14294C;
}
@media screen and (max-width: 950px) {
  .event .ticket-table .--left {
    width: calc(100% - 20vw);
  }
}
.event .ticket-table .--right {
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 950px) {
  .event .ticket-table .--right {
    width: 20vw;
  }
}
.event .ticket-table .--left, .event .ticket-table .--right {
  padding: 10px 15px;
}
@media screen and (max-width: 950px) {
  .event .ticket-table .--left, .event .ticket-table .--right {
    padding: 2.6666666667vw 1.3333333333vw;
  }
}
.event .ticket-table__top {
  display: flex;
  background-color: #14294C;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.event .ticket-table__top .--left, .event .ticket-table__top .--right {
  padding: 10px;
}
.event .ticket-table__top .--left {
  border-right: 2px solid #fff !important;
}
.event .ticket-table__top + .ticket-table__body {
  border-top: none;
}
.event .ticket-table__body {
  display: flex;
  border-top: 2px solid #14294C;
}
.event .ticket-table__note {
  font-size: 1.2rem;
}
@media screen and (max-width: 950px) {
  .event .ticket-table__note {
    font-size: 2.9333333333vw;
    display: block;
  }
}
.event__timetable {
  margin: 40px auto 50px;
  max-width: 1100px;
  position: relative;
}
@media screen and (max-width: 950px) {
  .event__timetable {
    max-width: 100%;
    margin: 8vw auto 0;
  }
}
.event__timetable-link01 {
  display: block;
  width: 40%;
  height: 7%;
  position: absolute;
  top: 57%;
  left: 56%;
}
.event__timetable-link02 {
  display: block;
  width: 40%;
  height: 7%;
  position: absolute;
  top: 79%;
  left: 56%;
}
.event__timetable-link03 {
  display: block;
  width: 40%;
  height: 7%;
  position: absolute;
  top: 18.7%;
  left: 56%;
}
.event__timetable-link04 {
  display: block;
  width: 40%;
  height: 7%;
  position: absolute;
  top: 34.5%;
  left: 56%;
}
.event__timetable-link05 {
  display: block;
  width: 36%;
  height: 5%;
  position: absolute;
  top: 33%;
  left: 16%;
}
.event__timetable-link06 {
  display: block;
  width: 36%;
  height: 5%;
  position: absolute;
  top: 38.6%;
  left: 16%;
}
.event__timetable-link07 {
  display: block;
  width: 40%;
  height: 7%;
  position: absolute;
  top: 69%;
  left: 56%;
}

.faq {
  margin-top: 100px;
}
@media screen and (max-width: 950px) {
  .faq {
    margin-top: 16vw;
  }
}
.faq__body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .faq__body {
    margin-top: 8vw;
  }
}
.faq__item {
  margin-top: 10px;
  border: 4px solid #14294C;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 950px) {
  .faq__item {
    margin-top: 2.6666666667vw;
    border: 1.0666666667vw solid #14294C;
    font-size: 3.7333333333vw;
  }
}
.faq__item:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  .faq__item:first-of-type {
    margin-top: 10.6666666667vw;
  }
}
.faq__q {
  display: block;
  width: 100%;
  padding: 30px 80px 30px 55px;
  text-align: left;
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 950px) {
  .faq__q {
    padding: 5.3333333333vw 10.6666666667vw 5.3333333333vw 9.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.faq__q.open .--icon {
  transform: translateY(-50%) rotate(90deg);
}
.faq__q.open .--icon::before {
  opacity: 0;
}
.faq__q::before {
  content: "Q";
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  color: #FF5E14;
  position: absolute;
  top: 22px;
  left: 15px;
}
@media screen and (max-width: 950px) {
  .faq__q::before {
    font-size: 5.3333333333vw;
    top: 4.5333333333vw;
    left: 2.6666666667vw;
  }
}
.faq__q .--icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF5E14;
  border: 3px solid #14294C;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 950px) {
  .faq__q .--icon {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    right: 2.6666666667vw;
    border: 0.5333333333vw solid #14294C;
  }
}
.faq__q .--icon::before {
  content: "";
  width: 15px;
  height: 3px;
  background-color: #14294C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 950px) {
  .faq__q .--icon::before {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
  }
}
.faq__q .--icon::after {
  content: "";
  width: 3px;
  height: 15px;
  background-color: #14294C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 950px) {
  .faq__q .--icon::after {
    width: 0.5333333333vw;
    height: 2.6666666667vw;
  }
}
.faq__a {
  display: none;
}
.faq__a p {
  padding: 30px 20px 30px 55px;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 950px) {
  .faq__a p {
    padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 9.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.faq__a p::after {
  content: "";
  width: calc(100% - 40px);
  height: 2px;
  background-color: #14294C;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  .faq__a p::after {
    width: calc(100% - 8vw);
    height: 0.5333333333vw;
  }
}
.faq__a p::before {
  content: "A";
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  color: #FF5E14;
  position: absolute;
  top: 24px;
  left: 15px;
}
@media screen and (max-width: 950px) {
  .faq__a p::before {
    font-size: 5.3333333333vw;
    top: 4.5333333333vw;
    left: 2.6666666667vw;
  }
}

.ticket .section-title {
  color: #14294C;
}
.ticket .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 950px) {
  .ticket .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.ticket__comingsoon {
  margin-top: 40px;
  border-radius: 40px;
  border: 6px solid #14294C;
  padding: 54px 10px;
  font-weight: 900;
  text-align: center;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 950px) {
  .ticket__comingsoon {
    margin-top: 10.6666666667vw;
    border: 0.8vw solid #14294C;
    font-size: 5.3333333333vw;
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
.ticket__body {
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .ticket__body {
    max-width: 100%;
  }
}
.ticket__body dl {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  .ticket__body dl {
    margin-top: 8vw;
  }
}
.ticket__body dl:first-of-type {
  margin-top: 60px;
}
@media screen and (max-width: 950px) {
  .ticket__body dl:first-of-type {
    margin-top: 13.3333333333vw;
  }
}
.ticket__body dl dt {
  font-weight: 900;
  font-size: 2rem;
}
@media screen and (max-width: 950px) {
  .ticket__body dl dt {
    font-size: 4.8vw;
  }
}
.ticket__body dl dt .--orange {
  color: #FF5E14;
}
.ticket__body dl dd {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .ticket__body dl dd {
    margin-top: 2.6666666667vw;
    padding-left: 4.8vw;
    font-size: 3.7333333333vw;
  }
}
.ticket__body dl dd a {
  text-decoration: underline;
}
.ticket .line-dashed {
  width: 100%;
  height: 3px;
  margin: 40px 0;
  background: repeating-linear-gradient(to right, #14294C 0px, #14294C 5px, transparent 5px, transparent 10px);
}
@media screen and (max-width: 950px) {
  .ticket .line-dashed {
    margin: 8vw 0;
  }
}
.ticket__note {
  font-size: 1.8rem;
}
@media screen and (max-width: 950px) {
  .ticket__note {
    font-size: 3.7333333333vw;
  }
}
.ticket__note .--indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.ticket .mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 950px) {
  .ticket .mt60 {
    margin-top: 16vw;
  }
}

.access {
  position: relative;
}
.access .section-title {
  color: #14294C;
}
.access .inner {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .access .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.access__box {
  margin-top: 40px;
  display: flex;
  border: 3px solid #14294C;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .access__box {
    flex-direction: column;
    border-radius: 5.3333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.access__map {
  width: 46.875%;
  border-right: 3px solid #14294C;
}
@media screen and (max-width: 950px) {
  .access__map {
    width: 100%;
    height: 66.6666666667vw;
    border-right: none;
    border-bottom: 3px solid #14294C;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.access__body {
  background-color: #fff;
  width: 53.125%;
  padding: 95px 4.6875%;
}
@media screen and (max-width: 950px) {
  .access__body {
    width: 100%;
    padding: 8vw 4vw;
  }
}
.access__body h3 {
  font-size: 3.2rem;
  font-weight: 900;
  border-left: 12px solid #FF5E14;
  padding-left: 12px;
}
@media screen and (max-width: 950px) {
  .access__body h3 {
    font-size: 5.3333333333vw;
    border-left: 1.6vw solid #FF5E14;
    padding-left: 1.6vw;
  }
}
.access__body dl {
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .access__body dl {
    margin-top: 8vw;
  }
}
.access__body dl dt {
  font-weight: 900;
  text-indent: -1em;
  padding-left: 1em;
}
.access__body dl dt .--orange {
  color: #FF5E14;
}
.access__body dl dd {
  margin-top: 5px;
}
@media screen and (max-width: 950px) {
  .access__body dl dd {
    margin-top: 1.3333333333vw;
  }
}
.access__body dl dd a {
  text-decoration: underline;
}
.access__address {
  margin-top: 20px;
}
@media screen and (max-width: 950px) {
  .access__address {
    margin-top: 5.3333333333vw;
  }
}

.info {
  position: relative;
}
.info .inner {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .info .inner {
    max-width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.info__box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 2.34375%;
}
@media screen and (max-width: 950px) {
  .info__box {
    margin-top: 10.6666666667vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.info__box > div {
  width: 48.828125%;
  text-align: center;
  background-color: #14294C;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 950px) {
  .info__box > div {
    width: 100%;
    border-radius: 5.3333333333vw;
    padding: 8vw 4vw;
  }
}
.info__box > div p.--top {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 950px) {
  .info__box > div p.--top {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.info__box > div p a {
  text-decoration: underline;
}

.footer {
  padding: 20px;
}
@media screen and (max-width: 950px) {
  .footer {
    padding: 5.3333333333vw;
  }
}
.footer__copyright {
  font-weight: 900;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 950px) {
  .footer__copyright {
    font-size: 2.6666666667vw;
  }
}
.footer__logo {
  width: 250px;
  margin: 10px auto 0;
}
@media screen and (max-width: 950px) {
  .footer__logo {
    width: 48vw;
    margin-top: 2.6666666667vw;
  }
}

.fadeUp {
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
@media screen and (max-width: 950px) {
  .fadeUp {
    transform: translateY(16vw);
  }
}
.fadeUp.on {
  transform: inherit;
  opacity: 1;
}

.guest__body .guest__img {
  opacity: 0;
  transform: scale(0.25);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s;
}
.guest__body .guest__item02 .guest__img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s, opacity 0.6s 0.3s;
}
.guest__body .guest__item03 .guest__img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s, opacity 0.6s 0.6s;
}
.guest__body.on .guest__img {
  opacity: 1;
  transform: scale(1);
}

.section-top__img {
  opacity: 0;
  transform: scale(0.25);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s;
}
.section-top__img.on {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=base.css.map */