@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: #f0d691;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
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: "Noto Sans JP", "ヒラギノ角ゴ 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;
}

.pc_nav {
  display: none;
}

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.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(33, 33, 33, 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;
  font-weight: lighter;
  letter-spacing: 2px;
  font-family: "Anton", sans-serif;
  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;
  font-weight: lighter;
  font-family: "Anton", sans-serif;
}
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;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  background: url("../images/2023/sdvx2023_web_03.png") repeat center;
  width: 100%;
  height: 100%;
  background-size: 43px 43px;
}

section {
  margin-top: 70px;
  padding: 15px 0;
}
section h2 {
  font-family: "Anton", sans-serif;
  text-align: center;
  letter-spacing: 1.5px;
  font-weight: lighter;
  font-size: 13px;
  font-size: 3.4666666667vw;
  margin: 20px auto 25px;
  color: #fff;
  text-shadow: 0 0 1px #c91680, 0 0 3px #c91680, 0 0 6px #c91680, 0 0 10px #c91680, 0 0 30px #c91680, 0 0 50px #c91680;
}

@keyframes openingAnim {
  0% {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*-----------  top image  ------------*/
#top_image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  background: #fff url("../images/2023/bg.png") no-repeat center;
  background-size: cover;
}
#top_image .copy {
  position: absolute;
  right: 3%;
  bottom: 3%;
  width: 8%;
}
#top_image .top_image_inner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
#top_image .top_image_inner.is-animated {
  -webkit-animation: openingAnim 2.5s 1;
  animation: openingAnim 2.5s 1;
  animation-fill-mode: forwards;
  animation-delay: 1200ms;
}
#top_image .top_image_inner img {
  position: relative;
  width: 90%;
  left: 7%;
  margin-top: 7%;
  margin-bottom: 5%;
}
#top_image .main_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/2023/img_shadow.png") repeat-x center bottom;
  background-size: 34px 282px;
}
#top_image h1 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 77%;
  max-width: 960px;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
#top_image h1.is-animated {
  -webkit-animation: openingAnim 1.5s 1;
  animation: openingAnim 1.5s 1;
  animation-fill-mode: forwards;
  animation-delay: 2000ms;
}
#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 .info01 {
  display: inline-block;
  width: 94%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 8%;
}
#top_image .info01 img {
  width: 70%;
  margin-bottom: 10px;
}
#top_image .date {
  display: inline-block;
  width: 94%;
  max-width: 1000px;
  text-align: center;
}
#top_image .date img {
  width: 82%;
}

.goods_big {
  margin: 40px auto;
  width: 80%;
  max-width: 940px;
}

.btn_buy {
  text-align: center;
}
.btn_buy img {
  width: 50%;
}

.sepa {
  background-size: contain;
  width: 80%;
  margin: 40px auto;
  height: 1px;
  background: #fff;
}

#event {
  position: relative;
}
#event .catchy {
  margin-bottom: 30px;
}
#event .info {
  margin-bottom: 30px;
}
#event .proleague_logo {
  position: absolute;
  top: 67%;
  left: 16%;
  width: 67%;
}

/*-----------  intro  ------------*/
#lineup {
  padding: 0;
}
#lineup .wrapper {
  text-align: center;
}
#lineup .lineup_img {
  width: 80%;
}
#lineup .lineup_img2 {
  width: 90%;
  margin-top: 50px;
}
#lineup .btn_detail {
  position: absolute;
  top: 81%;
  left: 32%;
  width: 34%;
}

/*-----------  online  ------------*/
#online {
  width: 90%;
  margin: 120px auto 50px;
}
#online .btn_erea {
  margin: 40px 0;
  text-align: center;
}
#online .btn_erea.twin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#online .btn_erea.twin a {
  display: inline-block;
  margin: 0 15px 0px;
}
#online .btn_erea.twin a img {
  max-width: 300px;
  width: 100%;
}
#online .btn_erea img {
  max-width: 240px;
  width: 65%;
}
#online .btn_erea p {
  font-size: 8px;
  font-size: 2.1333333333vw;
  margin-top: 10px;
}

