@charset "UTF-8";
/* bs site CSS (main.css) */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #abb7ec;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 1px;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

/* ============================================
 base
============================================ */
html {
  overflow-y: scroll;
}

html, body {
  width: 100%;
  height: auto;
  color: #fff;
  min-width: 320px;
  letter-spacing: 0.7px;
  font-size: 11px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  background: #000;
  font-family: ryo-gothic-plusn, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", sans-serif;
  word-break: break-all;
}

.clearfix:before, .chronology dl:before, .clearfix:after, .chronology dl:after {
  content: "";
  display: table;
}

.clearfix:after, .chronology dl:after {
  clear: both;
}

#exterior_wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 92%;
  margin: 0 auto;
}

.nosp {
  display: none;
}

/* ============================================
 header
============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 100;
}

header a :hover {
  text-decoration: none !important;
}

header .head_wrap {
  padding: 0;
  width: 100%;
  max-width: none;
}

header .head_left {
  float: left;
  width: 200px;
}

header .logo {
  margin-left: 10px;
}

header .logo a :hover {
  text-decoration: none !important;
}

header .head_right {
  padding-top: 4px;
  padding-right: 30px;
}

header .head_right .sns {
  float: right;
  display: block;
  width: 27px;
  margin-right: 8px;
}

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.menu_button {
  position: absolute;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 17px;
  cursor: pointer;
}

.lang {
  position: absolute;
  top: 59px;
  right: 13px;
  width: 42px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  background: transparent;
  padding: 0 4px;
}
.lang a, .lang span {
  color: #fff;
  font-size: 10px;
  font-size: 0.8333333333rem;
  display: inline-block;
}
.lang span {
  border-bottom: #fff 1px solid;
}

.menu_button:hover {
  text-decoration: none;
}

/*-----------  active  ------------*/
/*-----------------------------------------------------------------
  dropdown nav
------------------------------------------------------------------*/
nav.right_nav {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 28, 31, 0.82);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  transform: translateY(-100%);
  transition: all 0.3s;
}
nav.right_nav .menu_ico {
  margin-top: 20px;
  text-align: center;
}
nav.right_nav .menu_ico img {
  width: 12%;
  margin-left: 2%;
}
nav.right_nav p {
  margin: 10px auto;
  text-align: center;
}
nav.right_nav p a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 15px;
  font-size: 4vw;
}

nav.right_nav.open {
  transform: translateZ(0);
}

nav.right_nav ul {
  padding-top: 60px;
}

nav.right_nav li {
  color: #fff;
  text-align: center;
  padding: 7px 10px;
}
nav.right_nav li a {
  font-size: 14px;
  font-size: 3.7333333333vw;
  letter-spacing: 2px;
  color: #fff;
}
nav.right_nav li.lang {
  position: relative;
  top: auto;
  right: auto;
  width: 80px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  background: transparent;
  padding: 0 4px;
  margin: 0 auto 30px;
}
nav.right_nav li.lang a, nav.right_nav li.lang span {
  color: #fff;
  font-size: 13px;
  font-size: 3.4666666667vw;
  display: inline-block;
}
nav.right_nav li.lang span {
  border-bottom: #fff 2px solid;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.nav_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 37px;
}

/* ============================================
 contents
============================================ */
#content_area {
  position: relative;
  padding-top: 0;
  margin: 0 auto;
}

section {
  margin-top: 0;
  padding: 15px 0;
}
section h2 {
  font-family: ryo-gothic-plusn, sans-serif;
  text-align: center;
  letter-spacing: 1.5px;
  color: #fff;
  font-size: 13px;
  font-size: 3.4666666667vw;
  margin: 20px auto 15px;
}

/*-----------  top image  ------------*/
#top_image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  min-height: 70%;
  min-height: 70vh;
  background: url("../images/bg_top.png") no-repeat center;
  background-size: cover;
}
#top_image .top_image_inner {
  width: 100%;
  height: 100%;
  min-height: 70%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top_image h1 {
  display: inline-block;
  width: 86%;
  max-width: 960px;
  margin-bottom: 5%;
}
#top_image h1 img {
  width: 100%;
}
#top_image .catchy {
  display: inline-block;
  width: 94%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 8%;
}
#top_image .catchy img {
  width: 82%;
}
#top_image .date {
  display: inline-block;
  width: 94%;
  max-width: 1000px;
  text-align: center;
}
#top_image .date img {
  width: 82%;
}

