@charset "utf-8";
/*
@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
*/
@import url("https://fonts.googleapis.com/css?family=Teko");
@import url("https://fonts.googleapis.com/css?family=Teko");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

/*================================================
　汎用
================================================ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}



img {
    width: 100%;
    vertical-align: baseline;
}



* {
    position: relative;
    font-weight: 100;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}



ul {
    list-style: none;
}



a {
    z-index: 100;
}
a:link {
    color: black;
    text-decoration: none;
}
a:visited {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.5s;
}

.s a:link {opacity: 1;}
.s a:visited {opacity: 1;}
.s a:hover {opacity: 1;}



br.pc {display: block;}
br.m {display: none;}
br.sp {display: none;}

.m br.pc {display: none;}
.m br.m {display: block;}
.m br.sp {display: none;}

.s br.pc {display: none;}
.s br.m {display: none;}
.s br.sp {display: block;}


.pc {display: block;}
.sp {display: none;}
.s .pc {display: none;}
.s .sp {display: block;}



.sec__line {
  width: 100%;
}



#loader {
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
}



/*================================================
　個別
================================================ */
.bg__parts01 {
  max-width: 20%;
  right: -7%;
  bottom: 10%;
  z-index: -10;
}
.bg__parts02 {
  max-width: 20%;
  left: -7%;
  bottom: 20%;
  z-index: -10;
}
.bg__parts03 {
  max-width: 20%;
  right: -7%;
  bottom: 0%;
  z-index: -10;
}

.bg__parts04 {
  max-width: 20%;
  right: -7%;
  bottom: 0%;
  z-index: -10;
}
/* イベント表示時にこっちに変更
 .bg__parts04 {
  max-width: 20%;
  left: -7%;
  bottom: 0%;
  z-index: -10;
} */
.bg__parts05 {
  max-width: 20%;
  right: -7%;
  bottom: 0%;
  z-index: -10;
}

.s .bg__parts01,
.s .bg__parts02,
.s .bg__parts03,
.s .bg__parts04,
.s .bg__parts05 {
  display: none;
}


/*------------------------------------------------------------------
 body ------------------------------------------------------------
------------------------------------------------------------------*/
body {
    background: #092b44;
    font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
    letter-spacing: 1.5px;
    margin: 0;
    color: #0e1d49;
}





/*------------------------------------------------------------------
 container ------------------------------------------------------
------------------------------------------------------------------*/
.container {
    position: relative;
    width: 100%;
}





/*------------------------------------------------------------------
 content ---------------------------------------------------------
------------------------------------------------------------------*/
.content {
  width: 100%;;
  overflow: hidden;
}


/*------------------------------------------------------------------
 mv --------------------------------------------------------------
------------------------------------------------------------------*/
.mv {
  width: 100%;
  margin: 0 auto;
  /* overflow: hidden; */
  /* z-index: 2; */
}
.mv.nav__fixed {
  background: #005a99;
  /* padding: 0 0 90px; */
}
.s .mv.nav__fixed {
  margin: 0 auto;
}