/*-----------  ticket  ------------*/
#ticket {
  background-size: cover;
}
#ticket .ticket_detail {
  position: relative;
}
#ticket .ticket_detail .btn01 {
  position: relative;
  top: auto;
  left: 25%;
  width: 50%;
  margin-top: 5%;
}
#ticket .ticket_detail .btn02 {
  position: absolute;
  top: 92.9%;
  left: 30%;
  width: 40%;
}
#ticket .ticket_detail .btn03 {
  position: absolute;
  top: 84.9%;
  left: 30%;
  width: 40%;
}
#ticket .ticket_info0429 {
  margin: 70px auto;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  color: #fff;
  font-size: 12px;
  font-size: 3.2vw;
  padding: 0 20px;
}
#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-bottom: 50px;
}
#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.twin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#ticket .box_ticket .btn_erea.twin a {
  display: inline-block;
  margin: 0 15px 0px;
}
#ticket .box_ticket .btn_erea.twin a img {
  max-width: 300px;
  width: 100%;
}
#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;
}
#ticket .attention {
  text-align: left;
  display: block;
  margin: 0 10px;
  font-size: 8px;
  font-size: 2.1333333333vw;
  color: #fff;
}

/*-----------  goods  ------------*/
#goods {
  background-size: cover;
  padding: 5px 0;
}
#goods .wrapper {
  text-align: center;
  margin-bottom: 40px;
}
#goods .wrapper .cs {
  margin-bottom: 40px;
}
#goods .wrapper .cs img {
  width: 50%;
}
#goods h2 {
  margin-bottom: 20px;
}
#goods .paseri_inner {
  padding: 25px;
  border: 1px solid #fff;
}
#goods .paseri_tit {
  margin-bottom: 20px;
}
#goods p.paseri_info {
  margin: 0 auto;
  text-align: left;
  padding: 0px 0;
  font-weight: lighter;
  color: #fff;
  letter-spacing: -0.2px;
  font-size: 8px;
  font-size: 2.1333333333vw;
}
#goods p.paseri_info a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  font-weight: bold;
  color: #ff0097;
  border-bottom: solid 1px #ff0097;
}

#access .ggmap {
  margin-bottom: 30px;
}
#access .wrapper {
  text-align: center;
  margin-bottom: 40px;
}
#access .wrapper img {
  width: 80%;
}
#access h3 {
  letter-spacing: 3px;
  font-size: 20px;
  font-size: 5.3333333333vw;
  text-align: center;
}
#access .sub {
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 3.7333333333vw;
  text-align: center;
  margin-bottom: 20px;
}
#access .access_info {
  font-size: 9px;
  font-size: 2.4vw;
  text-align: center;
  margin-top: 15px;
}
#access .goraijou {
  margin-top: 60px;
  padding: 0 10px;
  text-align: left;
}
#access .goraijou h4 {
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 3.7333333333vw;
  text-align: center;
  margin-bottom: 20px;
}
#access .goraijou p {
  text-align: left;
  font-size: 9px;
  font-size: 2.4vw;
}

/*-----------  notice  ------------*/
#guideline {
  padding: 1px 0;
}
#guideline 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;
}
#guideline .notice_link {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #a6a6a6;
}
#guideline .notice_link div {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
#guideline .notice_link div p {
  font-size: 12px;
  font-size: 3.2vw;
  margin-top: 15px;
  margin-bottom: 10px;
}
#guideline .notice_link div img {
  height: 6vw;
}
#guideline .attention {
  padding: 0 10px;
  border-bottom: 1px solid #a6a6a6;
}
#guideline .attention:last-child {
  border-bottom: none;
}
#guideline .attention h4 {
  color: #fbe479;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
#guideline .attention p {
  font-size: 9px;
  font-size: 2.4vw;
  margin: 15px auto;
}
#guideline .attention p img {
  height: 6vw;
}
#guideline .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: 80px;
  padding-bottom: 40px;
  color: #fff;
}
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;
}

