@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #cbcaca;
  --color-gray: #4a3e37;
  --color-orange: #ff7926;
  --font-base: YakuHanJP, "Outfit", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

body {
  background: #000;
}

.is-sp {
  display: none;
}
@media (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  font-family: var(--font-base);
  color: var(--color-white);
  font-weight: 300;
  overflow: hidden;
}
.l-wrapper__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  transform: translate3d(0, 0, 0) scale(1.1);
  background: url(../img/main_bg.png) no-repeat center center/cover;
  opacity: 0;
}
@media (max-width: 750px) {
  .l-wrapper__bg {
    background-image: url(../img/main_bg_sp.png);
    transform: translate3d(0, 0, 0) scale(1.2);
  }
}
.on-load .l-wrapper__bg {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition: transform 3s cubic-bezier(0.61, 1, 0.88, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-content {
  position: relative;
  width: 100%;
}
.l-content__inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 61px;
}
@media (max-width: 750px) {
  .l-content__inner {
    padding-top: 19px;
  }
}

.p-visual__wrap {
  position: relative;
  transform: scale(1.1);
  opacity: 0;
}
.on-load .p-visual__wrap {
  transform: scale(1);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-schedule {
  margin-top: 61px;
}
@media (max-width: 750px) {
  .p-schedule {
    margin-top: 38px;
  }
}
.p-schedule__heading {
  padding-bottom: 9px;
  border-bottom: 1px var(--color-gray) solid;
  transform: translateX(15px);
  opacity: 0;
}
.on-load .p-schedule__heading {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}
@media (max-width: 750px) {
  .p-schedule__heading {
    padding-bottom: 13px;
  }
}
.p-schedule__heading-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-schedule__heading-list-item {
  color: var(--color-orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}
@media (max-width: 750px) {
  .p-schedule__heading-list-item {
    font-weight: 400;
  }
}
.p-schedule__heading-list-item.--date {
  width: 28.5%;
}
@media (max-width: 750px) {
  .p-schedule__heading-list-item.--date {
    width: 30.7%;
  }
}
.p-schedule__heading-list-item.--city {
  width: 26.7%;
}
@media (max-width: 750px) {
  .p-schedule__heading-list-item.--city {
    width: auto;
  }
}
.p-schedule__heading-list-item.--venue {
  width: 30.8%;
}
@media (max-width: 750px) {
  .p-schedule__heading-list-item.--venue {
    flex-basis: 0;
    flex-grow: 1;
    margin-left: 4.2%;
  }
}
.p-schedule__info-list-item {
  border-bottom: 1px var(--color-gray) solid;
  transform: translateX(15px);
  opacity: 0;
}
.on-load .p-schedule__info-list-item {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.on-load .p-schedule__info-list-item:nth-child(1) {
  transition-delay: calc(0.1s * 0 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(2) {
  transition-delay: calc(0.1s * 1 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(3) {
  transition-delay: calc(0.1s * 2 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(4) {
  transition-delay: calc(0.1s * 3 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(5) {
  transition-delay: calc(0.1s * 4 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(6) {
  transition-delay: calc(0.1s * 5 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(7) {
  transition-delay: calc(0.1s * 6 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(8) {
  transition-delay: calc(0.1s * 7 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(9) {
  transition-delay: calc(0.1s * 8 + 0.4s);
}
.on-load .p-schedule__info-list-item:nth-child(10) {
  transition-delay: calc(0.1s * 9 + 0.4s);
}

.p-schedule_info {
  padding-top: 26px;
  padding-bottom: 23px;
}
@media (max-width: 750px) {
  .p-schedule_info {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
}
.p-schedule_info__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.p-schedule_info__date {
  width: 28.5%;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media (max-width: 750px) {
  .p-schedule_info__date {
    width: 28.2%;
    margin-right: 2%;
    font-size: 12px;
  }
}
.p-schedule_info__date .--size-small {
  margin-left: 7px;
  vertical-align: baseline;
}
@media (max-width: 750px) {
  .p-schedule_info__date .--size-small {
    margin-left: 4px;
  }
}
.p-schedule_info__area {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 57.5%;
}
@media (max-width: 750px) {
  .p-schedule_info__area {
    display: block;
    width: 46%;
    margin-right: 2%;
  }
}
.p-schedule_info__city {
  width: 46.5%;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .p-schedule_info__city {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}
.p-schedule_info__venue {
  width: 53.5%;
  line-height: 1.2;
  letter-spacing: 0.092em;
}
@media (max-width: 750px) {
  .p-schedule_info__venue {
    width: 100%;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
.p-schedule_info__ticket {
  position: relative;
  box-sizing: border-box;
  width: 14%;
  margin-top: 2px;
}
@media (max-width: 750px) {
  .p-schedule_info__ticket {
    width: 21.8%;
    margin-top: 0;
  }
}
.p-schedule_info__ticket-link {
  display: block;
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 11px;
  text-decoration: none;
  color: var(--color-orange);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .p-schedule_info__ticket-link {
    padding-right: 13px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
  }
}
.p-schedule_info__ticket-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 9px;
  height: 9px;
  background: url(../img/icon_ticket.svg) no-repeat center center/100% auto;
}
.p-schedule_info__ticket-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 751px) {
  .p-schedule_info__ticket-link:hover::after {
    transform: scale(1);
    transform-origin: left center;
  }
}

.p-footer {
  padding-top: 76px;
  padding-bottom: 50px;
  opacity: 0;
}
.on-load .p-footer {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}
@media (max-width: 750px) {
  .p-footer {
    padding-top: 46px;
  }
}
.p-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .p-footer__inner {
    display: block;
  }
}
@media (max-width: 750px) {
  .p-footer__official-list-item {
    text-align: center;
  }
}
.p-footer__official-list-item:nth-child(n+2) {
  margin-top: 5px;
}
@media (max-width: 750px) {
  .p-footer__official-list-item:nth-child(n+2) {
    margin-top: 14px;
  }
}
.p-footer__official-link {
  display: inline-block;
  position: relative;
  padding-left: 16px;
  text-decoration: none;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.012em;
}
@media (max-width: 750px) {
  .p-footer__official-link {
    padding-left: 14px;
    font-size: 15px;
  }
}
.p-footer__official-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--color-orange);
}
@media (max-width: 750px) {
  .p-footer__official-link::before {
    width: 6px;
    height: 6px;
  }
}
.p-footer__official-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 751px) {
  .p-footer__official-link:hover::after {
    transform: scale(1);
    transform-origin: left center;
  }
}

.p-footer__others {
  margin-top: 7px;
}
@media (max-width: 750px) {
  .p-footer__others {
    margin-top: 37px;
  }
}
.p-footer__sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 750px) {
  .p-footer__sns-list {
    justify-content: center;
  }
}
.p-footer__sns-list-item {
  margin-left: 12.5px;
}
@media (max-width: 750px) {
  .p-footer__sns-list-item {
    width: 10%;
    margin: 0 2.65%;
  }
}
.p-footer__sns-list-item img {
  height: 23px;
  width: auto;
  max-width: none;
}
@media (max-width: 750px) {
  .p-footer__sns-list-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.p-footer__sns-link {
  display: block;
  position: relative;
}
.p-footer__sns-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 751px) {
  .p-footer__sns-link:hover::after {
    transform: scale(1);
    transform-origin: left center;
  }
}

.p-footer__copy {
  margin-top: 13px;
}
@media (max-width: 750px) {
  .p-footer__copy {
    margin-top: 43px;
  }
}
.p-footer__copy-txt {
  text-align: right;
  color: var(--color-orange);
  font-size: 10px;
}
@media (max-width: 750px) {
  .p-footer__copy-txt {
    text-align: center;
  }
}