@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.2rem;
  background: #333;
  background-image: url("../img/top.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

a {
  color: #ffffff;
  font-weight: bold;
}
a:hover {
  color: rgb(49, 175, 233);
}

.contents-place {
  width: 100%;
  margin-top: 30px;
}

.ad {
  position: fixed;
  bottom: 0;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 550px) {
  .ad {
    display: block;
  }
}
.ad .ad-img {
  width: 100%;
}

footer {
  margin-bottom: 150px;
}

/*----------
header
----------*/
header {
  top: 0;
  width: 100%;
  position: fixed;
  background: #000;
  z-index: 1;
}
header .container {
  display: block;
}
header .container .logo {
  padding: 15px 0;
}
header .container .logo a .epass-logo {
  display: block;
  width: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}
header .container .logo a svg {
  display: block;
  width: 50px;
  margin-right: auto;
  margin-left: auto;
}
header .container .logo a .link-logo {
  display: block;
  width: 120px;
  margin-right: auto;
  margin-left: auto;
}

/*----------
top
----------*/
.top-img {
  display: block;
  width: 40%;
  margin: 300px auto;
}

/*----------
top
----------*/
.event {
  padding: 80px 0 0 0;
  width: 100%;
  background: rgb(244, 128, 159);
}
.event .container .text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ffffff;
}
.event .container img {
  display: block;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 30px;
}

.sponsor-text {
  color: #fff;
  line-height: 1.5;
}

/*==================================================
スライダーのためのcss
===================================*/
.topic {
  padding: 80px 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: rgb(244, 128, 159);
}
.topic .container {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.topic .container .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ffffff;
}

.sponsor-name {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: bold;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

.slider p {
  color: #ffffff;
  margin-top: 20px;
  line-height: 1.2;
  font-size: 14px;
  background: #333;
  padding: 15px;
  margin-bottom: 20px;
}

.slider {
  text-align: center;
}

.slider .url {
  text-align: center;
  padding: 10px 30px;
  background: #1f628f;
  border-radius: 8px;
}
.slider .url a {
  color: #fff;
}
.slider .url a:hover {
  color: #fff;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 37%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 4px solid #fff; /*矢印の色*/
  border-right: 4px solid #fff; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 40px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 13px; /*ドットボタンのサイズ*/
  height: 13px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fffr; /*ドットボタンの色*/
  border: 2px solid #fff;
}

.slick-dots .slick-active button {
  background: #000; /*ドットボタンの現在地表示の色*/
  border: 2px solid #fff;
}

/*----------
contents
----------*/
#contents {
  padding: 100px 0;
}
#contents .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#contents .container .title {
  width: 100%;
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  background: rgb(244, 128, 159);
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #contents .container .title {
    font-size: 25px;
  }
}
#contents .container .contents {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 550px) {
  #contents .container .contents {
    display: block;
  }
}
#contents .container .contents .content {
  width: 30%;
}
@media screen and (max-width: 550px) {
  #contents .container .contents .content {
    width: 100%;
    margin-bottom: 50px;
  }
}
#contents .container .contents .content img,
#contents .container .contents .content video {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  #contents .container .contents .content img,
  #contents .container .contents .content video {
    margin-bottom: 20px;
  }
}

/*----------
place
----------*/
#place {
  padding: 100px 0;
  background: rgb(244, 128, 159);
}
#place .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#place .container .title {
  width: 100%;
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  background: #333;
  color: #fff;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #place .container .title {
    font-size: 25px;
  }
}
#place .container .contents {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  /*画像の横幅を100%にしてレスポンシブ化*/
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  /*選択するサムネイル画像の設定*/
}
#place .container .contents:not(:first-child) {
  margin-bottom: 70px;
}
#place .container .contents .place-name {
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
}
#place .container .contents img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
#place .container .contents .wrapper {
  width: 100%;
  margin: 0 auto;
  z-index: 0;
}
#place .container .contents ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#place .container .contents .gallery {
  margin: 0 0 2px 0;
}
#place .container .contents .slick-prev,
#place .container .contents .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}
#place .container .contents .slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#place .container .contents .slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#place .container .contents .choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  width: 33.3% !important;
}
#place .container .contents .choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}
#place .container .contents .choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}
#place .container .contents .choice-btn .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
}
#place .container .contents .place-text {
  padding: 20px;
  margin-top: 30px;
  text-align: left;
  background: #333;
  color: #fff;
  line-height: 1.5;
  font-size: 12px;
}