.mv .mv__innner {
  max-width:  100%;
  width: 100%;
  margin: 0 auto;
  height: auto;
  position: relative;
  background-image: url('../img/mv_bg_pc.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 47.5%;
}

.s .mv .mv__innner {
  background: url('../img/mv_bg_sp.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 195%;
  position: relative;
}

.mv__item01,
.mv__item02,
.mv__item03 {
  position: absolute;
}

.mv__item01 {
  overflow: hidden;
  width: 93.1%;
  bottom: 6%;
  left:  50%;
  transform: translate(-50%, -6%);
  -webkit-transform: translate(-50%, -6%);
}
.mv__item02 {
  width: 32.1%;
  bottom: 28%;
  right: 3%;
  transform: translate(-3%, -28%);
  -webkit-transform: translate(-3%, -28%);
}
.mv__item03 {
  width: 53.12%;
  right: 0;
  bottom: 6%;
  overflow: hidden;
}

.s .mv__item01 {
  width: 90%;
  top: auto;
  bottom: 3%;
  left: 50%;
  min-width: initial;
  transform: translate(-50%, -3%);
  -webkit-transform: translate(-50%, -3%);
}
.s .mv__item02 {
  width: 78%;
  top: auto;
  bottom: 38%;
  left: 11%;
  min-width: initial;
  transform: translate(-38%, 11%);
  -webkit-transform: translate(-38%, 11%);
}
.s .mv__item03 {
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0%;
}

.bg__mask {
  width: 100%;
  height: 100px;
  background: linear-gradient(rgba(19,27,32,1),rgba(9,43,68,0));
}


/* アニメーション */
.mv__item01 {
  opacity: 0;
  animation-name: anime01;/*名前*/
  animation-duration: 1s;/*時間*/
  animation-delay: 0.5s;/*開始*/
  animation-fill-mode:forwards;/*回数*/
}
  @keyframes anime01 {
    0% {
          opacity: 0;
      }
      100% { opacity: 1 }
  }

.mv__item02 {
  opacity:0;
  animation-name:anime02;/*名前*/
  animation-duration:.6s;/*時間*/
  animation-delay: 1s;/*開始*/
  animation-fill-mode: forwards;/*回数*/
}
  @keyframes anime02 {
    0% {
      opacity: 0;
      transform: translateX(30px);
     }
      100% {
        opacity: 1;
        transform: translateX(0);
      } 
  }

.mv__item03 {
  opacity:0;
  animation-name:anime03;/*名前*/
  animation-duration:.6s;/*時間*/
  animation-delay: 1.4s;/*開始*/
  animation-fill-mode: forwards;/*回数*/
}
  @keyframes anime03 {
    0% {
      opacity: 0;
      transform: translateX(-30px);
     }
      100% {
        opacity: 1;
        transform: translateX(0);
      } 
  }





/*------------------------------------------------------------------
 nav --------------------------------------------------------------
------------------------------------------------------------------*/
.nav {
  width: 100%;
  background-color: #005a99;
}
.nav.nav__fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  z-index: 10000;
}
.s .nav {
  display: none;
}
.nav__inner {
  max-width: 1232px;
  padding: 0 16px;
  width: 100%;
  margin: auto;
  height: 100%;
}
.nav__content {
  width: 100%;
  height: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  padding-right: 14%;
}
.nav__inner ul {
  width: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 32px 0 32px 58px;
}
.nav__inner ul li {
  height: 100%;
  width: auto;
  position: relative;
}
.nav__inner ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fafafa;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(45deg) translateY(-50%);
}
.nav__inner ul li:nth-last-of-type(1)::after {
  display: none;
}


