@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: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Osaka", Verdana, Arial, sans-serif;
  font-optical-sizing: auto; }

caption, th, td {
  text-align: left;
  vertical-align: top; }

img {
  vertical-align: top;
  border: 0; }

ul, li {
  list-style: none; }

option {
  padding-right: 1em; }

address, caption {
  font-style: italic;
  font-weight: normal; }

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all; }

a:focus {
  outline: none; }

ul a, li a {
  zoom: 1; }

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block; }

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto; }
  @media only screen and (max-width: 767px) {
    body {
      overflow-x: hidden; } }

a {
  color: #39F;
  -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: #36C; }

img {
  width: 100%;
  height: 100%; }

.cb {
  clear: both; }

.clearfix::after {
  content: "";
  display: block;
  clear: both; }

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth; }

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none; }
  @media only screen and (max-width: 767px) {
    .sp {
      display: block; } }

.pc {
  display: block; }
  @media only screen and (max-width: 767px) {
    .pc {
      display: none; } }

.flex__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .flex__wrap {
      display: block; } }

.noLink {
  pointer-events: none; }

.mt0 {
  margin-top: 0 !important; }

.mb0 {
  margin-bottom: 0 !important; }

.strikethrough {
  text-decoration: line-through; 
}

.red {
	color:#DE0B0B
}


 /* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff; }

.menu-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .menu-btn {
      height: 50px;
      width: 50px;
      top: 10px; } }

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #333;
  position: absolute; }
  @media only screen and (max-width: 767px) {
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
      width: 18px; } }

.menu-btn span:before {
  bottom: 12px; }
  @media only screen and (max-width: 767px) {
    .menu-btn span:before {
      bottom: 8px; } }

.menu-btn span:after {
  top: 12px; }
  @media only screen and (max-width: 767px) {
    .menu-btn span:after {
      top: 8px; } }

#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: 15px; }

#menu-btn-check {
  display: none; }

.menu-content ul {
  padding: 0;
  text-align: center; }
  .menu-content ul.parent {
	position: static;
	width: auto; 
    border-top: 1px dotted #838383;
    width: 800px;
    margin: 0 auto;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 15px; }
    @media only screen and (max-width: 767px) {
      .menu-content ul.parent {
        width: calc(100% - 30px); } }

.menu-content ul li {
  border-bottom: 1px dotted #838383;
  padding: 35px 0;
  list-style: none; }
  @media only screen and (max-width: 767px) {
    .menu-content ul li {
      padding: 25px 0; } }
  .menu-content ul li.sns {
    border: none; }
    .menu-content ul li.sns ul {
      display: flex;
      align-items: center;
      justify-content: center; }
      @media only screen and (max-width: 767px) {
        .menu-content ul li.sns ul {
          flex-wrap: wrap; } }
      .menu-content ul li.sns ul li {
        padding: 0;
        margin-left: 20px; }
        .menu-content ul li.sns ul li:first-child {
          margin-left: 0; }
          @media only screen and (max-width: 767px) {
            .menu-content ul li.sns ul li:first-child {
              width: 100%;
              margin-bottom: 25px; } }
        @media only screen and (max-width: 767px) {
          .menu-content ul li.sns ul li:nth-child(2) {
            margin-left: 0; } }
        .menu-content ul li.sns ul li a {
          width: 48px;
          transition: 0.4s; }
          .menu-content ul li.sns ul li a:hover {
            opacity: 0.6; }
          .menu-content ul li.sns ul li a img {
            width: 100%;
            height: auto; }
  .menu-content ul li ul {
    display: block;
    padding: 0;
    margin-left: 0; }
    .menu-content ul li ul li {
      padding: 30px 0 0;
      border-bottom: none;
      color: #fff; }
      @media only screen and (max-width: 767px) {
        .menu-content ul li ul li {
          padding: 24px 0 0; } }
      .menu-content ul li ul li a {
        font-size: 20px; }
        @media only screen and (max-width: 767px) {
          .menu-content ul li ul li a {
            font-size: 16px; } }

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 40px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-family: "segoe-ui", sans-serif;
  font-weight: 900;
  font-style: italic;
  transition: 0.4s; }
  .menu-content ul li a:hover {
    opacity: 0.6; }
  @media only screen and (max-width: 767px) {
    .menu-content ul li a {
      font-size: 32px; } }

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.4s;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 80px;
  padding-bottom: 20px;
  box-sizing: border-box;  }
  @media only screen and (max-width: 767px) {
  .menu-content {
    padding-top: 60px;
  }}

#menu-btn-check:checked ~ .menu-content {
  opacity: 1;
  display: block; }

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative; }
  header .header__inner .header_logo {
    width: 357px; }
    @media only screen and (max-width: 767px) {
      header .header__inner .header_logo {
        width: 120px; } }

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1;
  /* 表示状態では完全に不透明 */
  transform: translateY(0);
  /* 元の位置に戻る */
  z-index: 20; }

.scroll__top {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 60px;
  height: 10px;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: 2;
  border-radius: 15px; }
  .scroll__top:hover {
    opacity: 0.6; }
  @media only screen and (max-width: 767px) {
    .scroll__top {
      width: 50px; } }
  .scroll__top a {
    text-decoration: none;
    background: #fff;
    display: block;
    padding: 25px 0 15px;
    border-radius: 15px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4); }
    @media only screen and (max-width: 767px) {
      .scroll__top a {
        padding: 20px 0 10px; } }
    .scroll__top a .scroll__top--img {
      width: 12px;
      height: 20px;
      margin: 0 auto; }
      .scroll__top a .scroll__top--img img {
        width: 100%;
        height: auto; }
    .scroll__top a p {
      font-size: 1em;
      color: #333;
      text-align: center;
      font-weight: bold;
      line-height: 13px;
      margin-top: 10px;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic; }

/* --------------------------------------------------------------
                        浮かび上がる
----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px);
  /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%; }

.visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に移動 */ }