/*----------
tickets
----------*/
#tickets {
  padding: 100px 0;
}
#tickets .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#tickets .container .title {
  width: 100%;
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  background: rgb(244, 128, 159);
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #tickets .container .title {
    font-size: 25px;
  }
}
#tickets .container .contents .gold {
  background: -webkit-gradient(linear, left top, right top, from(#d0a900), color-stop(#fff9e6), to(#d0a900));
  background: linear-gradient(0.25turn, #d0a900, #fff9e6, #d0a900);
}
#tickets .container .contents .silver {
  background: -webkit-gradient(linear, left top, right top, from(#414043), color-stop(#fff9e6), to(#414043));
  background: linear-gradient(0.25turn, #414043, #fff9e6, #414043);
}
#tickets .container .contents .white {
  background: #fff;
  border-left: 15px solid #fff;
}
#tickets .container .contents .blue {
  background: #fff;
  border-left: 15px solid rgb(101, 101, 255);
}
#tickets .container .contents .red {
  background: #fff;
  border-left: 15px solid rgb(255, 101, 186);
}
#tickets .container .contents .ticket {
  padding: 10px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  color: #ffffff;
  background: #000;
}
#tickets .container .contents .ticket .right {
  font-style: italic;
}
#tickets .container .contents .ticket .right .buy {
  width: 80px;
  margin-bottom: 5px;
}
#tickets .container .contents .ticket .right .date {
  margin-bottom: 0px;
}
#tickets .container .contents .ticket .right .date,
#tickets .container .contents .ticket .right .option {
  font-size: 10px;
  font-weight: normal;
}
#tickets .container .contents .ticket .right .date span,
#tickets .container .contents .ticket .right .option span {
  color: red;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  #tickets .container .contents .ticket .right .date,
  #tickets .container .contents .ticket .right .option {
    font-size: 15px;
  }
}
#tickets .container .contents .ticket .right .name-m,
#tickets .container .contents .ticket .right .price-m {
  font-weight: 900;
}
#tickets .container .contents .ticket .right .name-w,
#tickets .container .contents .ticket .right .price-w {
  font-weight: 900;
}
#tickets .container .contents .ticket .right .name-19,
#tickets .container .contents .ticket .right .price-19 {
  font-weight: 900;
}
#tickets .container .contents .ticket .right .name {
  font-size: 30px;
}
@media screen and (max-width: 999px) {
  #tickets .container .contents .ticket .right .name {
    font-size: 25px;
  }
}
@media screen and (max-width: 550px) {
  #tickets .container .contents .ticket .right .name {
    font-size: 22px;
  }
}
#tickets .container .contents .ticket .right .price {
  font-size: 40px;
}
@media screen and (max-width: 550px) {
  #tickets .container .contents .ticket .right .price {
    font-size: 30px;
  }
}
#tickets .container .vip {
  margin-top: 50px;
  background: rgb(244, 128, 159);
  color: #ffffff;
  padding: 10px 20px;
}
#tickets .container .vip .text {
  line-height: 1.5;
}

/*----------
tickets accordion
----------*/
.separate {
  color: #fff;
  font-weight: bold;
}

