@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: rgb(225, 225, 225);
  font-weight: bold;
}
a:hover {
  color: rgb(27, 36, 134);
}

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

/*----------
header
----------*/
header {
  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: 100px;
  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(27, 36, 134);
}
.event .container .text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: rgb(225, 225, 225);
}
.event .container img {
  display: block;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================
スライダーのためのcss
===================================*/
.topic {
  padding: 80px 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: rgb(27, 36, 134);
}
.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: rgb(225, 225, 225);
}

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

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

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 37%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 4px solid rgb(225, 225, 225); /*矢印の色*/
  border-right: 4px solid rgb(225, 225, 225); /*矢印の色*/
  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: rgb(225, 225, 225); /*ドットボタンの色*/
  border: 4px solid rgb(225, 225, 225);
}

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

/*----------
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(27, 36, 134);
  color: rgb(225, 225, 225);
  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(27, 36, 134);
}
#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: rgb(225, 225, 225);
  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: 60px;
  font-weight: bold;
  color: rgb(225, 225, 225);
  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: rgb(225, 225, 225);
  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(27, 36, 134);
  color: rgb(225, 225, 225);
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 550px) {
  #tickets .container .title {
    font-size: 25px;
  }
}
#tickets .container .contents a:hover .ticket {
  border: 10px solid rgb(27, 36, 134);
}
#tickets .container .contents .ticket {
  padding: 30px 0 30px 40px;
  background: rgb(225, 225, 225);
  border: 10px double rgb(27, 36, 134);
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  color: #333;
}
@media screen and (max-width: 999px) {
  #tickets .container .contents .ticket {
    padding: 20px 0 20px 20px;
  }
}
#tickets .container .contents .ticket .left {
  padding-right: 25px;
}
#tickets .container .contents .ticket .left img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#tickets .container .contents .ticket .left .top {
  width: 100px;
  margin-bottom: 10px;
  margin-top: 0;
}
@media screen and (max-width: 999px) {
  #tickets .container .contents .ticket .left .top {
    width: 80px;
  }
}
#tickets .container .contents .ticket .left .bottom {
  width: 200px;
}
@media screen and (max-width: 999px) {
  #tickets .container .contents .ticket .left .bottom {
    width: 160px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 550px) {
  #tickets .container .contents .ticket .left .bottom {
    width: 80px;
    margin-top: 140px;
  }
}
#tickets .container .contents .ticket .right {
  padding-left: 25px;
  border-left: 5px dashed #333;
  font-style: italic;
}
#tickets .container .contents .ticket .right .date {
  margin-bottom: 20px;
}
#tickets .container .contents .ticket .right .date,
#tickets .container .contents .ticket .right .option {
  font-size: 20px;
  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;
  color: rgb(101, 101, 255);
}
#tickets .container .contents .ticket .right .name-w,
#tickets .container .contents .ticket .right .price-w {
  font-weight: 900;
  color: rgb(255, 101, 186);
}
#tickets .container .contents .ticket .right .name-19,
#tickets .container .contents .ticket .right .price-19 {
  font-weight: 900;
  color: rgb(72, 152, 72);
}
#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(27, 36, 134);
  color: rgb(225, 225, 225);
  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;
}

.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: rgb(225, 225, 225);
  font-weight: bold;
  background-size: cover;
  background-position: center;
  text-shadow: 0px 0px 3px #000;
}

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

.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: rgb(225, 225, 225);
  font-weight: bold;
  text-shadow: 0px 0px 3px #000;
  border: 1px solid #fff;
}

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

.mt {
  margin-top: 50px;
}

/*アイコンの＋と×*/
.accordion-title::before,
.accordion-title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: rgb(225, 225, 225);
}

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

.accordion-title::after {
  top: 48%;
  right: 30px;
  -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(27, 36, 134);
}
#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: rgb(225, 225, 225);
  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: rgb(225, 225, 225);
  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;
}
@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(27, 36, 134);
  color: rgb(225, 225, 225);
  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: rgb(225, 225, 225);
  line-height: 1.5;
  font-size: 12px;
}
@media screen and (max-width: 550px) {
  #attention .container .mibun .text {
    width: 100%;
  }
}
#attention .container .contents {
  color: rgb(225, 225, 225);
  margin-top: 50px;
  line-height: 1.5;
}

/*----------
footer
----------*/
footer {
  padding: 30px 0;
  background: #333;
  color: rgb(225, 225, 225);
  border-top: 1px dashed rgb(225, 225, 225);
  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: rgb(225, 225, 225);
}
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;
  }
}