@charset "UTF-8";
/*  CSS (main.css) */
/* ================= contents =================
[0] reset
[1] base
[2] headerArea
[3] contentsArea
[4] footerArea
============================================ */
/* ============================================
0. reset
============================================ */
/* --------------------------------------------------------------------------------
margin padding
-------------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* font-family */
body {
  font-family: "Noto Serif JP", serif;
}

/* line-height */
body {
  line-height: 1.45;
}

*:first-child + html * {
  letter-spacing: 0;
}

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

img, iframe {
  border: 0;
}

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

address {
  font-style: normal;
  font-weight: normal;
}

/* --------------------------------------------------------------------------------
table form
-------------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th, td {
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: inherit;
}

fieldset {
  border: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* --------------------------------------------------------------------------------
block
-------------------------------------------------------------------------------- */
body {
  text-align: left;
}

div, span, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, iframe, form, fieldset, legend, blockquote, input, textarea, p, pre {
  text-align: left;
}

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;
}

/* --------------------------------------------------------------------------------
clearfix
-------------------------------------------------------------------------------- */
.cf_og:after {
  content: "";
  clear: both;
  display: block;
}

/* ============================================
 1.base
============================================ */
html, body {
  position: relative;
  width: 100%;
  color: #000;
  background: #000 url("https://d20dfxyuz7q532.cloudfront.net/usss2025/shimasaka/bgbg.jpg") repeat;
  background-size: contain;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1.6;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-out;
  opacity: 1;
  color: #cc9c3b;
}
a:hover {
  opacity: 0.7;
}

.menu {
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-out;
  opacity: 1;
}

.menu.active {
  opacity: 0.6;
}

/* ----------- no-js ----------- */
html#no-js #countdown_time {
  display: none;
}

#noscriptBlock {
  width: 520px;
  position: absolute;
  top: 27px;
  left: 27px;
  padding: 10px;
  background: #FFFFFF;
}

#noscriptBlock p {
  font-size: 14px;
  background: #FDF3F2;
  color: #D72400;
  border: 1px dotted #F4C3BE;
  padding: 6px 10px;
  line-height: 1.4;
}

#container {
  z-index: 100;
  position: relative;
  top: 0;
  overflow-y: scroll;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(https://d20dfxyuz7q532.cloudfront.net/usss2025/shimasaka/bg2.jpg) no-repeat 30% top;
  background-size: cover;
}

/* ============================================
 2.headerArea
============================================ */
header {
  background: transparent;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
}
header .official {
  display: flex;
}
header .official a {
  display: inline-block;
  margin: 0 5px;
}
header .bnr_onlilne {
  position: absolute;
  left: 2%;
  bottom: -20%;
  width: 100px;
}

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  display: inline-block;
  transition: all 0.4s;
}

.menu_button {
  position: fixed;
  top: 10px;
  margin: 0px 0 0;
  width: 40px;
  height: 40px;
  right: 3%;
  opacity: 1 !important;
  z-index: 1000000;
}
.menu_button .menu_ico {
  position: absolute;
  left: 0;
  top: 0;
}
.menu_button .menu_on {
  display: none;
}
.menu_button .menu_off {
  display: block;
}

.menu_button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.menu_button span:nth-of-type(1) {
  top: 0;
}

.menu_button span:nth-of-type(2) {
  top: 10px;
}

.menu_button span:nth-of-type(3) {
  bottom: 0;
}

/*-----------  active  ------------*/
.menu_button.active .menu_on {
  display: block;
}
.menu_button.active .menu_off {
  display: none;
}

.menu_button.active span {
  background: #fff;
}

.menu_button.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.menu_button.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.menu_button.active span:nth-of-type(3) {
  opacity: 0;
}

.nav_top {
  display: none;
}

#menu_sp {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200000;
  padding: 70px 5% 70px 5%;
  display: none;
  height: 100vh;
}
#menu_sp div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  background-size: 960px 540px;
  background-position: 70% 30%;
}
#menu_sp ul {
  position: relative;
}
#menu_sp ul li {
  position: relative;
  line-height: 1;
  margin: 30px auto;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-size: 1.0833333333rem;
}
#menu_sp ul li:first-child {
  border-top: none;
}
#menu_sp ul li .new {
  position: absolute;
  left: -3em;
  top: 0;
  font-size: 14px;
  font-size: 1.1666666667rem;
  color: #ffd24a;
}
#menu_sp ul li a {
  color: #fff5d3;
  letter-spacing: 0.1px;
  width: 75%;
  padding: 0;
  line-height: 1.3;
  display: inline-block;
  font-size: 14px;
  font-size: 4.375vw;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}
