@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #f4f4f4;
  font-family: "Noto Sans JP", sans-serif;
  background: #000000;
  min-width: 338px;
}

img {
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc_kv {
  display: block !important;
}

.sp_kv {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

section {
  display: block;
}

span {
  display: inline-block;
}

ul {
  padding-inline-start: 0px;
}

.content {
  padding: 0%;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4rem;
  text-align: center;
}

.section-title {
  font-size: 4rem;
  padding: 2rem 0;
  text-align: center;
  font-family: "myfont", sans-serif;
  letter-spacing: 0.05em;
}

/* フェードインさせる要素 */
.block {
  opacity: 0;
  transition: 1000ms;
}

/* フェードイン用のクラス */
.fadeIn {
  opacity: 1;
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 50%;
  top: 88%;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #e6e7e8;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*-------------------------------------------
Navigation
-------------------------------------------*/
#navBtn {
  display: block;
  position: fixed;
  top: 20px;
  right: 35px;
  width: 35px;
  height: 30px;
  z-index: 110;
  cursor: pointer;
}

#navBtn span:nth-of-type(1) {
  top: 6px;
}

#navBtn span:nth-of-type(2) {
  top: 22px;
}

#navBtn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e6e7e8;
  transition: all 0.4s ease;
}

nav a:hover {
  opacity: 0.7;
}

nav {
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-align: center;
  visibility: hidden;
}

nav ul {
  width: 100%;
}

/* menuOpen */
.menuOpen #navBtn span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 50%;
}

.menuOpen #navBtn span:nth-of-type(2) {
  transform: rotate(45deg);
  top: 50%;
}

.menuOpen nav {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}

nav ul li a {
  color: #e6e7e8;
  font-size: 32px;
  line-height: 70px;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-family: "myfont", sans-serif;
}

/*-------------------------------------------
MainVisual
-------------------------------------------*/

@media (min-aspect-ratio: 1/1) {
  .bg {
    height: 100vh;
    width: 100%;
    position: fixed;
    background: url(../img/top/kv_pc.png) no-repeat center;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
  }

  #mainvisual {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
  }

  #mainvisual img {
    object-fit: cover;
    text-align: center;
  }

  .kv {
    width: 100%;
    height: 100vh;
  }

  #mainvisual .logo {
    position: absolute;
    width: 75%;
  }
}

@media (max-aspect-ratio: 1/1) {
  .bg {
    height: 100vh;
    width: 100%;
    position: fixed;
    background: url(../img/top/kv_sp.png) no-repeat center;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
  }

  .pc_kv {
    display: none !important;
  }

  .sp_kv {
    display: block !important;
  }

  #mainvisual {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
  }

  #mainvisual img {
    object-fit: cover;
    text-align: center;
  }

  .kv {
    width: 100%;
    height: 100vh;
  }

  #mainvisual .logo {
    position: absolute;
    width: 80%;
  }
}

/*-------------------------------------------
SCHEDULE
-------------------------------------------*/
#schedule {
  padding-bottom: 3rem;
  background: #ae8628;
  padding: 30px
}

#schedule img {
  width: 60%;
  max-width: 800px;
}

/*-------------------------------------------
TICKET
-------------------------------------------*/
#ticket {
  padding-bottom: 3rem;

  max-width: 1500px;
}

#ticket .section-title {
  color: #a32d2d;
}

#ticket .content {
  color: #FFFAE5;
  text-align: left;
  font-weight: bold;
  display: flow-root;
  background: rgb(211 201 186 / 80%);
  padding: 15px 8% 45px 8%;
  border-radius: 45px;
  color: #000000;
}

#ticket p {
  font-size: 2em;
}

#ticket .price {
  text-align: center;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #a32d2d;
}

#ticket p span {
  font-size: 0.7em;
}

#ticket .txt {
  font-size: 14px;
  text-align: left;
  font-weight: normal;
}

