@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: "Kiwi Maru", 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: "ヒラギノ明朝 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 h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #333;
  text-align: center;
  display: block;
  border: 2px solid #333;
  width: auto;
  margin: 0 auto;
  background-color: #fdf577;
  padding: 15px;
}
.modal .modal-content p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5em;
  color: #333;
}
.modal .modal-content p a {
  color: #333;
}
.modal .modal-content p a:hover {
  color: #ec5a62;
}
.modal .modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.modal .modal-content table th {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 15px 0;
  width: 30%;
  border-bottom: 1px solid #333;
}
.modal .modal-content table td {
  font-size: 16px;
  color: #333;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}
.modal .modal-content table td span {
  font-size: 14px;
}
.modal .modal-text__stand_stage--time1 {
  margin-top: 30px;
}
.modal .modal-text__stand_stage--time1 ul {
  display: flex;
  justify-content: center;
}
.modal .modal-text__stand_stage--time1 ul li {
  width: 40%;
  text-align: center;
  margin: 0 10px;
}
.modal .modal-text__stand_stage--time1 ul li .stage__time1--img img {
  width: 100%;
  height: auto;
}
.modal .modal-text__stand_stage--time1 ul li p {
  font-size: 16px;
  line-height: 1.5em;
  color: #333;
}
.modal .modal-text__stand_stage--time2 {
  margin-top: 30px;
}
.modal .modal-text__stand_stage--time2 img {
  width: 100%;
  height: auto;
}
.modal .mc ul li {
  width: 20%;
}
.modal .modal__link a {
  display: block;
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 15px;
  background-color: #ec5a62;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #333;
  font-family: "Kiwi Maru", serif;
}
.modal .modal__link a:hover {
  background-color: #83311d;
}
.modal .close p {
  border: 2px solid #333;
  color: #333;
  font-size: 14px;
  text-align: center;
}
.modal .close p:hover {
  color: #fff;
  background-color: #ec5a62;
  cursor: pointer;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_logo {
  width: 100px;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
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;
  margin-top: 14px;
}
header .header__inner .header_nav ul li a {
  color: #333;
  font-size: 16px;
  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: #ec5a62;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  margin-top: 90px;
}
.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: 47%;
  top: 46%;
  left: 50%;
  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秒後にアニメーションを開始 */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

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

.section__title {
  background-image: url("../img/h2_l.png"), url("../img/h2_r.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left 17%, top right 17%;
  background-size: contain, contain;
}
.section__title h2 {
  font-size: 36px;
  line-height: 60px;
  color: #fff;
  background-color: #ec5a62;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  border: #333 2px solid;
}
.section__title p {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  text-align: center;
  width: 200px;
  margin: 0 auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #a59cf8;
  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: #ec5a62;
  display: block;
  position: relative;
}
.news__wrap .news .notice a:hover {
  background-color: #fff;
  color: #333;
}
.news__wrap .news .notice a:hover::before {
  background-color: #fdf577;
}
.news__wrap .news .notice a:hover::after {
  background-color: #fdf577;
}
.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: #fdf577;
}
.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: #ec5a62;
  color: #fff;
}
.news__wrap .news .news__feed ul li a dl:hover dd {
  color: #ec5a62;
}
.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: #fdf577;
  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: #fdf577;
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-top: solid 1px #fdf577;
  border-bottom: solid 1px #fdf577;
}
.news__wrap .news .modal1__text {
  margin-top: 30px;
}
.news__wrap .news .modal1__text p {
  font-size: 14px;
  color: #fdf577;
  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: #ec5a62;
  display: block;
  position: relative;
}
.news__wrap .news .modal1__button a:hover {
  background-color: #fff;
  color: #fdf577;
}
.news__wrap .news .modal1__button a:hover::before {
  background-color: #fdf577;
}
.news__wrap .news .modal1__button a:hover::after {
  background-color: #fdf577;
}
.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: #fdf577;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction__wrap {
  width: auto;
  background-color: #fdf577;
  padding-top: 60px;
  padding-bottom: 60px;
}
.introduction__wrap .introduction__text {
  width: auto;
  margin: 0 auto;
  background-image: url("../img/intro_text.png");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.introduction__wrap .introduction__text p {
  font-size: 24px;
  color: #333;
  line-height: 30px;
  text-align: center;
  padding: 60px;
}

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

.top-slider .top-slider__slide {
  width: 300px;
  height: auto;
  margin-left: 30px;
  position: relative;
}

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

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        タイムテーブル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.timetable__wrap {
  width: 100%;
  background-color: #fdf577;
  padding-top: 60px;
  padding-bottom: 60px;
}
.timetable__wrap .timetable .timetable__content {
  margin-top: 60px;
  overflow-x: auto;
}
.timetable__wrap .timetable .timetable__content .stand_stage__caption {
  z-index: 1;
  margin-right: 10px;
}
.timetable__wrap .timetable .timetable__content .stand_stage__caption p {
  font-size: 18px;
  line-height: 18px;
  writing-mode: vertical-rl;
}
.timetable__wrap .timetable .timetable__content .stand_stage__caption .caption1 {
  background-color: #a59cf8;
  border: 2px solid #333;
  width: 18px;
  padding: 10px;
  margin-top: 100px;
  height: 526px;
}
.timetable__wrap .timetable .timetable__content .stand_stage__caption .caption2 {
  background-color: #ff7600;
  width: 18px;
  border: 2px solid #333;
  padding: 10px;
  margin-top: 78px;
  height: 526px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner {
  display: flex;
  justify-content: left;
  margin-bottom: 5rem;
  overflow: hidden;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .clockList {
  padding-top: 100px;
  margin-right: 27px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .clockList li {
  height: 157px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: -0.5em 0 0.5em;
  position: relative;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .clockList li::after {
  content: "";
  display: block;
  width: calc(100vw - 10%);
  height: 1px;
  position: absolute;
  background: #333;
  top: 0.5em;
  left: 7rem;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul {
  z-index: 1;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul .stage__title h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid #333;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
  background-color: #00d6ac;
  display: block;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  height: 100%;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul li a:hover p {
  color: #fff;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul li a:hover p span {
  color: #fff;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul li a p {
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner ul li a p span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage {
  width: 40%;
  margin-right: 114px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time1 {
  background-color: #ec5a62;
  height: 232px;
  margin-top: 51px;
  border: 2px solid #333;
  background-image: url("../img/slide/top-slider01.png");
  background-size: 33%;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time1 p {
  padding-top: 40px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time2 {
  background-color: #ec5a62;
  height: 155px;
  margin-top: 155px;
  border: 2px solid #333;
  background-image: url("../img/slide/top-slider03.png");
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: left 5px center;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time2 p {
  padding-top: 12px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time3 {
  background-color: #ec5a62;
  height: 155px;
  margin-top: 155px;
  border: 2px solid #333;
  background-image: url("../img/slide/top-slider04.png");
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: right 5px center;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time3 p {
  padding-top: 12px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time4 {
  background-color: #ec5a62;
  height: 155px;
  margin-top: 155px;
  border: 2px solid #333;
  background-image: url("../img/slide/top-slider05.png");
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: left 5px top 10px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .stand_stage .stand_stage__time4 p {
  padding-top: 12px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage {
  width: 40%;
  margin-right: 4px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage .fm_stage__time {
  background-color: #a59cf8;
  height: 75px;
  border: 2px solid #333;
  margin-top: 78px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage .fm_stage__time a p {
  padding-top: 10px;
  font-weight: bold;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage .time1 {
  margin-top: 51px;
  height: 100px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage .time2 {
  margin-top: 53px;
}
.timetable__wrap .timetable .timetable__content .timetable__content--inner .fm_stage .part2 {
  background-color: #ff7600;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        オーバービュー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.overview__wrap {
  width: 100%;
  background-color: #a59cf8;
  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__text {
  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 .sponsor {
  margin-top: 30px;
}
.overview__text table th {
  color: #333;
  font-weight: bold;
  padding: 15px 0;
  width: 30%;
}
.overview__text table td {
  color: #333;
  padding: 15px 0;
  text-shadow: 1px 1px 0 #a59cf8, -1px 1px 0 #a59cf8, -1px -1px 0 #a59cf8, 1px -1px 0 #a59cf8;
}
.overview__text table td strong {
  font-weight: bold;
  border: 2px solid #333;
  padding: 5px;
  display: inline-block;
  margin-bottom: 15px;
}
.overview__text table .overview__date th {
  font-size: 18px;
}
.overview__text table .overview__date td {
  font-size: 24px;
  font-weight: bold;
}
.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 .section__title p {
  color: #fff;
}
.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: #ec5a62;
  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 {
  width: auto;
  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;
  width: 100%;
}
.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 .overview__ticket--caption table tr td span {
  font-size: 0.8em;
}
.ticket__wrap .ticket .overview__ticket--caption table tr td .caption_over {
  font-size: 1em;
  color: #999;
}

.overview__ticket h3 {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.overview__ticket h5 {
  width: 100%;
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  padding: 30px 0;
  background-color: #ec5a62;
}
.overview__ticket .overview__ticket--inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner ul li {
  width: 23%;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}
.overview__ticket .overview__ticket--inner ul li .ticket__img {
  width: auto;
  padding: 15px;
}
.overview__ticket .overview__ticket--inner ul li .ticket__img img {
  width: 100%;
  height: auto;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text {
  padding-bottom: 100px;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text dl {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text dl dt {
  width: 30%;
  line-height: 1.5em;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text dl dt p {
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #333;
  text-align: center;
}
.overview__ticket .overview__ticket--inner ul li .ticket__text dl dd {
  width: 60%;
  font-size: 12px;
  color: #333;
}
.overview__ticket .overview__ticket--inner .coming__soon {
  background-color: #fff;
  border-radius: 15px;
  width: auto;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner .coming__soon p {
  font-size: 24px;
  line-height: 100px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 30px;
}
.overview__ticket .overview__ticket--inner .button-4 {
  margin-bottom: 60px;
}
.overview__ticket .overview__ticket--inner .button-4 a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-bottom: solid 5px #83311d;
  border-radius: 5px;
  background-color: #ec5a62;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
  transition: 0.5s ease;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner .button-4 a::after {
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}
.overview__ticket .overview__ticket--inner .button-4 a:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
}
.overview__ticket .overview__ticket--inner .button-5 {
  padding: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.overview__ticket .overview__ticket--inner .button-5 a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  padding: 0.9em 2em;
  border: none;
  border-bottom: solid 5px #83311d;
  border-radius: 5px;
  background-color: #ec5a62;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-family: "Kiwi Maru", serif;
  transition: 0.5s ease;
}
.overview__ticket .overview__ticket--inner .button-5 a::after {
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}
.overview__ticket .overview__ticket--inner .button-5 a:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
}
.overview__ticket .overview__ticket--text {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #fff;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--text p {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #fff;
  line-height: 30px;
  padding-top: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  background-color: #fdf577;
}
.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;
}/*# sourceMappingURL=common.css.map */