@charset "UTF-8";

html {
  /* viewport 375px のとき font-size 10px */
  font-size: calc(100vw * 10 / 375);
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* =========================
   Common
========================= */
.inner {
  width: 100%;
  padding: 0 10vw;
}
.title_section {
  font-size: 2.8rem;
  margin-bottom: 8vw;
}

/* =========================
   Header / Hamburger
========================= */
header {
  z-index: 1200;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 .5rem;
  box-sizing: border-box;
  background: #007ac4;
}

.menu-toggle {
  display: inline-flex;
  position: relative;
  z-index: 1101;
  width: 4.8rem;
  height: 4.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  appearance: none;
}
.menu-toggle span {
  display: block;
  width: 3rem;
  height: 0.3rem;
  background: #ffbc1b;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-0.9rem) rotate(-45deg);
}

.nav_global {
  position: fixed;
  top: 5rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  background: rgba(0, 34, 119, 0.98);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  height: calc(100dvh - 5rem);
}
.nav_global.is-open {
  transform: translateX(0);
}
.nav_global ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  height: auto;
  padding: 2rem 0 3rem;
  font-size: 2.4rem;
}
.nav_global ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.nav_global ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.nav_global ul li a {
  display: block;
  padding: 1.4rem 2rem 1.4rem 4.4rem;
  color: #ffbc1b;
}
.nav_global ul li a::before {
  top: 50%;
  left: 1.8rem;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

/* =========================
   Main
========================= */
main {
  margin-top: 5rem;
}

/* =========================
   Mv
========================= */
#mv {
  background-image: url("../img/bg_mv_sp.svg");
}

/* =========================
   About
========================= */
#about {
  padding: 8vw 0;
  background-image: url("../img/bg_about_sp.svg");
}
#about .content_about p {
  font-size: 1.6rem;
}

/* =========================
   News
========================= */
#news {
  padding: 8vw 0;
}
#news .inner {
  padding: 0 4vw;
}
#news .list_news {
  margin-bottom: 4vw;
}
#news .list_news li {
  font-size: 1.4rem;
}

/* =========================
   Outline
========================= */
#outline {
  padding: 8vw 0;
  background-image: url("../img/bg_outline_sp.svg");
}
#outline .content_outline .date {
  font-size: 2.4rem;
}
#outline .content_outline .time {
  font-size: 2.2rem;
}
#outline .content_outline .place {
  font-size: 2.2rem;
}
#outline .content_outline .contact {
  margin-top: 12vw;
}
#outline .content_outline .contact dl {
  flex-direction: column;
  font-size: 1.4rem;
}

/* =========================
   Ticket
========================= */
#ticket {
  padding: 8vw 0;
  background-image: url("../img/bg_ticket_sp.svg");
}
#ticket .content_ticket .price {
  font-size: 2.0rem;
}
#ticket .content_ticket .note {
  font-size: 1.3rem;
  margin-top: 3vw;
}
#ticket .content_ticket .buttons_ticket {
  margin-top: 10vw;
}
#ticket .content_ticket .buttons_ticket .btn_ticket {
  width: 17em;
  font-size: 1.6rem;
}

/* =========================
   Cast
========================= */
#cast {
  padding: 8vw 0;
  background-image: url("../img/bg_cast_sp.svg");
}
#cast .content_cast .list_cast .card_cast {
  flex-direction: column;
  gap: 5vw;
  margin-bottom: 8vw;
}
#cast .content_cast .list_cast .card_cast .image {
  width: 46vw;
}
#cast .content_cast .list_cast .card_cast .name {
  font-size: 2.0rem;
}
#cast .content_cast .list_cast .text_cast {
  width: 90%;
}
#cast .content_cast .list_cast .text_cast p {
  font-size: 1.4rem;
  line-height: 1.7;
}
#cast .content_cast .more {
  width: 90%;
  margin: 8vw auto 0;
}

/* =========================
   Access
========================= */
#access {
  padding: 8vw 0;
  background-image: url("../img/bg_access_sp.svg");
}
#access .map {
  width: 90%;
  max-width: 100%;
  height: 50vw;
}

/* =========================
   Footer
========================= */
footer {
  padding: 8vw 0 4vw;
}
footer p {
  font-size: 1.2rem;
}