.nav__inner ul li a {
  display: block;
  width: auto;
  height: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav__inner ul li a img {
  display: block;
  width: 100%;
}

.nav__inner li.nav__01 {
  width: 21.7%;
  height: 100%;
  padding: 0 3.2% 0 0;
}
.nav__inner li.nav__02 {
  width: 16.5%;
  height: 100%;
  padding: 0 3.2%;
}
.nav__inner li.nav__03 {
  width: 13.8%;
  height: 100%;
  padding: 0 3.2%;
}
.nav__inner li.nav__04 {
  width:  29.7%;
  height: 100%;
  padding: 0 3.2%;
}
.nav__inner .nav__05 {
  width: 16%;
  height: 100%;
  padding: 0 3.2%;
}

.nav__inner a.nav__06 {
  position: absolute;
  width: 16.7%;
  top: 48%;
  right: 0;
  transform: translate(0, -48%);
  -webkit- transform: translate(0, -48%);
}
     

.nav__height {
  height: 0;
  width: 100%;
  background: #006298;
}
.nav__height.nav__fixed {
  height: 90px;
}
.s .nav__height{
  display: none;
}



/*------------------------------------------------------------------
 contentbody --------------------------------------------------------------
------------------------------------------------------------------*/
.contentbody {
    position: relative;
}
.bg__fixed {
  background: url('../img/bg.jpg'); 
  background-repeat: no-repeat;
  position: fixed;
  top: -4%;
  left: 0;
  padding: 100%;
  z-index: -1;
  transform: translateY(4%);
}
.s .bg__fixed {
  background: url('../img/bg_sp.jpg');
  background-repeat: no-repeat;
  padding: 77%;
  left: 0;
  background-size: contain;
}
.contentbody.nav__fixed {
  padding-top: 86px;
}

/* .content__bg {
  width: 100%;
  background: url(../img/bg_left.png) #005a99;
  background-position: top 0 left 0;
  background-repeat: repeat-y;
  background-size: 240px auto;
}
.content__bg__inner {
  width: 100%;
  background: url(../img/bg_right.png);
  background-position: top 0 right 0;
  background-repeat: repeat-y;
  background-size: 240px auto;
} */
.s .content__bg {
  background-size: 80px;
}
.s .content__bg__inner {
  background-size: 80px;
}



/*------------------------------------------------------------------
 ticket --------------------------------------------------------------
------------------------------------------------------------------*/
.ticket {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ticket__inner {
  width: 100%;
  padding: 120px 0;
}
.s .ticket__inner {
  padding: 60px 0 0;
}

.ticket__ttl {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto 0px;
}
.s .ticket__ttl {
  margin: 0 auto 32px;
}
.ticket__ttl img {
  margin: auto;
  width: 52%;
}
/* .s .ticket__ttl img {
  margin: auto;
  width: 100%;
  padding: 0 20px;
} */


.ticket__content {
  width: 100%;
  height: auto;
  max-width: 1366px;
  margin: auto;
  padding: 70px 80px;
}
.s .ticket__content {
  max-width: initial;
  padding: 0 15px;
}



.ticket__target {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.ticket__target--head {
  display: block;
  padding: 0.5em 1em;
  background: #3f4c73;
  color: white;
  border-bottom: 3px solid #005a99;
}
.s .ticket__target--head {
  font-size: 18px;
  line-height: 1em;
  padding: 0.65em 1em 0.5em;
}
.ticket__target--txt {
  display: block;
-webkit-box-flex:1;
-ms-flex:1 1 10%;
flex:1 1 10%;
  padding: 0.5em 1em;
  border-bottom: 3px solid #005a99;
}
.s .ticket__target--txt {
  font-size: 18px;
  padding: 0.65em 1em 0.5em;
}


.ticket__table {
  width: 100%;
  text-align: center;
}
.s .ticket__table + table {
  margin-top: 20px;
}
.ticket__table tr {
  background: white;
  border: 2px solid #005a99;
}
.ticket__table th {
  background: #005a99;
  padding: 1em;
  color: white;
  vertical-align: middle;
}
.ticket__table th + th {
  border-left: 2px solid white;
}
.ticket__table td {
  padding: 1em;
  vertical-align: middle;
}
.ticket__table td + td {
  border-left: 2px solid #005a99;
}

.ticket__table img {
  width: 6em;
  height: auto;
  padding: 0 0.5em 0 0;
}

.ticket__table span {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ticket__table span + span {
  margin-top: 1em;
}



.ticket__attention {
  display: block;
  margin-top: 20px;
  padding-left: 1.5em;
}
.ticket__attention:before {
  content: "※";
  position: absolute;
  color: red;
  left: 0;
}


/* セクション共通 */
.container {
  max-width: 880px;
  margin: 128px auto 0;
}
.s .container {
  margin: 48px auto 0;
}
.content__ttl {
  width: 100%;
  text-align: center;
  padding-top: 120px; 
  margin-top: -120px;
}
.s .content__ttl {
  padding-top: 0;
  margin: 0 auto;
}





/*------------------------------------------------------------------
 ticket --------------------------------------------------------------
------------------------------------------------------------------*/
.ticket {
  background: white;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ticket__inner {
  width: 100%;
  padding: 110px 0 70px;
  margin: auto;
  overflow: hidden;
}
.s .ticket__inner {
  padding: 60px 0 40px;
}

.ticket__ttl {
  width: 100%;
  max-width: 1232px;
  text-align: center;
  margin: -140px auto 0;
  padding: 140px 16px 0;
}
.s .ticket__ttl {
  margin: -80px auto 0;
  padding: 80px 16px 0;
}
.ticket__ttl span {
  width: 100%;
  background: url('../img/h2_bg_white.jpg');
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
.ticket__ttl span img {
  height: 63px;
  width: auto;
}

.s .ticket__ttl {
  width: 100%;
  max-width: initial;
  margin: -80px auto 0;
  padding: 80px 16px 25px;
}
.s .ticket__ttl span {
  width: 100%;
  background: none;
}
.s .ticket__ttl span img {
  height: auto;
  width: 100%;
}



/*------------------------------------------------------------------
 plan --------------------------------------------------------------
------------------------------------------------------------------*/
.plan {
  background: white;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.plan__inner {
  width: 100%;
  padding: 120px 0 100px;
  margin: auto;
  overflow: hidden;
}
.s .plan__inner {
  padding: 60px 0 105px;
}

.plan__ttl {
  width: 100%;
  max-width: 1232px;
  text-align: center;
  margin: -140px auto 0;
  padding: 140px 16px 0;
}
.s .plan__ttl {
  margin: -80px auto 0;
  padding: 80px 16px 0;
}
.plan__ttl span {
  width: 100%;
  background: url('../img/h2_bg_white.jpg');
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
}
.plan__ttl span img {
  height: 63px;
  width: auto;
}

.s .plan__ttl {
  width: 100%;
  max-width: initial;
  margin: -80px auto 0;
  padding: 80px 16px 25px;
}
.s .plan__ttl span {
  width: 100%;
  background: none;
}
.s .plan__ttl span img {
  height: auto;
  width: 100%;
}

.plan__content {
  max-width: 1200px;
  margin: auto;
  padding: 40px 10px 0;
}

.s .plan__content {
  padding: 0 15px;
}


/*------------------------------------------------------------------
 present --------------------------------------------------------------
------------------------------------------------------------------*/
.present {
  width: 100%;
  position: relative;
  margin: 129px auto 0;
  max-width: 1192px;
}
.s .present {
  margin-top: 0;
}
.present .content__ttl img {
  width: 55.7%;
}
.s .content__ttl img {
  width: 82%;
}
.present__block {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:  8px 0 0;
  align-items: flex-end;
}
.s .present__block {
  padding: 16px 16px 0;
}
.present__image {
  width: 48%;
}
.present__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);;
}


/*------------------------------------------------------------------
 event --------------------------------------------------------------
------------------------------------------------------------------*/
.event {
  width: 100%;
  position: relative;
}

.event .content__ttl img {
  width: 55%;
}
.s .event .content__ttl img {
  width: 60%;
}
.event__block {
  padding:  48px 10px 0;
}
.s .event__block {
  padding: 16px 16px 0;
}
.event__image {
  margin:  48px auto 0;
}
.s .event__image {
  margin: 8px auto 0;
}
.event__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);;
}
.event__image:nth-child(1) {
  margin-top: 0;
}
.event__image:nth-last-of-type(1),
.event__image:nth-last-of-type(2) {
  margin-top: 32px;
}
.s .event__image:nth-last-of-type(1),
.s .event__image:nth-last-of-type(2) {
  margin-top: 4px;
}


/*------------------------------------------------------------------
 guest --------------------------------------------------------------
------------------------------------------------------------------*/
.guest {
  width: 100%;
  position: relative;
}
.guest .content__ttl img {
  width: 43.6%;
}
.s .guest .content__ttl img  {
  width: 47%;
}
.guest__block {
  padding:  48px 10px 0;
}
.s .guest__block {
  padding: 16px 16px 0;
}
.guest__image {
  margin:  48px auto 0;
}
.s .guest__image {
  margin: 8px auto 0;
}
.guest__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);
}
.guest__image:nth-child(1) {
  margin-top: 0;
}


/*------------------------------------------------------------------
 special --------------------------------------------------------------
------------------------------------------------------------------*/
.special {
  width: 100%;
  position: relative;
}
.special .content__ttl img {
  width: 93.6%;
}
.s .special .content__ttl img {
  width: 100%;
}
.special__block {
  padding:  48px 10px 0;
}
.s .special__block {
  padding: 16px 16px 0;
}
.special__image {
  margin:  48px auto 0;
}
.s .special__image {
  margin: 8px auto 0;
}
.special__image a {
  box-sizing: 4px 48px rgba(0, 0, 0, 0.3);;
}
.special__image:nth-child(1) {
  margin-top: 0;
}




/*------------------------------------------------------------------
 goods --------------------------------------------------------------
------------------------------------------------------------------*/
.goods {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.goods__inner {
  max-width: 1200px;
  width: 100%;
  padding: 120px 0 0;
  margin: auto;
}
.s .goods__inner {
  padding: 60px 0 0;
}

.goods__ttl {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto 64px;
}
.s .goods__ttl {
  margin: 0 auto  32px;
}
.goods__ttl img {
  margin: auto -5.083333% auto auto;
  width: 20.5%;
}
.s .goods__ttl img {
  width: 52%;
  padding: 0 20px;
}

.goods__content {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

.s .goods__content {
  padding: 0 15px;
}

.goods__content a {
  margin-top: 40px;
}
.s .goods__content a {
  margin-top: 0;
}

.goods__content a:nth-of-type(1) {
  margin-top: 0;
}

.goods__bnr {
  display: block;
  max-width: 740px;
  margin: auto;
}
.s .goods__bnr {
  padding: 15px 0 0;
}

.goods__link {
  max-width: 480px;
  margin: 84px auto 0;
}
.s .goods__link {
  max-width: 100%;
  padding: 0 20px;
  margin: 42px auto 0;
}



/*------------------------------------------------------------------
 comingSoon --------------------------------------------------------------
------------------------------------------------------------------*/
.comingSoon {
  width: 100%;
  max-width: 618px;
  margin: auto;
}

.s .comingSoon {
  padding: 0 40px;
}





/*------------------------------------------------------------------
 ticket__btn --------------------------------------------------------------
------------------------------------------------------------------*/
.ticket__btn {
  width: 100%;
  height: auto;
  margin: 60px auto 5px;
  padding: 0 0 0;
}
.s .ticket__btn {
  width: 100%;
  height: auto;
  max-width: 1600px;
  margin: 30px auto 5px;
}

.ticket__btn__inner {
  width: 100%;
  height: auto;
  max-width: 1366px;
  margin: auto;
  padding: 0 80px;
  text-align: center;
}
.s .ticket__btn__inner {
  width: 100%;
  max-width: initial;
  padding: 0 15px;
}

.ticket__btn.btn__shadow a {
  box-shadow: 0 0 0 4px #c8b78c;
}
.ticket__btn a {
  font-style: italic;
  position: relative;
  display: inline-block;
  font-size: 36px;
  padding: 0.5em 2em;
  background-color: #c8b78c;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  margin: auto;
  border: 4px solid white;
  border-radius: 4px;
  transition: all 0.2s;
}
.ticket__btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;

}
.ticket__btn a:hover {
  transform: translateX(2%);
  -webkit- transform: translateX(2%);
}
.s .ticket__btn a {
  font-size: 22px;
  width: 100%;
  padding: 0.8em 2em;
}
.s .ticket__btn a:hover {
  transform: translateX(0%);
  -webkit- transform: translateX(0%);
  opacity: 1;
}
@media screen and (max-width: 350px) {
  .s .ticket__btn a {
      font-size: 18px;
  }
}

/*================================================
　add 210629
================================================ */

.concept__ttl img {
    width: 58.4166%;
}

.concept__content .concept__image {
    width: 45.4166%;
}

.concept__content .concept__detail {
    width: 54.5834%;
}
.s .concept__image,
.s .concept__detail {
    width: 100%;
}

.catch .catch__text {
    background: url('../img/catch_illust.png');
    background-position: top 30% right 5%;
    background-repeat: no-repeat;
    background-size: auto 60%;
}
.s .catch .catch__text {
    background: url('../img/catch_illust.png');
    background-position: top 57% right 2%;
    background-repeat: no-repeat;
    background-size: auto 35%;
}






/*------------------------------------------------------------------
 news --------------------------------------------------------------
------------------------------------------------------------------*/
.news {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.news__inner {
  width: 100%;
  padding: 130px 0;
}
.s .news__inner {
  padding: 48px 0 80px;
}

.news__inner img.sec__line{
  width: 100%;
  max-width: 1260px;
  padding: 0 30px 160px;
  margin: auto;
}

.news__ttl {
  max-width: 880px;
  width: 100%;
  text-align: center;
  padding-top: 120px;
  margin: -120px auto 0;
}
.s .news__ttl {
  margin: 0;
  padding: 0;
}
.news__ttl img {
  margin: 0 auto;
  width: 57.6%;
}

.s .news__ttl img {
  width: 63%;
}

.news__block {
  width: 100%;
  height: auto;
  max-width: 1246px;
  margin: auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 48px 0 0;
}
.s .news__block {
  width: 100%;
  height: auto;
  max-width: auto;
  margin: auto;
  padding: 16px 16px;
}

.news__block li {
  width: 33.3333%;
  padding: 0 20px;
  margin-bottom: 40px;
}
.s .news__block li {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}
.s .news__block li:nth-child(odd) {
  padding-right: 0;
}
.s .news__block li:nth-child(even) {
  padding-left: 0;
}

.news__block li a {
  display: block;
  background: white;
  height: 100%;
}

.news__block__img {
  width: 100%;
  padding: 10px;
}

.news__block__cat {
  background: #005a99;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-size: 28px;
  text-align: center;
  padding: 0.1em 0;
}
.s .news__block__cat {
  font-size: 23px;
  padding: 0.2em 0 0.2em;
}

.news__block__ttl {
  padding: 10px 20px 10px;
}
.s .news__block__ttwl {
  padding: 5px 15px 5px;
}
.news__block__ttl span:nth-child(1) {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: black;
  font-size: 28px;
  display: block;
  width: 100%;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #005a99;
  margin-bottom: 0.15em;
}
.news__block__ttl span:nth-child(2) {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  color: black;
  font-size: 20px;
  display: block;
  width: 100%;
  line-height: 1.2em;
}
.s .news__block__ttl span:nth-child(1) {
  font-size: 24px;
}
.s .news__block__ttl span:nth-child(2) {
  font-size: 18px;
}



.news__line {
  width: 100%;
  max-width: 1366px;
  padding: 0 80px;
  margin: auto;
}
.s .news__line {
  max-width: auto;
  padding: 0 15px;
}

.news__line li {
  display: block;
  background: white;
  border: 2px solid black;
  margin-bottom: 10px;
  height: 2.4em;
}
.s .news__line li {
  display: block;
  height: auto;
}

.news__line li a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0.3em;
  height: 2.2em;
}
.s .news__line li a {
  display: block;
  padding: 0.3em;
  height: auto;
}

.news__line__date {
  display: block;
  width: 5.5em;
  text-align: center;
  font-family: "Teko","ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
  color: black;
  font-size: 28px;
  line-height: 1em;
}
.s .news__line__date {
  width: auto;
  text-align: left;
  font-size: 20px;
}
.news__line__separate {
  display: block;
  width: 2px;
  height: 100%;
  background: black;
  margin-right: 0.5em;
}
.s .news__line__separate {
  width: 100%;
  height: 2px;
  margin-right: 0;
  margin-bottom: .2em;
}
.news__line__ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: inline-block;
  color: black;
  font-size: 20px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3em;
}
.s .news__line__ttl {
  font-size: 14px;
  display: block;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}


/*------------------------------------------------------------------
 sponsor --------------------------------------------------------------
------------------------------------------------------------------*/
.sponsor {
  width: 100%;
  padding-top: 145px;
  line-height: 1.2em;
  background-color: #fff;
}
.s .sponsor {
  padding-top: 80px;
}
.sponsor__inner {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-bottom: 50px;
}
.s .sponsor__inner {
  padding-bottom: 0;
}
.sponsor__wrap {
  max-width: 1360px;
  padding: 0 0 20px;
  margin: auto;
}
.s .sponsor__wrap {
  max-width: 1360px;
  padding: 0 10px 20px;
  margin: auto;
}
.sponsor__inner p {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #005a99;
}
.s .sponsor__inner  p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.sponsor__wrap ul {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.s .sponsor__wrap ul.sponsor__4column,
.s .sponsor__wrap ul.sponsor__3column {
  width: 100%;
}

.sponsor__wrap ul li {
  width: 25%;
  font-size: 12px;
  margin-top: 20px;
  padding: 0 22px;
  display: inline-block;
}
.s .sponsor__wrap ul li {
  width: 50%;
  font-size: 12px;
  margin-top: 20px;
  padding: 0 22px;
  display: inline-block;
}
.sponsor__wrap ul.sizeS {
  width: 60%;
  margin: auto;
}
.sponsor__wrap ul.sizeS li {
  width: 25%;
}
.sponsor__wrap ul.sizeM li {
  width: 20%;
}
.sponsor__wrap ul.sizeL li {
  width: 35%;
}

.s .sponsor__wrap ul.sizeS li {
  width: 33.3%;
}
.s .sponsor__wrap ul.sizeM li {
  width: 50%;
}
.s .sponsor__wrap ul.sizeL li {
  width: 100%;
}

.s .sponsor__wrap ul li {
  padding: 0 10px;
  font-size: 10px;
}


.sponsor__wrap ul.sizeM li a {
  color: #444;
  display: block;
  text-decoration: none;
}

.sponsor__wrap ul.sizeS li a {
  color: #444;
  display: block;
  text-decoration: none;
}

.sponsor__wrap ul.sizeL {
    width: 100%;
    margin: auto;
}
.sponsor__wrap ul.sizeL li a {
    color: #444;
    display: block;
    font-size: 12px;
    text-decoration: none;
}
.s .sponsor__wrap ul.sizeL li {
    width: 70%;
}


/*================================================
　add 210713
================================================ */
/*---------------- ユニフォーム追加 ----------------*/

.uniform__content {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 32px auto 0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #ef7ba4;
}

.uniform__content > ul {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  padding: 18px 0;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.uniform__content > ul > li {
  width: 50%;
  padding: 0 18px;

  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.uniform__content > ul > li:first-child {
  border-right: 1px solid white;
}
.uniform__content > ul > li:last-child {
  border-left: 1px solid white;
}
.s .uniform__content > ul > li {
  width: 100%;
}
.s .uniform__content > ul > li:first-child {
  border-right: none;
  border-bottom: 1px solid white;
  padding-bottom: 32px;
}
.s .uniform__content > ul > li:last-child {
  border-left: none;
  border-top: 1px solid white;
  padding-top: 32px;
}

.uniform__content > ul > li > img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 18px;
  display: block;
}
.uniform__content > ul > li > h3 {
  margin-bottom: 32px;
  text-align: center;
}
.uniform__content > ul > li > h3 > span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4em;
  border-bottom: 2px dashed #ef7ba4;
  padding-bottom: 0.25em;
  display: inline-block;
}
.uniform__content > ul > li > h3 > span > span {
  color: red;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  bottom: 0.45em;
}
.uniform__content > ul > li > h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 8px;
}
.uniform__content > ul > li > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 16px;
}

