@charset "UTF-8";
html, body, img, dl, dt, dd, ol, ul, li, form, label, table, tbody, tfoot, thead, tr, th, td, aside, footer, header, nav, section, a, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

article, aside, footer, header, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

dl > dd, dl > ul {
  margin: 1em;
}

a {
  text-decoration: none;
  color: black;
}

button {
  border: none;
  background: none;
  display: block;
  cursor: pointer;
}

/* ////////////////////////////////// all ////////////////////////////////// */
:root {
  --size-large:24px;
  --size-normal:16px;
  --size-small:12px;
  --color-red:red;
}

html {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  scroll-behavior: smooth;
  scroll-padding-top: 1em;
  font-size: var(--size-normal);
  width: 100%;
  height: auto;
  line-height: 1.8;
  background-image: url(img/all_back.webp);
  background-size: 100%;
  background-repeat: repeat-y;
}

body {
  width: 100%;
  height: auto;
}

p, a {
  font-size: var(--size-normal);
  font-weight: bold;
}

.content {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 9;
}

/* ////////////////////////////////// original ////////////////////////////////// */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 250px;
  height: 100%;
  background: linear-gradient(180deg, #ca171d, rgba(0, 0, 0, 0.7411764706));
  transform: translateX(100%);
}
.nav a {
  color: white;
  padding: 5px 0px;
  display: block;
}
.nav ul {
  margin: 80px 20px 35px;
}
.nav ul li {
  list-style: none;
}
.nav.nav_wrap_block {
  animation: nav_block 0.5s forwards;
}
.nav.nav_wrap_none {
  animation: nav_none 0.5s forwards;
}

@keyframes nav_block {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes nav_none {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.nav_btn {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9999;
  height: 45px;
  width: 45px;
  border-radius: 50%;
}
.nav_btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.5s;
}
.nav_btn.active span:nth-child(2) {
  transition: 0.5s;
  opacity: 0;
}
.nav_btn.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.5s;
}

.nav_btn span {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 15px);
}

.nav_btn span:nth-child(1) {
  top: 12.5px;
}

.nav_btn span:nth-child(3) {
  top: calc(100% - 16.5px);
}

.sns_icon {
  margin: 0 20px;
  display: flex;
}
.sns_icon a {
  margin-right: 15px;
}
.sns_icon a img {
  height: 20px;
  width: auto;
  margin: 0;
}

.fv_cta {
  position: fixed;
  bottom: 15px;
  width: 300px;
  right: -35px;
  z-index: 9999;
}
.fv_cta a {
  color: black;
  font-size: 18px;
  display: block;
}

.fv_time {
  background: rgba(255, 255, 255, 0.6196078431);
  text-align: center;
  padding: 15px 0;
  line-height: 2em;
}
.fv_time h3 span {
  font-size: 22px;
}
.fv_time h3 span {
  font-size: 28px;
}
.fv_time p {
  color: #B50c00;
  font-size: 22px;
}

.cast_title, .theater_title, .ticket_wrap, .staff_wrap, .sns_wrap {
  margin-bottom: 15px;
}
.cast_title img, .theater_title img, .ticket_wrap img, .staff_wrap img, .sns_wrap img {
  width: auto;
  height: 6.5em;
  margin-bottom: 10px;
}

.about {
  background-image: url(img/about_back.webp);
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 5% 0 7.5%;
}
.about p {
  font-size: 18px;
  filter: drop-shadow(0px 1px 6px black);
  letter-spacing: 2px;
  white-space: break-spaces;
}
.about p span {
  color: #D3A721;
  font-size: 25px;
}
.about p span:nth-child(1) {
  font-family: "ab-doudoukaisyo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 33px;
}

.about_line {
  width: 100%;
  height: 27px;
  background-image: url(img/about_line.webp);
  background-position: center;
  background-size: contain;
}

.cast {
  padding: 5% 0 15%;
  background-image: url(img/cast_back1.webp);
  background-position: top right;
  background-size: 60%;
  background-repeat: no-repeat;
  position: relative;
}
.cast::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(img/cast_back2.webp);
  background-position: bottom left;
  background-size: 80%;
  background-repeat: no-repeat;
  z-index: -1;
}

