@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #232323;
  background-color: #ffffff;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    transition: opacity 0.5s ease;
    backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.6;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    flex: 1;
  }
}
.main {
  overflow: hidden;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(650 / 750 * 100%);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .inner {
    width: calc(1000 / 1200 * 100%);
    max-width: 1000px;
  }
}

.main p,
.main dd {
  line-height: 1.785;
}
.main p a,
.main dd a {
  display: inline;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.bg-float {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.movie-embed {
  position: relative;
  padding-top: 56.25%;
}
.movie-embed iframe,
.movie-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn01 {
  text-align: center;
}
.btn01 a {
  position: relative;
  display: inline-block;
  padding: 0.95em 2em;
  font-size: 114%;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  background-color: #e50015;
  border-radius: 3em;
}
.btn01 a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 1em;
  width: 0.31em;
  height: 0.5em;
  margin: auto 0;
  background-color: currentColor;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (min-width: 768px) {
  .btn01 a {
    transition-property: color, background-color;
  }
  .btn01 a:hover {
    opacity: 1;
    color: #232323 !important;
    background-color: #c4a300 !important;
  }
}

@media screen and (min-width: 768px) {
  .btn02 {
    margin: 0 auto;
    max-width: 540px;
  }
}
.btn02 a {
  position: relative;
  width: 100%;
  padding: 1.6em 1em;
  padding-right: 2.6em;
  font-size: 128%;
  line-height: 1.3;
  color: #ffffff;
  background-color: #e50015;
  -webkit-mask-image: url(../images/common/img_mask02.png);
          mask-image: url(../images/common/img_mask02.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.btn02 a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 1.3em;
  width: 1.1em;
  height: 1.1em;
  margin: auto 0;
  background: url(../images/common/icon_arrow02.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .btn02 a {
    transition-property: color, background-color;
  }
  .btn02 a:hover {
    opacity: 1;
    color: #232323 !important;
    background-color: #c4a300 !important;
  }
}

.sec-ttl {
  text-align: center;
  margin-bottom: 7rem;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 5rem;
    font-size: max(5rem, 30px);
  }
}
.sec-ttl .ja {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.sec-ttl .en {
  display: block;
  margin-top: 1em;
  font-family: "Yuji Syuku", serif;
  font-size: 48%;
  font-weight: 700;
  color: #e50015;
  letter-spacing: 0;
}

/* =====================================================================
    header
======================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header {
    position: sticky;
    background-color: #c4a300;
  }
}
.header.is-active .btn-menu span {
  right: 4px;
}
.header.is-active .btn-menu span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.header.is-active .btn-menu span:nth-of-type(2) {
  right: 100%;
  opacity: 0;
}
.header.is-active .btn-menu span:nth-of-type(3) {
  bottom: 0;
  transform: rotate(45deg);
}

.btn-menu {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 8rem;
  height: 8rem;
  font-size: 1rem;
  background-color: #c4a300;
  -webkit-mask-image: url(../images/common/img_mask03.png);
          mask-image: url(../images/common/img_mask03.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none !important;
  }
}
.btn-menu-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 3.6em;
  height: 2.8em;
}
.btn-menu span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.5s;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
  transform-origin: top right;
}
.btn-menu span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.btn-menu span:nth-of-type(3) {
  bottom: 0;
  transform-origin: bottom right;
}

.nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 16rem 0 120px;
  background-color: rgba(13, 12, 8, 0.95);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .nav {
    position: relative;
    display: block !important;
    background-color: transparent !important;
    margin-left: auto;
    padding: 0;
    width: auto;
    height: 100%;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .nav > .inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: initial;
    padding: 0 calc(30 / 1920 * 100%);
  }
}
.nav-logo {
  margin: 0 auto 10rem;
  width: calc(500 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .nav-logo {
    margin: 0;
    width: 26rem;
  }
}
.nav-logo a {
  display: flex;
  align-items: center;
}
.nav-logo-venue {
  flex-shrink: 0;
  margin-left: 4.4%;
  width: 26%;
}
@media screen and (min-width: 768px) {
  .nav-logo-venue {
    width: 32%;
  }
}
.nav-menu {
  margin: 0 auto;
  width: calc(450 / 650 * 100%);
  border-top: 2px solid #c4a300;
}
@media screen and (min-width: 768px) {
  .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    border: 0;
  }
}
.nav-menu > li {
  text-align: center;
  font-size: 3.2rem;
  border-bottom: 2px solid #c4a300;
}
@media screen and (min-width: 768px) {
  .nav-menu > li {
    flex-shrink: 0;
    margin: 0 1.5em;
    font-size: 2.2rem;
    border: 0;
  }
}
.nav-menu > li > a {
  position: relative;
  padding: 0.9em 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .nav-menu > li > a {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 10rem;
    padding: 0;
    color: #232323;
    transition-property: color;
  }
  .nav-menu > li > a:hover {
    opacity: 1;
    color: #e50015;
  }
}
.nav-menu > li.nolink a {
  pointer-events: none;
  filter: grayscale(1) opacity(0.4);
}
.nav-sns {
  display: flex;
  justify-content: center;
  gap: 0 0.4em;
  margin-top: 8rem;
  font-size: 11rem;
}
@media screen and (min-width: 768px) {
  .nav-sns {
    margin: 0;
    gap: 0 0.05em;
    font-size: 8rem;
  }
}
.nav-sns li a {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 1em;
  height: 1em;
  background-color: #c4a300;
  -webkit-mask-image: url(../images/common/img_mask03.png);
          mask-image: url(../images/common/img_mask03.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .nav-sns li a {
    transition-property: background-color;
    background-color: #0d0c08;
  }
  .nav-sns li a:hover {
    opacity: 1;
    background-color: #e50015;
  }
}
.nav-sns li a svg {
  width: 38%;
  height: 38%;
}
@media screen and (min-width: 768px) {
  .nav-sns li a svg {
    fill: #c4a300;
  }
}

/* =====================================================================
*    banner
* =================================================================== */
.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner-list li {
  margin-top: 3rem;
  width: calc(540 / 650 * 100%);
}
.banner-list li:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .banner-list li {
    margin: 2rem calc(10 / 1200 * 100%) 0;
    width: calc(360 / 1200 * 100%);
  }
  .banner-list li:nth-child(-n+3) {
    margin-top: 0;
  }
}

/* =====================================================================
*    footer
* =================================================================== */
.footer {
  background-color: #0d0c08;
  z-index: 2;
  margin-top: -2px;
}
.footer-kv::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  width: 100%;
  border: 2px solid #ffffff;
}
.footer > .inner {
  padding-top: 8rem;
}
@media screen and (min-width: 768px) {
  .footer > .inner {
    padding-top: 12rem;
    max-width: 1200px;
  }
}
.footer .banner-list:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .footer .banner-list:not(:last-child) {
    margin-bottom: 12rem;
  }
}
@media screen and (min-width: 768px) {
  .footer .banner-list .btn01 {
    width: calc(480 / 1200 * 100%);
  }
}
.footer .banner-list .btn01 a {
  width: 100%;
}

.follow-content {
  display: none;
  position: fixed;
  bottom: 3vh;
  right: 0;
  z-index: 10;
}
.follow-ticket {
  margin: 0 0 5vh auto;
  width: 9.1rem;
  filter: drop-shadow(0px 0.3rem 1.6rem rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 768px) {
  .follow-ticket::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/common/btn_ticket_h.png) no-repeat center/100% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .follow-ticket:hover {
    opacity: 1;
  }
  .follow-ticket:hover::after {
    opacity: 1;
  }
}

.pagetop a {
  position: relative;
  right: 1rem;
  width: 12.2rem;
  height: 12.2rem;
}
@media screen and (min-width: 768px) {
  .pagetop a {
    transition-property: transform;
  }
  .pagetop a:hover {
    opacity: 1;
    transform: translateY(-1rem);
  }
}

.copyright {
  padding: 8rem 0;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #e50015;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=base.css.map */