@charset "utf-8";
html {
  scroll-behavior: smooth;
}
body {
  color: #fff;
  font-size: 16px;
  font-family: "fot-rodin-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
  background: #000;
  background-attachment: fixed;
  min-height: 100vh;
}
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}
/*font*/
@font-face {
  font-family: 'Knockout';
  src: url('../font/knockout_htf92.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
a:hover {
  opacity: 0.75;
  text-decoration: none;
}
/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}
.spOnlyTxt {
  display: none;
}
@media(max-width:768px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
  .spOnlyTxt {
    display: inline;
  }
}
/*========= fadeUp ===============*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}
/* ========= フェードアップ共通 ========= */
.js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* 遅延（順番にふわっとさせたい時） */
.js-fadeUp:nth-child(1) {
  transition-delay: 0s;
}
.js-fadeUp:nth-child(2) {
  transition-delay: 0.15s;
}
.js-fadeUp:nth-child(3) {
  transition-delay: 0.3s;
}
/*========= ページ全体　===============*/
header {
  text-align: center;
  background: #000;
}
header h1 {
  width: 100%;
  margin: 0 auto;
}
section {
  margin: 8rem 0;
}
.inner {
  padding: 1rem;
}
h2 {
  text-align: center;
  margin: 1rem auto;
  font-family: 'Knockout', sans-serif;
  font-size: 24px;
  letter-spacing: 1;
}
p {
  text-align: center;
  font-size: 16px;
}
/* ボタン*/
/*
.btn-a {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #ffcc44;
  border: 1px solid #cc7700;
  background: transparent;
  padding: 12px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-a:hover {
  background: rgba(180, 80, 0, 0.15);
  border-color: #ffaa00;
  color: #fff5aa;
}
.btn-a-icon {
  font-size: 28px;
  color: #cc7700;
  transition: color 0.25s, transform 0.2s;
  line-height: 1;
}
.btn-a:hover .btn-a-icon {
  color: #ffaa00;
  transform: translateX(3px);
}
*/
@media(min-width:768px) {
  h2 {
    font-size: 40px;
  }
  p {
    font-size: 18px;
  }
  a {
    font-size: 18px;
  }
}

/* read */
.read p {
  padding: 2rem;
  margin: 0 auto 3rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .read p {
    text-align: center;
  }
}

/* about */
/* ticket */

/* corporate */
.corporate {
  text-align: center;
}
.corporate img {
  width: 80%;
  max-width: 564px;
  margin: 1rem auto 0;
}
.corporate_txt {
  margin-top: .5rem;
  font-size: .8rem;
}

/* official sns */
.official-sns {
  margin-top: 2.5rem;
  text-align: center;
}

.official-sns__title {
  margin: 0 1rem 1.2rem;
  font-size: 14px;
  letter-spacing: .04em;
}

.official-sns__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.official-sns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: opacity .3s ease;
}

.official-sns__link:hover {
  opacity: .6;
}

.official-sns__icon {
  display: block;
  width: 28px;
  height: 28px;
}

@media(min-width:768px) {
  .official-sns {
    margin-top: 4rem;
  }

  .official-sns__title {
    font-size: 16px;
  }

  .official-sns__icon {
    width: 30px;
    height: 30px;
  }
}

/*footer*/
footer .credit {
  text-align: center;
  font-size: 1rem;
  margin: 6rem 0 0;
  background-color: #1a1718;
  padding: 2rem 0;
}

.credit__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.credit__box p {
  margin: 0;
  text-align: center;
}

.credit__box .mcg img {
  display: block;
  max-height: 40px;
  width: auto;
}


footer .copyright {
  text-align: center;
  font-size: 10px;
  margin: 2rem 0 2rem;
	padding: 0 1%;
  background-color: #000;
}

@media(min-width:768px) {
  footer .copyright {
    text-align: center;
    font-size: 14px;
    margin: 2rem 0 2rem;
    background-color: #000;
  }
	
}

@media(min-width:980px) {
  .credit__box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-sizing: border-box;
    padding: 0 180px;
  }

  .credit__box p:not(.mcg) {
    grid-column: 2;
    text-align: center;
    white-space: nowrap;
  }

  .credit__box .mcg {
    grid-column: 3;
    justify-self: end;
  }
}