#menu_sp ul li a small {
  font-size: 12px;
  font-size: 3.75vw;
}
#menu_sp ul li.official {
  display: flex;
  margin-top: 30px;
}
#menu_sp ul li.official a {
  line-height: 30px;
  width: auto;
  border-bottom: none;
  margin: 0 8px;
}
#menu_sp ul li.official a i {
  font-size: 22px;
  font-size: 1.8333333333rem;
}

/* ============================================
3.contentsArea
============================================ */
#contentArea {
  z-index: 10;
  position: relative;
  top: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 870px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.7);
}
#contentArea.AttentionInner {
  background: rgba(255, 255, 255, 0.85);
  padding-top: 20px;
}
#contentArea.AttentionInner .wrapper {
  max-width: 800px;
}

.contentAreaInner {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
}

.content {
  padding: 40px 0 60px;
  border-bottom: 2px solid #000;
}
.content h2 {
  font-size: 20px;
  font-size: 1.6666666667rem;
  font-family: "Times New Roman", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 40px;
}

.content_inner {
  padding: 0;
  background: #171717;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

section {
  position: relative;
  margin: 0px auto 10px;
  padding-top: 0px;
}

#top {
  padding: 0;
  margin: 0 auto;
}
#top .logo {
  margin: 0 auto;
  display: block;
  position: relative;
}
/*---------------- NEWS ---------------*/
#info {
  padding-top: 0;
  margin-top: 0;
  position: relative;
  background: url("https://d20dfxyuz7q532.cloudfront.net/usss2025/shimasaka/bg2.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
#info .catchy {
  position: relative;
  text-align: center;
}
#info .catchy img {
  width: 100%;
}
#info .catchy .disc01 {
  background: #fff;
  opacity: 0;
  width: 30%;
  height: 1%;
  position: absolute;
  top: 26%;
  left: 49%;
}
#info .catchy .disc02 {
  background: #fff;
  opacity: 0;
  width: 30%;
  height: 1%;
  position: absolute;
  top: 94.9%;
  left: 35%;
}
#info .bnr_req {
  margin: 20px auto;
  text-align: center;
}
#info .btn_goods {
  width: 17%;
  position: absolute;
  bottom: 6.5%;
  right: 4%;
  max-width: none;
}
#info .btn_photo {
  width: 46%;
  position: absolute;
  top: 7.5%;
  left: 50%;
  max-width: none;
}
#info .box_content {
  width: 94%;
  margin: 10px auto 0;
}

#schedule .link_disc {
  position: absolute;
  left: 51%;
  top: 26%;
  height: 10px;
  width: 20%;
  background: transparent;
}
#schedule .link_disc2 {
  position: absolute;
  left: 51%;
  top: 87%;
  height: 10px;
  width: 20%;
  background: transparent;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.flex div {
  width: 50%;
  margin: 0 0 0 2%;
}

#ticket {
  margin-bottom: 0;
}
#ticket .url01 {
  position: absolute;
  width: 54%;
  left: 24%;
  top: 84.3%;
}
#ticket .eplus-qa {
  display: block;
  position: absolute;
  width: 24%;
  height: 2%;
  left: 68%;
  top: 91.7%;
  background: transparent;
}
#ticket .info_disc01 {
  display: block;
  opacity: 0 !important;
  position: absolute;
  top: 14.6%;
  width: 30%;
  background: #fff;
  height: 1%;
  left: 57%;
}
#ticket .sold {
  position: absolute;
  top: 6%;
  left: 15%;
  width: 70%;
}
#ticket .sold.sold02 {
  position: absolute;
  top: 17%;
  left: 15%;
  width: 70%;
}
#ticket .ticket01 {
  position: absolute;
  width: 92%;
  left: 4%;
  top: 34%;
}
#ticket .ticket02 {
  position: absolute;
  width: 70%;
  left: 15%;
  top: 67%;
}
#ticket .ticket_rep {
  position: absolute;
  width: 74%;
  left: 13%;
  top: 18%;
}
#ticket .ticket0202 {
  position: relative;
  width: 100%;
  margin: 30px auto 20px;
}
#ticket .ticket_fc {
  position: absolute;
  top: 53%;
  left: 3.8%;
  width: 92%;
}