.accordion-area {
  list-style: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.accordion-area li {
  margin: 10px 0;
}

/*アコーディオンタイトル*/
.t2-out,
.warp-out {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 15% 3% 15% 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #ffffff;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  text-shadow: 0px 0px 3px #000;
}

.place1 {
  background-image: url("../img/place-logo.jpg");
}

.place2 {
  background-image: url("../img/place-logo2.jpg");
}

.place3 {
  background-image: url("../img/place-logo3.jpg");
}

.w {
  background-image: url("../img/w.jpg");
}

.p-r {
  position: relative;
}

.warp-in,
.t2-in {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 0px 3px #000;
  border: 1px solid #fff;
}

.mt {
  margin-top: 50px;
}

/*アイコンの＋と×*/
.accordion-title::before,
.accordion-title::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #ccc;
}

.accordion-title::before {
  top: 10%;
  right: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-title::after {
  top: 10%;
  right: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.accordion-title.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion-title.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  padding-top: 3%;
}
.box p {
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}
.box a {
  display: block;
  margin-bottom: 10px;
}

/*----------
detail
----------*/
#detail {
  padding: 100px 0;
  background: rgb(244, 128, 159);
}
#detail .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#detail .container .title {
  width: 100%;
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  background: #333;
  color: #fff;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #detail .container .title {
    font-size: 25px;
  }
}
#detail .container .contents {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  background: #333;
  color: #ffffff;
  padding: 20px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 999px) {
  #detail .container .contents {
    display: block;
    text-align: center;
  }
}
#detail .container .contents .main-text {
  text-align: left;
  display: inline-block;
  padding-right: 20px;
  color: #fff;
}
@media screen and (max-width: 999px) {
  #detail .container .contents .main-text {
    padding: 0;
    border: none;
  }
}
#detail .container .contents iframe {
  width: 100%;
}
@media screen and (max-width: 999px) {
  #detail .container .contents iframe {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/*----------
attention
----------*/
#attention {
  padding: 100px 0;
}
#attention .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#attention .container .title {
  width: 100%;
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  background: rgb(244, 128, 159);
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #attention .container .title {
    font-size: 25px;
  }
}
#attention .container .mibun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 550px) {
  #attention .container .mibun {
    display: block;
  }
}
#attention .container .mibun img {
  width: 35%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 550px) {
  #attention .container .mibun img {
    width: 100%;
    margin-bottom: 50px;
  }
}
#attention .container .mibun .text {
  width: 62%;
  color: #fff;
  line-height: 1.5;
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  #attention .container .mibun .text {
    width: 100%;
  }
}
#attention .container .contents {
  color: #ffffff;
  margin-top: 50px;
  line-height: 1.5;
}

/*----------
footer
----------*/
footer {
  padding: 30px 0;
  color: #fff;
  border-top: 1px dashed #ffffff;
  letter-spacing: normal;
}
footer .container {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 550px) {
  footer .container {
    display: block;
  }
}
@media screen and (max-width: 550px) {
  footer .container .left {
    margin-bottom: 30px;
  }
}
footer .container .left .title,
footer .container .right .title {
  font-size: 12px;
  margin-bottom: 10px;
}
footer .container .left .contents,
footer .container .right .contents {
  font-size: 10px;
  line-height: 1.5;
}
footer .container .left .contents a,
footer .container .right .contents a {
  color: #fff;
  font-weight: normal;
}
footer .container .left .contents a:hover,
footer .container .right .contents a:hover {
  opacity: 0.8;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
footer .copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  footer .copyright {
    font-size: 10px;
    letter-spacing: normal;
  }
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  width: 250px;
}

/*=============== SVGアニメーション内の指定 =================*/
/*アニメーション前の指定*/
#mask path {
  fill-opacity: 0; /*最初は透過0で見えない状態*/
  -webkit-transition: fill-opacity 0.5s;
  transition: fill-opacity 0.5s; /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none; /*塗りがない状態*/
  stroke: #fff; /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
  fill: #fff; /*塗りの色*/
  fill-opacity: 1; /*透過1で見える状態*/
  stroke: none; /*線の色なし*/
}