/* --------------------------------------------------------------
                        モーダル
----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden; }

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4); }
  .modal .modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 120px;
    width: 800px;
    border-radius: 15px;
    margin-top: 100px;
    margin-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      .modal .modal-content {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px; } }
    .modal .modal-content p {
      font-size: 24px;
      line-height: 30px; }
  .modal .close {
    margin-top: 30px; }
    .modal .close p {
      background-color: #fff;
      color: #333;
      font-size: 1em;
      text-align: center;
      width: 50%;
      margin: 0 auto;
      border: 1px solid #333; }
      .modal .close p:hover {
        color: #fff;
        background-color: #333;
        cursor: pointer;
        border: 1px solid #333; }

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0; }
  header .header__inner {
    height: 100%;
    margin: 0 auto;
    display: flex; }
    header .header__inner .header_logo {
      width: 357px;
      height: auto;
      z-index: 70;
      transition: 0.4s; }
      header .header__inner .header_logo:hover {
        opacity: 0.6; }
      @media only screen and (max-width: 767px) {
/*	    header {
          margin: 0; }*/
        header .header__inner .header_logo {
          width: 120px; } }
      header .header__inner .header_logo img {
        width: 100%;
        height: auto; }
    header .header__inner .header_nav {
      width: 900px;
      margin-left: 50px; }
      header .header__inner .header_nav ul {
        display: flex;
        justify-content: space-between; }
        header .header__inner .header_nav ul li a {
          color: #fff;
          font-size: 1.2em;
          text-decoration: none;
          line-height: 59px;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic; }
          header .header__inner .header_nav ul li a:hover {
            color: #ffff66; }
  header .header__sns ul {
    width: 60px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 30px;
    top: 13px; }
    header .header__sns ul li {
      width: 30px; }
      header .header__sns ul li a img {
        width: 100%;
        height: auto; }
  header .header__sns.show {
    display: none; }

.show .header__inner .header_logo {
  display: none; }
.show .header__inner .pc {
  display: none; }
.show .sp {
  display: block; }
  .show .sp .header_logo__wrap {
    width: 125px;
    margin-left: 20px; }
    .show .sp .header_logo__wrap .header_logo {
      display: block;
      margin-top: 25px; }
      .show .sp .header_logo__wrap .header_logo img {
        width: 100%;
        height: auto; }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  background-image: url("../img/bg.jpg");
  background-size: cover; }
  @media only screen and (max-width: 767px) {
    .mainvisual {
	  margin-top: -50px;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
	  min-height: 450px; } }
  .mainvisual .mainvisual__inner {
    height: auto;
    margin: 0 auto;
    padding: 150px 0; }
    @media only screen and (max-width: 767px) {
      .mainvisual .mainvisual__inner {
        padding: 140px 0; } }
    .mainvisual .mainvisual__inner img {
      width: 100%;
      height: auto; }
    .mainvisual .mainvisual__inner .mainvisual__title {
      width: 800px;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .mainvisual .mainvisual__inner .mainvisual__title {
          width: calc(100% - 30px); } }
    .mainvisual .mainvisual__inner .mainvisual__sponsored {
      display: block;
      margin: 40px 0; }
      @media only screen and (max-width: 767px) {
        .mainvisual .mainvisual__inner .mainvisual__sponsored {
          margin: 30px 0 0; } }
      .mainvisual .mainvisual__inner .mainvisual__sponsored p {
        font-size: 21px;
        font-weight: bold;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .mainvisual .mainvisual__inner .mainvisual__sponsored p {
            font-size: 16px;
            margin-bottom: 10px; } }
      .mainvisual .mainvisual__inner .mainvisual__sponsored ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 1080px;
        margin: 20px auto 0; }
        @media only screen and (max-width: 767px) {
          .mainvisual .mainvisual__inner .mainvisual__sponsored ul {
            display: block;
            width: auto;
            margin-top: 10px; } }
        .mainvisual .mainvisual__inner .mainvisual__sponsored ul li {
          display: block;
          margin: 0 5px;
          padding: 15px 0;
          border-radius: 4px;
          border: 1px solid #fff;
          width: calc(50% - 40px);
          font-size: 20px;
          font-weight: bold;			
          color: #fff;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            .mainvisual .mainvisual__inner .mainvisual__sponsored ul li {
              width: auto;
              margin-bottom: 15px;
              font-size: 14px;
              padding: 10px 0; } }
    .mainvisual .mainvisual__inner p {
      color: #fff;
      text-align: center;
      margin-top: 50px; }
      @media only screen and (max-width: 767px) {
        .mainvisual .mainvisual__inner p {
          margin: 30px 15px;
          font-size: 14px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 1200px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .section__wrap {
      width: auto;
      margin: 0 15px; } }

.section__title {
  margin: 0 auto; }
  .section__title h2 {
    font-size: 72px;
    line-height: 1em;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 auto;
    font-family: "segoe-ui", sans-serif;
    font-weight: 900;
    font-style: italic; }
    @media only screen and (max-width: 767px) {
      .section__title h2 {
        font-size: 40px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        NEWS
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background: #000;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: -2; }
  @media only screen and (max-width: 767px) {
    .news__wrap {
      padding-top: 60px;
      padding-bottom: 60px; } }
  .news__wrap .news .section__title h2 {
    color: #fff; }
  .news__wrap .news .section__title p {
    color: #fff; }
  .news__wrap .news .sns__wrap {
    color: #fff;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      .news__wrap .news .sns__wrap {
        padding-top: 30px;
        border-top: 1px dotted #AEAEAE;
        margin-top: 30px; } }
    .news__wrap .news .sns__wrap p {
      text-align: center;
      margin: 20px 0 25px;
      position: relative;
      font-size: 18px; }
      .news__wrap .news .sns__wrap p::before {
        content: "";
        position: absolute;
        top: 0;
        left: -5px;
        background: url("../img/sns__line__left.png");
        background-size: 100% auto;
        display: block;
        width: 16px;
        height: 27px; }
      .news__wrap .news .sns__wrap p::after {
        content: "";
        position: absolute;
        top: 0;
        right: -5px;
        background: url("../img/sns__line__right.png");
        background-size: 100% auto;
        display: block;
        width: 16px;
        height: 27px; }
      @media only screen and (max-width: 767px) {
        .news__wrap .news .sns__wrap p {
          display: table;
          margin: 0 auto 15px;
          font-size: 16px; }
          .news__wrap .news .sns__wrap p::before {
            left: -25px;
            top: 2px;
            width: 14px;
            height: 23px; }
          .news__wrap .news .sns__wrap p::after {
            right: -25px;
            top: 2px;
            width: 14px;
            height: 23px; } }
    .news__wrap .news .sns__wrap ul {
      display: flex;
      align-items: center;
      justify-content: center; }
      .news__wrap .news .sns__wrap ul li {
        margin-left: 20px;
        width: 48px; }
        .news__wrap .news .sns__wrap ul li:first-child {
          margin-left: 0; }
        .news__wrap .news .sns__wrap ul li a {
          transition: 0.4s; }
          .news__wrap .news .sns__wrap ul li a:hover {
            opacity: 0.6; }
        @media only screen and (max-width: 767px) {
          .news__wrap .news .sns__wrap ul li a {
            display: block;
            width: 48px;
            height: 48px; } }
  .news__wrap .news .title__flex {
    width: 200px; }
    @media only screen and (max-width: 767px) {
      .news__wrap .news .title__flex {
        width: auto;
        margin: 0 auto; } }
    .news__wrap .news .title__flex .section__title {
      width: 100%;
      border-bottom: 1px dotted #AEAEAE;
      padding-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        .news__wrap .news .title__flex .section__title {
          border-bottom: none;
          padding-bottom: 30px; } }
  .news__wrap .news .news__feed {
    width: 910px; }
    @media only screen and (max-width: 767px) {
      .news__wrap .news .news__feed {
        width: auto; } }
    .news__wrap .news .news__feed h3 {
      font-size: 1.5em;
      line-height: 100px;
      color: #333;
      text-align: center; }
    .news__wrap .news .news__feed ul {
      width: auto;
      margin: 0 auto;
      max-height: 480px;
      overflow-y: scroll; }
      @media only screen and (max-width: 767px) {
        .news__wrap .news .news__feed ul {
          max-height: 360px; } }
      .news__wrap .news .news__feed ul li {
        width: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #001A2C; }
        .news__wrap .news .news__feed ul li:nth-child(2n) {
          background: #000; }
        .news__wrap .news .news__feed ul li a {
          text-decoration: none;
          width: 100%;
          transition: 0.4s; }
          .news__wrap .news .news__feed ul li a:hover {
            opacity: 0.6; }
          .news__wrap .news .news__feed ul li a dl {
            display: flex;
            padding-left: 30px; }
            @media only screen and (max-width: 767px) {
              .news__wrap .news .news__feed ul li a dl {
                padding: 0 15px;
                display: block; } }
            .news__wrap .news .news__feed ul li a dl dt {
              font-size: 14px;
              color: #fff;
              border: 1px solid #929292;
              margin-right: 25px;
              margin-top: 30px;
              align-self: baseline;
              padding: 0 10px; }
              @media only screen and (max-width: 767px) {
                .news__wrap .news .news__feed ul li a dl dt {
                  display: table;
                  padding: 0 10px;
                  margin-top: 15px;
                  margin-right: 0; } }
            .news__wrap .news .news__feed ul li a dl dd {
              font-size: 16px;
              color: #fff;
              text-decoration: none;
              align-self: center;
              width: 670px;
              padding: 30px 15px 30px 0; }
              @media only screen and (max-width: 767px) {
                .news__wrap .news .news__feed ul li a dl dd {
                  width: 100%;
                  padding: 15px 15px 15px 0;
                  font-size: 14px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ABOUT
----------------------------------------------------------------*
----------------------------------------------------------------*/
.about__wrap {
  padding: 120px 0;
  background-image: url("../img/bg2.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .about__wrap {
      padding: 60px 0;
      background-size: 1800px auto;
      background-position: center center;
      background-repeat: no-repeat; } }
  .about__wrap::after {
    content: "";
    position: absolute;
    bottom: -390px;
    left: -42px;
    background: url("../img/about__bg__obj.png");
    background-size: 100% auto;
    display: block;
    width: 834px;
    height: 1324px;
    z-index: 1; }
  @media only screen and (max-width: 767px) {
    .about__wrap::after {
      width: calc(100% + 20px);
      height: 654px;
      bottom: 0;
      left: -20px; } }
  .about__wrap .section__wrap .section__title__lev03 {
    border-top: solid 1px;
    border-bottom: solid 1px;
    border-image: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
    border-image-slice: 1;
    padding: 30px 0 35px;
    margin-top: 50px;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .about__wrap .section__wrap .section__title__lev03 {
        padding: 16px 0 22px;
        margin-top: 30px; } }
    .about__wrap .section__wrap .section__title__lev03 h3 {
      font-size: 72px;
      text-align: center;
      line-height: 1;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic;
      background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
      @media only screen and (max-width: 767px) {
        .about__wrap .section__wrap .section__title__lev03 h3 {
          font-size: 36px;
          line-height: 1.2; } }
  .about__wrap .lead__text {
    font-size: 20px;
    color: #fff;
    line-height: 2.4;
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .about__wrap .lead__text {
        font-size: 16px;
        line-height: 2.1; } }
  .about__wrap .schedule {
    background: #000;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0;
    margin-top: 30px;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .about__wrap .schedule {
        display: block;
        background: none;
        padding: 0; } }
    .about__wrap .schedule dl {
      font-size: 20px;
      line-height: 1.8;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 80px; }
      @media only screen and (max-width: 767px) {
        .about__wrap .schedule dl {
          display: block;
          font-size: 16px;
          margin-left: 0; } }
      .about__wrap .schedule dl:first-child {
        margin-left: 0; }
      .about__wrap .schedule dl dt {
        background: #78000B;
        padding: 6px 20px;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .about__wrap .schedule dl dt {
            padding: 3px 0;
            text-align: center;
            margin-top: 20px;
            font-weight: 600; } }
      .about__wrap .schedule dl dd {
        margin-left: 20px;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .about__wrap .schedule dl dd {
            margin: 0;
            text-align: center;
            font-weight: 600;
            margin-top: 15px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        CONTENTS
----------------------------------------------------------------*
----------------------------------------------------------------*/
.contents__wrap {
  padding: 120px 0 1px;
  background-image: linear-gradient(90deg, #002e4e, #520006);
  background-size: cover; }
  @media only screen and (max-width: 767px) {
    .contents__wrap {
      padding: 60px 0;
      overflow: hidden; } }
  .contents__wrap .contents__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0 80px; }
    @media only screen and (max-width: 767px) {
      .contents__wrap .contents__link {
        display: block;
        margin: 40px 0; } }
    .contents__wrap .contents__link li {
      width: calc(33.3% - 2px);
      border-left: 1px dotted #797979; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__link li {
          width: auto;
          border-left: none;
          border-top: 1px dotted #797979; } }
      .contents__wrap .contents__link li:last-child {
        border-right: 1px dotted #797979; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__link li:last-child {
            border-right: none;
            border-bottom: 1px dotted #797979; } }
      .contents__wrap .contents__link li a {
        text-decoration: none;
        transition: 0.4s; }
        .contents__wrap .contents__link li a:hover {
          opacity: 0.6; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__link li a dl {
            display: flex;
            align-items: center; } }
        .contents__wrap .contents__link li a dl dt {
          font-size: 24px;
          text-align: center;
          line-height: 1;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic;
          position: relative;
          padding: 10px 0;
          width: 280px;
          margin: 0 auto;
          background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
          @media only screen and (max-width: 767px) {
            .contents__wrap .contents__link li a dl dt {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 90px;
              height: 50px;
              margin: 15px 15px 15px 0; } }
          .contents__wrap .contents__link li a dl dt::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50px;
            border: 1px solid transparent;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
            -webkit-mask-composite: destination-out;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
            mask-composite: exclude;
            background-origin: border-box; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__link li a dl dt::before {
                border-radius: 5px; } }
          .contents__wrap .contents__link li a dl dt span {
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__link li a dl dt span {
                font-size: 16px; } }
          .contents__wrap .contents__link li a dl dt small {
            font-size: 20px;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__link li a dl dt small {
                font-size: 12px; } }
        .contents__wrap .contents__link li a dl dd {
          font-size: 22px;
          text-align: center;
          line-height: 1.2;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic;
          color: #fff;
          margin-top: 15px;
          position: relative;
          padding-bottom: 35px; }
          @media only screen and (max-width: 767px) {
            .contents__wrap .contents__link li a dl dd {
              font-size: 16px;
              margin: 0;
              padding: 0;
              width: calc(100% - 105px);
              text-align: left; } }
          .contents__wrap .contents__link li a dl dd span {
            font-size: 32px;
            text-align: center;
            line-height: 1.2;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic;
            display: block; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__link li a dl dd span {
                font-size: 22px;
                text-align: left; } }
          .contents__wrap .contents__link li a dl dd::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: url("../img/icon__down.png");
            background-size: 100% auto;
            display: block;
            width: 24px;
            height: 24px; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__link li a dl dd::after {
                bottom: auto;
                left: auto;
                right: 10px;
                top: 50%;
                transform: translate(0, -50%);
                width: 20px;
                height: 20px; } }
  .contents__wrap .contents__inner {
    margin-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      .contents__wrap .contents__inner {
        margin-bottom: 40px; } }
    .contents__wrap .contents__inner h3 {
      font-size: 40px;
      text-align: center;
      line-height: 1;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic;
      position: relative;
      padding: 20px 0 24px;
      width: 100%;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner h3 {
          font-size: 28px;
          width: calc(100% + 30px);
          margin-left: -15px; } }
      .contents__wrap .contents__inner h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50px;
        border: 1px solid transparent;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        -webkit-mask-composite: destination-out;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        mask-composite: exclude;
        background-origin: border-box; }
      .contents__wrap .contents__inner h3 span {
        font-family: "segoe-ui", sans-serif;
        font-weight: 900;
        font-style: italic;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-origin: border-box; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner h3::before {
          border-radius: 0;
          border-left: none;
          border-right: none; } }
      .contents__wrap .contents__inner h3 small {
        font-size: 28px;
        font-family: "segoe-ui", sans-serif;
        font-weight: 900;
        font-style: italic; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__inner h3 small {
            font-size: 22px; } }
    .contents__wrap .contents__inner h4 {
      font-size: 54px;
      text-align: center;
      line-height: 1;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic;
      margin: 40px 0;
      color: #fff; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner h4 {
          font-size: 34px;
          margin: 25px 0; } }
      .contents__wrap .contents__inner h4 small {
        font-size: 36px;
        line-height: 1;
        font-family: "segoe-ui", sans-serif;
        font-weight: 900;
        font-style: italic;
        margin: 40px 0;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__inner h4 small {
            font-size: 22px;
            display: block;
            margin: 10px 0 0; } }
    .contents__wrap .contents__inner .flex__wrap .banner {
      width: 480px; }
      .contents__wrap .contents__inner .flex__wrap .banner img {
        height: auto; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner .flex__wrap .banner {
          width: auto;
          height: max-content;
          margin-bottom: 30px; } }
    .contents__wrap .contents__inner .flex__wrap .detail {
      width: 660px; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner .flex__wrap .detail {
          width: auto; } }
      .contents__wrap .contents__inner .flex__wrap .detail dl {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 15px 0;
        padding-bottom: 15px;
        border-bottom: 1px dotted #5D5D5D; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__inner .flex__wrap .detail dl {
            display: block;
            border: none;
            margin: 5px 0; } }
        .contents__wrap .contents__inner .flex__wrap .detail dl:first-child {
          margin-top: 0; }
        .contents__wrap .contents__inner .flex__wrap .detail dl dt {
          background: #000;
          border-radius: 5px;
          text-align: center;
          color: #fff;
          width: 100px;
          font-size: 14px;
          display: flex;
          align-items: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            .contents__wrap .contents__inner .flex__wrap .detail dl dt {
              width: 100%; } }
        .contents__wrap .contents__inner .flex__wrap .detail dl dd {
          width: 540px;
          color: #fff;
          font-size: 16px; }
          @media only screen and (max-width: 767px) {
            .contents__wrap .contents__inner .flex__wrap .detail dl dd {
              width: 100%;
              margin-top: 10px;
              font-size: 14px; } }
      .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap {
        display: block;
        text-align: center;
        margin-top: 40px; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap {
            margin-top: 30px; } }
        .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li {
          width: 100%;
          border-radius: 3px;
          overflow: hidden;
          display: block; }
          .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            text-align: center;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            display: block;
            width: 100%;
            padding: 30px 0;
            position: relative;
            font-size: 18px;
            transition: 0.4s; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a {
                padding: 20px 0; } }
            .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a:hover {
              opacity: 0.6; }
            .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a::after {
              content: "";
              position: absolute;
              top: 50%;
              right: 15px;
              transform: translateY(-50%);
              background: url("../img/icon__right.png");
              background-size: 100% auto;
              display: block;
              width: 20px;
              height: 20px; }
            .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a.disabled {
              pointer-events: none;
              background: #7E7E7E; }
              .contents__wrap .contents__inner .flex__wrap .detail .btn__wrap li a.disabled::after {
                display: none; }
    .contents__wrap .contents__inner .performers {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px; }
      .contents__wrap .contents__inner .performers li {
        width: calc(16.66% - 13px);
        margin-right: 15px;
        margin-bottom: 15px;
        display: block; }
        @media only screen and (max-width: 767px) {
          .contents__wrap .contents__inner .performers li {
            width: calc(33.3% - 8px);
            margin-right: 12px;
            margin-bottom: 10px; }
            .contents__wrap .contents__inner .performers li:nth-child(3n) {
              margin-right: 0; } }
        .contents__wrap .contents__inner .performers li:nth-child(6n) {
          margin-right: 0; }
        .contents__wrap .contents__inner .performers li a {
          display: block;
          text-decoration: none;
          transition: 0.4s; }
          .contents__wrap .contents__inner .performers li a:hover {
            opacity: 0.6; }
          .contents__wrap .contents__inner .performers li a .img {
            display: block;
            width: 100%;
            height: 125px;
            display: flex;
            overflow: hidden;
            align-items: center; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__inner .performers li a .img {
                height: 19vw; } }
            .contents__wrap .contents__inner .performers li a .img img {
              width: 100%;
              height: 125px;
              object-fit: contain; }
              @media only screen and (max-width: 767px) {
                .contents__wrap .contents__inner .performers li a .img img {
                  height: 19vw; } }
          .contents__wrap .contents__inner .performers li a .text {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            display: block;
            margin-top: 6px;
            line-height: 1.6; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__inner .performers li a .text {
                font-size: 11px; } }
    .contents__wrap .contents__inner .entry__wrap a {
      display: block;
      border-radius: 10px;
      background: url("../img/bg__entry.png") no-repeat bottom -130px center;
      background-size: 830px auto;
      text-decoration: none;
      width: 700px;
      margin: 25px auto 0;
      padding: 30px 50px 20px;
      transition: 0.4s;
      position: relative;
      overflow: hidden; }
      .contents__wrap .contents__inner .entry__wrap a::before {
        content: "";
        position: absolute;
        top: -442px;
        right: 5px;
        background: url(../img/about__bg__obj.png) no-repeat bottom;
        opacity: 0.8;
        background-size: 100% auto;
        display: block;
        width: 200px;
        height: 730px;
        z-index: 1; }
      .contents__wrap .contents__inner .entry__wrap a:hover {
        opacity: 0.6; }
      @media only screen and (max-width: 767px) {
        .contents__wrap .contents__inner .entry__wrap a {
          width: auto;
          margin: 30px 0 0;
          padding: 25px 25px 20px;
          background: url("../img/bg__entry.png") no-repeat bottom -130px center;
          background-size: 830px auto; }
          .contents__wrap .contents__inner .entry__wrap a::before {
            width: 200px;
            height: 600px;
            top: -295px;
            right: -20px; } }
      .contents__wrap .contents__inner .entry__wrap a dl {
        z-index: 2;
        position: relative; }
        .contents__wrap .contents__inner .entry__wrap a dl dt {
          display: flex;
          flex-wrap: wrap;
          align-items: center; }
          .contents__wrap .contents__inner .entry__wrap a dl dt .ttl {
            font-size: 44px;
            color: #fff;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__inner .entry__wrap a dl dt .ttl {
                font-size: 32px; } }
          .contents__wrap .contents__inner .entry__wrap a dl dt .btn {
            margin-left: 25px;
            background: #fff;
            color: #A48300;
            font-size: 16px;
            padding: 3px 10px 3px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-radius: 30px; }
            .contents__wrap .contents__inner .entry__wrap a dl dt .btn::after {
              content: "";
              background: url("../img/entry__arrow.png");
              background-size: 100% auto;
              display: block;
              width: 18px;
              height: 18px;
              margin-left: 10px; }
            @media only screen and (max-width: 767px) {
              .contents__wrap .contents__inner .entry__wrap a dl dt .btn {
                font-size: 14px;
                margin-left: 20px; } }
        .contents__wrap .contents__inner .entry__wrap a dl dd {
          font-weight: 600;
          line-height: 1.8;
          margin-top: 15px;
          color: #fff;
          width: 520px; }
          @media only screen and (max-width: 767px) {
            .contents__wrap .contents__inner .entry__wrap a dl dd {
              width: 220px;
              font-size: 14px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ACCESS
----------------------------------------------------------------*
----------------------------------------------------------------*/
.access__wrap {
  padding-top: 120px;
  background: #000; }
  .access__wrap.section__bottom {
    padding-top: 0;
    padding-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      .access__wrap.section__bottom {
        padding-bottom: 60px; } }
  @media only screen and (max-width: 767px) {
    .access__wrap {
      padding-top: 60px;
      overflow: hidden; } }
  .access__wrap p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .access__wrap p {
        font-size: 16px; } }
    .access__wrap p.label {
      font-size: 22px;
      border-radius: 50px;
      padding: 10px 40px;
      border: 1px solid #fff;
      display: table;
      margin: 50px auto 0; }
      @media only screen and (max-width: 767px) {
        .access__wrap p.label {
          font-size: 18px;
          margin: 30px auto 0;
          padding: 5px 30px; } }
  .access__wrap .map__wrap {
    margin-top: 35px; }
    .access__wrap .map__wrap iframe {
      width: 100%;
      height: 458px; }
      @media only screen and (max-width: 767px) {
        .access__wrap .map__wrap iframe {
          width: calc(100% + 30px);
          margin-left: -15px;
          height: 320px; } }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ARCHIVE
----------------------------------------------------------------*
----------------------------------------------------------------*/
.archive__wrap {
  padding: 120px 0;
  background: #000; }
  @media only screen and (max-width: 767px) {
    .archive__wrap {
      padding: 60px 0; } }
  .archive__wrap .btn__wrap {
    display: block;
    text-align: center;
    margin-top: 40px;
    width: 600px;
    margin: 30px auto 0; }
    @media only screen and (max-width: 767px) {
      .archive__wrap .btn__wrap {
        width: auto; } }
    .archive__wrap .btn__wrap li {
      width: 100%;
      border-radius: 3px;
      overflow: hidden;
      display: block; }
      .archive__wrap .btn__wrap li a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        text-align: center;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        display: block;
        width: 100%;
        padding: 22px 0;
        position: relative;
        font-size: 18px;
        transition: 0.4s; }
        .archive__wrap .btn__wrap li a:hover {
          opacity: 0.6; }
        .archive__wrap .btn__wrap li a::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 15px;
          transform: translateY(-50%);
          background: url("../img/icon__blank__w.png");
          background-size: 100% auto;
          display: block;
          width: 18px;
          height: 18px; }

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        下層ページ
----------------------------------------------------------------*
----------------------------------------------------------------*/
/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 120px;
  background-color: #000; }
  @media only screen and (max-width: 767px) {
    .ticket__wrap {
      padding-top: 60px; } }
  .ticket__wrap .ticket {
    padding-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      .ticket__wrap .ticket {
        padding-bottom: 60px; } }
    .ticket__wrap .ticket .section__title h2 {
      color: #fff; }
    .ticket__wrap .ticket .section__title p {
      color: #fff;
      font-size: 20px; }
      @media only screen and (max-width: 767px) {
        .ticket__wrap .ticket .section__title p {
          font-size: 20px; } }
    .ticket__wrap .ticket table {
      width: 100%; }
      .ticket__wrap .ticket table tr {
        border-bottom: 5px solid #000; }
      .ticket__wrap .ticket table th {
        color: #fff;
        width: 280px;
        vertical-align: middle;
        background: #001A2C; }
      .ticket__wrap .ticket table td {
        color: #fff;
        background: #141414; }
        .ticket__wrap .ticket table td .overview__text--red {
          color: #ff0000;
          font-weight: bold; }
    .ticket__wrap .ticket .overview__ticket--caption {
      max-width: 1200px;
      border-radius: 15px;
      margin: 0 auto;
      margin-top: 30px;
      overflow: hidden;
      padding: 0 30px; }
      @media only screen and (max-width: 767px) {
        .ticket__wrap .ticket .overview__ticket--caption {
          padding: 0; } }
      .ticket__wrap .ticket .overview__ticket--caption table {
        border: none; }
        .ticket__wrap .ticket .overview__ticket--caption table tr {
          border: none;
          width: 100%;
          border-top: 6px solid #000; }
          .ticket__wrap .ticket .overview__ticket--caption table tr:first-child {
            border-top: none; }
          @media only screen and (max-width: 767px) {
            .ticket__wrap .ticket .overview__ticket--caption table tr {
              border-top: none; } }
          .ticket__wrap .ticket .overview__ticket--caption table tr th {
            font-size: 16px;
            text-align: center;
            font-weight: 600;
            color: #fff; }
            @media only screen and (max-width: 767px) {
              .ticket__wrap .ticket .overview__ticket--caption table tr th {
                width: 100%;
                display: block;
                text-align: center;
                font-size: 14px;
                padding: 6px 0; } }
          .ticket__wrap .ticket .overview__ticket--caption table tr td {
            font-size: 16px;
            text-align: left;
            font-weight: 600;
            color: #fff;
            padding: 26px 32px; }
            @media only screen and (max-width: 767px) {
              .ticket__wrap .ticket .overview__ticket--caption table tr td {
                width: 100%;
                display: block;
                padding: 15px 10px 20px 10px;
                background: #000;
                font-size: 14px; 
				box-sizing: border-box; } }

a:link { 
	color: #ffffff;}
/* --------------------------------------------------------------
                        ダンスバトル エントリー
----------------------------------------------------------------*/

    .overview__battle--caption {
      max-width: 1200px;
      border-radius: 15px;
      margin: 0 auto;
      margin-top: 30px;
      overflow: hidden;
      padding: 0 30px; }
      @media only screen and (max-width: 767px) {
        .overview__battle--caption {
          padding: 0; } }
      .overview__battle--caption table {
        border: none; }
        .overview__battle--caption table tr {
          border: none;
          width: 100%;
          border-top: 6px solid #000; }
          .overview__battle--caption table tr:first-child {
            border-top: none; }
          @media only screen and (max-width: 767px) {
            .overview__battle--caption table tr {
              border-top: none; } }
          .overview__battle--caption table tr th {
            font-size: 16px;
            text-align: center;
            font-weight: 600;
            color: #fff; }
            @media only screen and (max-width: 767px) {
              .overview__battle--caption table tr th {
                width: 100%;
                display: block;
                text-align: center;
                font-size: 14px;
                padding: 6px 0; } }
          .overview__battle--caption table tr td {
            font-size: 16px;
            text-align: left;
            font-weight: 600;
            color: #fff;
            padding: 26px 32px; }
            @media only screen and (max-width: 767px) {
              .overview__battle--caption table tr td {
                width: 100%;
                display: block;
                padding: 15px 0 20px 0;
                background: #000;
                font-size: 14px; } }

/* --------------------------------------------------------------
                        ダンスバトル エントリー ここまで
----------------------------------------------------------------*/





    .ticket__wrap .ticket .play__guide {
      background-color: #fff;
      padding: 30px 0;
      margin-top: 30px;
      width: 275px;
      margin-left: 30px;
      border-radius: 15px; }
      @media only screen and (max-width: 767px) {
        .ticket__wrap .ticket .play__guide {
          width: 100%;
          display: block;
          margin-left: 0;
          margin-top: 0;
          margin-bottom: 20px;
          padding: 20px 0 0; } }
      .ticket__wrap .ticket .play__guide:nth-child(1) {
        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 dotted #7E7E7E; }
        .ticket__wrap .ticket .play__guide table tr:first-child {
          border-top: 1px dotted #7E7E7E; }
        .ticket__wrap .ticket .play__guide table tr:last-child {
          border-bottom: none; }
          .ticket__wrap .ticket .play__guide table tr:last-child th, .ticket__wrap .ticket .play__guide table tr:last-child td {
            padding-bottom: 30px; }
        .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;
          background: transparent; }
          @media only screen and (max-width: 767px) {
            .ticket__wrap .ticket .play__guide table tr th {
              width: calc(100% - 30px);
              display: block;
              padding: 10px 15px 0 !important;
              text-align: center; } }
        .ticket__wrap .ticket .play__guide table tr td {
          font-size: 14px;
          color: #333;
          padding: 15px;
          text-align: left;
          vertical-align: middle;
          background: transparent; }
          @media only screen and (max-width: 767px) {
            .ticket__wrap .ticket .play__guide table tr td {
              width: calc(100% - 30px);
              display: block;
              padding: 0 15px 20px !important;
              text-align: center; } }
      .ticket__wrap .ticket .play__guide .play__guide--btn {
        width: 150px;
        background: linear-gradient(100deg, #0082dd, #824c97 50%, #ce000f);
        border-radius: 5px;
        transition: 0.4s; }
        .ticket__wrap .ticket .play__guide .play__guide--btn a {
          color: #fff;
          display: block;
          text-decoration: none;
          font-size: 14px;
          text-align: center;
          padding: 5px;
          font-weight: bold; }
        .ticket__wrap .ticket .play__guide .play__guide--btn:hover {
          opacity: 0.6; }
        @media only screen and (max-width: 767px) {
          .ticket__wrap .ticket .play__guide .play__guide--btn {
            width: auto;
            margin-top: 10px; } }
      .ticket__wrap .ticket .play__guide .play__guide--btn.preparation {
        background-color: #ccc; }
        .ticket__wrap .ticket .play__guide .play__guide--btn.preparation:hover a {
          color: #fff; }
      .ticket__wrap .ticket .play__guide p.caution {
        font-size: 14px;
        margin: 0 15px; }
        @media only screen and (max-width: 767px) {
          .ticket__wrap .ticket .play__guide p.caution {
            margin: 0 auto;
            text-align: center;
            padding-bottom: 15px; } }

.overview__ticket h3 {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .overview__ticket h3 {
      font-size: 28px;
      margin-bottom: 20px; } }
.overview__ticket .overview__ticket--inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    .overview__ticket .overview__ticket--inner {
      display: block; } }
.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: #fff; }
  .footer .ponsorship__wrap .section__wrap {
    padding: 40px 0 100px; }
    .footer .section__wrap h2 {
      font-size: 28px;
      color: #333;
      text-align: center;
      font-weight: bold;
      margin-top: 60px; }
      @media only screen and (max-width: 767px) {
        .footer .section__wrap h2 {
          font-size: 20px;
          margin-top: 30px; } }
    .footer .ponsorship__wrap .section__wrap ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 30px; }
      @media only screen and (max-width: 767px) {
        .footer  .ponsorship__wrap .section__wrap ul {
          display: block;
          margin-top: 15px; } }
      .footer .ponsorship__wrap .section__wrap ul li {
        width: calc(50% - 10px);
        margin-left: 15px; }
        @media only screen and (max-width: 767px) {
          .footer .ponsorship__wrap .section__wrap ul li {
            width: 100%;
            margin-left: 0;
            margin-top: 10px; } }
        .footer .ponsorship__wrap .section__wrap ul li:first-child {
          margin-left: 0; }
        .footer .ponsorship__wrap .section__wrap ul li:nth-child(3) {
          margin-top: 15px; }
          @media only screen and (max-width: 767px) {
            .footer .ponsorship__wrap .section__wrap ul li:nth-child(3) {
              margin-top: 10px; } }
        .footer .ponsorship__wrap .section__wrap ul li a {
          display: block;
          position: relative;
          padding: 34px 0;
          text-decoration: none;
          transition: 0.4s; }
          @media only screen and (max-width: 767px) {
            .footer .ponsorship__wrap .section__wrap ul li a {
              padding: 20px;
              height: 85px;
              display: flex;
              justify-content: center;
              align-items: center;
              padding: 0 5px; } }
          .footer .ponsorship__wrap .section__wrap ul li a:hover {
            opacity: 0.6; }
          .footer .ponsorship__wrap .section__wrap ul li a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 5px;
            border: 1px solid transparent;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
            -webkit-mask-composite: destination-out;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
            mask-composite: exclude;
            background-origin: border-box; }
          .footer .ponsorship__wrap .section__wrap ul li a.img {
            padding: 19px 0; }
            @media only screen and (max-width: 767px) {
              .footer .ponsorship__wrap .section__wrap ul li a.img {
                padding: 0; } }
          .footer .ponsorship__wrap .section__wrap ul li a span {
            text-align: center;
            font-size: 18px;
            display: block;
            color: #333; }
            @media only screen and (max-width: 767px) {
              .footer .ponsorship__wrap .section__wrap ul li a span {
                font-size: 14px; } }
            .footer .ponsorship__wrap .section__wrap ul li a span img {
              width: 208px;
              height: auto; }
          .footer .ponsorship__wrap .section__wrap ul li a.blank::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: url("../img/icon__blank.png");
            background-size: 100% auto;
            display: block;
            width: 18px;
            height: 18px; }
          .footer .ponsorship__wrap .section__wrap ul li a.img01 {
            padding: 25px 0; }
            @media only screen and (max-width: 767px) {
              .footer .ponsorship__wrap .section__wrap ul li a.img01 {
                padding: 0; } }
            .footer .ponsorship__wrap .section__wrap ul li a.img01 span img {
              width: 360px; }
              @media only screen and (max-width: 767px) {
                .footer .ponsorship__wrap .section__wrap ul li a.img01 span img {
                  width: 260px; } }

/* --------------------------------------------------------------
                      　　　フッター　SNS
----------------------------------------------------------------*/

.footer .sns__wrap .section__wrap ul {
  display: flex;
  justify-content: center; 
  align-items: center; 
  list-style: none; 
  padding: 0; 
  margin: 30px auto 0;
  gap: 30px;
  flex-wrap: nowrap;
}

.footer .sns__wrap .section__wrap ul li {
  width: auto;
  margin: 0; 
}

.footer .sns__wrap .section__wrap ul li img {
  width: 60px; 
  height: auto; 
  display: block; 
}

/* スマートフォン向けの調整 */
@media only screen and (max-width: 767px) {
  .footer .sns__wrap .section__wrap ul {
    gap: 20px; 
  }

  .footer .sns__wrap .section__wrap ul li img {
    width: 40px; 
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル(下層)
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual__detail {
  width: 100%;
  height: auto;
  background-image: url("../img/bg.jpg");
  background-size: cover; }
  @media only screen and (max-width: 767px) {
    .mainvisual__detail {
      background-position: bottom center;
      background-repeat: no-repeat; } }
  .mainvisual__detail .mainvisual__inner {
    width: 1200px;
    margin: 0 auto;
    padding: 140px 0; }
    @media only screen and (max-width: 767px) {
      .mainvisual__detail .mainvisual__inner {
        width: auto;
        padding: 120px 0 60px; } }
    .mainvisual__detail .mainvisual__inner p.project {
      font-size: 22px;
      font-weight: bold;
      text-align: center;
      line-height: 1;
      position: relative;
      padding: 20px 30px;
      margin: 0 auto;
      background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: table; }
      .mainvisual__detail .mainvisual__inner p.project::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50px;
        border: 1px solid transparent;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        -webkit-mask-composite: destination-out;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        mask-composite: exclude;
        background-origin: border-box; }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner p.project {
          font-size: 16px;
          padding: 15px 20px; } }
    .mainvisual__detail .mainvisual__inner h1 {
      text-align: center;
      position: relative;
      margin: 20px auto 40px;
      background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 72px;
      line-height: 1.2;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic; }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner h1 {
          font-size: 32px; } }
    .mainvisual__detail .mainvisual__inner img {
      width: 100%;
      height: auto; }
    .mainvisual__detail .mainvisual__inner .banner {
      width: 480px;
      margin: 0; }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner .banner {
          width: calc(100% - 30px);
          margin: 0 auto;
          display: block; } }
    .mainvisual__detail .mainvisual__inner .detail {
      width: calc(100% - 525px); }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner .detail {
          width: auto;
          margin: 25px 15px 0; } }
      .mainvisual__detail .mainvisual__inner .detail p.lead {
        color: #fff;
        display: block;
        width: 100%;
        border-bottom: 1px dotted #B5B5B5;
        font-size: 30px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 25px;
        padding-bottom: 25px; }
        @media only screen and (max-width: 767px) {
          .mainvisual__detail .mainvisual__inner .detail p.lead {
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            text-align: center; } }
      .mainvisual__detail .mainvisual__inner .detail p.lead02 {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        line-height: 2.2;
        margin-bottom: 25px; }
        @media only screen and (max-width: 767px) {
          .mainvisual__detail .mainvisual__inner .detail p.lead02 {
            font-size: 16px; } }
      .mainvisual__detail .mainvisual__inner .detail .schedule {
        background-image: linear-gradient(90deg, rgba(0, 130, 221, 0.2), rgba(130, 76, 151, 0.2), rgba(206, 0, 15, 0.2));
        padding: 30px;
        position: relative;
        z-index: 2; }
        .mainvisual__detail .mainvisual__inner .detail .schedule::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border: 1px solid transparent;
          background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
          -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          -webkit-mask-composite: destination-out;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask-composite: exclude;
          background-origin: border-box; }
        @media only screen and (max-width: 767px) {
          .mainvisual__detail .mainvisual__inner .detail .schedule {
            padding: 20px; } }
        .mainvisual__detail .mainvisual__inner .detail .schedule dl {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          margin: 0 0 15px; }
          @media only screen and (max-width: 767px) {
            .mainvisual__detail .mainvisual__inner .detail .schedule dl {
              display: block; } }
          .mainvisual__detail .mainvisual__inner .detail .schedule dl dt {
            background: #78000B;
            text-align: center;
            color: #fff;
            width: 80px;
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 0; }
            @media only screen and (max-width: 767px) {
              .mainvisual__detail .mainvisual__inner .detail .schedule dl dt {
                display: block;
                width: 100%;
                font-size: 16px;
                padding: 5px 0;
                text-align: center; } }
          .mainvisual__detail .mainvisual__inner .detail .schedule dl dd {
            width: calc(100% - 110px);
            color: #fff;
            font-size: 22px;
            line-height: 1.8;
            font-weight: bold;
            display: flex;
            align-items: center; }
            @media only screen and (max-width: 767px) {
              .mainvisual__detail .mainvisual__inner .detail .schedule dl dd {
                display: block;
                width: 100%;
                margin-top: 15px;
                font-size: 15px;
                text-align: center; } }
    .mainvisual__detail .mainvisual__inner .mainvisual__btn {
      display: block;
      margin: 60px auto 0;
      width: 600px; }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner .mainvisual__btn {
          width: auto;
          margin: 30px 15px 0; } }

    .mainvisual__detail .mainvisual__inner .battle__btn {
      display: block;
      margin: 60px auto 0;
      width: 600px; }
      @media only screen and (max-width: 767px) {
        .mainvisual__detail .mainvisual__inner .battle__btn {
          width: auto;
          margin: 30px 15px 0; } }


      .mainvisual__detail .mainvisual__inner .mainvisual__btn a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        text-align: center;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        display: block;
        width: 100%;
        padding: 30px 0;
        position: relative;
        font-size: 18px;
        transition: 0.4s;
        border-radius: 4px; }
        @media only screen and (max-width: 767px) {
          .mainvisual__detail .mainvisual__inner .mainvisual__btn a {
            padding: 20px 0; } }
        .mainvisual__detail .mainvisual__inner .mainvisual__btn a::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 15px;
          transform: translateY(-50%);
          background: url(../img/icon__right.png);
          background-size: 100% auto;
          display: block;
          width: 20px;
          height: 20px; }
        .mainvisual__detail .mainvisual__inner .mainvisual__btn a:hover {
          opacity: 0.6; }


      .mainvisual__detail .mainvisual__inner .battle__btn a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        text-align: center;
        background: linear-gradient(100deg, #eec700, #ec7d2c 50%, #e83328);
        display: block;
        width: 100%;
        padding: 30px 0;
        position: relative;
        font-size: 18px;
        transition: 0.4s;
        border-radius: 4px; }
        @media only screen and (max-width: 767px) {
          .mainvisual__detail .mainvisual__inner .battle__btn a {
            padding: 20px 0; } }
        .mainvisual__detail .mainvisual__inner .battle__btn a::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 15px;
          transform: translateY(-50%);
          background: url(../img/icon__right.png);
          background-size: 100% auto;
          display: block;
          width: 20px;
          height: 20px; }
        .mainvisual__detail .mainvisual__inner .battle__btn a:hover {
          opacity: 0.6; }


/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャスト(下層)
----------------------------------------------------------------*
----------------------------------------------------------------*/
.cast__wrap {
  padding: 120px 0;
  background-image: linear-gradient(90deg, #002e4e, #520006);
  background-size: cover; }
  @media only screen and (max-width: 767px) {
    .cast__wrap {
      padding: 60px 0;
      overflow: hidden; } }
  .cast__wrap .contents__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0; }
    .cast__wrap .contents__link.sp__mb {
      margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .contents__link.sp__mb {
          margin-bottom: 20px; } }
    .cast__wrap .contents__link.sp__noLine {
      margin-top: 30px;
      margin-bottom: 80px; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .contents__link.sp__noLine {
          margin-top: 20px;
          margin-bottom: 40px; }
          .cast__wrap .contents__link.sp__noLine li:first-child {
            border-top: none; } }
    @media only screen and (max-width: 767px) {
      .cast__wrap .contents__link {
        display: block;
        margin: 40px 0; } }
    .cast__wrap .contents__link li {
      width: calc(33.3% - 2px);
      border-left: 1px dotted #797979; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .contents__link li {
          width: auto;
          border-left: none;
          border-top: 1px dotted #797979; } }
      .cast__wrap .contents__link li:last-child {
        border-right: 1px dotted #797979; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .contents__link li:last-child {
            border-right: none;
            border-bottom: 1px dotted #797979; } }
      .cast__wrap .contents__link li a {
        text-decoration: none;
        transition: 0.4s; }
        .cast__wrap .contents__link li a:hover {
          opacity: 0.6; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .contents__link li a dl {
            display: block; } }
        .cast__wrap .contents__link li a dl dt {
          font-size: 24px;
          text-align: center;
          line-height: 1;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic;
          position: relative;
          padding: 10px 0 5px;
          margin: 0 auto;
          background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .contents__link li a dl dt {
              display: block;
              margin: 15px 15px 0 0; } }
          .cast__wrap .contents__link li a dl dt small {
            font-size: 20px;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .contents__link li a dl dt small {
                font-size: 12px; } }
        .cast__wrap .contents__link li a dl dd {
          font-size: 18px;
          text-align: center;
          line-height: 1.8;
          font-weight: bold;
          background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          margin-top: 0;
          position: relative;
          padding-bottom: 35px; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .contents__link li a dl dd {
              font-size: 16px;
              margin: 0 0 15px;
              padding: 0;
              width: 100%;
              text-align: center;
              display: block; } }
          .cast__wrap .contents__link li a dl dd span {
            font-size: 32px;
            text-align: center;
            line-height: 1.2;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic;
            display: block; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .contents__link li a dl dd span {
                font-size: 22px;
                text-align: left; } }
          .cast__wrap .contents__link li a dl dd::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: url("../img/icon__down.png");
            background-size: 100% auto;
            display: block;
            width: 24px;
            height: 24px; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .contents__link li a dl dd::after {
                bottom: auto;
                left: auto;
                right: 10px;
                top: calc(50% - 15px);
                transform: translate(0, -50%);
                width: 20px;
                height: 20px; } }
  .cast__wrap .cast__inner {
    margin-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      .cast__wrap .cast__inner {
        margin-bottom: 0; } }
    .cast__wrap .cast__inner h3 {
      font-size: 40px;
      text-align: center;
      line-height: 1;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic;
      position: relative;
      padding: 20px 0 24px;
      width: 100%;
      margin: 0 auto 50px;
      background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-origin: border-box; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner h3 {
          font-size: 28px;
          width: calc(100% + 30px);
          margin-left: -15px;
          margin-bottom: 30px; } }
      .cast__wrap .cast__inner h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 100px;
        border: 1px solid transparent;
        background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        -webkit-mask-composite: destination-out;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        mask-composite: exclude;
        background-origin: border-box; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner h3::before {
          border-radius: 0;
          border-left: none;
          border-right: none; } }
      .cast__wrap .cast__inner h3 small {
        font-size: 18px;
        font-weight: bold;
        margin-top: 10px;
        display: block; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .cast__inner h3 small {
            font-size: 16px; } }
    .cast__wrap .cast__inner .cast__col {
      margin-bottom: 40px;
      align-items: flex-start; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner .cast__col {
          margin-bottom: 40px; } }
      .cast__wrap .cast__inner .cast__col .img {
        width: 380px; }
        .cast__wrap .cast__inner .cast__col .img img {
          display: block;
          width: 100%;
          height: auto; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .cast__inner .cast__col .img {
            width: auto;
            margin: 0 0 15px; } }
      .cast__wrap .cast__inner .cast__col .text__box {
        width: calc(100% - 420px); }
        @media only screen and (max-width: 767px) {
          .cast__wrap .cast__inner .cast__col .text__box {
            margin-top: 15px;
            width: auto; } }
        .cast__wrap .cast__inner .cast__col .text__box .ttl {
          font-size: 30px;
          font-weight: bold;
          line-height: 1.4;
          position: relative;
          display: table;
          background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-origin: border-box;
          margin-bottom: 10px; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .cast__col .text__box .ttl {
              margin: 0 auto;
              font-size: 24px;
              text-align: center;
              display: block; } }
          .cast__wrap .cast__inner .cast__col .text__box .ttl small {
            font-size: 14px;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-origin: border-box;
            display: inline-block;
            margin-left: 15px;
            font-weight: bold; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .cast__col .text__box .ttl small {
                font-size: 14px;
                display: block;
                line-height: 1;
                margin-left: 0; } }
          .cast__wrap .cast__inner .cast__col .text__box .ttl .tag {
            font-size: 24px;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-origin: border-box;
            display: inline-block;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-origin: border-box;
            position: relative;
            padding: 6px 15px;
            vertical-align: middle;
            display: inline-block;
            margin-right: 20px; }
            .cast__wrap .cast__inner .cast__col .text__box .ttl .tag::before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              border: 3px solid transparent;
              background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
              -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
              -webkit-mask-composite: destination-out;
              mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
              mask-composite: exclude;
              background-origin: border-box; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .cast__col .text__box .ttl .tag {
                font-size: 14px;
                display: block;
                margin: 0 0 5px;
                padding: 5px 0;
                width: auto; } }
        .cast__wrap .cast__inner .cast__col .text__box .country {
          font-size: 12px;
          font-weight: bold;
          background: linear-gradient(100deg, #0082dd, #824c97 50%, #ce000f);
          border-radius: 20px;
          display: block;
          width: 200px;
          color: #fff;
          margin: 10px 0;
          text-align: center;
          line-height: 2; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .cast__col .text__box .country {
              font-size: 12px;
              width: 100%; } }
        .cast__wrap .cast__inner .cast__col .text__box .text {
          font-size: 18px;
          color: #fff;
          line-height: 2; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .cast__col .text__box .text {
              font-size: 14px;
              margin-top: 10px; } }
      .cast__wrap .cast__inner .cast__col.label__col {
        position: relative; }
        .cast__wrap .cast__inner .cast__col.label__col .img .label {
          position: absolute;
          top: 10px;
          left: -10px;
          display: block;
          background: linear-gradient(100deg, #0082dd, #824c97 50%, #ce000f);
          border-radius: 4px;
          color: #fff;
          font-weight: bold;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic;
          font-size: 14px;
          padding: 2px 15px; }
          .cast__wrap .cast__inner .cast__col.label__col .img .label small {
            font-weight: bold;
            font-family: "segoe-ui", sans-serif;
            font-weight: 900;
            font-style: italic;
            font-size: 12px; }
    .cast__wrap .cast__inner .flex__col5Wrap {
      margin-bottom: 30px;
      align-items: flex-start;
      justify-content: center;
      display: flex;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner .flex__col5Wrap {
          margin-bottom: 30px; } }
      .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 {
        width: 215px;
        margin-right: 30px; }
        .cast__wrap .cast__inner .flex__col5Wrap .cast__col5:nth-child(5n) {
          margin-right: 0; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 {
            width: auto;
            margin-right: 0;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between; } }
        .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .img {
          width: 100%; }
          .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .img img {
            display: block;
            width: 100%;
            height: auto; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .img {
              width: 165px;
              margin: 0 15px 15px 0; } }
        .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box {
          width: 100%;
          display: block;
          margin-top: 10px; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box {
              width: calc(100% - 180px);
              margin: 0; } }
          .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.6;
            position: relative;
            display: table;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-origin: border-box;
            text-align: center;
            margin: 10px auto 4px; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl {
                font-size: 16px;
                margin: 0;
                text-align: left; } }
            .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl small {
              font-size: 14px;
              background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-origin: border-box;
              display: block; }
              @media only screen and (max-width: 767px) {
                .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl small {
                  font-size: 11px;
                  line-height: 1; } }
            .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl .tag {
              font-size: 12px;
              background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-origin: border-box;
              display: inline-block;
              background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-origin: border-box;
              position: relative; }
              .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl .tag::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                border-radius: 4px;
                border: 1px solid transparent;
                background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
                -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
                -webkit-mask-composite: destination-out;
                mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
                mask-composite: exclude;
                background-origin: border-box; }
              @media only screen and (max-width: 767px) {
                .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .ttl .tag {
                  font-size: 11px; } }
          .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .country {
            font-size: 12px;
            font-weight: bold;
            background: linear-gradient(100deg, #0082dd, #824c97 50%, #ce000f);
            border-radius: 20px;
            display: block;
            width: 200px;
            color: #fff;
            margin: 10px auto;
            text-align: center;
            line-height: 2; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .country {
                font-size: 12px;
                width: 100%; } }
          .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .text {
            font-size: 16px;
            color: #fff;
            line-height: 1.8; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__col5Wrap .cast__col5 .text__box .text {
                font-size: 14px;
                margin-top: 5px; } }
    .cast__wrap .cast__inner .flex__SpecialWrap {
      background: linear-gradient(90deg, rgba(0, 130, 221, 0.2), rgba(130, 76, 151, 0.2), rgba(206, 0, 15, 0.2));
      display: flex;
      flex-wrap: wrap;
      padding: 40px 80px;
      width: 600px;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner .flex__SpecialWrap {
          width: auto;
          margin: 0 0 60px;
          padding: 30px 15px 10px; } }
      .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col {
        width: 280px;
        margin-right: 40px; }
        .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col:nth-child(2n) {
          margin-right: 0; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col {
            width: auto;
            margin-right: 0;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between; } }
        .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .img {
          width: 100%; }
          .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .img img {
            display: block;
            width: 100%;
            height: auto; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .img {
              width: 135px;
              margin: 0 15px 15px 0; } }
        .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box {
          width: 100%;
          margin-top: 10px; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box {
              width: calc(100% - 145px);
              margin: 0; } }
          .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .ttl {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.4;
            position: relative;
            display: table;
            background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-origin: border-box;
            text-align: center;
            margin: 10px auto 4px; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .ttl {
                font-size: 18px;
                text-align: left;
                margin: 0; } }
            .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .ttl small {
              font-size: 14px;
              background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-origin: border-box;
              display: block; }
              @media only screen and (max-width: 767px) {
                .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .ttl small {
                  font-size: 14px;
                  display: block;
                  line-height: 1; } }
          .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .country {
            font-size: 12px;
            font-weight: bold;
            background: linear-gradient(100deg, #0082dd, #824c97 50%, #ce000f);
            border-radius: 20px;
            display: block;
            width: 280px;
            color: #fff;
            margin: 10px auto;
            text-align: center;
            line-height: 2; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .country {
                font-size: 12px;
                width: 100%; } }
          .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .text {
            font-size: 16px;
            color: #fff;
            line-height: 1.8; }
            @media only screen and (max-width: 767px) {
              .cast__wrap .cast__inner .flex__SpecialWrap .cast__Special__col .text__box .text {
                font-size: 14px;
                margin-top: 5px; } }
    .cast__wrap .cast__inner .more__txt {
      font-size: 60px;
      color: #fff;
      font-weight: bold;
      font-family: "segoe-ui", sans-serif;
      font-weight: 900;
      font-style: italic;
      text-align: center;
      padding: 80px 0 40px;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .cast__wrap .cast__inner .more__txt {
          font-size: 40px;
          padding: 40px 0 60px; } }
  .cast__wrap .entry__wrap a {
    display: block;
    border-radius: 10px;
    background: url("../img/bg__entry.png") no-repeat bottom -130px center;
    background-size: 830px auto;
    text-decoration: none;
    width: 700px;
    margin: 25px auto 0;
    padding: 30px 50px 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden; }
    .cast__wrap .entry__wrap a::before {
      content: "";
      position: absolute;
      top: -442px;
      right: 5px;
      background: url(../img/about__bg__obj.png) no-repeat bottom;
      opacity: 0.8;
      background-size: 100% auto;
      display: block;
      width: 200px;
      height: 730px;
      z-index: 1; }
    .cast__wrap .entry__wrap a:hover {
      /*opacity: 0.6;*/ }
    @media only screen and (max-width: 767px) {
      .cast__wrap .entry__wrap a {
        width: auto;
        margin: 30px 0 0;
        padding: 25px 25px 20px;
        background: url("../img/bg__entry.png") no-repeat bottom -130px center;
        background-size: 830px auto; }
        .cast__wrap .entry__wrap a::before {
          width: 200px;
          height: 600px;
          top: -295px;
          right: -20px; } }
    .cast__wrap .entry__wrap a dl {
      z-index: 2;
      position: relative; }
      .cast__wrap .entry__wrap a dl dt {
        display: flex;
        flex-wrap: wrap;
        align-items: center; }
        .cast__wrap .entry__wrap a dl dt .ttl {
          font-size: 44px;
          color: #fff;
          font-family: "segoe-ui", sans-serif;
          font-weight: 900;
          font-style: italic; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .entry__wrap a dl dt .ttl {
              font-size: 32px; } }
        .cast__wrap .entry__wrap a dl dt .btn {
          margin-left: 25px;
          background: #fff;
          color: #A48300;
          font-size: 16px;
          padding: 3px 10px 3px 20px;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          border-radius: 30px; }
          .cast__wrap .entry__wrap a dl dt .btn::after {
            content: "";
            background: url("../img/entry__arrow.png");
            background-size: 100% auto;
            display: block;
            width: 18px;
            height: 18px;
            margin-left: 10px; }
          @media only screen and (max-width: 767px) {
            .cast__wrap .entry__wrap a dl dt .btn {
              font-size: 14px;
              margin-left: 20px; } }
      .cast__wrap .entry__wrap a dl dd {
        font-weight: 600;
        line-height: 1.8;
        margin-top: 15px;
        color: #fff;
        width: 520px; }
        @media only screen and (max-width: 767px) {
          .cast__wrap .entry__wrap a dl dd {
            width: 220px;
            font-size: 14px; } }


/* ----------------------------------------------------------------
----------------------------------------------------------------
                                Collaboration
----------------------------------------------------------------
----------------------------------------------------------------*/

.stage__wrap .stage P {
    font-size: 1.2rem;
    padding: 30px;
    text-align: center;
	color: #fff !important;
}
.stage_contents--inner h3 {
    font-weight: 700;
    font-size: 1.5rem;
	padding: 10px;
    text-align: center;
    background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-origin: border-box; 
    position: relative;
    z-index: 2;
    padding: 25px 0; 
    width: 100%;
    margin: 0 auto 50px;
    border: none; 
    border-image: none;
    margin-top: 0;
}

.stage_contents--inner h3::before { 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1px solid transparent; 
    background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box; 
    -webkit-mask-composite: destination-out; 
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
    background-origin: border-box;
    z-index: -1; 
}
	@media only screen and (max-width: 767px) {
    .stage_contents--inner h3 {
        font-size: 20px;
        width: calc(100% + 30px); 
        margin-left: -15px; 
        margin-bottom: 24px; 
    }
    .stage_contents--inner h3::before {
        border-radius: 0; 
        border-left: none;
        border-right: none;
    }
	}

.stage_contents--inner ul li {
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 50px ;
}
	@media only screen and (max-width: 767px) {
	.stage_contents--inner ul li {
		padding: 0;
	    font-size: 1rem;
		}
}
.stage_contents--inner ul li:first-child {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: left;
    background: linear-gradient(100deg, #30aaff, #ba4cc5 50%, #ff2a3a); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-origin: border-box; 
    position: relative;
    border: none; 
    border-image: none;
    margin-top: 0;
}
	@media only screen and (max-width: 767px) {
		.stage_contents--inner ul li:first-child {
			font-size: 1rem;
		}
	}



/* ----------------------------------------------------------------
----------------------------------------------------------------
                               主催　バナー
----------------------------------------------------------------
----------------------------------------------------------------*/
.footer .ponsorship__wrap .section__wrap .logo_expo{
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
.footer .ponsorship__wrap .section__wrap .logo_expo img{
		height:90px!important;
	    width: auto; 
        object-fit: contain; 
	}
.footer .ponsorship__wrap .section__wrap .logo_expo p{
		font-size: 12px;
	}
@media only screen and (max-width: 767px) {
 .footer  .ponsorship__wrap .section__wrap .logo_expo img{
		height:90px!important;
	}
}


/* --------------------------------------------------------------
----------------------------------------------------------------
                        　　翻訳ツール
----------------------------------------------------------------
----------------------------------------------------------------*/
.translation {
	width: 200px;
	padding: 0.5rem;
	font-size:	1rem;	
}


