@charset "UTF-8";
@keyframes appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes appear2 {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(0, -24px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
}
@keyframes kaiten {
  0%, 60%, 100% {
    transform: translate(0, 0) scale(1);
  }
  10% {
    transform: rotateY(0deg) translate(0, -15px) scale(1.05);
  }
  40% {
    transform: rotateY(360deg) translate(0, -15px) scale(1.05);
  }
}
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
    COMMON
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
html {
  overflow-x: hidden;
  font-size: 62.5% !important;
  margin: 0 !important;
  scroll-behavior: auto !important;
}
html:focus-within {
  scroll-behavior: smooth !important;
}

body {
  overflow-x: hidden;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem !important;
  line-height: 150% !important;
  color: #fff;
  background-color: #172a88;
}

p {
  font-size: 1.8rem !important;
  line-height: 150% !important;
}

h1 {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 120% !important;
}

h2 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 130% !important;
}

h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 140% !important;
}

h4 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 150% !important;
}

h5 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 150% !important;
}

h6 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 150% !important;
}

small {
  font-size: 1.53rem !important;
}

span.i_block {
  display: inline-block;
}

.pc {
  display: inline;
}

.pc.tab {
  display: inline;
}

.tab {
  display: none;
}

.sp {
  display: none;
}

.contents_outer {
  width: 100%;
  max-width: 1340px;
  padding: 80px 20px;
  margin: auto;
}

h2.section_title {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999 !important;
  background: linear-gradient(0deg, rgba(23, 42, 136, 0) 0%, rgb(23, 42, 136) 50%);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_logo {
  position: relative;
  height: 60px;
  width: auto;
  text-align: center;
}
#header .header_logo span {
  position: absolute;
  width: 100%;
  left: calc(-100% - 15px);
}
#header .header_logo img {
  position: relative;
  height: 60px;
  width: auto;
}
#header a.nav_link {
  font-weight: bold;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
}
#header a.nav_link:first-child {
  margin-left: 0;
}
#header a.nav_link:hover {
  color: #f0eb49;
}
#header #header_hamburger .hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  z-index: 999;
}
#header #header_hamburger .hamburger .hamburger_line {
  position: absolute;
  width: 28px;
  height: 5px;
  right: 6px;
  background-color: #172a88;
  transition: all 0.5s;
}
#header #header_hamburger .hamburger .hamburger_line.hamburger_line_1 {
  top: 8px;
}
#header #header_hamburger .hamburger .hamburger_line.hamburger_line_2 {
  top: 18px;
}
#header #header_hamburger .hamburger .hamburger_line.hamburger_line_3 {
  top: 28px;
}
#header #header_hamburger.open .hamburger .hamburger_line {
  /*ハンバーガーがクリックされたら*/
}
#header #header_hamburger.open .hamburger .hamburger_line.hamburger_line_1 {
  transform: rotate(-45deg);
  top: 18px;
}
#header #header_hamburger.open .hamburger .hamburger_line.hamburger_line_2 {
  opacity: 0;
}
#header #header_hamburger.open .hamburger .hamburger_line.hamburger_line_3 {
  transform: rotate(45deg);
  top: 18px;
}
#header #header_hamburger .header_hamburger_nav {
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%;
  /* 出てくるスライドメニューの幅 */
  max-width: 500px;
  height: 100vh;
  padding: 80px 16px 16px 16px;
  background-color: #172a88;
  transition: all 0.5s;
  z-index: 998;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}
#header #header_hamburger .header_hamburger_nav ol li {
  text-align: center;
  padding: 12px;
}
#header #header_hamburger .header_hamburger_nav ol div {
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin: 40px 0;
}
#header #header_hamburger.open nav {
  right: 0;
}
#header #header_hamburger .black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}
#header #header_hamburger.open .black_bg {
  /*ハンバーガーメニューが開いたら表示*/
  opacity: 0.75;
  visibility: visible;
}

div.nav_margin {
  height: 80px;
}

#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0;
  z-index: 999;
  opacity: 0;
  transition: all 0.8s ease;
}
#page_top img {
  width: 46px;
  height: 115px;
}
#page_top.show {
  opacity: 0.5;
  transform: none;
}
#page_top.show:hover {
  opacity: 1;
  transform: none;
}