#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
  background: #000616;
}
#loading .loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  background: #c91680;
  background: -moz-linear-gradient(left, #c91680 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #c91680 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #c91680 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #c91680 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #c91680 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#loading .loader:before {
  width: 50%;
  height: 50%;
  background: #c91680;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
#loading .loader:after {
  background: #000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ============================================
 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: 850px;
    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;
  }

  .pc_nav {
    display: block;
    z-index: 10000;
    position: fixed;
    width: 100%;
    height: 70px;
    background: #000;
  }
  .pc_nav .pc_nav_inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .pc_nav .pc_nav_inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .pc_nav .pc_nav_inner ul li {
    text-align: center;
    margin: 0 13px;
  }
  .pc_nav .pc_nav_inner ul li a {
    display: inline-block;
    padding: 3px;
    color: #fff;
    font-size: 16px;
    font-size: 1.3333333333rem;
    letter-spacing: 2px;
    font-weight: lighter;
    font-family: "Anton", sans-serif;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .pc_nav .pc_nav_inner ul li a:hover {
    text-shadow: 0 0 1px #c91680, 0 0 3px #c91680, 0 0 6px #c91680, 0 0 10px #c91680, 0 0 30px #c91680, 0 0 50px #c91680;
  }

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

  .menu_button {
    display: none;
    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: 70px;
    margin: 0 auto;
  }

  section {
    margin-top: 120px;
    padding: 15px 0;
  }
  section h2 {
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 30px;
    font-size: 2.5rem;
    margin: 20px auto 60px;
  }

  #bg {
    position: fixed;
    top: 0;
    left: 0;
    background: url("../images/2023/sdvx2023_web_03.png") repeat center;
    width: 100%;
    height: 100%;
    background-size: 87px 87px;
  }

  /*-----------  top image  ------------*/
  #top_image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    background-size: cover;
  }
  #top_image .top_image_inner {
    width: 100%;
    height: auto;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_image .top_image_inner img {
    position: relative;
    width: 90%;
    left: 2%;
    margin-top: 3%;
    margin-bottom: 5%;
  }
  #top_image .main_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/2023/img_shadow.png") repeat-x center bottom;
    background-size: 69px 565px;
  }
  #top_image h1 {
    display: block;
    text-align: center;
    max-width: none;
    margin-bottom: 1%;
  }
  #top_image h1 img {
    width: 100%;
    max-width: 746px;
  }
  #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 .info01 {
    display: inline-block;
    width: 94%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 8%;
    font-size: 18px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  #top_image .info01 img {
    width: 50%;
    margin-bottom: 10px;
  }
  #top_image .date {
    display: inline-block;
    width: 94%;
    max-width: 1000px;
    text-align: center;
  }
  #top_image .date img {
    width: 82%;
  }

  .sepa {
    background-size: contain;
    width: 100%;
    margin: 100px auto;
    height: 1px;
    max-width: 940px;
  }

  #event .catchy {
    margin-bottom: 80px;
    text-align: center;
  }
  #event .info {
    margin-bottom: 80px;
    text-align: center;
  }

  /*-----------  intro  ------------*/
  #lineup {
    padding: 0;
  }
  #lineup .wrapper {
    text-align: center;
  }
  #lineup .lineup_img {
    width: 80%;
  }
  #lineup .lineup_img2 {
    width: 100%;
    margin-top: 100px;
  }
  #lineup .btn_detail {
    position: absolute;
    top: 81%;
    left: 33%;
    width: 34%;
  }

  /*-----------  online  ------------*/
  #online {
    width: 90%;
    margin: 220px auto 140px;
  }
  #online .btn_erea {
    margin: 60px 0;
    text-align: center;
  }
  #online .btn_erea.twin {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #online .btn_erea.twin a {
    display: inline-block;
    margin: 0 15px 0px;
  }
  #online .btn_erea.twin a img {
    max-width: 300px;
    width: 100%;
  }
  #online .btn_erea img {
    max-width: 450px;
    width: 100%;
  }
  #online .btn_erea p {
    font-size: 8px;
    font-size: 2.1333333333vw;
    margin-top: 10px;
  }

  /*-----------  ticket  ------------*/
  #ticket {
    background-size: cover;
  }
  #ticket .ticket_detail {
    position: relative;
  }
  #ticket .ticket_detail .btn01 {
    position: relative;
    top: auto;
    left: auto;
    width: 40%;
  }
  #ticket .ticket_detail .btn02 {
    position: absolute;
    top: 92.9%;
    left: 30%;
    width: 40%;
  }
  #ticket .ticket_detail .btn03 {
    position: absolute;
    top: 84.9%;
    left: 30%;
    width: 40%;
  }
  #ticket .ticket_info0429 {
    margin: 130px auto;
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
    font-size: 18px;
    font-size: 1.5rem;
    padding: 0 20px;
  }
  #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-bottom: 120px;
  }
  #ticket .box_ticket:last-child {
    margin-top: 35px;
  }
  #ticket .box_ticket .ticket_detail {
    width: 96%;
    margin: 20px auto;
    text-align: center;
  }
  #ticket .box_ticket .btn_erea {
    margin: 40px 0;
    text-align: center;
  }
  #ticket .box_ticket .btn_erea.twin {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #ticket .box_ticket .btn_erea.twin a {
    display: inline-block;
    margin: 0 15px 0px;
  }
  #ticket .box_ticket .btn_erea img {
    max-width: 350px;
    width: 85%;
  }
  #ticket .box_ticket .btn_erea p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    margin-top: 10px;
  }
  #ticket .attention {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    font-size: 15px;
    font-size: 1.25rem;
    color: #fff;
  }

  /*-----------  goods  ------------*/
  #goods {
    background-size: cover;
    padding: 5px 0;
  }
  #goods h2 {
    margin-bottom: 20px;
  }
  #goods p {
    margin: 0 auto;
    text-align: center;
    padding: 0px 0;
    font-weight: lighter;
    color: #fff;
  }
  #goods .paseri_inner {
    padding: 35px;
    border: 1px solid #fff;
  }
  #goods .paseri_tit {
    margin-bottom: 20px;
  }
  #goods p.paseri_info {
    margin: 0 auto;
    text-align: left;
    padding: 0px 0;
    font-weight: lighter;
    color: #fff;
    letter-spacing: -0.2px;
    font-size: 18px;
    font-size: 1.5rem;
  }
  #goods p.paseri_info a {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
    color: #ff0097;
    font-weight: bold;
    border-bottom: solid 1px #ff0097;
  }
  #goods p.paseri_info a:hover {
    font-weight: bold;
    color: #fff;
    background: #ff0097;
  }

  #access h3 {
    letter-spacing: 6px;
    font-size: 32px;
    font-size: 2.6666666667rem;
    text-align: center;
  }
  #access .sub {
    letter-spacing: 4px;
    font-size: 24px;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #access .access_info {
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: center;
    margin-top: 15px;
  }
  #access .goraijou {
    margin-top: 100px;
    padding: 0 10px;
  }
  #access .goraijou h4 {
    letter-spacing: 3px;
    font-size: 32px;
    font-size: 2.6666666667rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #access .goraijou p {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }

  /*-----------  notice  ------------*/
  #guideline {
    padding: 1px 0;
  }
  #guideline 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;
  }
  #guideline .notice_link {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #a6a6a6;
  }
  #guideline .notice_link div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  #guideline .notice_link div p {
    font-size: 16px;
    font-size: 1.3333333333rem;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  #guideline .notice_link div img {
    height: 6vw;
  }
  #guideline .attention {
    padding: 0 10px;
    border-bottom: 1px solid #a6a6a6;
  }
  #guideline .attention:last-child {
    border-bottom: none;
  }
  #guideline .attention h4 {
    color: #fbe479;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  #guideline .attention p {
    font-size: 16px;
    font-size: 1.3333333333rem;
    margin: 15px auto;
  }
  #guideline .attention p img {
    height: 6vw;
  }
  #guideline .attention ul li {
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-indent: -2em;
    padding-left: 2em;
    margin: 7px auto;
  }

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

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

  /* ============================================
   footer
  ============================================ */
  footer {
    padding-top: 150px;
    padding-bottom: 70px;
    color: #fff;
  }
  footer p {
    margin: 10px auto;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  footer p.copyrights {
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
}

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