@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: 14px;
  font-family: "New Tegomin", serif;
  font-weight: 400;
  font-style: normal;
}

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: normal;
  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: 14px;
  text-align: left;
  line-height: 25px;
  -webkit-text-size-adjust: none;
  font-family: "New Tegomin", serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

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;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.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;
}
.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: 13px;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.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: 1;
  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;
  background-size: 40%;
  background-attachment: fixed;
  margin: 0 auto;
  padding: 60px;
  width: 80%;
  max-width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  font-size: 24px;
  line-height: 30px;
}
.modal .youtubeWrapper {
  position: relative;
  width: 90%;
  margin: 10px auto 0;
  padding-top: 56.25%;
}
.modal .youtubeWrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}


.modal .close {
  /*border-top: 1px solid #333;*/
  /*padding-top: 30px;*/
  margin: 30px 50px;
}
.modal .close p {
  border: 1px solid #69b8a4;
  background-color: #69b8a4;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 2em;
  border-radius: 5px;
}
.modal .close p:hover {
  color: #69b8a4;
  background-color: #fff;
  cursor: pointer;
}

.modal__img {
  width: 100%;
  height: auto;
}
.modal__img img {
  width: 100%;
  height: auto;
}

.modal__text {
  width: auto;
}
.modal__text h4 {
  padding: 30px;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 0;
}
.modal__text h4 span {
  font-size: 16px;
}
.modal__text ul {
  padding: 30px;
  display: block;
}
.modal__text ul li {
  border-top: 1px solid #333;
  padding: 15px 0;
}
.modal__text ul li p {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
.modal__text ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  background: none;
  margin-top: 0;
  border: none;
}
.modal__text ul li a:hover {
  color: #c23d31;
  background-color: #fff;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #c23d31;
}

.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: #c23d31;
  cursor: pointer;
  border-radius: 5px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #fff;
  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: #69b8a4;
}

.menu-content ul {
  padding: 100px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
  margin-top: 20px;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 9px 15px 20px 0;
  position: relative;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  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: #c23d31e8;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_logo {
  width: 200px;
  height: auto;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: auto;
  margin-right: 92px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  gap: 15px;
}
header .header__inner .header_nav ul li a {
  background-color: #c23d31;
  border-radius: 50%;
  padding: 5px;
  display: block;
  width: 37px;
}
header .header__inner .header_nav ul li a img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav ul li a:hover {
  background-color: #69b8a4;
}

.menu-content ul li.header__sns ul {
  display: flex;
  /*justify-content: space-between;*/
  padding: 0;
  margin-left: 0;
}
.menu-content ul li.header__sns ul li {
  border: none;
}
.menu-content ul li.header__sns ul li a {
  width: 60px;
  border-bottom: none;
}
.menu-content ul li.header__sns ul li a img {
  width: 100%;
  height: auto;
}
.menu-content ul li.header__sns ul li a::before {
  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;
}

