@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #272626;
  font-family: "Noto Sans JP", sans-serif;
  background: #323131;
}

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%;
  max-width: 1500px;
  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;
}

@font-face {
  font-family: "myfont";
  src: url("../font/Super\ Cartoon.ttf") format("truetype");
  font-display: swap;
}



/* スクロールダウンの位置 */
.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 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: url(../img/top/logo.png) no-repeat center;
    background-size: contain;
    z-index: -1;
    opacity: 0.3;
  }

  #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;
    height: 100%;
    opacity: 0.8;
  }
}

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


  .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: 100%;
    opacity: 0.8;
  }
}

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

#schedule .content {
  text-align: left;
  padding: 15px 5% 3rem;
  background: rgba(246, 244, 236, 0.85);
  padding: 15px 8% 45px 8%;
}

#schedule table {
  width: 100%;
  border: none;
  border-bottom: 2px solid #A2A2A2;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

#schedule table tr {
  position: relative;
  display: table-row;
}

#schedule table tr:first-child th {
  font-size: 14px;
}

#schedule table td {
  border-top: 2px solid #A2A2A2;
  vertical-align: middle;
  position: relative;
}

#schedule table .date {
  width: 9%;
}

#schedule table .time {
  width: 9%;
}

#schedule table .venue_area {
  width: 15%;
}

#schedule table .venue_place {
  width: 45%;
}

#schedule table .venue_info {
  width: 40%;
}

#schedule table td.date {
  font-weight: bold;
  font-size: 20px;
}

#schedule table .date .week {
  font-size: 14px;
  margin-left: 5px;
}

#schedule table td.time {
  font-size: 14px;
  font-weight: 600;
}

#schedule table td.info {
  font-weight: 600;
  font-size: 11px;
}


#schedule table td.venue {
  font-size: 12px;
  width: 18%;
  line-height: 1.5;
  font-weight: normal;
}

#schedule table .venue {
  width: 30%;
  line-height: 1.5;
}

#schedule table .venue_wrap {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 0 10px;
}

#schedule table .venue_area {
  font-weight: 600;
}

#schedule table td .venue_area {
  font-size: 18px;
}

#schedule table td .venue_place {
  font-size: 16px;
}

#schedule table td .venue_info {
  font-weight: normal;
}

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

}

#ticket .content {
  color: #FFFAE5;
  text-align: left;
  display: flow-root;
  background: rgba(84, 84, 84, 0.8);
  border: 1.5px solid;
  padding: 15px 8% 45px 8%;
}

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

#ticket h3 {
  margin: 15px 0;
}

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

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

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

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

#ticket .ticket_wrap {
  /* display: flex; */
  align-items: center;
}

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

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

@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;
}

#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;
}

#goods .title {
  font-size: 20px;
  text-align: left;
  margin: 18px 0 8px;
}

#goods p {
  margin: 0;
}

#goods .content-sale {
  text-align: center;
  border: 1.5px solid #A2A2A2;
  margin: 30px 17% 15px;
  padding: 5px 2.5% 20px;
}

#goods .txt {
  font-size: 15px;
  text-align: left;
}

#goods .button {
  padding-top: 20px;
  font-size: 15px;
  text-align: left;
}

#goods .button a {
  background: none;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 0 25px 0 0;
  font-size: 17px;
}

@media (hover: hover) {
  #goods .button a:hover {
    color: #fff;
    opacity: 0.7;
    transition: 0.2s;
  }
}


/*-------------------------------------------
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;

  background: #292929;
}

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-bottom: 2rem;
  }

  #schedule table tr:first-child th {
    font-size: 10px;
    line-height: 1.2;
  }

  #schedule table td .venue_place {
    font-size: 13px
  }


  #schedule table .venue_place {
    width: 100%;
    margin: 0;
  }

  #schedule table td.date {
    font-size: 15px;
  }

  #schedule table .date .week {
    font-size: 10px;
    display: block;
    line-height: 1;
    margin: 0;
  }

  #schedule table th {
    padding-bottom: 10px;
  }

  #schedule table td.time {
    font-size: 12px;
    line-height: 1.2;
    width: 21%;
  }

  #schedule table td.venue {
    width: 36%;
    padding: 5px 0;
    font-size: 14px;
  }

  #schedule table .venue_wrap {
    padding: 0;
    flex-wrap: wrap;
  }

  #schedule table .date {
    width: 15%;
  }

  #schedule table .venue_area {
    width: 100%;
  }


  #schedule table .venue_place {
    width: 100%;
  }

  #schedule table .venue_info {
    width: 100%;
  }

  #schedule table td .venue_area {
    padding-right: 0;
    margin: 5px 0;
    font-size: 14px;
  }

  #schedule table td .venue_place {
    font-size: 12px;
  }

  #schedule table td .venue_info {
    font-size: 10px;
    font-weight: normal;
  }

  #schedule p {
    margin: 5px 0 0 0;
  }

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

  #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: 16px;
  }

  #ticket .ticket_wrap {
    display: block;
  }

  .button {
    text-align: center;
  }

  .button a {
    width: 100%;
    font-size: 16px;
    line-height: 2;
    padding: 0;
  }

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

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

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

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