.cast_wrap {
  display: flex;
  align-items: start;
  justify-content: center;
}
.cast_wrap .cast_inner {
  position: relative;
  display: block;
  width: 13%;
}
.cast_wrap .cast_inner p {
  position: absolute;
  bottom: 7%;
  left: 6%;
  width: 88%;
  display: block;
  color: white;
  text-align: center;
  font-size: 14px;
}
.cast_wrap .cast_inner p span {
  font-size: 8px;
}
.cast_wrap:nth-child(3), .cast_wrap:nth-child(5) {
  margin-bottom: 35px;
}
.cast_wrap .cast_inner_a::before, .cast_wrap .cast_inner_b::before {
  content: "A";
  background: #CA171D;
  color: white;
  position: absolute;
  padding: 0px 8px;
  border-radius: 50%;
  top: 2%;
  left: 3%;
}
.cast_wrap .cast_inner_b::before {
  content: "B";
}
.cast_wrap .cast_inner_y p, .cast_wrap .cast_inner_g p {
  color: black;
}
.cast_wrap .cast_inner_y::before, .cast_wrap .cast_inner_g::before {
  content: "";
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 2%;
  background-image: url(img/cast_icon1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cast_wrap .cast_inner_g::before {
  background-image: url(img/cast_icon2.webp);
}

.schedule {
  background: rgba(255, 255, 255, 0.6196078431);
  padding: 4% 0 6%;
}

.schedule_content img {
  width: 90%;
  max-width: 630px;
}

.schedule_title {
  margin-bottom: 2%;
}
.schedule_title img {
  height: 6.5em;
  width: auto;
}

.theater {
  padding: 5.5% 0 4%;
  background-image: url(img/theater_back.webp);
  background-position: center;
  background-size: cover;
  color: white;
}

.theater_title, .ticket_wrap, .staff_wrap, .sns_wrap {
  width: 90%;
  max-width: 730px;
  margin: 0 auto;
}
.theater_title .theater_info h3, .ticket_wrap .theater_info h3, .staff_wrap .theater_info h3, .sns_wrap .theater_info h3 {
  font-size: 24px;
}
.theater_title .theater_info p, .ticket_wrap .theater_info p, .staff_wrap .theater_info p, .sns_wrap .theater_info p {
  font-size: 18px;
}

.theater_info {
  margin-bottom: 30px;
}

.theater_info_bottom {
  width: 92%;
  max-width: 730px;
  margin: 40px auto;
}
.theater_info_bottom p {
  white-space: break-spaces;
  line-height: 1.8em;
}

.map {
  width: 92%;
  margin: 0 auto 25px;
  max-width: 730px;
  position: relative;
  padding-top: 35.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ticket {
  background-image: url(img/ticket_back.webp);
  background-size: cover;
  padding: 4% 0 4%;
}

.ticket_wrap, .staff_wrap, .sns_wrap {
  align-items: start;
}

.ticket_info_wrap {
  width: 100%;
  padding: 0% 0 4%;
}

.ticket_info {
  margin-bottom: 15px;
  filter: drop-shadow(0px 1px 6px black);
  padding: 3% 10%;
}
.ticket_info .ticket_title {
  display: flex;
  max-width: 255px;
  justify-content: space-between;
}

.ticket_info:first-child {
  color: white;
  background: linear-gradient(90deg, #5b0904 0%, #af1107 33%, #af1107 66%, #5b0904 100%);
  position: relative;
}

.ticket_info:first-child::before, .ticket_info:nth-child(2)::before {
  content: "";
  width: 133px;
  height: 44px;
  background-image: url(img/none.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
}

.ticket_info:nth-child(2) {
  position: relative;
  color: white;
  background: linear-gradient(90deg, #5b2504 0%, #f37714 33%, #f37714 66%, #5b2504 100%);
}

.ticket_info:nth-child(3) {
  color: white;
  background: linear-gradient(90deg, #5b2504 0%, #ffac10 33%, #ffb01b 66%, #5b2504 100%);
}

.ticket_info:nth-child(4) {
  background: linear-gradient(90deg, #4b4b4b 0%, #e3e3e3 33%, #e3e3e3 66%, #4b4b4b 100%);
}

.ticket_info:last-child {
  margin-bottom: 0px;
}

.yellow_text {
  color: #D3A721;
}

.staff {
  background: rgba(255, 255, 255, 0.6196078431);
  padding: 4% 0 9%;
}
.staff p {
  white-space: break-spaces;
}

.cta {
  padding: 2% 0;
  background: linear-gradient(90deg, #5b0904 0%, #af1107 33%, #af1107 66%, #5b0904 100%);
}
.cta a {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 23px;
  text-align: center;
  border-radius: 50px;
  filter: drop-shadow(0px 1px 6px black);
  animation: cta_btn 1.5s infinite;
}

@keyframes cta_btn {
  0%, 70%, 100% {
    transform: scale(1.05);
  }
  40%, 85% {
    transform: scale(1);
  }
}
.sns {
  padding: 4% 0 8%;
}

a.nav_logo {
  margin: 20px;
  padding: 0;
}

footer {
  padding: 5% 0;
  background: linear-gradient(180deg, #af1107, #650C0F);
  color: white;
  text-align: center;
}
footer a {
  color: white;
  text-decoration: underline;
}
footer a.footer_logo img {
  width: 200px;
  margin: 20px auto;
}

.sp_flyer {
  display: none;
}

@media (max-width: 730px) {
  .cast_wrap:nth-child(4) .cast_inner, .cast_wrap:nth-child(5) .cast_inner {
    width: 19%;
  }
  .cast_wrap:nth-child(6) .cast_inner {
    width: 24%;
  }
  .about {
    padding: 7% 0 11.5%;
  }
  .cast {
    padding: 7.5% 0 15%;
    background-size: 75%;
  }
  .schedule_content img {
    width: 80%;
  }
  .map {
    padding-top: 50.25%;
  }
  .ticket {
    padding: 6% 0;
  }
  .cta {
    padding: 2% 0;
  }
  .staff {
    padding: 5.5% 0 10%;
  }
  .about_line {
    background-size: cover;
  }
  .schedule {
    padding: 5% 0 10%;
  }
  .theater_title, .ticket_wrap, .staff_wrap, .sns_wrap {
    width: 80%;
  }
  .map {
    width: 80%;
  }
  .theater_info_bottom {
    width: 80%;
  }
  .theater {
    padding: 6.5% 0 4%;
  }
  .cast_wrap .cast_inner {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about p span:nth-child(1) {
    font-size: 23px;
  }
  :root {
    --size-normal:14px;
  }
  .fv_time h3 span {
    font-size: 19px;
  }
  .fv_time p, .fv_time h3 {
    font-size: 15px;
  }
  .fv_time {
    line-height: 1.7em;
  }
  .about p {
    font-size: 13px;
    letter-spacing: 0px;
  }
  .about p span {
    font-size: 19px;
  }
  .about {
    padding: 7% 0 9.5%;
  }
  .cast_inner img {
    width: 106%;
    margin-left: -3%;
  }
  .cast_wrap .cast_inner p {
    bottom: 6%;
    font-size: 10px;
  }
  .cast_wrap:nth-child(3), .cast_wrap:nth-child(5) {
    margin-bottom: 20px;
  }
  .cast_wrap .cast_inner_a::before, .cast_wrap .cast_inner_b::before {
    padding: 0px 6px;
    top: 0%;
    left: 0%;
    font-size: 10px;
  }
  .cast_wrap .cast_inner_y::before, .cast_wrap .cast_inner_g::before {
    width: 2em;
    height: 2em;
    top: -3%;
    left: -4%;
  }
  .cast {
    padding: 9.5% 0 21%;
  }
  .theater_title .theater_info h3, .ticket_wrap h3, .staff_wrap h3, .sns_wrap h3 {
    font-size: 17px;
  }
  .theater_title .theater_info p, .ticket_wrap p, .staff_wrap p, .sns_wrap p, .theater_info_bottom p {
    font-size: 12px;
  }
  .theater {
    padding: 8.5% 0;
  }
  .cta a {
    max-width: 300px;
    animation: cta_btn 1.5s infinite;
  }
  @keyframes cta_btn {
    0%, 70%, 100% {
      transform: scale(1.05);
    }
    40%, 85% {
      transform: scale(1);
    }
  }
  .staff {
    padding: 9.5% 0 12%;
  }
  .sns {
    padding: 7% 0 10%;
  }
  footer {
    margin-bottom: 74px;
  }
  footer a, footer p {
    font-size: 10px;
  }
  .ticket {
    padding: 9% 0;
  }
  .theater_info_bottom {
    margin: 20px auto 30px;
  }
  .cast_wrap .cast_inner p span {
    display: none;
  }
  .nav {
    width: 100%;
  }
  a.nav_logo {
    margin: 25px auto;
    width: 200px;
  }
  .cast {
    overflow: hidden;
  }
  .nav_btn {
    right: 15px;
  }
  .fv_cta {
    position: fixed;
    bottom: -1px;
    right: 0;
    z-index: 9999;
    padding: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #5b0904 0%, #af1107 33%, #af1107 66%, #5b0904 100%);
    border-radius: 0;
  }
  .fv_cta a img {
    width: 300px;
    margin: 5px auto;
  }
  .cast_title, .theater_title, .ticket_wrap, .staff_wrap, .sns_wrap {
    margin-bottom: 10px;
  }
  .cast_title img, .theater_title img, .ticket_wrap img, .staff_wrap img, .sns_wrap img, .schedule_title img {
    width: auto;
    height: 5em;
    margin-bottom: 0;
  }
  .schedule_content img {
    width: 85%;
  }
  .cta {
    padding: 3% 0;
  }
  .theater_title, .ticket_wrap, .staff_wrap, .sns_wrap {
    width: 90%;
  }
  .map, .theater_info_bottom {
    width: 90%;
  }
  .pc_flyer {
    display: none;
  }
  .sp_flyer {
    display: block;
  }
  html {
    min-width: 317px;
  }
  .ticket_info:first-child::before, .ticket_info:nth-child(2)::before {
    width: 100px;
    height: 33px;
  }
}/*# sourceMappingURL=style.css.map */