.info_disc02 {
  display: block;
  opacity: 0 !important;
  position: absolute;
  top: 68.3%;
  width: 30%;
  background: #fff;
  height: 0.8%;
  left: 65%;
}

.info_disc03 {
  display: block;
  opacity: 0;
  position: absolute;
  top: 63%;
  width: 20%;
  background: #fff;
  height: 1%;
  left: 66%;
}

#ticket02 {
  margin-bottom: 0;
}
#ticket02 .url01 {
  position: absolute;
  width: 49%;
  left: 23%;
  top: 20%;
}
#ticket02 .urlarakigumi {
  position: absolute;
  width: 84%;
  left: 8.5%;
  top: 80%;
}

#notice .btn_wrap_inner {
  position: absolute;
  top: 3.7%;
  left: 7%;
  display: flex;
  width: 86%;
}
#notice .btn_wrap_inner a {
  display: inline-block;
  margin-bottom: 3px;
}

.contact {
  margin: 10px auto 0;
  margin-left: 8%;
  text-align: center;
  font-weight: bold;
  position: relative;
  width: 67%;
}
.contact a {
  color: #fff;
}
.contact .url_otoiawase {
  position: absolute;
  top: 60%;
  left: 69%;
  width: 56%;
}
.contact .btn_back {
  width: 40%;
}

#notice01 {
  position: absolute;
  top: 8.3%;
  width: 100%;
  height: 1px;
  left: 0;
  background: #fff;
  opacity: 0;
}

#notice02 {
  position: absolute;
  top: 38.3%;
  width: 100%;
  height: 1px;
  left: 0;
  background: #fff;
  opacity: 0;
}

#notice03 {
  position: absolute;
  top: 87.9%;
  width: 100%;
  height: 1px;
  left: 0;
  background: #fff;
  opacity: 0;
}

#attention {
  margin-top: 0;
  padding-bottom: 70px;
}
#attention .url_cocoa {
  position: absolute;
  left: 2%;
  top: 9.4%;
  width: 96%;
}
#attention .url_eplus {
  position: absolute;
  left: 2%;
  top: 12.8%;
  width: 96%;
}
#attention .btn_wrap {
  position: relative;
}
#attention .btn_wrap_inner {
  display: flex;
  margin: 5% 0 0 -1%;
}
#attention .btn01 {
  width: 24%;
  margin: 0 0 0 1%;
}
#attention .btn02 {
  width: 24%;
  margin: 0 0 0 1%;
}
#attention .btn03 {
  width: 24%;
  margin: 0 0 0 1%;
}
#attention .btn04 {
  width: 24%;
  margin: 0 0 0 1%;
}
#attention .ticket_url01 {
  position: absolute;
  width: 43%;
  top: 41%;
  left: 35%;
}
#attention .ticket_url02 {
  position: absolute;
  width: 32%;
  top: 54.3%;
  left: 45%;
}
#attention .ticket_url03 {
  position: absolute;
  width: 67%;
  top: 47.6%;
  left: 12%;
}
#attention .ticket_url04 {
  position: absolute;
  width: 53%;
  top: 51.1%;
  left: 12%;
}
#attention .app_area {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96%;
}
#attention .app_area a {
  display: block;
}
#attention .app_area a:last-child {
  margin-top: 1%;
}
#attention .app_area.app_area01 {
  top: 13.2%;
  left: 2%;
}
#attention .app_area.app_area02 {
  top: 37.2%;
  left: 2%;
}
#attention .eplus_contact {
  display: block;
  position: absolute;
  top: 33.9%;
  left: 36%;
  opacity: 1;
  height: 15px;
  width: 22%;
}
#attention .mibunsho {
  position: absolute;
  left: 5%;
  top: 19%;
  width: 90%;
}

.attention_block {
  margin-top: -30px;
}

.attention_block2 {
  margin-top: -10px;
}

.attention_block3 {
  margin-top: -20px;
}

#attention03a {
  position: absolute;
  top: 74%;
  height: 1px;
  background: #fff;
  width: 100%;
  left: 0;
  opacity: 0;
}

.lity {
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 10000000000;
}