footer .contents_outer {
  text-align: center;
  padding-top: 0;
  position: relative;
  overflow: visible;
}
footer .contents_outer .footer_deco_3 {
  position: relative;
  width: 100%;
  max-width: 786px;
  height: auto;
}
footer .contents_outer .footer_deco_4 {
  position: absolute;
  bottom: 0;
  left: -300px;
  width: 400px;
  height: auto;
  max-height: 380px;
}
footer .contents_outer .footer_deco_5 {
  position: absolute;
  bottom: 0;
  right: -300px;
  width: 400px;
  height: auto;
  max-height: 380px;
}
footer .copyright {
  display: block;
  text-align: center;
  font-size: 85%;
}

.link_btn {
  margin-top: 2rem;
  width: 100%;
}
.link_btn a,
.link_btn button {
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  max-width: 35rem;
  padding: 0.5rem;
  position: relative;
  transition: 0.5s;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
}
.link_btn a:hover,
.link_btn button:hover {
  color: #172a88;
  background-color: #fff;
}

section::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

.section_header {
  text-align: center;
  overflow: hidden;
}
.section_header .section_header_img {
  width: 100%;
  max-width: 1340px;
  height: auto;
  padding: 0 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contents_text {
  margin-bottom: 8rem;
}

section#error h6 {
  text-align: center;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

 PC（画面サイズ小, 1340px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

中デバイス（タブレット, 1200px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 1199.98px) {
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  COMMON
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
  /* 表示・非表示切替 ---------------------------------------- */
  .pc {
    display: none;
  }
  .pc.tab {
    display: inline;
  }
  .tab {
    display: inline;
  }
  /* HEADER ---------------------------------------- */
  #header {
    height: 60px;
  }
  #header .header_logo {
    height: 40px;
  }
  #header .header_logo img {
    height: 40px;
  }
  div.nav_margin {
    height: 60px;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

中デバイス（タブレット, 992px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 991.98px) {
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  COMMON
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
  body {
    font-size: 16px !important;
  }
  p {
    font-size: 16px !important;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  small {
    font-size: 14px !important;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

小デバイス（タブレット, 768px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 767.98px) {
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  COMMON
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
  .pc.tab {
    display: none;
  }
  .tab {
    display: none;
  }
  .tab.sp {
    display: inline;
  }
  .sp {
    display: inline;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

極小デバイス（縦向きモバイル, 576px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
    HOME
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------------------------------------
　　 オープニング
 ---------------------------------------------- */
/* -----------------------------------------------
　　 ファーストビュー
 ---------------------------------------------- */
section#first_view {
  position: relative;
  max-width: 2048px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: auto;
  margin-bottom: 80px;
  background: url("../img/home/fv.jpg") center center/cover;
}

/* -----------------------------------------------
　　 main
 ----------------------------------------------- */
/* News ---------------------------------------- */
section#news {
  text-align: center;
}
section#news .contents {
  margin-bottom: 60px;
}
section#news .news_contents {
  display: inline-block;
  margin: auto;
}
section#news .news_contents table {
  text-align: left;
  margin-bottom: 40px;
}
section#news .news_contents table tr {
  border-bottom: 1px solid #fff;
}
section#news .news_contents table tr td {
  padding: 1.2rem;
}
section#news .x_contents span {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 12px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
  color: #172a88;
  font-weight: bold;
}
section#news .x_contents span::after {
  content: "▼";
  display: block;
  color: #fff;
  font-size: 30px;
  position: absolute;
  bottom: -23px;
  left: calc(50% - 15px);
}
section#news .x_contents a img:hover {
  animation: wiggle 2s linear infinite;
}
section#news iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border: none;
}

/* Story ---------------------------------------- */
section#story {
  text-align: center;
  margin-bottom: 80px;
}
section#story .contents {
  position: relative;
  display: inline-block;
  margin: auto;
}
section#story .contents h3 {
  margin-bottom: 40px;
}
section#story .contents p {
  font-size: 2.1rem !important;
  font-weight: bold;
  line-height: 180% !important;
}
section#story .contents img {
  position: absolute;
  width: 250px;
  height: auto;
}
section#story .contents img:first-of-type {
  top: -60px;
  left: calc(100% + 80px);
  animation: fuwafuwa 5s ease-in-out infinite alternate;
}
section#story .contents img:last-of-type {
  bottom: -60px;
  right: calc(100% + 80px);
  animation: fuwafuwa 5s ease-in-out infinite alternate;
  animation-delay: -2.5s;
}