.uniform__content > ul > li > ul > li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4em;
  text-align: left;
  padding-left: 1.2em;
  position: relative;
}
.uniform__content > ul > li > ul > li:before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  color: red;
  font-weight: 700;
}

.uniform__content > ul > li > .uniform__btn {
  display: block;
  width: 100%;
  max-width: 390px;
  margin: 32px auto 0;
}

.uniform__content > ul > li:last-child > .uniform__btn {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: auto auto 0;
}
.s .uniform__content > ul > li:last-child > .uniform__btn {
  margin: 32px auto 0;
}


/*================================================
　final
================================================ */
/*---------------- 　final ----------------*/
.fixed-ticket-button {
  /* position: fixed;
  bottom: 20px; */
  position: absolute;
  /* top: 20px; */

  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);

  padding: 0 20px;
  width: 100%;
  max-width: 680px;
  z-index: 100;
}
.s .fixed-ticket-button {
  padding: 0 15px;
  max-width: 345px;
}
.fixed-ticket-button > div {
}
.fixed-ticket-button a {
  display: block;
  /* cursor: pointer; */
  /* transition: opacity 0.5s;
  opacity: 1; */
}
.fixed-ticket-button a:hover {
  /* opacity: 0.7; */
}
.fixed-ticket-button a img {
  display: block;
  border-radius: 1000px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}