/*-----------  intro  ------------*/
#lineup {
  background: #000;
  background: linear-gradient(90deg, #001f22 0%, black 50%, #001f22 100%);
  background-size: cover;
  padding: 0;
}
#lineup .lineup_inner {
  padding: 5px 0;
  position: relative;
  background: url("../images/bg01_top.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
#lineup .catchy02 {
  text-align: center;
  width: 90%;
  margin: 0 auto 50px;
}
#lineup h3 {
  background: #000 url("../images/cp_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  font-size: 13px;
  font-size: 3.4666666667vw;
  letter-spacing: 1.5px;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lineup .lineup_list01 {
  padding: 25px 0;
  border-bottom: 1px solid #a6a6a6;
}
#lineup .lineup_list01:last-child {
  border-bottom: none;
}
#lineup .lineup_list01 div {
  margin: 15px auto;
  width: 80%;
  text-align: center;
}
#lineup .lineup_list01.ensou div {
  width: 50%;
}
#lineup .lineup_list02 {
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lineup .lineup_list02 div {
  width: 65%;
  margin: 25px auto 0;
  text-align: center;
}

/*-----------  ticket  ------------*/
#ticket {
  background: #000;
  background: linear-gradient(90deg, #1b1707 0%, black 50%, #1b1707 100%);
  background-size: cover;
}
#ticket .closed {
  position: relative;
}
#ticket .closed .closed_inner {
  opacity: 0.2;
}
#ticket .closed .close {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#ticket h3 {
  color: #fbe479;
  text-align: center;
  font-size: 14px;
  font-size: 3.7333333333vw;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
#ticket h4 {
  background: #fbe479;
  background: linear-gradient(90deg, #221815 0%, #bcb172 30%, #e0dcc8 50%, #bcb172 69%, #221815 100%);
  color: #221815;
  text-align: center;
  letter-spacing: 1px;
  font-size: 12px;
  font-size: 3.2vw;
}
#ticket .box_ticket {
  margin-top: 20px;
}
#ticket .box_ticket:last-child {
  margin-top: 35px;
}
#ticket .box_ticket .ticket_detail {
  width: 96%;
  margin: 20px auto;
}
#ticket .box_ticket .btn_erea {
  margin: 20px 0;
  text-align: center;
}
#ticket .box_ticket .btn_erea img {
  max-width: 200px;
  width: 55%;
}
#ticket .box_ticket .btn_erea p {
  font-size: 8px;
  font-size: 2.1333333333vw;
  margin-top: 10px;
}

/*-----------  goods  ------------*/
#goods {
  background: #000 url("../images/bg_goods.jpg") center no-repeat;
  background-size: cover;
  padding: 5px 0;
}
#goods p {
  margin: 0 auto;
  text-align: center;
  width: 80%;
  padding: 20px 0;
}

/*-----------  notice  ------------*/
#notice {
  background: #000;
  background: linear-gradient(90deg, #001f22 0%, black 50%, #001f22 100%);
  background-size: cover;
  padding: 1px 0;
}
#notice h3 {
  border: solid 1px #a6a6a6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-size: 3.4666666667vw;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
#notice .notice_link {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #a6a6a6;
}
#notice .notice_link div {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
#notice .notice_link div p {
  font-size: 12px;
  font-size: 3.2vw;
  margin-top: 15px;
  margin-bottom: 10px;
}
#notice .notice_link div img {
  height: 6vw;
}
#notice .attention {
  padding: 30px 10px;
  border-bottom: 1px solid #a6a6a6;
}
#notice .attention:last-child {
  border-bottom: none;
}
#notice .attention h4 {
  color: #fbe479;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
#notice .attention p {
  font-size: 10px;
  font-size: 2.6666666667vw;
  margin: 15px auto;
}
#notice .attention p img {
  height: 6vw;
}
#notice .attention ul li {
  font-size: 10px;
  font-size: 2.6666666667vw;
  text-indent: -2em;
  padding-left: 2em;
  margin: 7px auto;
}

.lity-content:after {
  display: none;
}

.fancybox-infobar {
  display: none !important;
}

/* ============================================
 footer
============================================ */
footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fbe479;
  background: linear-gradient(90deg, #221815 0%, #bcb172 30%, #e0dcc8 50%, #bcb172 69%, #221815 100%);
  color: #000;
}
footer p {
  margin: 10px auto;
  text-align: center;
  line-height: 2;
  letter-spacing: 2px;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
footer p.copyrights {
  font-size: 8px;
  font-size: 2.1333333333vw;
}

#page_top {
  display: none;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 5%;
  bottom: 15px;
  cursor: pointer;
}

