@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: italic;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #333;
  list-style: none;
}
.menu-content ul li ul {
  display: flex;
  padding: 0;
  margin-left: 0;
}
.menu-content ul li ul li {
  width: 60px;
  border: none;
}
.menu-content ul li ul li a::before {
  content: none;
}
.menu-content ul li ul li a img {
  width: 100%;
  height: auto;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 100px;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  font-size: 24px;
  line-height: 30px;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  background-color: #fff;
  color: #333;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #333;
}
.modal .close p:hover {
  color: #fff;
  background-color: #333;
  cursor: pointer;
  border: 1px solid #333;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
header .header__inner .header_logo {
  width: 110px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 900px;
  margin-left: 50px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  line-height: 59px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
header .header__inner .header_nav ul li a:hover {
  color: #ffff66;
}
header .header__sns ul {
  width: 60px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 30px;
  top: 13px;
}
header .header__sns ul li {
  width: 30px;
}
header .header__sns ul li a img {
  width: 100%;
  height: auto;
}
header .header__sns.show {
  display: none;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  background-image: url("../img/bg.jpg");
  background-size: cover;
}
.mainvisual .mainvisual__inner {
  height: auto;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 60px;
}
.mainvisual .mainvisual__inner img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: 70%;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  margin: 0 auto;
  margin-top: 15px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 1200px;
  margin: 0 auto;
}

.section__title {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  width: 300px;
  margin: 0 auto;
}
.section__title h2 {
  font-size: 4em;
  line-height: 1em;
  color: #333;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャッチコピー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.catchcopy__wrap {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
  border-top: 1px solid #333;
}
.catchcopy__wrap .catchcopy {
  width: 1200px;
  margin: 0 auto;
}
.catchcopy__wrap .catchcopy h2 {
  color: #333;
  font-size: 3em;
  line-height: 1.3em;
  font-weight: bold;
  text-align: center;
}
.catchcopy__wrap .catchcopy p {
  margin-top: 30px;
  font-size: 1.5em;
  color: #333;
  text-align: center;
  line-height: 2em;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #333;
  background-image: url("../img/bg2.png");
  background-attachment: fixed;
  z-index: -2;
}
.news__wrap .news .section__title {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.news__wrap .news .section__title h2 {
  color: #333;
}
.news__wrap .news .section__title p {
  color: #333;
}
.news__wrap .news .news__feed {
  border: 1px solid #333;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .news__feed h3 {
  font-size: 1.5em;
  line-height: 100px;
  color: #333;
  text-align: center;
}
.news__wrap .news .news__feed ul {
  padding: 30px;
  padding-top: 0;
  width: auto;
  margin: 0 auto;
  height: 400px;
  overflow: scroll;
}
.news__wrap .news .news__feed ul::-webkit-scrollbar {
  display: none;
}
.news__wrap .news .news__feed ul li {
  width: auto;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__wrap .news .news__feed ul li a {
  text-decoration: none;
  width: 100%;
}
.news__wrap .news .news__feed ul li a:hover {
  background-color: #ffff66;
}
.news__wrap .news .news__feed ul li a dl {
  display: flex;
}
.news__wrap .news .news__feed ul li a dl dt {
  font-size: 0.8em;
  color: #fff;
  background-color: #333;
  padding: 15px;
  margin-right: 15px;
  align-self: center;
  width: 85px;
}
.news__wrap .news .news__feed ul li a dl dd {
  font-size: 1em;
  color: #333;
  text-decoration: none;
  align-self: center;
  width: 600px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction__wrap {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #333;
}
.introduction__wrap .introduction {
  width: 800px;
  margin: 0 auto;
}
.introduction__wrap .introduction .section__title {
  width: 800px;
}
.introduction__wrap .introduction .section__title h2 {
  width: auto;
}
.introduction__wrap .introduction .section__title h2 span {
  font-size: 0.5em;
  color: #333;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2em;
}
.introduction__wrap .introduction .section__title p {
  margin-top: 0;
}
.introduction__wrap .introduction p {
  margin-top: 30px;
  color: #333;
  text-align: center;
}
.introduction__wrap .introduction dl {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  border: 1px solid #333;
}
.introduction__wrap .introduction dl dt {
  font-size: 1.5em;
  color: #333;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  color: #333;
  width: 200px;
  vertical-align: middle;
  border-right: 1px solid #333;
}
.introduction__wrap .introduction dl dd {
  color: #333;
  padding: 15px;
  width: 585px;
}
.introduction__wrap .introduction dl dd p {
  font-size: 1em;
  text-align: left;
  margin-top: 0;
}
.introduction__wrap .introduction dl dd p span {
  font-weight: bold;
}
.introduction__wrap .introduction dl dd .map {
  height: 400px;
  margin-top: 15px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ステージ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.stage__wrap {
  width: 100%;
  background-color: #333;
  padding-top: 60px;
}
.stage__wrap h3 {
  text-align: center;
  padding-top: 10px;
  color: #fff;
}
.stage__wrap .section__title {
  width: 400px;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.stage__wrap .section__title h2 {
  width: auto;
  color: #fff;
}
.stage__wrap .stage {
  padding-bottom: 60px;
}
.stage__wrap .stage .section__title p {
  margin-top: 10px;
}
.stage__wrap .stage .stage__tab {
  width: 800px;
  margin: 0 auto;
}
.stage__wrap .stage .stage__tab .stage__tab--visual {
  width: 600px;
  margin: 0 auto;
  margin-top: 30px;
}
.stage__wrap .stage .stage__tab .stage__tab--visual ul li {
  display: none;
  width: 100%;
  height: auto;
}
.stage__wrap .stage .stage__tab .stage__tab--visual ul li img {
  width: 100%;
  height: auto;
}
.stage__wrap .stage .stage__tab .stage__tab--visual ul li.show__tab {
  display: block;
}
.stage__wrap .stage .stage__tab .stage__tab--button {
  width: 100%;
  margin-top: 91px;
  position: relative;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 800px;
  bottom: -1px;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li {
  background-color: #ffff66;
  width: 45%;
  padding: 15px;
  text-align: center;
  border-radius: 15px 15px 0 0;
  border: 1px solid #333;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li a {
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  display: block;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li:hover {
  background-color: #fff;
  border: 1px solid #333;
  border-bottom: none;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li:hover a {
  color: #333;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li.show__tab {
  background-color: #fff;
  border: 1px solid #333;
  border-bottom: none;
}
.stage__wrap .stage .stage__tab .stage__tab--button ul li.show__tab a {
  color: #333;
}
.stage__wrap .stage .stage__tab .stage__tab--contents {
  border: 1px solid #333;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li {
  display: none;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab {
  display: block;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul {
  background-color: #fff;
  padding: 30px;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li {
  display: flex;
  margin-top: 15px;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li p {
  width: 100%;
  margin: 30px auto;
  font-weight: bold;
  font-size: 2em;
  line-height: 2em;
  margin-left: 30px;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li .contents__inner--visual {
  width: auto;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li .contents__inner--visual img {
  width: 100%;
  height: auto;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li dl {
  margin-left: 15px;
  align-self: center;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li dl dt {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: bold;
}
.stage__wrap .stage .stage__tab .stage__tab--contents ul li.show__tab .tab__contents--inner ul li dl dd {
  font-size: 1em;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャスト
----------------------------------------------------------------*
----------------------------------------------------------------*/
.gradation {
  background-image: linear-gradient(100deg, rgb(104, 37, 134), rgb(110, 179, 208) 29%, rgb(116, 204, 204) 53%, rgb(149, 177, 143) 76%, rgb(246, 43, 43));
}

.cast__wrap {
  width: 100%;
  padding-top: 60px;
}
.cast__wrap .section__title {
  padding-bottom: 15px;
}
.cast__wrap .cast .cast__content {
  /* 20241226追加 */
}
.cast__wrap .cast .cast__content h3 {
  font-size: 1.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  position: relative;
  width: 300px;
  margin: 0 auto;
  margin-top: 30px;
}
.cast__wrap .cast .cast__content h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 15px;
  top: 0;
  left: 0;
}
.cast__wrap .cast .cast__content h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 15px;
  top: 0;
  right: 0;
}
.cast__wrap .cast .cast__content ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
.cast__wrap .cast .cast__content ul li {
  margin: 0 9px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.cast__wrap .cast .cast__content ul li a {
  flex-grow: 1;
  text-decoration: none;
  width: 380px;
  background-color: #fff;
  display: block;
  border: 1px solid #fff;
  padding-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
}
.cast__wrap .cast .cast__content ul li a .cast__img {
  padding-bottom: 30px;
}
.cast__wrap .cast .cast__content ul li a .cast__img img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul li a .cast__name {
  text-align: center;
}
.cast__wrap .cast .cast__content ul li a .cast__name p {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.cast__wrap .cast .cast__content ul li a .cast__name p span {
  font-size: 18px;
}
.cast__wrap .cast .cast__content ul li a:hover {
  background-color: #ffff66;
}
.cast__wrap .cast .cast__content ul li .modal__cast--img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul li .modal__cast--img img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text {
  background-image: url("../img/cast/cast__modal/bg_white-opacity.png");
  background-size: cover;
  width: 800px;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text h4 {
  padding: 30px;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 0;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul {
  display: block;
  width: auto;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul li {
  border-top: 1px solid #333;
  padding: 15px 0;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul li p {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  background: none;
  margin-top: 0;
  border: none;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul li a:hover {
  color: #ffff66;
}
.cast__wrap .cast .cast__content .cast__button {
  width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}
.cast__wrap .cast .cast__content .cast__button a {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #ff0000;
  display: block;
  position: relative;
}
.cast__wrap .cast .cast__content .cast__button a:hover {
  background-color: #fff;
  color: #fff;
}
.cast__wrap .cast .cast__content .cast__button a:hover::before {
  background-color: #fff;
}
.cast__wrap .cast .cast__content .cast__button a:hover::after {
  background-color: #fff;
}
.cast__wrap .cast .cast__content .cast__button a::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 30px;
  width: 30px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.cast__wrap .cast .cast__content .cast__button a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 60px;
  height: 1px;
  right: -187px;
  margin-top: 40px;
  border-radius: 9999px;
  background-color: #fff;
}
.cast__wrap .cast .cast__content .cast__button a::after:hover {
  background-color: #fff;
}
.cast__wrap .cast .cast__content p.andmore {
  text-align: center;
  margin-top: 30px;
  font-size: 1.5em;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.cast__wrap .cast .cast__content .dance__group {
  width: 1120px;
  background-color: rgba(0, 30, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 30px;
}
.cast__wrap .cast .cast__content .dance__group ul.dance {
  width: auto;
}
.cast__wrap .cast .cast__content .dance__group ul.dance li a {
  width: 500px;
}

.cast__wrap.dance__wrap {
  padding-top: 0;
  padding-top: 30px;
}
.cast__wrap.dance__wrap .section__title {
  margin-top: 30px;
}
.cast__wrap.dance__wrap .cast__content ul.dance {
  width: 1200px;
  justify-content: center;
}
.cast__wrap.dance__wrap .cast__content ul.dance li {
  margin-top: 30px;
}
.cast__wrap.dance__wrap .cast__content ul.dance li a {
  margin: 0 auto;
  border: none;
  width: 380px;
  border: 1px solid #fff;
  border-radius: 15px;
  padding-bottom: 0;
  border: 1px solid #333;
}
.cast__wrap.dance__wrap .cast__content ul.dance li a:hover {
  background-color: #fff;
}
.cast__wrap.dance__wrap .cast__content ul.dance li a .cast__img {
  padding-bottom: 0;
}
.cast__wrap.dance__wrap .cast__content ul.dance li a .cast__name p {
  font-size: 1em;
  line-height: 4em;
}

.cast__wrap.choreography__wrap {
  padding-top: 0;
  padding-top: 30px;
  padding-bottom: 60px;
}
.cast__wrap.choreography__wrap .section__wrap {
  width: 800px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 15px;
}
.cast__wrap.choreography__wrap .section__wrap .section__title {
  margin-top: 30px;
  width: 500px;
}
.cast__wrap.choreography__wrap .section__wrap .section__title h2 {
  width: 500px;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance {
  width: 800px;
  justify-content: center;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance li {
  margin-top: 30px;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance li a {
  margin: 0 auto;
  border: none;
  width: 280px;
  border: 1px solid #fff;
  border-radius: 15px;
  padding-bottom: 0;
  border: 1px solid #333;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance li a:hover {
  background-color: #fff;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance li a .cast__img {
  padding-bottom: 0;
}
.cast__wrap.choreography__wrap .section__wrap .cast__content ul.dance li a .cast__name p {
  font-size: 1em;
  line-height: 4em;
}
.cast__wrap.choreography__wrap .section__wrap p.annotation {
  font-size: 1em;
  text-align: center;
  line-height: 4em;
}
.cast__wrap.choreography__wrap .section__wrap.black__wrap {
  background-color: #333;
}
.cast__wrap.choreography__wrap .section__wrap.black__wrap .section__title {
  border-color: #fff;
}
.cast__wrap.choreography__wrap .section__wrap.black__wrap .section__title h2 {
  color: #fff;
}
.cast__wrap.choreography__wrap .section__wrap.black__wrap p.annotation {
  color: #fff;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        バナー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.bnr__wrap {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../img/bg2.png");
  background-attachment: fixed;
  z-index: -2;
}
.bnr__wrap .section__wrap .bnr {
  width: 800px;
  height: auto;
  margin: 0 auto;
}
.bnr__wrap .section__wrap .bnr a img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 60px;
  background-color: #333;
}
.ticket__wrap .ticket {
  padding-bottom: 60px;
}
.ticket__wrap .ticket .section__title {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.ticket__wrap .ticket .section__title h2 {
  color: #fff;
}
.ticket__wrap .ticket .section__title p {
  color: #fff;
  font-size: 20px;
}
.ticket__wrap .ticket table {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table tr {
  border-bottom: 1px solid #fff;
}
.ticket__wrap .ticket table tr:first-child {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table th {
  color: #fff;
  width: 30%;
  vertical-align: top;
}
.ticket__wrap .ticket table td {
  color: #fff;
}
.ticket__wrap .ticket table td .overview__text--red {
  color: #ff0000;
  font-weight: bold;
}
.ticket__wrap .ticket table td .overview__text--bald {
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  margin-bottom: 15px;
  display: block;
}
.ticket__wrap .ticket table td .overview__text--bald:first-child {
  margin-top: 0;
}
.ticket__wrap .ticket .overview__ticket--caption {
  max-width: 1200px;
  border-radius: 15px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  padding: 0 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table {
  border: none;
}
.ticket__wrap .ticket .overview__ticket--caption table tr {
  border: none;
  width: 100%;
  border-top: 1px solid #333;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child {
  border-top: none;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child th, .ticket__wrap .ticket .overview__ticket--caption table tr:first-child td {
  padding-top: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:last-child th, .ticket__wrap .ticket .overview__ticket--caption table tr:last-child td {
  padding-bottom: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr th {
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  padding: 15px 0;
  width: 20%;
  padding-left: 15px;
  font-weight: bold;
}
.ticket__wrap .ticket .overview__ticket--caption table tr td {
  padding: 15px 0;
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  width: 50%;
}
.ticket__wrap .ticket .play__guide {
  background-color: #fff;
  padding: 30px;
  margin-top: 30px;
  width: 320px;
  margin-left: 30px;
  border-radius: 15px;
}
.ticket__wrap .ticket .play__guide:nth-child(1) {
  margin-left: 0;
}
.ticket__wrap .ticket .play__guide:nth-child(4) {
  margin-left: 195px;
}
.ticket__wrap .ticket .play__guide:nth-child(5) {
  margin-right: 195px;
}
.ticket__wrap .ticket .play__guide h4 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding-bottom: 30px;
  text-align: center;
}
.ticket__wrap .ticket .play__guide table tr {
  border-bottom: 1px solid #333;
}
.ticket__wrap .ticket .play__guide table tr:first-child {
  border-top: 1px solid #333;
}
.ticket__wrap .ticket .play__guide table tr th {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 15px;
  text-align: left;
  width: 100px;
  vertical-align: middle;
}
.ticket__wrap .ticket .play__guide table tr td {
  font-size: 0.8em;
  color: #333;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
}
.ticket__wrap .ticket .play__guide .play__guide--btn {
  width: 190px;
  background-color: #ff0000;
  border-radius: 15px;
}
.ticket__wrap .ticket .play__guide .play__guide--btn a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}
.ticket__wrap .ticket .play__guide .play__guide--btn:hover {
  background-color: #ffff66;
}
.ticket__wrap .ticket .play__guide .play__guide--btn:hover a {
  color: #333;
}
.ticket__wrap .ticket .play__guide .play__guide--btn.preparation {
  background-color: #ccc;
}
.ticket__wrap .ticket .play__guide .play__guide--btn.preparation:hover a {
  color: #fff;
}

.overview__ticket h3 {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.overview__ticket .overview__ticket--text {
  width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #fff;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--text p {
  width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #fff;
  line-height: 30px;
  padding-top: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer .ponsorship__wrap {
  background-color: #000;
  padding: 30px;
}
.footer .ponsorship__wrap .section__wrap {
  width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
}
.footer .ponsorship__wrap .section__wrap h6 {
  font-size: 2em;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  line-height: 40px;
}
.footer .ponsorship__wrap .section__wrap ul li {
  width: 404px;
  margin: 0 auto;
}
.footer .ponsorship__wrap .section__wrap ul li h6 {
  font-size: 2em;
  color: #333;
  text-align: center;
}
.footer .ponsorship__wrap .section__wrap ul li:first-child {
  margin-top: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
.footer .ponsorship__wrap .section__wrap ul li p {
  text-align: center;
  margin-bottom: 15px;
}
.footer .ponsorship__wrap .section__wrap ul li a {
  text-decoration: none;
  width: auto;
}
.footer .ponsorship__wrap .section__wrap ul li a p {
  font-size: 1.2em;
  color: #333;
}
.footer .ponsorship__wrap .section__wrap ul li a img {
  width: 100%;
  height: auto;
}
.footer .ponsorship__wrap .section__wrap ul li .sponsored__expo {
  width: 300px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
}
.footer .ponsorship__wrap .section__wrap ul li .sponsored__expo img {
  width: 100%;
  height: auto;
}
.footer .ponsorship__wrap .section__wrap ul li .sponsored__expo p {
  font-size: 0.5em;
  line-height: 1em;
}/*# sourceMappingURL=common.css.map */