/* Cast ---------------------------------------- */
section#cast {
  text-align: center;
}
section#cast small.note {
  display: inline-block;
  border: 1px solid #fff;
  padding: 0 8px;
}
section#cast .contents {
  padding: 40px 0;
}
section#cast .contents h3 {
  padding: 60px 0;
}
section#cast .contents .casts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 40px;
}
section#cast .contents .casts .cast {
  width: 33.333%;
}
section#cast .contents .casts .cast > a:hover img {
  animation: kaiten 1.8s ease-in-out infinite;
}
section#cast .contents .casts .cast h4 {
  display: inline-block;
  position: relative;
}
section#cast .contents .casts .cast h4::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 25px;
  background: url("../img/common/star.svg") no-repeat center center;
  position: absolute;
  top: 0;
  left: -40px;
}
section#cast .contents .casts .cast h4::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 25px;
  background: url("../img/common/star.svg") no-repeat center center;
  position: absolute;
  top: 0;
  right: -40px;
  transform: scale(-1, 1);
}
section#cast .contents .casts .cast .sns {
  display: flex;
  justify-content: center;
}
section#cast .contents .casts .cast .sns a {
  display: inline-block;
  height: 26px;
  width: 26px;
  margin: 12px 8px;
}
section#cast .contents .casts .cast .sns a img {
  height: 26px;
  width: 26px;
}
section#cast .contents .casts .cast .sns a img:hover {
  animation: wiggle 2s linear infinite;
}

/* info ------------------------------------- */
#info.contents_outer {
  display: flex;
}
#info.contents_outer div.flex_item {
  width: 50%;
}
#info.contents_outer div.flex_item:first-child {
  padding-right: 10px;
}
#info.contents_outer div.flex_item:last-child {
  padding-left: 10px;
}
#info.contents_outer div.flex_item section {
  padding-bottom: 40px;
}
#info.contents_outer div.flex_item section h2.section_title {
  color: #172a88;
  background-color: #fff;
  margin-bottom: 20px;
}
#info.contents_outer div.flex_item section#showDates {
  text-align: center;
}
#info.contents_outer div.flex_item section#showDates table {
  width: 100%;
}
#info.contents_outer div.flex_item section#showDates table th,
#info.contents_outer div.flex_item section#showDates table td {
  padding: 8px 0;
  width: 20%;
}
#info.contents_outer div.flex_item section#showDates table thead {
  border-bottom: 2px solid #fff;
}
#info.contents_outer div.flex_item section#showDates table thead th {
  font-weight: bold;
}
#info.contents_outer div.flex_item section#showDates table thead th span {
  font-size: 3.6rem;
}
#info.contents_outer div.flex_item section#showDates table tbody tr {
  border-bottom: 1px solid #fff;
}
#info.contents_outer div.flex_item section#showDates table tbody tr td {
  color: #f0eb49;
}
#info.contents_outer div.flex_item section#showDates table tbody tr td:first-child {
  color: #fff;
}
#info.contents_outer div.flex_item section#showDates table caption {
  caption-side: bottom;
  padding: 8px 0;
  font-size: 1.6rem;
}
#info.contents_outer div.flex_item section#ticket .price .items {
  padding: 24px;
  /* 点線 */
}
#info.contents_outer div.flex_item section#ticket .price .items .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
#info.contents_outer div.flex_item section#ticket .price .items .item .name,
#info.contents_outer div.flex_item section#ticket .price .items .item .price {
  display: inline-block;
  background-color: #172a88;
  z-index: 9;
}
#info.contents_outer div.flex_item section#ticket .price .items .item .name {
  padding-right: 1.2rem;
}
#info.contents_outer div.flex_item section#ticket .price .items .item .price {
  padding-left: 1.2rem;
}
#info.contents_outer div.flex_item section#ticket .price .items .item::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  z-index: 8;
  width: 100%;
  border-bottom: dotted 2px #fff;
}
#info.contents_outer div.flex_item section#ticket .note {
  display: block;
  margin-bottom: 40px;
}
#info.contents_outer div.flex_item section#ticket .note ul li {
  margin-left: 24px;
  position: relative;
}
#info.contents_outer div.flex_item section#ticket .note ul li:not(:last-child)::before {
  content: "※";
  position: absolute;
  left: -24px;
}
#info.contents_outer div.flex_item section#ticket .note ul li:last-child {
  color: #f0eb49;
}
#info.contents_outer div.flex_item section#ticket .note ul li:last-child::before {
  content: "★";
  position: absolute;
  left: -24px;
}
#info.contents_outer div.flex_item section#ticket .buy > div {
  padding: 24px;
}
#info.contents_outer div.flex_item section#ticket .buy label {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
#info.contents_outer div.flex_item section#ticket .buy label::after {
  position: absolute;
  right: 15px;
  width: 16px;
  height: 12px;
  background-color: #374aa8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
