@charset "UTF-8";
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: disc;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

body {
  letter-spacing: 0.05em;
  background-color: #E9E9E9;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.line {
  border-top: 1px solid #acb0ae;
}

.line-2 {
  border-top: 1px solid #818c87;
}

h1 {
  font-size: 18px;
  letter-spacing: 0.3em;
  margin-bottom: 25px;
}

h1 {
  overflow: hidden; /* はみ出た文字を隠す */
  display: flex; /* 複数文字を横並びにする */
}

h1 span {
  display: inline-block; /* inline-blockでtransformを効かせる */
  transform: translateY(100%); /* 初期位置を下にずらす */
  opacity: 0; /* 最初は透明 */
  transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* アニメーション設定 */
  /* transition-delay は後で個別に設定 */
}

h1.show span {
  transform: translateY(0);
  opacity: 1;
}

h1.show span:nth-child(1) {
  transition-delay: 0s;
}

h1.show span:nth-child(2) {
  transition-delay: 0.1s;
}

h1.show span:nth-child(3) {
  transition-delay: 0.2s;
}

h1.show span:nth-child(4) {
  transition-delay: 0.3s;
}

h1.show span:nth-child(5) {
  transition-delay: 0.4s;
}

h1.show span:nth-child(6) {
  transition-delay: 0.5s;
}

h1.show span:nth-child(7) {
  transition-delay: 0.6s;
}

h1.show span:nth-child(8) {
  transition-delay: 0.7s;
}

p,
ul li {
  font-size: 14px;
}

.info-list {
  margin-left: 16px;
}

.text-small {
  font-size: 60%;
}

.name_box {
  border: 1px solid #000;
  padding: 10px 23px;
  margin-right: 15px;
  font-size: 15px;
}

/* --------------------
    　フェードイン
---------------------*/
.fadeIn {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transform: translateY(50px);
}

/* 表示された状態 */
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.copyright {
  text-align: right;
  font-size: 10px;
  margin-top: 3em;
  padding: 22px;
}

/*　ユーティリティ　*/
.mt20 {
  margin-top: 20px;
}

.mt15 {
  margin-top: 15px;
}

.mt40 {
  margin-top: 40px;
}

:root {
  --stroke-dash: 9500px;
}

.mask {
  stroke-dasharray: var(--stroke-dash) var(--stroke-dash);
  stroke-dashoffset: 0px;
  animation: textAnimation 5s forwards cubic-bezier(0.58, 0.9, 0.72, 0.22);
}

@keyframes textAnimation {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: calc(var(--stroke-dash) * -1);
  }
}
/*　ユーティリティ　*/
.bg-glay {
  background-color: #9fa0a0 !important;
}

.mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  height: 100vh;
}

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

.mv p {
  background-color: #cdd4c7;
  height: 780px;
  width: 100%;
}

.logo-container {
  display: flex; /* 子を並べる */
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
}

#animation-text {
  width: 25%;
  height: auto;
  display: block;
  position: absolute;
  top: 30%;
  margin: auto;
}

.pc-only {
  display: block;
}

.md-only {
  display: none;
}

.sp-only {
  display: none;
}

/* --------------------
    　　　　動画
---------------------*/
.message {
  background-color: #C6CECC;
  margin-top: 900px;
  padding: 40px 20px;
  position: relative;
}

.message p {
  text-align: center;
  margin-bottom: 20px;
}

.message__video {
  position: relative;
  overflow: hidden;
  width: 52%;
  height: auto;
  margin: 0px auto;
  padding-bottom: 29.25%;
}

/* --------------------
   SCHEDULE セクション
---------------------*/
.schedule-section {
  margin-top: 120px;
  padding: 40px 20px;
  width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 120px;
}

.schedule-section .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 84px;
  margin-top: 84px;
}

.schedule-section .grid__item.fadeIn {
  width: calc(50% - 42px);
}

.grid__item {
  background: #E9E9E9;
}

.schedule-section .grid__item-content {
  border: 1px solid #acb0ae;
  padding: 30px;
  transition: background 1.3s ease;
}

.schedule-section .grid__item-content:hover {
  background: #d2d8d7;
}

.schedule-section .grid__item-divider {
  border: none;
  height: 1px;
  width: 100%;
  background-color: #acb0ae;
  margin: 32px 0;
}

.grid__item-content h2 {
  margin-bottom: 20px;
}

.schedule-section .grid__item-schedule p {
  font-size: 12px;
}

/* --------------------
    TICKET セクション
---------------------*/
.ticket {
  background-color: #C6CECC;
  margin-top: 120px;
  padding: 40px 20px;
  position: relative;
}