.download-btn {
  width: 70%;
  max-width: 800px;
  display: flex;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #c23d31;
  cursor: pointer;
  transition: 0.8s;
  margin: 0 auto;
  padding: 15px;
  margin-top: 15px;
}
.download-btn:hover {
  background-color: #69b8a4;
  border: 1px solid #fff;
}
.download-btn:hover a[download] {
  color: #fff;
}
.download-btn:hover .bottom-icon {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.download-btn:hover .down-arrow {
  fill: #fff;
  animation: slide-in-top 0.6s linear both;
}
.download-btn a[download] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.arow-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.down-arrow {
  fill: #fff;
}

.bottom-icon {
  width: 14px;
  height: 3px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  background-image: url(../img/bg__fire.png), url(../img/bg__01.jpg);
  background-position: center bottom, center center;
  background-size: 100%, cover;
  background-repeat: no-repeat, no-repeat;
}
.mainvisual .mainvisual__inner {
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  padding-top: 120px;
  padding-bottom: 60px;
}
.mainvisual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  background-image: url("../img/top-title_l.png"), url("../img/top-title_r.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left 17%, top right 17%;
  background-size: contain, contain;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.section__title h2 {
  font-size: 36px;
  line-height: 60px;
  color: #333;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  font-style: normal;
}
.section__title p {
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 18px;
  color: #333;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #75ccf3;
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__wrap .news .news__feed--wrap .news__feed {
  /*background-image: url(../img/bg__02.jpg);*/
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  background: #fff;
}
.news__wrap .news .news__feed--wrap .news__feed h3 {
  font-size: 24px;
  line-height: 100px;
  color: #333;
  text-align: center;
}
.news__wrap .news .news__feed--wrap .news__feed ul {
  padding: 30px;
  padding-top: 0;
  width: auto;
  margin: 0 auto;
  height: 360px;
  overflow: scroll;
}
.news__wrap .news .news__feed--wrap .news__feed ul li {
  width: auto;
  padding: 10px 0 30px 0;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__wrap .news .news__feed--wrap .news__feed ul li:last-child {
  border-bottom: 1px solid #333;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a {
  text-decoration: none;
  width: 100%;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl dt {
  font-size: 14px;
  color: #fff;
  background-color: #333;
  padding: 5px 10px;
  margin-right: 15px;
  align-self: center;
  width: auto;
  margin-bottom: 10px;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl dd {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  align-self: center;
  width: auto;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl dd span {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl:hover dt {
  background-color: #c23d31;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl:hover dd {
  color: #c23d31;
}
.news__wrap .news .news__feed--wrap .news__feed ul li a dl:hover dd span {
  color: #c23d31;
}
.news__wrap .news h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #fff;
  text-align: center;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: auto;
  margin: 0 auto;
  background-color: #69b8a4;
  padding: 15px;
}
.news__wrap .news .modal1__img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .modal1__img img {
  width: 100%;
  height: auto;
}
.news__wrap .news .modal1__title {
  margin-top: 30px;
}
.news__wrap .news .modal1__title p {
  width: auto;
  color: #69b8a4;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-top: solid 1px #69b8a4;
  border-bottom: solid 1px #69b8a4;
}
.news__wrap .news .modal1__text {
  margin-top: 30px;
}
.news__wrap .news .modal1__text p {
  font-size: 14px;
  color: #69b8a4;
  line-height: 30px;
}
.news__wrap .news .modal1__button {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .modal1__button a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #c23d31;
  display: block;
  position: relative;
}
.news__wrap .news .modal1__button a:hover {
  background-color: #fff;
  color: #69b8a4;
}
.news__wrap .news .modal1__button a:hover::before {
  background-color: #69b8a4;
}
.news__wrap .news .modal1__button a:hover::after {
  background-color: #69b8a4;
}
.news__wrap .news .modal1__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%;
}
.news__wrap .news .modal1__button a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 60px;
  height: 1px;
  right: -172px;
  margin-top: 40px;
  border-radius: 9999px;
  background-color: #fff;
}
.news__wrap .news .modal1__button a::after:hover {
  background-color: #69b8a4;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction__wrap {
  width: 100%;
  background-image: url(../img/bg__02.jpg);
  background-size: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.introduction__wrap .introduction__top--text {
  background-image: url(../img/bg__03.jpg);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.introduction__wrap .introduction__top--text p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  padding: 30px 0;
  line-height: 40px;
}
.introduction__wrap .introduction__top--text p span {
  color: #fdf250;
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
}
.introduction__wrap .introduction__comment {
  margin-top: 30px;
}
.introduction__wrap .introduction__comment h3 {
  font-size: 24px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #75ccf3;
  margin: 0 auto;
  margin-top: 60px;
  width: 50%;
}
.introduction__wrap .introduction__comment .introduction__comment--top {
  padding: 30px;
  overflow: hidden;
  background-image: url(../img/bg__03.jpg);
  background-size: 100%;
  border-radius: 15px;
  margin-top: 15px;
  position: relative;
}
.introduction__wrap .introduction__comment .introduction__comment--top p {
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
}
.introduction__wrap .introduction__comment ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.introduction__wrap .introduction__comment ul li {
  padding: 30px;
  overflow: hidden;
  background-image: url(../img/bg__03.jpg);
  background-size: 100%;
  border-radius: 15px;
  width: 44%;
  margin-top: 15px;
  position: relative;
}
.introduction__wrap .introduction__comment ul li p {
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
}
.introduction__wrap .introduction__comment ul li .comment__img {
  float: left;
  width: 150px;
  height: auto;
  position: relative;
  margin: 0 15px 0 0;
  border-radius: 15px;
  overflow: hidden;
}
.introduction__wrap .introduction__comment ul li .comment__img img {
  width: 100%;
  height: auto;
}
.introduction__wrap .introduction__comment ul li .comment__img p {
  position: absolute;
  border-radius: 5px 0 0 0;
  display: block;
  right: 0;
  bottom: 0;
  font-size: 11px;
  line-height: 1.5em;
  padding: 5px 10px;
  color: #333333;
  background-color: #FFFFFF;
  font-weight: bold;
}

/*スライダー
----------------------------------------------------------------*/
.top-slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  display: flex;
  margin-top: 60px;
}

.top-slider .top-slider__slide {
  width: 300px;
  height: auto;
  margin-left: 30px;
}

.top-slider .top-slider__slide img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャスト
----------------------------------------------------------------*
----------------------------------------------------------------*/
.cast__wrap {
  width: 100%;
  background-image: url(../img/bg__fire.png), url(../img/bg__03.jpg);
  background-position: center bottom, center center;
  background-size: 100%, cover;
  background-repeat: no-repeat, no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cast__wrap .cast .cast__name--first-release p {
  font-size: 40px;
  line-height: 60px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 100px;
}
.cast__wrap .cast .cast__name--first-release p span {
  font-size: 24px;
}
.cast__wrap .cast .cast__content ul.cast__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cast__wrap .cast .cast__content ul.cast__list li a {
  text-decoration: none;
  /*width: 277px;*/
  margin-top: 30px;
  background-color: #fff;
  border-radius: 15px;
  display: block;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__img {
  padding: 30px;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__img img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__img__hover {
  display: none;
  padding: 30px;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__img__hover img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__name {
  text-align: center;
  height: 64px;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__name p {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  padding: 30px;
  padding-top: 0;
}
.cast__wrap .cast .cast__content ul.cast__list li a .cast__name p span {
  font-size: 12px;
}
.cast__wrap .cast .cast__content ul.cast__list li a:hover {
  background-color: #c23d31;
}
.cast__wrap .cast .cast__content ul.cast__list li a:hover .cast__name p {
  color: #fff;
}
.cast__wrap .cast .cast__content ul.cast__list li a:hover .cast__img {
  display: none;
}
.cast__wrap .cast .cast__content ul.cast__list li a:hover .cast__img__hover {
  display: block;
}
.cast__wrap .cast .cast__content ul.cast__list li .modal ul li a:hover {
  background-color: #fff;
}
.cast__wrap .cast .cast__content .cast__button {
  width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}
.cast__wrap .cast .cast__content .cast__button a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #c23d31;
  display: block;
  position: relative;
}
.cast__wrap .cast .cast__content .cast__button a:hover {
  background-color: #fff;
  color: #69b8a4;
}
.cast__wrap .cast .cast__content .cast__button a:hover::before {
  background-color: #69b8a4;
}
.cast__wrap .cast .cast__content .cast__button a:hover::after {
  background-color: #69b8a4;
}
.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: #69b8a4;
}

.cast__all h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 1px #69b8a4;
  border-top: solid 1px #69b8a4;
  color: #69b8a4;
  padding: 30px;
}
.cast__all .cast__all__text {
  margin-top: 30px;
}
.cast__all .cast__all__text p {
  font-size: 14px;
  line-height: 20px;
  color: #69b8a4;
}
.cast__all .cast__all__text h5 {
  background-color: #69b8a4;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-top: 30px;
  padding: 15px;
  margin-bottom: 30px;
}

.cast__comment--top {
      padding: 30px;
      overflow: hidden;
      border-radius: 15px;
      margin-top: 15px;
      position: relative;
	  background: #fff;	
}	
.cast__comment--top p {
        font-size: 20px;
        line-height: 2em;
        color: #333333;
		text-align: center;
		/*margin: 3em 0;*/
}	
.cast__comment--top p span {
			 font-size: 0.7em;
 }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        オーバービュー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.overview__wrap {
  width: 100%;
  background-color: #75ccf3;
  padding-top: 60px;
  padding-bottom: 60px;
}
.overview__wrap .overview {
  margin: 0 auto;
}
.overview__wrap .overview .overview__text--right {
  text-align: right;
}
.overview__wrap .overview h3 {
  margin-top: 30px;
  font-size: 36px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.overview__wrap .overview .overview__table p {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  margin-top: 15px;
}
.overview__wrap .overview .overview__table h4 {
  margin-top: 30px;
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.overview__wrap .overview .overview__table p {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.5em;
  font-weight: bold;
}
.overview__wrap .overview .overview__table .time-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.overview__wrap .overview .overview__table .time-table tr {
  margin: 0 auto;
}
.overview__wrap .overview .overview__table .time-table th {
  background-color: #69b8a4;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0;
  border: 1px solid #69b8a4;
  width: 8%;
}
.overview__wrap .overview .overview__table .time-table td {
  background-color: #fff;
  color: #333;
  font-size: 14px;
  padding: 15px 0;
  border: 1px solid #333;
  text-align: center;
  width: 100px;
}
.overview__wrap .overview .overview__table .time-table td .sat {
  color: #3366ff;
}
.overview__wrap .overview .overview__table .time-table td .sun {
  color: #c23d31;
}

.overview__text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.overview__text table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #333;
}
.overview__text table:first-child {
  margin-top: 30px;
}
.overview__text table th {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0;
  width: 30%;
}
.overview__text table td {
  color: #333;
  font-size: 14px;
  padding: 15px 0;
}
.overview__text .overview__text--gest {
  display: block;
}
.overview__text .overview__text--gest th {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0;
  width: 30%;
}
.overview__text .overview__text--gest td {
  color: #333;
  font-size: 14px;
  padding: 15px 0;
  width: 30%;
}
.overview__text .map {
  height: 400px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #333;
}
.overview__text .flyer h3 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.overview__text .flyer .flyer__img {
  width: auto;
  margin-top: 30px;
}
.overview__text .flyer .flyer__img img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 60px;
  background-color: #333;
}
.ticket__wrap .ticket {
  padding-bottom: 60px;
}
.ticket__wrap .ticket .section__title {
  margin: 0 auto;
}
.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;
  width: 100%;
}
.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: #c23d31;
  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 {
  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: 43%;
  border-radius: 15px;
}
.ticket__wrap .ticket .play__guide:nth-child(1) {
  margin-left: 0;
}
.ticket__wrap .ticket .play__guide:nth-child(4) {
  margin-left: 0;
}
.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: #c23d31;
  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: #83311d;
}
.ticket__wrap .ticket .play__guide.peding {
  opacity: 0.5;
  background-color: #999;
}
.ticket__wrap .ticket .play__guide.peding .play__guide--btn {
  background-color: #333;
}

.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: space-between;
  flex-wrap: wrap;
  width: auto;
}
.overview__ticket .overview__ticket--text {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #fff;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--text p {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #fff;
  line-height: 30px;
  padding-top: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        about
----------------------------------------------------------------*
----------------------------------------------------------------*/
.about__wrap {
  width: 100%;
  background-color: #c23d31;
  background-image: url(../img/bg__city.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-top: 60px;
  padding-bottom: 30px;
}
.about__wrap .about {
  margin: 0 auto;
}
.about__wrap .about .section__title h2 {
  color: #fff;
}
.about__wrap .about .section__title p {
  color: #fff;
}
.about__wrap .about h3 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.about__wrap .about .about__text {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}
.about__wrap .about .about__text p {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff;
  font-size: 16px;
  color: #333;
  line-height: 30px;
}
.about__wrap .about .about__contents {
  margin-top: 60px;
  margin-bottom: 100px;
}
.about__wrap .about .about__contents ul.about__lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about__wrap .about .about__contents ul.about__lists li {
  width: 30%;
}
.about__wrap .about .about__contents ul.about__lists li a {
  text-decoration: none;
  display: block;
  border-radius: 15px;
  background-color: #fff;
}
.about__wrap .about .about__contents ul.about__lists li a .about__img {
  padding: 30px;
}
.about__wrap .about .about__contents ul.about__lists li a .about__img img {
  width: 100%;
  height: auto;
}
.about__wrap .about .about__contents ul.about__lists li a .about__name {
  text-align: center;
}
.about__wrap .about .about__contents ul.about__lists li a .about__name p {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  padding: 30px;
  padding-top: 0;
}
.about__wrap .about .about__contents ul.about__lists li a .about__name p span {
  font-size: 14px;
}
.about__wrap .about .about__contents ul.about__lists li a:hover {
  background-color: #69b8a4;
}
.about__wrap .about .about__contents ul.about__lists li a:hover .about__name p {
  color: #fff;
}
.about__wrap .about .about__contents ul.about__lists li ul li {
  width: 100%;
}
.about__wrap .about .about__contents ul.about__lists li .link a {
  background-color: transparent;
}
.about__wrap .about .about__sns {
  width: auto;
  margin: 0 auto;
  margin-top: 15px;
}
.about__wrap .about .about__sns ul {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 15px;
}
.about__wrap .about .about__sns ul li a {
  background-color: #c23d31;
  border-radius: 50%;
  padding: 5px;
  display: block;
  width: 37px;
}
.about__wrap .about .about__sns ul li a img {
  width: 100%;
  height: auto;
}
.about__wrap .about .about__sns ul li a:hover {
  background-color: #69b8a4;
}

.news__wrap .about__sns {
  width: auto;
  margin: 0 auto;
  margin-top: 15px;
}
.news__wrap .about__sns ul {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 15px;
}
.news__wrap .about__sns ul li a {
  background-color: #c23d31;
  border-radius: 50%;
  padding: 5px;
  display: block;
  width: 37px;
}
.news__wrap .about__sns ul li a img {
  width: 100%;
  height: auto;
}
.news__wrap .about__sns ul li a:hover {
  background-color: #69b8a4;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  background-image: url(../img/bg__03.jpg);
}
.footer p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 30px;
}/*# sourceMappingURL=common.css.map */