@charset "UTF-8";
/* sp */
@media only screen and (max-width: 1200px) {
  .timetable__content--inner {
    width: 1200px;
  }
  .timetable__wrap .timetable .timetable__content .timetable__content--inner .clockList li::after {
    width: 1200px;
  }
}
@media only screen and (max-width: 800px) {
  /* フォーム周りリセット */
  .sp-search input, .sp-search button, .sp-search textarea, .sp-search select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .sp-search input, .sp-search button, .sp-search textarea, .sp-search select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  /* /フォーム周りリセット */
  .sp-search input.textBox {
    width: 83%;
    height: 40px;
    padding: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* ---------------------------------------------------------------
                        mixin
  ----------------------------------------------------------------*/
  /* --------------------------------------------------------------

                          モーダル

  ----------------------------------------------------------------*/
  .no-scroll {
    overflow: hidden;
  }
  .modal {
    padding: 15px;
    width: auto;
  }
  .modal .modal-content {
    padding: 30px;
    width: auto;
    margin: 0 auto;
  }
  .modal .modal-content ul li p {
    margin-top: 0px;
    line-height: 1.5em;
    margin-bottom: 30px;
  }
  .modal .modal-content tr td {
    font-size: 14px;
  }
  .modal .modal-text__stand_stage--time1 {
    margin-top: 15px;
  }
  .modal .modal-text__stand_stage--time1 ul {
    display: block;
  }
  .modal .modal-text__stand_stage--time1 ul li {
    width: auto;
    text-align: center;
  }
  /*----------------------------------------------------------------
  ----------------------------------------------------------------*
                                ヘッダー
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  /* ヘッダー
  -----------------------------------------------*/
  /*  ハンバーガーメニュー
  ---------------------------------------------- */
  .sb-open-right {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 15px;
    border-radius: 3px;
    background-color: #333;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 6px;
  }
  .menu-btn span:after {
    top: 6px;
  }
  #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 {
    display: none;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #fdf577;
  }
  .menu-content ul {
    padding: 70px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #333;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #333;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fdf577;
    transition: all 0.5s; /*アニメーション設定*/
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }
  header {
    margin: 10px 0;
    background-color: transparent;
  }
  header .header__inner {
    width: auto;
    padding: 0 10px;
  }
  header .header__inner .header_logo {
    width: 30px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          メインビジュアル
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .mainvisual {
    width: 100%;
    height: auto;
    margin-top: 0px;
  }
  .mainvisual .mainvisual__inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .mainvisual .mainvisual__inner .mainvisual__title {
    top: 50px;
    left: 0;
    right: 0;
    transform: translate(0%, 0%);
    width: 40%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .mainvisual .mainvisual__inner .mainvisual__text {
    position: inherit;
    right: 0px;
    bottom: 0px;
    background-color: #ec5a62;
    width: auto;
  }
  .mainvisual .mainvisual__inner .mainvisual__text p {
    font-size: 11px;
    font-weight: bold;
    line-height: 30px;
    color: #fff;
    text-align: center;
    padding: 0px;
  }
  /*----------------------------------------------------------------
  ----------------------------------------------------------------*
                                コンテンツ
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .section__wrap {
    width: auto;
    margin: 0 10px;
  }
  .section__title {
    background-position: top left 0%, top right 0%;
    background-size: 12%, 12%;
  }
  .section__title h2 {
    font-size: 24px;
    line-height: 30px;
    width: 200px;
  }
  .section__title p {
    font-size: 14px;
  }
  /* --------------------------------------------------------------
    ----------------------------------------------------------------*
                            ニュース
    ----------------------------------------------------------------*
    ----------------------------------------------------------------*/
  .news__wrap {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: 100%;
  }
  .news__wrap .news .notice {
    width: auto;
    margin: 0 auto;
    margin-top: 15px;
  }
  .news__wrap .news .notice a {
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    line-height: 20px;
    position: relative;
  }
  .news__wrap .news .notice a:hover {
    background-color: #fff;
    color: #fdf577;
  }
  .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: 50px;
    right: 19px;
    width: 15px;
    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: 30px;
    height: 1px;
    right: -12px;
    margin-top: 0px;
    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: 15px;
  }
  .news__wrap .news .news__feed h3 {
    font-size: 14px;
    line-height: 14px;
    padding-top: 15px;
  }
  .news__wrap .news .news__feed ul {
    padding: 15px;
    height: 200px;
  }
  .news__wrap .news .news__feed ul li {
    width: auto;
    padding: 15px 0 15px 0;
    display: block;
    align-items: center;
  }
  .news__wrap .news .news__feed ul li a dl {
    display: block;
  }
  .news__wrap .news .news__feed ul li a dl dt {
    width: auto;
    margin-right: 0;
    padding: 0;
  }
  .news__wrap .news .news__feed ul li a dl dd {
    width: auto;
    margin-top: 10px;
  }
  .news__wrap .news .news__feed ul li a dl:hover dt {
    background-color: #ec5a62;
  }
  .news__wrap .news .news__feed ul li a dl:hover dd {
    color: #ec5a62;
  }
  .news__wrap .news h4 {
    font-size: 18px;
    line-height: 24px;
    padding: 10px;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          イントロダクション
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .introduction__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .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: 16px;
    color: #333;
    line-height: 20px;
    text-align: center;
    padding: 30px;
  }
  /*スライダー
  ----------------------------------------------------------------*/
  .top-slider {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .top-slider .top-slider__slide {
    width: 100px;
    height: auto;
  }
  .top-slider .top-slider__slide .caption p {
    bottom: 30px;
  }
  /* --------------------------------------------------------------
   ----------------------------------------------------------------*
                           オーバービュー
   ----------------------------------------------------------------*
   ----------------------------------------------------------------*/
  .overview__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .overview__wrap .overview h3 {
    margin-top: 15px;
  }
  .overview__wrap .overview .overview__table {
    margin-top: 15px;
  }
  .overview__wrap .overview .overview__table p {
    margin-top: 10px;
  }
  .overview__wrap .overview .overview__table h4 {
    display: block;
    font-size: 18px;
    color: #fdf577;
    text-align: center;
  }
  .overview__wrap .overview .overview__table .time-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  .overview__wrap .overview .overview__table .time-table td {
    width: 10%;
  }
  .overview__wrap .overview .overview__time_table {
    width: auto;
    margin-top: 15px;
    padding: 15px;
  }
  .overview__wrap .overview .overview__time_table h4 {
    font-size: 18px;
  }
  .overview__wrap .overview .overview__time_table dl {
    display: block;
  }
  .overview__wrap .overview .overview__time_table dl dt {
    width: auto;
    font-size: 18px;
    padding: 5px 0;
  }
  .overview__wrap .overview .overview__time_table dl dd {
    width: auto;
    font-size: 14px;
    padding: 5px 0;
  }
  .overview__text {
    width: auto;
    margin: 0 10px;
    padding-bottom: 100px;
  }
  .overview__text table {
    display: block;
  }
  .overview__text table:first-child {
    margin-top: 15px;
  }
  .overview__text table th {
    display: block;
    width: 100%;
  }
  .overview__text table td {
    display: block;
    padding: 10px 0;
  }
  .overview__text table td .sponsor__logo {
    width: auto;
  }
  .overview__text table td .sponsor__logo p {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
  }
  .overview__text table td .sponsor__logo p::before {
    background-size: 30px 30px;
    width: 30px;
    height: 40px;
    background-position: left bottom 9px;
  }
  .overview__text .overview__text--gest {
    display: block;
  }
  .overview__text .overview__text--gest:first-child {
    margin-top: 15px;
  }
  .overview__text .overview__text--gest tr th {
    width: 100%;
    display: block;
  }
  .overview__text .overview__text--gest tr td {
    width: 29%;
    display: inline-table;
  }
  .overview__text .map {
    height: 200px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
  }
  /* --------------------------------------------------------------
  ----------------------------------------------------------------*
                          チケット
  ----------------------------------------------------------------*
  ----------------------------------------------------------------*/
  .ticket__wrap {
    padding-top: 30px;
  }
  .ticket__wrap .ticket {
    padding-bottom: 30px;
  }
  .ticket__wrap .ticket table td .overview__text--bald {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .ticket__wrap .ticket .overview__ticket--caption {
    width: auto;
    border-radius: 15px;
    margin: 10px auto;
    margin-top: 15px;
    padding: 15px;
  }
  .ticket__wrap .ticket .overview__ticket--caption table {
    border-collapse: collapse;
    width: 100%;
  }
  .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: 10px;
  }
  .ticket__wrap .ticket .overview__ticket--caption table tr:last-child th, .ticket__wrap .ticket .overview__ticket--caption table tr:last-child td {
    padding-bottom: 10px;
  }
  .ticket__wrap .ticket .overview__ticket--caption table tr th {
    display: block;
    margin-top: 0;
    padding: 15px;
    display: block;
    font-size: 16px;
    width: 100%;
  }
  .ticket__wrap .ticket .overview__ticket--caption table tr td {
    padding: 15px;
    font-size: 18px;
    margin-top: 0;
    display: block;
    width: 100%;
  }
  .ticket__wrap .ticket .overview__ticket h3 {
    font-size: 18px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul {
    display: block;
    margin-top: 15px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul li {
    width: auto;
    margin-bottom: 10px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul li .ticket__img {
    padding: 10px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul li .ticket__text dl dt {
    font-size: 16px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul li .ticket__text dl dd {
    font-size: 14px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner ul li p {
    padding: 10px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner .coming__soon {
    background-color: #fff;
    border-radius: 15px;
    width: auto;
    margin-top: 15px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner .coming__soon p {
    font-size: 24px;
    line-height: 100px;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 15px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner .button-4 {
    margin-bottom: 30px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner .button-4 a {
    width: auto;
    font-size: 16px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--inner .button-4 a::after {
    width: 7px;
    height: 7px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--text {
    width: auto;
    margin: 0 auto;
    margin-top: 15px;
  }
  .ticket__wrap .ticket .overview__ticket .overview__ticket--text p {
    margin-top: 15px;
    width: auto;
  }
}/*# sourceMappingURL=sp.css.map */