/* ============================================
 4.footerArea
============================================ */
footer {
  position: relative;
  z-index: 100000;
  padding: 20px 0;
}
footer .footer_logo {
  margin: auto;
  width: 80px;
  display: block;
}
footer .copy {
  position: relative;
  right: 0;
  bottom: 0%;
  text-align: center;
  color: #000;
  font-size: 11px;
  font-size: 0.9166666667rem;
}

.popup_banner {
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-out;
  opacity: 1;
}
.popup_banner:hover {
  opacity: 0.7;
}

.popup_caution, .popup {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000000;
}
.popup_caution .popup_bg, .popup .popup_bg {
  background: #000;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.popup_caution .popup_wrapper, .popup .popup_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.popup_caution .popup_container, .popup .popup_container {
  position: relative;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5333333333);
  padding: 0% 0;
  margin-top: 7%;
  margin-bottom: 7%;
}
.popup_caution .url0308, .popup .url0308 {
  position: absolute;
  top: 23.2%;
  left: 7%;
  width: 82%;
}
.popup_caution .url02, .popup .url02 {
  position: absolute;
  top: 81.4%;
  left: 9%;
  width: 82%;
}
.popup_caution .close, .popup .close {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  cursor: pointer;
}
.popup_caution .popup_close, .popup .popup_close {
  position: fixed;
  top: 1%;
  right: 5%;
  width: 10%;
  max-width: 70px;
  cursor: pointer;
}

#caution01 .url01 {
  position: absolute;
  top: 65%;
  left: 10%;
  width: 80%;
}
#caution01 .url02 {
  position: absolute;
  top: 72.7%;
  left: 10%;
  width: 80%;
}
#caution01 .url03 {
  position: absolute;
  top: 90.2%;
  left: 39%;
  width: 53%;
}
#caution01 .url04 {
  position: absolute;
  top: 95.6%;
  left: 34%;
  width: 55%;
}

.no_pc {
  display: inline-block;
}

.no_sp {
  display: none;
}

.url01 {
  position: absolute;
  width: 36%;
  left: 35%;
  top: 47%;
}

.url02 {
  position: absolute;
  width: 28%;
  left: 44%;
  top: 58.5%;
}

.url03 {
  position: absolute;
  width: 41%;
  left: 38%;
  top: 73.9%;
}

.url04 {
  position: absolute;
  width: 44%;
  left: 42.5%;
  top: 77%;
}