/* ============================================
 Media Queries
============================================ */
/*---------------------------------------------  for PC  ----------------------------------------------*/
@media screen and (min-width: 768px) {
  .nopc {
    display: none;
  }

  .nosp {
    display: inline;
  }

  /* ============================================
   base
  ============================================ */
  html {
    overflow-y: scroll;
  }

  html, body {
    width: 100%;
    height: auto;
    min-width: 320px;
    font-size: 12px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
  }

  .clearfix:before, .chronology dl:before, .clearfix:after, .chronology dl:after {
    content: "";
    display: table;
  }

  .clearfix:after, .chronology dl:after {
    clear: both;
  }

  #exterior_wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .wrapper {
    position: relative;
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* ============================================
   header
  ============================================ */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 100;
  }

  header a :hover {
    text-decoration: none !important;
  }

  header .head_wrap {
    padding: 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  header .head_left {
    float: left;
    width: 200px;
  }

  header .logo {
    margin-left: 10px;
  }

  header .logo a :hover {
    text-decoration: none !important;
  }

  header .head_right {
    padding-top: 0;
    padding-right: 0;
  }

  header .head_right .sns {
    float: right;
    display: block;
    width: 27px;
    margin-right: 8px;
  }

  /*-----------------------------------------------------------------
    ハンバーガーメニュー
  ------------------------------------------------------------------*/
  .menu_button, .menu_button span {
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }

  .menu_button {
    position: absolute;
    right: 34px;
    top: 34px;
    width: 70px;
    height: 17px;
    cursor: pointer;
  }

  .menu_button:hover {
    text-decoration: none;
  }

  .lang {
    position: absolute;
    top: 110px;
    right: 28px;
    width: 80px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    background: transparent;
    padding: 0 10px;
  }
  .lang a, .lang span {
    font-size: 16px;
    font-size: 1.3333333333rem;
    display: inline-block;
  }
  .lang span {
    border-bottom: #fff 2px solid;
  }

  /*-----------  active  ------------*/
  /*-----------------------------------------------------------------
    dropdown nav
  ------------------------------------------------------------------*/
  nav.right_nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
    transform: translateY(-100%);
    transition: all 0.3s;
  }
  nav.right_nav .menu_ico {
    margin-top: 30px;
    text-align: center;
  }
  nav.right_nav .menu_ico img {
    width: 12%;
    max-width: 70px;
    margin-left: 1.3%;
  }
  nav.right_nav p {
    margin: 10px auto;
    text-align: center;
  }
  nav.right_nav p a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
    font-size: 1.6666666667rem;
  }

  nav.right_nav.open {
    transform: translateZ(0);
  }

  nav.right_nav ul {
    padding-top: 60px;
  }

  nav.right_nav li {
    color: #fff;
    text-align: center;
    padding: 13px 10px;
  }
  nav.right_nav li a {
    font-size: 20px;
    font-size: 1.6666666667rem;
    letter-spacing: 2px;
  }
  nav.right_nav li.lang {
    position: relative;
    top: auto;
    right: auto;
    width: 100px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    background: transparent;
    padding: 0 4px;
    font-size: 18px;
    font-size: 1.5rem;
    margin: 0 auto 50px;
  }
  nav.right_nav li.lang a, nav.right_nav li.lang span {
    font-size: 18px;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    display: inline-block;
  }
  nav.right_nav li.lang span {
    border-bottom: #fff 3px solid;
  }

  .nav_close {
    position: absolute;
    right: 28px;
    top: 30px;
    width: 80px;
  }

  /* ============================================
   contents
  ============================================ */
  #content_area {
    position: relative;
    padding-top: 0;
    margin: 0 auto;
  }

  section {
    margin-top: 0;
    padding: 15px 0;
  }
  section h2 {
    font-family: ryo-gothic-plusn, sans-serif;
    text-align: center;
    letter-spacing: 5.5px;
    color: #fff;
    font-size: 23px;
    font-size: 1.9166666667rem;
    margin: 20px auto 40px;
  }

  /*-----------  top image  ------------*/
  #top_image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    min-height: 70%;
    min-height: 70vh;
    background: url("../images/bg_top.png") no-repeat center;
    background-size: cover;
  }
  #top_image .top_image_inner {
    width: 100%;
    height: 100%;
    padding-top: 80px;
    min-height: 70%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_image h1 {
    display: inline-block;
    width: 86%;
    max-width: 960px;
    margin-bottom: 5%;
  }
  #top_image h1 img {
    width: 100%;
  }
  #top_image .catchy {
    display: inline-block;
    width: 94%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 8%;
  }
  #top_image .catchy img {
    width: 82%;
  }
  #top_image .date {
    display: inline-block;
    width: 94%;
    max-width: 1000px;
    text-align: center;
    margin-bottom: 100px;
  }
  #top_image .date img {
    width: 82%;
  }

  /*-----------  intro  ------------*/
  #lineup {
    background: #000;
    background: linear-gradient(90deg, #001f22 0%, black 50%, #001f22 100%);
    background-size: cover;
    padding: 0 0 20px;
  }
  #lineup .lineup_inner {
    padding: 5px 0;
    position: relative;
    background: url("../images/bg01_top.png") no-repeat;
    background-size: contain;
    background-position: center top;
  }
  #lineup .catchy02 {
    width: 90%;
    margin: 0 auto 150px;
  }
  #lineup h3 {
    background: #001819;
    background: linear-gradient(90deg, #001819 0%, #006e78 50%, #001819 100%);
    text-align: center;
    font-size: 22px;
    font-size: 1.8333333333rem;
    letter-spacing: 2.5px;
    line-height: 2.2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #lineup .lineup_list01 {
    padding: 45px 0;
    border-bottom: 1px solid #a6a6a6;
  }
  #lineup .lineup_list01:last-child {
    border-bottom: none;
  }
  #lineup .lineup_list01 div {
    margin: 25px auto;
    width: 80%;
    text-align: center;
  }
  #lineup .lineup_list02 {
    padding: 45px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #lineup .lineup_list02 div {
    width: 65%;
    margin: 25px auto 0;
    text-align: center;
  }

  /*-----------  ticket  ------------*/
  #ticket {
    background: #000;
    background: linear-gradient(90deg, #1b1707 0%, black 50%, #1b1707 100%);
    background-size: cover;
    padding: 20px 0;
  }
  #ticket .closed {
    position: relative;
  }
  #ticket .closed .closed_inner {
    opacity: 0.2;
  }
  #ticket .closed .close {
    width: 30%;
    max-width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #ticket h3 {
    color: #fbe479;
    text-align: center;
    font-size: 30px;
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: 1.7;
    margin-bottom: 35px;
  }
  #ticket h4 {
    background: #fbe479;
    background: linear-gradient(90deg, #221815 0%, #bcb172 30%, #e0dcc8 50%, #bcb172 69%, #221815 100%);
    color: #221815;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 2px;
    font-size: 28px;
    font-size: 2.3333333333rem;
  }
  #ticket .box_ticket {
    margin-top: 20px;
  }
  #ticket .box_ticket:last-child {
    margin-top: 35px;
  }
  #ticket .box_ticket .ticket_detail {
    width: 90%;
    margin: 50px auto;
  }
  #ticket .box_ticket .btn_erea {
    position: absolute;
    margin: 20px 0;
    text-align: center;
    right: -36px;
    bottom: -20px;
  }
  #ticket .box_ticket .btn_erea img {
    max-width: 290px;
    width: 65%;
  }
  #ticket .box_ticket .btn_erea p {
    font-size: 12px;
    font-size: 1rem;
    margin-top: 10px;
  }

  /*-----------  goods  ------------*/
  #goods {
    background: #000 url("../images/bg_goods.jpg") center no-repeat;
    background-size: cover;
    padding: 35px 0;
  }
  #goods p {
    margin: 0 auto;
    text-align: center;
    width: 80%;
    padding: 20px 0;
  }

  /*-----------  notice  ------------*/
  #notice {
    background: #000;
    background: linear-gradient(90deg, #001f22 0%, black 50%, #001f22 100%);
    background-size: cover;
    padding: 40px 0;
  }
  #notice h3 {
    border: solid 1px #a6a6a6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-size: 2.1666666667rem;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }
  #notice .notice_link {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #a6a6a6;
  }
  #notice .notice_link div {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
  }
  #notice .notice_link div p {
    font-size: 20px;
    font-size: 1.6666666667rem;
    margin-top: 25px;
    margin-bottom: 30px;
  }
  #notice .notice_link div img {
    height: 50px;
  }
  #notice .attention {
    padding: 70px 50px;
    border-bottom: 1px solid #a6a6a6;
  }
  #notice .attention:last-child {
    border-bottom: none;
  }
  #notice .attention h4 {
    color: #fbe479;
    font-size: 15px;
    font-size: 1.25rem;
    text-indent: -0.5em;
  }
  #notice .attention p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    margin: 35px auto;
  }
  #notice .attention p img {
    height: 50px;
  }
  #notice .attention ul li {
    font-size: 14px;
    font-size: 1.1666666667rem;
    text-indent: -2em;
    padding-left: 2em;
    margin: 15px auto;
  }

  .lity-content:after {
    display: none;
  }

  .fancybox-infobar {
    display: none !important;
  }

  /* ============================================
   footer
  ============================================ */
  footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fbe479;
    background: linear-gradient(90deg, #221815 0%, #bcb172 30%, #e0dcc8 50%, #bcb172 69%, #221815 100%);
    color: #000;
  }
  footer p {
    margin: 10px auto;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    font-size: 18px;
    font-size: 1.5rem;
  }
  footer p.copyrights {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
}

/*# sourceMappingURL=main.css.map */