.loading-fadein-animation {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);  
  width: 140vw;
  height: 100vh;
  background: white;

  z-index: 10000;
}
.loading-fadein-animation.loadingOn {
  animation-name: fadein;/*名前*/
  animation-duration: 2s;/*時間*/
  animation-delay: 0.5s;/*開始*/
  animation-fill-mode:forwards;/*回数*/
}
@keyframes fadein {
  0% {
        opacity: 1;
    }
    99% { 
      z-index: 1000;
    }
    100% { 
      opacity: 0; 
      z-index: -1;
    }
}

.loading-01 {
    width: 320px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);  
    animation: loading-01 1.5s ease-out 0s 1 normal;
    opacity: 0;  
}
@keyframes loading-01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*---------------- チケット購入 ----------------*/
.ticket-bottun {
  position: relative;
  height: 0px;
  z-index: 9799;
}

.ticket-bottun li {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: opacity .4s ease-out;
}
.ticket-bottun li a {
  display: block;
  width: 72px;
  cursor: pointer;
}
.ticket-bottun li a img {
  width: 100%;
}

.s .ticket-bottun li {
  bottom: 10px;
}
.s .ticket-bottun li a {
  width: 80px;
}
.s .ticket-bottun li a img {
  width: 100%;
}


/*================================================
menu
================================================ */
.s header {
  z-index: 10000;
}
.s .menuBtn {
  display: block;
  width: 60px;
  height:60px;
  position: fixed;
  z-index: 10000;
  background: #fff;
  top: 0;
  right: 0;
}
.s .menuBtn span {
  display: block;
  background: #005a99;
  width: 32px;
  height: 2px;
  position: absolute;
  left: 14px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}