#ticket .entry {
  font-size: 18px;
  text-align: left;
  margin: unset;
}

#ticket .entry span {
  font-size: 18px;
}

#ticket .ticket_wrap {
  align-items: center;
}

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

.button a {
  display: inline-block;
  background: #d73030;
  font-weight: bold;
  padding: 0 2em;
  color: #fff;
  font-size: 23px;
  text-decoration: none;
}

@media (hover: hover) {
  .button a:hover {
    background: #fff;
    color: #d73030;
    transition: 0.4s;
  }
}

@media (hover: none) {
  .button a:active {
    background: #fff;
    color: #d73030;
    transition: 0.4s;
  }
}

/*-------------------------------------------
GOODS
-------------------------------------------*/
#goods {
  padding-bottom: 3rem;
  display: block;
  background: #ae8628;
  padding-top: 0;
}

#goods .content {
  text-align: center;
  background: rgba(246, 244, 236, 0.85);
  display: flow-root;
  padding: 15px 8% 45px 8%;
}

#goods img {
  width: 100%;
  max-width: 1000px;
}

/*-------------------------------------------
Movie
-------------------------------------------*/
#movie {
  padding-bottom: 3rem;
  padding: 0;
  color: #FFFAE5;
}

#movie .movie_content {
  max-width: 750px;
  margin: 0 auto;
  width: 80%;
  float: none;
}

#movie .movie_content .movie_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  margin: 0 0 40px 0;
}

#movie .movie_content .movie_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
footer {
  text-align: center;
}

footer a {
  color: #FFFAE5;
  text-decoration: none;
  font-size: 15px;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 0.4ex;
}

footer .footerlink {
  margin: 0 auto;
}

footer p {
  padding: 10px 0;
  font-size: 10px;
  margin-bottom: auto;
  color: #FFFAE5;
}

footer ul.sns {
  margin-top: 0;
  text-align: center;
  padding: 30px 0 0 0;
}

footer ul.sns li {
  display: inline-block;
  padding: 0 10px;
}

footer ul.sns li img {
  width: 30px;
}

footer ul.sitelink {
  padding: 0;
}

@media (max-width: 850px) {
  .section-title {
    font-size: 2rem;
    padding: 20px 0;
  }

  .wrapper {
    padding: 2rem 1.5rem;
  }

  /*-------------------------------------------
Navigation
-------------------------------------------*/
  #navBtn {
    top: 0px;
    right: 20px;
  }

  nav ul li a {
    font-size: 25px;
    line-height: 50px;
  }

  /*-------------------------------------------
SCHEDULE
  -------------------------------------------*/
  #schedule {
    padding: 1rem;
  }

  #schedule img {
    width: 80%;
  }

  /*-------------------------------------------
TICKET
-------------------------------------------*/
  #ticket {
    padding-bottom: 2rem;
  }

  #ticket .entry span {
    font-size: 14px;
  }

  #ticket .content {
    padding: 15px 8% 20px 8%;
  }

  #ticket p {
    font-size: 22px;
    margin: 20px 0;
  }

  #ticket h3 {
    margin: 12px 0;
  }

  #ticket .txt {
    font-size: 11px;
    margin: 10px 0 20px;
  }

  #ticket .entry {
    font-size: 14px;
  }

  #ticket .ticket_wrap {
    display: block;
  }

  .button {
    text-align: center;
  }

  .button a {
    font-size: 16px;
    line-height: 2;
  }

  /*-------------------------------------------
Goods
-------------------------------------------*/
  #goods {
    padding-bottom: 2rem;
  }

  #goods .content {
    padding: 0px 4% 30px;
  }

  /*-------------------------------------------
Movie
-------------------------------------------*/
  #movie {
    padding-bottom: 1rem;
  }

  #movie .movie_content {
    width: 90%;
  }
}

@media (max-width: 338px) {
  .scroll {
    display: none;
  }
}