@media screen and (min-width: 900px) {
  .no_pc {
    display: none;
  }
  .no_sp {
    display: inline-block;
  }
  #container {
    z-index: 100;
    position: relative;
    top: 0;
    overflow-y: scroll;
  }
  #bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(https://d20dfxyuz7q532.cloudfront.net/usss2025/shimasaka/bg.jpg) no-repeat center 20%;
    background-size: cover;
  }
  /* ============================================
   2.headerArea
  ============================================ */
  header {
    background: transparent;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
  }
  header .official {
    display: flex;
  }
  header .official a {
    display: inline-block;
    margin: 0 5px;
  }
  header .bnr_onlilne {
    position: absolute;
    left: 2%;
    bottom: -20%;
    width: 100px;
  }
  /*-----------------------------------------------------------------
    ハンバーガーメニュー
  ------------------------------------------------------------------*/
  .menu_button, .menu_button span {
    display: inline-block;
    transition: all 0.4s;
  }
  .menu_button {
    position: fixed;
    top: 20px;
    margin: 10px 0 0;
    width: 60px;
    height: 60px;
    right: 5%;
  }
  .menu_button .menu_ico {
    position: absolute;
    left: 0;
    top: 0;
  }
  .menu_button .menu_on {
    display: none;
  }
  .menu_button .menu_off {
    display: block;
  }
  .menu_button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }
  .menu_button span:nth-of-type(1) {
    top: 0;
  }
  .menu_button span:nth-of-type(2) {
    top: 10px;
  }
  .menu_button span:nth-of-type(3) {
    bottom: 0;
  }
  /*-----------  active  ------------*/
  .menu_button.active .menu_on {
    display: block;
  }
  .menu_button.active .menu_off {
    display: none;
  }
  .menu_button.active span {
    background: #fff;
  }
  .menu_button.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .menu_button.active span:nth-of-type(2) {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
  .menu_button.active span:nth-of-type(3) {
    opacity: 0;
  }
  .nav_top {
    display: none;
  }
  #menu_sp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 200000;
    padding: 105px 5% 80px 5%;
    display: none;
    height: 100vh;
  }
  #menu_sp div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1920px 1080px;
    background-position: 70% 30%;
  }
  #menu_sp ul {
    position: relative;
  }
  #menu_sp ul li {
    position: relative;
    line-height: 50px;
    margin: 20px auto;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-size: 1.0833333333rem;
  }
  #menu_sp ul li:first-child {
    border-top: none;
  }
  #menu_sp ul li .new {
    position: absolute;
    left: -3em;
    top: 0;
    font-size: 14px;
    font-size: 1.1666666667rem;
    color: #ffd24a;
  }
  #menu_sp ul li a {
    width: 50%;
    padding: 0;
    display: inline-block;
    font-size: 28px;
    font-size: 2.3333333333rem;
    text-align: center;
    font-weight: 400;
    font-style: normal;
  }
  #menu_sp ul li a small {
    font-size: 24px;
    font-size: 2rem;
  }
  #menu_sp ul li a img {
    width: 300px;
  }
  #menu_sp ul li.official {
    display: flex;
    margin-top: 30px;
  }
  #menu_sp ul li.official a {
    line-height: 30px;
    width: auto;
    border-bottom: none;
    margin: 0 8px;
  }
  #menu_sp ul li.official a i {
    font-size: 22px;
    font-size: 1.8333333333rem;
  }
  /* ============================================
  3.contentsArea
  ============================================ */
  #contentArea {
    z-index: 10;
    position: relative;
    top: 0;
    margin: 0 auto;
    width: 92%;
    max-width: 870px;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.68);
  }
  #contentArea.AttentionInner {
    background: rgba(255, 255, 255, 0.85);
    padding-top: 20px;
  }
  #contentArea.AttentionInner .wrapper {
    max-width: 800px;
  }
  .contentAreaInner {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
  }
  .content {
    padding: 40px 0 60px;
    border-bottom: 2px solid #000;
  }
  .content h2 {
    font-size: 20px;
    font-size: 1.6666666667rem;
    font-family: "Times New Roman", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 40px;
  }
  .content_inner {
    padding: 0;
    background: #171717;
  }
  .wrapper {
    width: 100%;
    margin: 0 auto;
  }
  section {
    position: relative;
    margin: 0px auto 0px;
    padding-top: 0px;
  }
  #top {
    padding: 0;
    margin: 0 auto;
  }
  #top .logo {
    margin: 0 auto;
    display: block;
    position: relative;
  }
  /*---------------- NEWS ---------------*/
  #info {
    margin-top: 0;
    position: relative;
  }
  #info .catchy {
    position: relative;
    text-align: center;
  }
  #info .catchy img {
    width: 100%;
  }
  #info .catchy .disc01 {
    background: #fff;
    opacity: 0;
    width: 30%;
    height: 1%;
    position: absolute;
    top: 26%;
    left: 49%;
  }
  #info .catchy .disc02 {
    background: #fff;
    opacity: 0;
    width: 30%;
    height: 1%;
    position: absolute;
    top: 94.9%;
    left: 35%;
  }
  #info .bnr_req {
    margin: 20px auto;
    text-align: center;
  }
  #info .btn_goods {
    width: 17%;
    position: absolute;
    bottom: 6.5%;
    right: 4%;
    max-width: none;
  }
  #info .box_content {
    width: 92%;
    margin: 10px auto 10px;
  }
  #schedule .link_disc {
    position: absolute;
    left: 51%;
    top: 26.5%;
    height: 14px;
    width: 20%;
    background: transparent;
  }
  #schedule .link_disc2 {
    position: absolute;
    left: 51%;
    top: 87.5%;
    height: 14px;
    width: 20%;
    background: transparent;
  }
  .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .flex div {
    width: 50%;
    margin: 0 0 0 2%;
  }
  #ticket {
    margin-bottom: 0;
  }
  #ticket .url01 {
    position: absolute;
    width: 54%;
    left: 24%;
    top: 84.3%;
  }
  #ticket .eplus-qa {
    display: block;
    position: absolute;
    width: 24%;
    height: 2%;
    left: 68%;
    top: 91.7%;
    background: transparent;
  }
  #ticket .info_disc01 {
    display: block;
    opacity: 0 !important;
    position: absolute;
    top: 14.6%;
    width: 30%;
    background: #fff;
    height: 1%;
    left: 57%;
  }
  #ticket .sold {
    position: absolute;
    top: 6%;
    left: 15%;
    width: 70%;
  }
  #ticket .sold.sold02 {
    position: absolute;
    top: 17%;
    left: 15%;
    width: 70%;
  }
  #ticket .ticket01 {
    position: absolute;
    width: 92%;
    left: 4%;
    top: 34%;
  }
  #ticket .ticket02 {
    position: absolute;
    width: 70%;
    left: 15%;
    top: 67%;
  }
  #ticket .ticket_rep {
    position: absolute;
    width: 74%;
    left: 13%;
    top: 18%;
  }
  #ticket .ticket0202 {
    position: relative;
    width: 100%;
    margin: 30px auto 20px;
  }
  #ticket .ticket_fc {
    position: absolute;
    top: 53%;
    left: 3.8%;
    width: 92%;
  }
  .info_disc02 {
    display: block;
    opacity: 0 !important;
    position: absolute;
    top: 68.3%;
    width: 30%;
    background: #fff;
    height: 0.8%;
    left: 65%;
  }
  .info_disc03 {
    display: block;
    opacity: 0;
    position: absolute;
    top: 63%;
    width: 20%;
    background: #fff;
    height: 1%;
    left: 66%;
  }
  #ticket02 {
    margin-bottom: 0;
  }
  #ticket02 .url01 {
    position: absolute;
    width: 49%;
    left: 23%;
    top: 20%;
  }
  #ticket02 .urlarakigumi {
    position: absolute;
    width: 84%;
    left: 8.5%;
    top: 80%;
  }
  #notice .btn_wrap_inner {
    position: absolute;
    top: 3.7%;
    left: 7%;
    display: flex;
    width: 86%;
  }
  #notice .btn_wrap_inner a {
    display: inline-block;
    margin-bottom: 3px;
  }
  .contact {
    margin: 10px auto 0;
    margin-left: 8%;
    text-align: center;
    font-weight: bold;
    position: relative;
    width: 67%;
  }
  .contact a {
    color: #fff;
  }
  .contact .url_otoiawase {
    position: absolute;
    top: 60%;
    left: 69%;
    width: 56%;
  }
  .contact .btn_back {
    width: 40%;
  }
  .lity {
    background: rgba(0, 0, 0, 0.8) !important;
  }
  /* ============================================
   4.footerArea
  ============================================ */
  footer {
    position: relative;
    z-index: 100000;
    padding: 30px 0;
  }
  footer .footer_logo {
    margin: auto;
    width: 80px;
    display: block;
  }
  footer .copy {
    margin-top: 20px;
    position: relative;
    right: 0;
    bottom: 0%;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-size: 1.5rem;
  }
  .popup_caution, .popup {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1000000;
  }
  .popup_caution .popup_bg, .popup .popup_bg {
    background: #000;
    background-size: cover;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .popup_caution .popup_wrapper, .popup .popup_wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .popup_caution .popup_container, .popup .popup_container {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    width: auto;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .popup_caution .url0308, .popup .url0308 {
    position: absolute;
    top: 23.2%;
    left: 7%;
    width: 82%;
  }
  .popup_caution .url02, .popup .url02 {
    position: absolute;
    top: 81.4%;
    left: 9%;
    width: 82%;
  }
  #attention .eplus_contact {
    display: block;
    position: absolute;
    top: 34.5%;
    left: 36%;
    opacity: 1;
    height: 15px;
    width: 22%;
  }
  #attention .ticket_url01 {
    position: absolute;
    width: 43%;
    top: 41.5%;
    left: 35%;
  }
  #attention .ticket_url02 {
    position: absolute;
    width: 32%;
    top: 54.8%;
    left: 45%;
  }
  #attention .ticket_url03 {
    position: absolute;
    width: 67%;
    top: 48.1%;
    left: 12%;
  }
  #attention .ticket_url04 {
    position: absolute;
    width: 53%;
    top: 51.6%;
    left: 12%;
  }
  .attention_block {
    margin-top: -37px;
  }
  .attention_block2 {
    margin-top: -17px;
  }
  .attention_block3 {
    margin-top: -27px;
  }
  #attention03a {
    position: absolute;
    top: 74%;
    height: 1px;
    background: #fff;
    width: 100%;
    left: 0;
    opacity: 0;
  }
}

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