.ticket h1 {
  margin-bottom: 25px;
}

.bg-green {
  width: 1200px;
  margin: 0 auto;
}

/* チケットの横並び用ラッパー */
.ticket__wrap {
  display: flex;
  position: relative;
  padding: 0px;
  margin: 40px 0;
}

/* 中央の縦線 */
.ticket__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #818c87; /* 一旦濃く */
}

.ticket__price,
.ticket__info {
  width: 50%;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
}

.ticket__price-unit {
  font-size: 0.6em;
}

.btn {
  display: flex;
  position: relative;
  padding: 0px;
  margin: 40px 0;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #818c87; /* 一旦濃く */
}

.btn__item {
  width: 50%;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
}

.btn__item a {
  background-color: #2A282E;
  color: #F6F5F3;
  padding: 20px 36px;
  margin: 0.25em 0;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  margin-left: 20px;
  transition: background-color 0.3s ease; /* ← ここが「なめらかに変わる」指定 */
}

.btn__item a:hover {
  background-color: #684398;
}

/* --------------------
    注意事項 セクション
---------------------*/
.guidelines {
  position: relative;
  padding: 40px 0px;
  width: 1200px;
  margin: 100px auto;
}

.guidelines__item {
  border: 1px solid #acb0ae;
}

.guidelines__item-content {
  padding: 70px;
  background: #E9E9E9;
}

.guidelines__item-content a {
  text-decoration: underline;
  color: #2A282E;
}

/* --------------------
   タブレット以下（1列） 
---------------------*/
@media (max-width: 1024px) {
  main {
    width: 100%;
    margin: 0 auto;
  }
  .mv {
    width: 100%;
    height: auto;
  }
  .mv img {
    width: 100%;
  }
  .mv p {
    background-color: #cdd4c7;
    height: 780px;
    width: 100%;
  }
  #animation-text {
    width: 55%;
    height: auto;
    display: block;
    position: absolute;
    top: 31%;
    margin: auto;
  }
  h1 {
    font-size: 14px;
  }
  h2 {
    font-size: 21px;
  }
  h3 {
    font-size: 16px;
    line-height: 2.2;
  }
  .pc-only {
    display: none;
  }
  .md-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .name_box {
    padding: 6px 20px;
    margin-right: 15px;
  }
  /* SCHEDULE セクション */
  .schedule-section {
    width: 100%;
  }
  .schedule-section .grid {
    gap: 36px;
    margin-top: 36px;
    flex-direction: column; /* ← 追加 */
  }
  .schedule-section .grid__item {
    width: 100%;
  }
  .schedule-section .grid__item-schedule p {
    font-size: 10px;
  }
  .schedule-section h1 {
    margin-bottom: 20px;
  }
  .schedule-section .grid__item-divider {
    margin: 22px 0;
  }
  .schedule-section .grid__item,
  .schedule-section .grid__item.fadeIn {
    width: 100%;
  }
  /* TICKET セクション */
  .ticket {
    margin-top: 20px;
    padding: 40px;
  }
  .ticket-section__wrapper {
    gap: 16px;
  }
  .ticket__wrap {
    flex-direction: column;
  }
  .ticket__wrap::before {
    display: none;
  }
  .ticket__price,
  .ticket__info,
  .bg-green {
    width: 100%;
    justify-content: left; /* 横中央 */
  }
  .btn {
    flex-direction: column;
  }
  .btn__item {
    width: 100%;
    justify-content: center; /* 横中央 */
    flex-direction: column;
  }
  .btn__item p {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 5px;
  }
  .btn__item a {
    margin-left: 0px;
    padding: 23px 45px;
    font-size: 16px;
  }
  .btn::before {
    display: none;
  }
  /* --------------------
      注意事項 セクション
  ---------------------*/
  .guidelines {
    padding: 20px;
    width: 100%;
    margin: 40px auto;
  }
  .guidelines__item-content {
    padding: 20px;
    background: #E9E9E9;
  }
  /*　ユーティリティ　*/
  .mt40-sp {
    margin-top: 40px;
  }
  .message__video {
    width: 100%;
    padding-bottom: 56.25%;
  }
}
/* --------------------
   　タブレットの指定
---------------------*/
@media screen and (min-width: 430px) and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
  .md-only {
    display: block !important;
  }
  .sp-only {
    display: none;
  }
  #animation-text {
    width: 55%;
    height: auto;
    display: block;
    position: absolute;
    top: 20% !important;
    margin: auto;
  }
}