/* reset
--------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  border: none;
}

/* img */
img,
div, p, blockquote,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
form, fieldset, textarea,
address,
main, article, aside, dialog, figure, footer, header, hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  list-style-type: none;
}

/* html5 */
main, article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

/* table */
table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

caption {
  text-align: left;
}

/* a */
a, a:focus, a:hover, a:active {
  outline: none;
}

/* form */
input, input:focus, input:hover, input:active,
textarea, textarea:focus, textarea:hover, textarea:active {
  outline: none;
}

/* img */
img {
  vertical-align: top;
  -webkit-backface-visibility: hidden;
}

/* noscript */
#noscript {
  position: relative;
  z-index: 5260;
  padding: 1em;
  border-bottom: #000000 solid 1px;
  background: #ffffff;
  color: #000000;
  text-align: center;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

body {
  opacity: 0;
  transition: 0.8s;
}
body.fade-in {
  opacity: 1;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.pc-block {
  display: block !important;
}

.pc-inline {
  display: inline !important;
}

.pc-inline-block {
  display: inline-block !important;
}

.sp-block,
.sp-inline,
.sp-inline-block {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .tab-min-block {
    display: block !important;
  }

  .tab-min-inline {
    display: inline !important;
  }

  .tab-min-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1024px) {
  .tab-min-block,
  .tab-min-inline,
  .tab-min-inline-block {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tab-block,
  .tab-inline,
  .tab-inline-block {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .tab-block {
    display: block !important;
  }

  .tab-inline {
    display: inline !important;
  }

  .tab-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-block,
  .pc-inline,
  .pc-inline-block {
    display: none !important;
  }

  .sp-block {
    display: block !important;
  }

  .sp-inline {
    display: inline !important;
  }

  .sp-inline-block {
    display: inline-block !important;
  }
}
/* common
-----------------------*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 5%;
  }
}

.grid-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .grid-wrap {
    display: block;
  }
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text_hover {
  transition: .5s;
  display: block;
  text-decoration: none;
  color: #333333;
}
.text_hover:hover {
  opacity: .7;
}

.no_link {
  pointer-events: none;
}

.relative {
  position: relative;
}

main {
  position: relative;
}

.lilita-one {
  font-family: "Lilita One", serif;
}

/* header
-----------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1024px) {
  header {
    position: static;
    height: auto;
    background: none;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.header__logo {
  transition: 0.5s;
  text-decoration: none;
  color: #000000;
  width: 50px;
}
.header__logo:hover {
  opacity: 0.7;
  color: #000000;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 99;
    width: 75px;
  }
}
.header__nav-menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__nav-menu-btn {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: #000000;
    border-radius: 50px;
    transition: 0.5s;
    text-decoration: none;
    color: #000000;
    z-index: 99;
  }
  .header__nav-menu-btn:hover {
    opacity: 0.7;
    color: #000000;
    text-decoration: none;
  }
  .header__nav-menu-btn .drawer_bar {
    background: #FFFFFF;
    display: block;
    width: 18px;
    height: 2px;
  }
}
.header__nav-menu-btn.active {
  display: block;
}
.header__nav-menu-btn.active .drawer_bar {
  position: absolute;
  top: 50%;
  left: 50%;
}
.header__nav-menu-btn.active .bar1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__nav-menu-btn.active .bar2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__nav-menu-btn.active .bar3 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper {
    margin: 0 auto;
    padding: 20% 5% 40px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    right: 0;
    transition: top 0.3s;
    overflow: auto;
    z-index: 98;
    background: url(../images/top/mv_pc.jpg) no-repeat center bottom/cover;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
  }
}
.header__drawer-wrapper.open {
  top: 0;
}
.header__drawer-wrapper .header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper .header-nav {
    display: block;
    position: relative;
    z-index: 2;
  }
}
.header__drawer-wrapper .header-nav .header-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper .header-nav .header-nav-list {
    display: block;
    margin-bottom: 25px;
  }
}
.header__drawer-wrapper .header-nav .header-nav-list li a {
  display: block;
  font-size: 16px;
  line-height: 1.0;
  letter-spacing: 0.5px;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
}
.header__drawer-wrapper .header-nav .header-nav-list li a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper .header-nav .header-nav-list li a {
    font-size: 16px;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(to right, #FFFFFF 3px, transparent 3px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
.header__drawer-wrapper .header-nav .header-nav-faq a {
  display: block;
  font-size: 12px;
  line-height: 1.0;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 14px;
}
.header__drawer-wrapper .header-nav .header-nav-faq a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper .header-nav .header-nav-faq a {
    font-size: 14px;
    max-width: 175px;
    margin: 0 auto 35px;
    padding: 10px;
    background: #FFFFFF;
    border: none;
    transition: 0.5s;
    text-decoration: none;
    color: #000000;
    border-radius: 20px;
  }
  .header__drawer-wrapper .header-nav .header-nav-faq a:hover {
    opacity: 0.7;
    color: #000000;
    text-decoration: none;
  }
}
.header__drawer-wrapper .header-nav .header-nav-sns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-wrapper .header-nav .header-nav-sns {
    justify-content: center;
  }
}
.header__drawer-wrapper .header-nav .header-nav-sns li {
  width: 24px;
}
.header__drawer-wrapper .header-nav .header-nav-sns li a {
  display: block;
  transition: 0.5s;
  text-decoration: none;
  color: #000000;
  line-height: 1.0;
}
.header__drawer-wrapper .header-nav .header-nav-sns li a:hover {
  opacity: 0.7;
  color: #000000;
  text-decoration: none;
}

/* common-mv
-----------------------*/
.common-mv {
  padding: 9.5% 0;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .common-mv {
    padding: 15.5% 0 19%;
    margin-bottom: 40px;
  }
}
.common-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 48%;
  position: absolute;
  bottom: -1%;
  left: 0;
  background: url(../images/common/bg_white_pc.png) repeat-x center bottom/100%;
}
@media screen and (max-width: 768px) {
  .common-mv::after {
    height: 73%;
    background: url(../images/common/bg_white_sp.png) repeat-x center bottom/100%;
  }
}
.common-mv h1 {
  font-size: 80px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.0;
}
@media screen and (max-width: 768px) {
  .common-mv h1 {
    font-size: 34px;
  }
}

/* common-ttl
-----------------------*/
h2.common-ttl {
  font-size: 80px;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  h2.common-ttl {
    font-size: min(9vw, 36px);
    line-height: 1.5;
  }
}

/* section-ttl
-----------------------*/
.section-ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
.section-ttl::after {
  content: "";
  display: block;
  width: 60px;
  height: 8px;
  background: url(../images/common/icn_title.png) no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-ttl::after {
    width: 40px;
    height: 5px;
  }
}

/* section-sub
-----------------------*/
.section-sub {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-sub {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
.section-sub::after {
  content: "";
  display: block;
  width: 60px;
  height: 8px;
  background: url(../images/common/icn_title.png) no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-sub::after {
    width: 40px;
    height: 5px;
  }
}

/* common-ank-area
-----------------------*/
.common-ank-area {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .common-ank-area {
    margin-bottom: 40px;
  }
}
.common-ank-area__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 670px;
  margin: 0 auto;
}
.common-ank-area__list li a {
  display: block;
  background: #000000;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.common-ank-area__list li a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}

/* common-btn
-----------------------*/
/* ticket-btn
-----------------------*/
.ticket-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 97;
}
@media screen and (max-width: 1024px) {
  .ticket-btn {
    max-width: 300px;
    width: 100%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .ticket-btn {
    max-width: 240px;
  }
}
.ticket-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e50012;
  width: 130px;
  height: 130px;
  margin: 0 0 0 auto;
  border-radius: 70px;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
}
.ticket-btn a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .ticket-btn a {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 30px;
    text-align: center;
  }
}
.ticket-btn a p {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7692307692;
  padding-top: 28px;
  background: url(../images/top/icn_ticket.png) no-repeat center top/29px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .ticket-btn a p {
    background: none;
    position: relative;
    font-size: 18px;
    line-height: 1.0;
    padding: 0 35px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .ticket-btn a p {
    font-size: 14px;
    padding: 0 16px 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .ticket-btn a p::before, .ticket-btn a p::after {
    content: "";
    display: block;
    position: absolute;
  }
}
@media screen and (max-width: 1024px) {
  .ticket-btn a p::before {
    width: 34px;
    height: 34px;
    background: url(../images/top/icn_ticket.png) no-repeat center top/100%;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .ticket-btn a p::before {
    left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .ticket-btn a p::after {
    width: 10px;
    height: 10px;
    border-top: solid 2px #FFFFFF;
    border-right: solid 2px #FFFFFF;
    position: absolute;
    right: 20px;
    top: calc(50% - 5px);
    transform: rotate(45deg);
  }
}
.ticket-btn .btn-img {
  width: 155px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .ticket-btn .btn-img {
    display: none;
  }
}

/* footer
-----------------------*/
footer {
  background: #000000;
  padding: 55px 0 30px;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 50px 0 80px;
  }
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__flex {
    display: block;
    margin-bottom: 15px;
  }
}
.footer__left .footer-text {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .footer__left .footer-text {
    margin-bottom: 15px;
  }
}
.footer__left .footer-text p {
  font-size: 16px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .footer__left .footer-text p {
    font-size: 14px;
    text-align: center;
  }
}
.footer__left .footer-contact-btn {
  width: 170px;
}
@media screen and (max-width: 1024px) {
  .footer__left .footer-contact-btn {
    width: 145px;
    margin: 0 auto;
  }
}
.footer__left .footer-contact-btn a {
  display: block;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 8px;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  line-height: 1.0;
}
.footer__left .footer-contact-btn a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__left .footer-contact-btn a {
    font-size: 14px;
  }
}
.footer__left .footer-contact-btn a span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.footer__left .footer-contact-btn a span::before {
  content: "";
  display: block;
  width: 22px;
  height: 17px;
  background: url(../images/common/icn_contact.svg) no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .footer__left .footer-contact-btn a span::before {
    width: 18px;
    height: 14px;
  }
}
.footer__right .footer-sns-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer-sns-list {
    justify-content: center;
    margin-bottom: 25px;
  }
}
.footer__right .footer-sns-list li {
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer-sns-list li {
    width: 30px;
  }
}
.footer__right .footer-sns-list li a {
  display: block;
  transition: 0.5s;
  text-decoration: none;
  color: #FFFFFF;
}
.footer__right .footer-sns-list li a:hover {
  opacity: 0.7;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__copyright {
  text-align: right;
  color: #FFFFFF;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}

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