#info.contents_outer div.flex_item section#ticket .buy label select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 2.8em;
  padding: 0.6em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #ffffff;
  border-radius: 25px;
  background-color: #fff;
  color: #172a88;
  font-size: 1em;
  cursor: pointer;
}
#info.contents_outer div.flex_item section#place {
  text-align: center;
}
#info.contents_outer div.flex_item section#place .link_btn {
  margin-bottom: 36px;
}
#info.contents_outer div.flex_item section#place h5,
#info.contents_outer div.flex_item section#place small {
  text-align: left;
}
#info.contents_outer div.flex_item section#place small ul li {
  margin-left: 24px;
  position: relative;
}
#info.contents_outer div.flex_item section#place small ul li::before {
  content: "◆";
  position: absolute;
  left: -24px;
}
#info.contents_outer div.flex_item section#place iframe {
  width: 100%;
}

section#staff {
  text-align: center;
}
section#staff .contents {
  padding: 0;
  padding-bottom: 80px;
}
section#staff .contents > .i_block {
  margin: 8px 12px;
  font-weight: bold;
}
section#staff .contents > .i_block .job {
  font-size: 1.6rem;
}
section#staff .contents > .i_block .job::after {
  content: "★";
  margin: 0 4px;
  color: #f0eb49;
}
section#staff .contents > .i_block .name {
  font-size: 2.1rem;
}
section#staff .contents > .i_block .name span {
  font-size: 1.6rem;
  font-weight: normal;
}
section#staff .contents > .i_block .name.seisaku {
  font-size: 3.6rem;
}
section#staff .contents > .i_block.first_line .job {
  font-size: 1.8rem;
}
section#staff .contents > .i_block.first_line .name {
  font-size: 2.4rem;
}
section#staff .contents img {
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
  display: block;
}
section#staff .contents h3 {
  margin-bottom: 24px;
}

#main-carousel {
  max-width: 980px;
  margin: 0 auto 12px auto;
}

#thumbnail-carousel {
  margin-bottom: 60px;
}

#thumbnail-carousel .splide__list {
  justify-content: center;
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.splide__slide {
  opacity: 0.6;
}

.splide__slide.is-active {
  opacity: 1;
}

section#streaming .streaming_ticket {
  width: 100%;
  max-width: 980px;
  margin: auto auto 50px auto;
  text-align: center;
  border: 1px solid #fff;
  padding-bottom: 12px;
}
section#streaming .streaming_ticket h3,
section#streaming .streaming_ticket h4,
section#streaming .streaming_ticket p {
  margin-bottom: 40px;
}
section#streaming .streaming_ticket h3 {
  padding: 8px;
  background-color: #fff;
  color: #172a88;
  font-weight: bold;
}
section#streaming .streaming_ticket .lineup table {
  text-align: left;
  margin: auto;
}
section#streaming .streaming_ticket .lineup table th,
section#streaming .streaming_ticket .lineup table td {
  padding: 8px 8px 20px 8px;
}
section#streaming .streaming_ticket .lineup table th .link_btn,
section#streaming .streaming_ticket .lineup table td .link_btn {
  text-align: center;
}
section#streaming .streaming_ticket .lineup table h5 {
  margin-bottom: 8px;
  border-bottom: 1px solid #fff;
}
section#streaming .youtube {
  text-align: center;
}
section#streaming .youtube iframe {
  width: 980px;
  height: 551px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

 PC（画面サイズ小, 1340px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

