@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: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

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: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

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;
  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 {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 30px;
}
.modal .close p {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.modal .close p:hover {
  color: #fff;
  background-color: #d82122;
  cursor: pointer;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
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;
  justify-content: space-between;
}
header .header__inner .header_logo {
  width: 50px;
  height: auto;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 860px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  line-height: 59px;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
header .header__inner .header_nav ul li a:hover {
  color: #d82122;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.mainvisual .mainvisual__inner img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  position: absolute;
  width: 24%;
  top: 56%;
  left: 17%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
}
.mainvisual .mainvisual__inner .mainvisual__text {
  position: absolute;
  right: 0px;
  bottom: 30px;
  background-color: #d82122;
  width: 600px;
}
.mainvisual .mainvisual__inner .mainvisual__text p {
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding: 20px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

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

.section__title h2 {
  border-radius: 0px 0px 50px 50px;
  font-size: 36px;
  line-height: 60px;
  color: #fff;
  background-color: #d82122;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
}
.section__title p {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50px 50px 0px 0px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #aaf2fd;
  background-image: url("../img/bg__01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__wrap .news .notice {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .notice a {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  line-height: 60px;
  text-align: center;
  background-color: #d82122;
  display: block;
  position: relative;
}
.news__wrap .news .notice a:hover {
  background-color: #fff;
  color: #333;
}
.news__wrap .news .notice a:hover::before {
  background-color: #aaf2fd;
}
.news__wrap .news .notice a:hover::after {
  background-color: #aaf2fd;
}
.news__wrap .news .notice 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 .notice a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 60px;
  height: 1px;
  right: -23px;
  margin-top: 40px;
  border-radius: 9999px;
  background-color: #fff;
}
.news__wrap .news .notice a::after:hover {
  background-color: #aaf2fd;
}
.news__wrap .news .news__feed {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .news__feed h3 {
  font-size: 24px;
  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: 300px;
  overflow: scroll;
}
.news__wrap .news .news__feed ul li {
  width: auto;
  padding: 30px 0 30px 0;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__wrap .news .news__feed ul li:last-child {
  border-bottom: 1px solid #333;
}
.news__wrap .news .news__feed ul li a {
  text-decoration: none;
  width: 100%;
}
.news__wrap .news .news__feed ul li a dl {
  display: flex;
}
.news__wrap .news .news__feed ul li a dl dt {
  font-size: 14px;
  color: #333;
  background-color: #fff;
  padding: 15px;
  margin-right: 15px;
  align-self: center;
  width: 85px;
}
.news__wrap .news .news__feed ul li a dl dd {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  align-self: center;
  width: 600px;
}
.news__wrap .news .news__feed ul li a dl:hover dt {
  background-color: #d82122;
  color: #fff;
}
.news__wrap .news .news__feed ul li a dl:hover dd {
  color: #d82122;
}
.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: #aaf2fd;
  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: #aaf2fd;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-top: solid 1px #aaf2fd;
  border-bottom: solid 1px #aaf2fd;
}
.news__wrap .news .modal1__text {
  margin-top: 30px;
}
.news__wrap .news .modal1__text p {
  font-size: 14px;
  color: #aaf2fd;
  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: #d82122;
  display: block;
  position: relative;
}
.news__wrap .news .modal1__button a:hover {
  background-color: #fff;
  color: #aaf2fd;
}
.news__wrap .news .modal1__button a:hover::before {
  background-color: #aaf2fd;
}
.news__wrap .news .modal1__button a:hover::after {
  background-color: #aaf2fd;
}
.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: #aaf2fd;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction__wrap {
  width: 100%;
  background-color: #a9cf9b;
  background-image: url("../img/bg__03.png"), url("../img/bg__02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: contain, contain;
  padding-top: 60px;
  padding-bottom: 60px;
}
.introduction__wrap h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 30px;
  padding: 30px 0;
  background-color: #d82122;
  line-height: 60px;
}
.introduction__wrap h3 span {
  font-size: 48px;
  font-weight: bold;
}

/*スライダー
----------------------------------------------------------------*/
.top-slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  display: flex;
  margin-top: 60px;
  margin-bottom: 300px;
}

.top-slider .top-slider__slide {
  width: 500px;
  height: 340px;
  margin-left: 30px;
  position: relative;
}
.top-slider .top-slider__slide .caption {
  width: auto;
}
.top-slider .top-slider__slide .caption p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
  color: #333;
  font-size: 11px;
  text-align: left;
  line-height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
}

.top-slider .top-slider__slide img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャスト
----------------------------------------------------------------*
----------------------------------------------------------------*/
.cast__wrap {
  width: 100%;
  background-color: #aaf2fd;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../img/bg__01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.cast__wrap .cast .cast__content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.cast__wrap .cast .cast__content ul li {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #aaf2fd;
  margin-top: 30px;
}
.cast__wrap .cast .cast__content ul li a {
  text-decoration: none;
  width: 100%;
}
.cast__wrap .cast .cast__content ul li a .cast__img {
  padding: 30px;
}
.cast__wrap .cast .cast__content ul li a .cast__img .caption {
  width: auto;
  position: relative;
}
.cast__wrap .cast .cast__content ul li a .cast__img .caption p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
  bottom: 0px;
}
.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: 16px;
  color: #333;
  font-weight: bold;
  padding: 30px;
  padding-top: 0;
}
.cast__wrap .cast .cast__content ul li a .cast__name p span {
  font-size: 12px;
}
.cast__wrap .cast .cast__content ul li .modal__cast--img {
  width: 100%;
  height: auto;
}
.cast__wrap .cast .cast__content ul li .modal__cast--img .caption {
  width: auto;
  position: relative;
}
.cast__wrap .cast .cast__content ul li .modal__cast--img .caption p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
  bottom: 0px;
}
.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 {
  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 {
  padding: 30px;
  display: block;
}
.cast__wrap .cast .cast__content ul li .modal__cast--text ul li {
  border: none;
  border-top: 1px solid #333;
  border-radius: 0;
  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: #d82122;
}
.cast__wrap .cast .cast__content ul li:hover {
  background-color: #f2f2cf;
  border: 1px solid #fff;
}
.cast__wrap .cast .cast__content ul li:hover .cast__name p {
  color: #333;
}
.cast__wrap .cast .band ul {
  display: flex;
  justify-content: center;
}
.cast__wrap .cast .band ul li {
  width: 800px;
}
.cast__wrap .cast .band ul li .modal .modal-content .modal__cast--img .modal__cast--text ul li {
  width: auto;
}

.andmore p {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        オーバービュー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.overview__wrap {
  width: 100%;
  background-color: #f2f2cf;
  background-image: url("../img/bg__02.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  padding-top: 60px;
  padding-bottom: 60px;
}
.overview__wrap .overview {
  margin: 0 auto;
}
.overview__wrap .overview h3 {
  margin-top: 30px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.overview__wrap .overview .overview__time_table {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}
.overview__wrap .overview .overview__time_table h4 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  background-color: #f2f2cf;
  line-height: 60px;
}
.overview__wrap .overview .overview__time_table dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px;
}
.overview__wrap .overview .overview__time_table dl dt {
  width: 30%;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  padding: 15px 0;
  align-self: center;
}
.overview__wrap .overview .overview__time_table dl dd {
  width: 70%;
  font-size: 18px;
  color: #333;
  padding: 15px 0;
  line-height: 24px;
}

.overview__text {
  width: 800px;
  margin: 0 auto;
  padding-bottom: 400px;
}
.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 table .overview__date th {
  font-size: 18px;
}
.overview__text table .overview__date td {
  font-size: 24px;
  font-weight: bold;
  color: #d82122;
}
.overview__text table .overview__date td span {
  color: #333;
  font-size: 16px;
}
.overview__text .map {
  height: 400px;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 60px;
  background-color: #333;
}
.ticket__wrap .ticket {
  padding-bottom: 60px;
}
.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: #d82122;
  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: #d82122;
  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;
}

.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 {
  background-color: #aaf2fd;
}
.footer p {
  font-size: 14px;
  color: #333;
  text-align: center;
  padding: 30px;
}

.ticket__later p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 60px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース詳細ページ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__page {
  background-color: #aaf2fd;
  background-color: #aaf2fd;
  background-image: url("../img/bg__01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 100px;
  padding-bottom: 120px;
}
.news__page .breadcrumb {
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}
.news__page .breadcrumb ul {
  width: 1200px;
  margin: 0 auto;
}
.news__page .breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
  color: #333;
}
.news__page .breadcrumb ul li a {
  color: #333;
  text-decoration: none;
}
.news__page .breadcrumb ul li a:hover {
  color: #d82122;
  text-decoration: underline;
}
.news__page .breadcrumb ul li:not(:last-child)::after {
  content: " > ";
  margin-left: 5px;
}
.news__page .news__page--inner {
  width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}
.news__page .news__page--inner .news__page--title {
  margin-bottom: 30px;
  border-bottom: dotted 1px #333;
  padding-bottom: 30px;
}
.news__page .news__page--inner .news__page--title h2 {
  font-size: 36px;
  line-height: 46px;
  color: #333;
  font-weight: bold;
  text-align: left;
}
.news__page .news__page--inner .news__page--img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.news__page .news__page--inner .news__page--img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.news__page .news__page--inner .news__page--date {
  background-color: #f2f2cf;
  width: 120px;
  padding: 10px;
}
.news__page .news__page--inner .news__page--date p {
  font-size: 16px;
  color: #333;
  text-align: center;
}
.news__page .news__page--inner .news__page--text {
  border-top: dotted 1px #333;
  padding-top: 30px;
}
.news__page .news__page--inner .news__page--text p {
  font-size: 16px;
  color: #333;
  line-height: 30px;
}/*# sourceMappingURL=common.css.map */