@charset "UTF-8";

html {
  /* viewport 1130px のとき font-size 10px */
  font-size: calc(100vw * 10 / 1130);
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
}
.font-luckiest-guy {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .03em;
}
.font-archivo-black {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: italic;
}

@media (768px <= width) {
  .sp {
    display: none !important;
  }
}
@media (width <= 767px) {
  .pc {
    display: none !important;
  }
}
img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Common
========================= */
.inner {
  width: 78vw;
  margin-inline: auto;
  padding: 0 4vw;
  box-sizing: border-box;
}

.title_section {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 3.0rem;
  margin-bottom: 4vw;
}
#about .title_section,
#cast .title_section {
  color: #002177;
}
#news .title_section,
#ticket .title_section,
#access .title_section {
  color: #ffbc1b;
}
#outline .title_section {
  color: #009ee1;
}
.title_section span {
  display: inline-block;
  position: relative;
  padding: 0 .5em;
  border-style: solid;
  border-width: 0 0 .16em;
}
#about .title_section span,
#cast .title_section span {
  border-color: #002177;
}
#news .title_section span,
#outline .title_section span,
#ticket .title_section span,
#access .title_section span {
  border-color: #007ac4;
}
.title_section span::before,
.title_section span::after {
  content: "";
  position: absolute;
  bottom: -.16em;
  width: .6em;
  height: .6em;
}
#about .title_section span::before,
#cast .title_section span::before {
  left: -.6em;
  background-image: url("../img/decoration_section_title_type1_left.svg");
}
#about .title_section span::after,
#cast .title_section span::after {
  right: -.6em;
  background-image: url("../img/decoration_section_title_type1_right.svg");
}
#news .title_section span::before,
#outline .title_section span::before,
#ticket .title_section span::before,
#access .title_section span::before {
  left: -.6em;
  background-image: url("../img/decoration_section_title_type2_left.svg");
}
#news .title_section span::after,
#outline .title_section span::after,
#ticket .title_section span::after,
#access .title_section span::after {
  right: -.6em;
  background-image: url("../img/decoration_section_title_type2_right.svg");
}

/* =========================
   Header
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
  background: #007ac4;
}
.nav_global {
  height: 100%;
}
.nav_global ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-size: 2.0rem;
}
.nav_global ul li a {
  position: relative;
  text-decoration: none;
  color: #ffbc1b;
  padding-left: 1em;
}
.nav_global ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: .8em;
  height: .8em;
  background-image: url("../img/decoration_nav_global.svg");
  background-size: 100%;
}
.menu-toggle {
  display: none;
}

/* =========================
   Main
========================= */
main {
  margin-top: 70px;
}

/* =========================
   Mv
========================= */
#mv {
  background-image: url("../img/bg_mv_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}

/* =========================
   About
========================= */
#about {
  padding: 4vw 0;
  background-color: #004ea2;
  background-image: url("../img/bg_about_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#about .content_about h3 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.4em;
}
#about .content_about p {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.7;
  color: #fff;
}
#about .content_about p + p {
  margin-top: 1.4em;
}

/* =========================
   News
========================= */
#news {
  padding: 4vw 0;
  background-color: #002177;
}
#news .box_news {
  border: solid .33em #009ee1;
  padding: 4vw;
}
#news .list_news {
  margin-bottom: 2vw;
}
#news .list_news li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffbc1b;
}
#news .list_news li a {
  text-decoration: none;
  color: #ffbc1b;
}
#news .list_news li a:hover {
  text-decoration: underline;
}

/* =========================
   Outline
========================= */
#outline {
  padding: 4vw 0;
  background-image: url("../img/bg_outline_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#outline .content_outline {
  text-align: center;
}
#outline .content_outline .date {
  font-size: 3.0rem;
  color: #002177;
}
#outline .content_outline .date strong {
  font-size: 2em;
  margin-right: .2em;
}
#outline .content_outline .time {
  font-size: 2.6rem;
  font-weight: 900;
  color: #009ee1;
  margin: 1em 0;
}
#outline .content_outline .time span {
  margin-right: .2em;
}
#outline .content_outline .place {
  font-size: 2.9rem;
  font-weight: 900;
  color: #009ee1;
}
#outline .content_outline .contact {
  margin-top: 4vw;
}
#outline .content_outline .contact h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #009ee1;
  margin-bottom: 1em;
}
#outline .content_outline .contact dl {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  color: #009ee1;
}
#outline .content_outline .contact dl a {
  text-decoration: none;
  color: #009ee1;
}
#outline .content_outline .contact dl a:hover {
  text-decoration: underline;
}

/* =========================
   Ticket
========================= */
#ticket {
  padding: 4vw 0;
  background-color: #fff;
  background-image: url("../img/bg_ticket_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#ticket .content_ticket {
  text-align: center;
}
#ticket .content_ticket .price {
  font-size: 2.6rem;
  line-height: 1.7;
  font-weight: 900;
  color: #009ee1;
}
#ticket .content_ticket .note {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 700;
  color: #009ee1;
  margin-top: 2vw;
}
#ticket .content_ticket .note li::before {
  content: "※";
}
#ticket .content_ticket .buttons_ticket {
  margin-top: 2vw;
}
#ticket .content_ticket .buttons_ticket .btn_ticket {
  display: inline-block;
  width: 21em;
  max-width: 100%;
  padding: .7em 1em;
  background: #ffbc1b;
  color: #002177;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  box-sizing: border-box;
  box-shadow: .3em .3em 0 #007ac4;
  transition: 0.25s ease;
}
#ticket .content_ticket .buttons_ticket .btn_ticket:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 #1c58a1;
}
#ticket .content_ticket .buttons_ticket .btn_ticket + .btn_ticket {
  margin-top: 1em;
}

/* =========================
   Cast
========================= */
#cast {
  padding: 4vw 0;
  background-image: url("../img/bg_cast_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#cast .content_cast .list_cast .card_cast {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6vw;
  margin-bottom: 2.6vw;
}
#cast .content_cast .list_cast .card_cast .image {
  width: 12vw;
}
#cast .content_cast .list_cast .card_cast .name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002177;
}
#cast .content_cast .list_cast .text_cast {
  width: 53vw;
  max-width: 100%;
  margin-inline: auto;
}
#cast .content_cast .list_cast .text_cast p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #002177;
}
#cast .content_cast .more {
  width: 53vw;
  max-width: 100%;
  margin: 3vw auto 0;
  text-align: right;
}
#cast .content_cast .more span {
  display: inline-block;
  transform: rotate(-5deg);
  font-size: 1.8rem;
  font-weight: 700;
  color: #002177;
}

/* =========================
   Access
========================= */
#access {
  padding: 4vw 0;
  background-image: url("../img/bg_access_pc.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#access .map {
  width: 53vw;
  max-width: 100%;
  height: 30vw;
  margin-inline: auto;
}

/* =========================
   Footer
========================= */
footer {
  text-align: center;
  color: #fff;
  padding: 4vw 0 2vw;
  background-color: #007ac4;
}
footer p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
  color: #fff;
}