中デバイス（タブレット横型, 1200px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

中デバイス（タブレット縦型, 1024px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 1024px) {
  /* -----------------------------------------------
  　　 ファーストビュー
      ---------------------------------------------- */
  section#first_view {
    height: 142vw;
    background: url("../img/home/fv_md.jpg") center center/cover;
    margin-top: 60px;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

中デバイス（タブレット, 992px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 992px) {
  /* News ---------------------------------------- */
  section#news .x_contents span::after {
    bottom: -20px;
  }
  section#news iframe {
    height: calc((100vw - 40px - 30px) * 0.555);
  }
  /* Story ---------------------------------------- */
  section#story .contents p {
    font-size: 1.8rem !important;
  }
  /* info ------------------------------------- */
  #info.contents_outer {
    display: block;
  }
  #info.contents_outer div.flex_item {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #info.contents_outer div.flex_item:first-child {
    padding-right: 0;
  }
  #info.contents_outer div.flex_item:last-child {
    padding-left: 0;
  }
  #info.contents_outer div.flex_item section {
    padding-bottom: 40px;
  }
  #info.contents_outer div.flex_item section#showDates table thead th span {
    font-size: 3.2rem;
  }
  #info.contents_outer div.flex_item section#showDates table caption {
    font-size: 1.4rem;
  }
  #info.contents_outer div.flex_item section#ticket .price .items .item {
    font-size: 2.1rem;
  }
  section#staff {
    text-align: center;
  }
  section#staff .contents {
    padding: 0;
    padding-bottom: 80px;
  }
  section#staff .contents > .i_block {
    margin: 8px 12px;
    font-weight: bold;
  }
  section#staff .contents > .i_block .job {
    font-size: 1.6rem;
  }
  section#staff .contents > .i_block .job::after {
    content: "★";
    margin: 0 4px;
    color: #f0eb49;
  }
  section#staff .contents > .i_block .name {
    font-size: 1.8rem;
  }
  section#staff .contents > .i_block .name span {
    font-size: 1.4rem;
    font-weight: normal;
  }
  section#staff .contents > .i_block .name.seisaku {
    font-size: 3.2rem;
  }
  section#staff .contents > .i_block.first_line .job {
    font-size: 1.8rem;
  }
  section#staff .contents > .i_block.first_line .name {
    font-size: 2.1rem;
  }
  section#staff .contents img {
    width: 100%;
    max-width: 540px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  section#staff .contents h3 {
    margin-bottom: 24px;
  }
  section#streaming .youtube iframe {
    width: 90vw;
    height: 50.625vw;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

小デバイス（タブレット, 768px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 768px) {
  .contents_outer {
    padding-top: 40px;
  }
  /* News ---------------------------------------- */
  section#news .news_contents table tr {
    border-bottom: 1px solid #fff;
  }
  section#news .news_contents table tr td {
    display: block;
    width: 100%;
  }
  section#news .news_contents table tr td:first-child {
    padding-bottom: 0;
  }
  /* Cast ---------------------------------------- */
  section#cast .contents .casts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
  }
  section#cast .contents .casts .cast {
    width: 50%;
  }
  section#cast .contents .casts .cast:first-child {
    width: 100%;
  }
  section#cast .contents .casts .cast:first-child > a > img {
    width: 50%;
    height: auto;
  }
  section#cast .contents .casts .cast h4 {
    display: inline-block;
    position: relative;
  }
  section#cast .contents .casts .cast h4::before {
    width: 24px;
    height: 25px;
  }
  section#cast .contents .casts .cast h4::after {
    width: 24px;
    height: 25px;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

極小デバイス（縦向きモバイル, 576px 未満）

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 576px) {
  .contents_outer {
    padding-top: 0;
  }
  /* -----------------------------------------------
  　　 ファーストビュー
      ---------------------------------------------- */
  section#first_view {
    background: url("../img/home/fv_sm.jpg") center center/cover;
  }
}/*# sourceMappingURL=style.css.map */