.s .menuBtn span:first-child {
  top: 16px;
}
.s .menuBtn span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.s .menuBtn span:last-child {
  bottom: 16px;
}
.s .menuBtn.-is-active span:first-child {
  -webkit-transform: translateY(13px) rotate(45deg);
  -moz-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}
.s .menuBtn.-is-active span:nth-child(2) {
    opacity: 0;
}
.s .menuBtn.-is-active span:last-child {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -moz-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}


.menuInner {
  width: 100vw;
  height: 130vh;
  z-index: 3000;

  position: fixed;
  top: -150vh;
  /* top: 0; */
  left: 0;

  background: #005a99;
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
}
.menuInner__wrapper {
  width: 100%;
  height: 100vh;
}
.menuInner__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 16px;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.menuInner ul {
  padding: 0 20px;
  margin-bottom: 100px;
  position: relative;
}
.menuInner ul::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: -16%;
  transform: rotate(45deg) translateX(16%) translateX(-50%);
  -webkit- transform: rotate(45deg) translateX(16%) translateX(-50%);
}
.menuInner ul::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  bottom: -16%;
  transform: rotate(45deg) translateX(16%) translateX(-50%);
  -webkit- transform: rotate(45deg) translateX(16%) translateX(-50%);
}
.menuInner ul li {
  margin-bottom:  32px;
}
.menuInner ul li a {
  display: block;
  margin: auto;
  width: 100%;
}
.menuInner a {
  display: block;
  margin: auto;
  width: 100%;
}



/*================================================
menu
================================================ */
/* チケットボタン */
.ticket-bottun li a.sp_ticketBtn {
  display: none;
}
.s .ticket-bottun li a {
  display: block;
  width: 80px;
  margin: 0 0 0 auto;
}
.s .ticket-bottun li a.sp_ticketBtn {
  display: block;
  width: 100px;
  margin: 20px -20px 0 auto;
}

/* トップボタン */
.s .ticket-bottun li a.top_Btn {
  display: none;
}