@charset "utf-8";

/*===================================================
    OP:LOADER
====================================================*/
.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

.mainWrap .action {
  opacity: 0;
  transition: 1s ease-out;
}

.loaded .action {
  opacity: 1;
}

.loaded .act1 {
  transition-delay: 1.5s;
}

/*===================================================
	ani
====================================================*/
.anim {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  transform: translateY(30px);
}

.anim.on {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 960px) {
  .anim {
    transform: translateY(20px);
  }
}

/*===================================================
    bgBox
====================================================*/
.bgBox {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, -1px);
}

.bgBox .bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.bgBox .bg01 {
  /*background: #e1e1e1;*/
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*===================================================
	memu
====================================================*/
.navigation .headerNav li:after {
  content: "";
  position: absolute;
  right: -26px;
  font-size: 80%;
  opacity: 0.5;
}

.navigation .headerNav li:last-child:after {
  content: none;
}

.navigation .headerNav li a {
  font-weight: 600;
  position: relative;
}

.navigation .headerNav li a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s ease;
}

.hamBtn {
  display: block;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 35px;
  height: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 9998;
}

.hamBtn span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: #222;
  transition: all 0.3s ease;
}

.hamBtn :nth-of-type(1) {
  top: 0;
}

.hamBtn :nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamBtn :nth-of-type(3) {
  bottom: 0;
}

.hamBtn.open span {
  background: #fff;
}

.hamBtn.open span:nth-of-type(1) {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}

.hamBtn.open span:nth-of-type(2) {
  opacity: 0;
}

.hamBtn.open span:nth-of-type(3) {
  transform: translateY(50%) rotate(45deg);
  bottom: 50%;
}

.navigation {
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  transition: all 0.5s ease-out;
}

.navigation.active {
  transition: opacity 0.5s ease;
  pointer-events: auto;
  opacity: 1;
}

.navigation .headerNav {
  margin: 0 auto;
  position: fixed;
  top: 0;
  padding: 0px 0px 60px;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  background: #0d0d0d;
}

.navigation .headerNav li {
  padding: 0;
  position: relative;
  margin: 0 0 20px;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Cormorant+Garamond", serif;
}

.navigation .headerNav li:last-child {
  margin: 0;
}

.navigation .headerNav li:after {
  content: none;
}

.navigation .headerNav li a {
  font-size: 150%;
}

.navigation .headerNav li a:hover {
  opacity: 0.7;
}

.heroNavLogo {
  width: 120px;
  margin: 0px 0 60px !important;
}

@media screen and (max-width: 960px) {
  .navigation .headerNav {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    object-fit: cover;
  }

  .hamBtn {
    right: 20px;
    top: 20px;
    width: 30px;
    height: 25px;
  }

  .hamBtn span {
    background: #222;
  }

  .heroNavLogo {
    margin: 0px 0 40px !important;
  }
}

/*===================================================
	all
====================================================*/
html {
  scroll-behavior: smooth;
}

.mainWrap {
  font-family: "Shippori Mincho", serif;
  position: relative;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #222222;
}

.container {
  position: relative;
}

section {
  padding: 120px 0;
}

section:nth-child(odd) {
  background: #ccc;
}

section h3 {
  position: relative;
  font-family: "Cormorant+Garamond", serif;
  text-align: center;
  margin: 0 0 60px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 2;
}

section h3:before {
  position: absolute;
  font-size: 200%;
  top: 52%;
  left: 50%;
  opacity: 0.2;
  font-weight: 400;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #b1b1b1;
  z-index: -1;
}

section:nth-child(odd) h3:before {
  opacity: 0.4;
}

.container #schedule h3:before {
  content: "SCHEDULE";
}

.container #ticket h3:before {
  content: "TICKET";
}

.container #goods h3:before {
  content: "GOODS";
}

.container #special h3:before {
  content: "SPECIAL";
}

section .inBox {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 40px;
}

.btn--main {
  display: block;
  text-align: center;
  padding: 15px 30px;
  width: 100%;
  max-width: 350px;
  background: #222;
  border: 1px solid #222;
  margin: 0 auto 30px;
  font-weight: bold;
  color: #fff;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none;
  }

  a {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .btn--main:hover {
    background: #fff;
    color: #222;
  }
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }

  html {
  }

  .mainWrap {
  }

  .container {
  }

  section {
    padding: 60px 0 75px;
  }

  section h3 {
    margin: 0 0 30px;
    font-size: 36px;
    overflow: hidden;
    line-height: 1.75;
  }

  section .inBox {
    margin: 0 auto 20px;
  }
}

/*===================================================
	hero
====================================================*/
.heroView {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  z-index: 1;
}

.heroView .heroInner {
  position: relative;
  height: 100%;
}

.heroView .logo {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-9%, -50%);
  -webkit-transform: translate(-9%, -50%);
  -ms-transform: translate(-9%, -50%);
  width: 40%;
}

.heroView .kvBox {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  padding: 0;
  position: relative;
  /*left: 12%;*/
  top: 0;
  transform: translate3d(0, 0, -1px);
  z-index: -2;
}

.heroView .kvBox .kv01 {
  background: url(/static/yuyategoshi/fanclub/feature/2026tour/img/ph_kv2602_02_vMKiTbGK.jpg)
    no-repeat center center;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.heroView .kvBox .kv {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.heroView .kvItem {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.heroView .kvItem img {
  width: 37vw;
}

.heroView .scrollarrow {
  width: 1px;
  height: 60px;
  position: absolute;
  right: 50%;
  bottom: 30px;
  z-index: 1;
  background: #222;
  animation: scrollarrow 3s cubic-bezier(0.19, 1, 0.22, 1) 0.5s infinite;
}

@keyframes scrollarrow {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}

.heroView .sns_wrap {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 9;
}

.heroView .sns_wrap .menuList {
  display: flex;
}

.heroView .sns_wrap .menuList li {
  margin-right: 20px;
}

.heroView .sns_wrap .menuList li:last-child {
  margin-right: 0;
}

.heroView .sns_wrap .menu_official .official_link .menu_icon a {
  color: #222;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.heroView .sns_wrap .menu_official .official_link .menu_icon:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 961px) {
  .heroView .sns_wrap .menu_official .official_link .menu_icon a i {
    transition: 0.3s;
  }

  .heroView .sns_wrap .menu_official .official_link .menu_icon a:hover i {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1200px) {
  .heroView .kvBox {
    /*left: 21%;*/
  }

  .heroView .kvItem img {
    width: 100%;
    transform: translateX(-3vw);
  }
}

@media screen and (max-width: 960px) {
  .heroView {
    min-height: 450px;
  }

  .heroView .logo {
    position: absolute;
    top: 40%;
    left: 18%;
    transform: translate(-9%, -50%);
    -webkit-transform: translate(-10%, -15%);
    -ms-transform: translate(-9%, -50%);
    width: 80%;
  }

  .heroView .kvBox {
    left: 0;
    top: 0;
  }

  .heroView .kvBox .kv01 {
    background: url(/static/yuyategoshi/fanclub/feature/2026tour/img/ph_kv2602_sp_vMKiTbGK.jpg)
      no-repeat center center;
    background-position: top center;
    background-size: cover;
    /*left: -140px;*/
    /*top: 122px;*/
  }

  .heroView .kvBox .kv {
    width: 100%;
  }
  .heroView .kvItem {
    top: -42vw;
  }

  .heroView .kvItem img {
    min-height: inherit;
    height: auto;
    width: 100vw;
  }

  .heroView .scrollarrow {
    right: 20px;
    bottom: 20px;
  }

  .heroView .sns_wrap {
    bottom: 20px;
    left: 20px;
  }

  .heroView .sns_wrap .menuList {
    display: block;
  }

  .heroView .sns_wrap .menuList li {
    margin-right: 0;
  }

  .heroView .sns_wrap .menuList li:last-child {
    margin-bottom: 0;
  }

  .heroView .sns_wrap .menu_official .official_link .menu_icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 18px;
    color: #000;
  }
}

@media screen and (max-width: 600px) {
  .heroView .kvItem {
    top: -5vw;
  }
}

/* ---- hero background stabilize ---- */
.heroView {
  position: relative;
  background: #0000;
}

.heroView .kvBox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;

  z-index: 0; /* -2 をやめる */
  transform: none; /* translateZ(-1px) をやめる */
}

.heroView .kvBox .kv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroView .kvBox .kv01 {
  width: 100%;
  height: 100%;
}

/* SNSは前面 */
.heroView .sns_wrap {
  z-index: 2;
}

/*===================================================
	schedule
====================================================*/

dl.scheduleBox {
  margin: 0px auto 0px;
  border-bottom: solid 1px;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}
dl.scheduleBox:first-of-type {
  border-top: 1px solid;
}

dl.scheduleBox.osaka {
  border-top: solid 1px;
}
dl.scheduleBox dt {
  position: relative;
}
dl.scheduleBox dt .pc {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
dl.scheduleBox dt .main {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 0px 0;
  line-height: 1.5;
  width: 100%;
}
dl.scheduleBox dt .sub:nth-of-type(1) {
  width: 27%;
}
dl.scheduleBox dt .sub:nth-of-type(2) {
  width: 70%;
  font-size: 14px;
  font-weight: bold;
}
dl.scheduleBox dt .sub span.red {
  font-weight: normal;
  color: #ff77bd;
  width: 100%;
  height: auto;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}
dl.scheduleBox dt span.red:before,
dl.scheduleBox dt span.red:after {
  display: none;
}

dl.scheduleBox dt p.soldpc {
  display: inline-block;
  background: #fff2cc;
  font-size: 13px;
  padding: 0.5em;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 0 1em;
  color: #fff;
}

dl.scheduleBox dt .add_txt {
  width: auto;
  display: inline-block;
  position: relative;
  color: #ff67b5;
  border: 1px solid;
  line-height: 1;
  padding: 4px 7px;
  font-weight: bold;
  margin-left: 6px;
  font-size: 14px;
}

dl.scheduleBox dt p.addpc {
  display: inline-block;
  background: #231916;
  color: #fff;
  font-size: 13px;
  padding: 0.5em;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 0 1em;
}

dl.scheduleBox dt p.soldsp {
  display: none;
}
dl.scheduleBox dt p.addsp {
  display: none;
}

dl.scheduleBox .soldout {
  position: absolute;
  top: 0;
  right: 10px;
  background: #fff;
  color: #d82883;
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  padding: 8px 12px;
  transform: rotate(5deg);
  pointer-events: none;
}

dl.scheduleBox dt span {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

dl.scheduleBox dt span:before {
  width: 100%;
  height: 1px;
  background: #222;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}
dl.scheduleBox dt span:after {
  width: 100%;
  height: 1px;
  background: #222;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease-out;
}

dl.scheduleBox dt.active span:after {
  content: none;
}
dl.scheduleBox dt .event {
  font-weight: bold;
  color: #f18e46;
  font-size: 14px;
}

dl.scheduleBox .area {
  display: inline-block;
  background: #0d0d0d;
  color: #fff;
  font-weight: 500;
  padding: 0px 10px;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-right: 10px;
  width: 95px;
  text-align: center;
}

dl.scheduleBox .place {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  vertical-align: sub;
  margin-bottom: 5px;
}

dl.scheduleBox dd {
  display: none;
  padding: 15px 0 0 0;
}

dl.scheduleBox dd .txt {
  font-weight: bold;
  font-size: 15px;
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 0;
  width: 100%;
}

dl.scheduleBox dd .txt a {
  text-decoration: underline;
}

dl.scheduleBox dd .attentionBox {
  margin: 10px 0 0 0;
  background: #efefef;
  padding: 20px;
}
dl.scheduleBox dd .attentionBox dt {
  font-size: 12px;
  font-weight: bold;
}
dl.scheduleBox dd .attentionBox dd {
  display: block !important;
  padding: 10px 0 0 0;
}

.schedule_detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sch_info {
  text-align: center;
  margin-bottom: 50px;
}

.sch_date {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.sch_place {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 5px;
}

.sch_place .area {
  border: 2px solid;
  display: inline-block;
  line-height: 1.1;
  padding: 2px 8px 4px;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  margin-right: 10px;
}

.sch_time {
  font-size: 20px;
  font-weight: 700;
}

.sch_info_detail {
  display: inline-block;
  text-align: left;
  font-weight: 500;
  background: #ebebeb;
  padding: 25px 45px;
}

.inner .txt:last-child {
  margin-bottom: 0;
}

.tit {
  font-family: inherit;
}

dl.entryAttentionBox {
  margin: 50px auto 0px;
  text-align: center;
}

dl.entryAttentionBox dt {
  text-align: center;
  background: #fff;
  border: 1px solid #000;
  display: inline-block;
  margin: 0 auto;
  color: #000;
  padding: 20px 60px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  line-height: 1;
  font-weight: bold;
}

dl.entryAttentionBox dt span {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

dl.entryAttentionBox dt span:before {
  width: 100%;
  height: 2px;
  background: #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}
dl.entryAttentionBox dt span:after {
  width: 100%;
  height: 2px;
  background: #000;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease-out;
}

dl.entryAttentionBox dt.active span:after {
  content: none;
}

dl.entryAttentionBox dd {
  display: none;
  text-align: left;
  padding: 35px 30px 30px;
  z-index: 0;
  position: relative;
  margin: 50px 0 0;
  background: #fff;
}

dl.entryAttentionBox dd .tit {
  margin: 20px auto 0;
  font-weight: bold;
  font-size: 15px;
}

dl.entryAttentionBox dd .txt {
}

dl.entryAttentionBox dd .info {
  font-size: 13px;
  border-bottom: 1px solid #9999;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}

dl.entryAttentionBox dd .info:last-of-type {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
dl.entryAttentionBox dd .info .tit {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

dl.entryAttentionBox dd ul.infoBox {
}
dl.entryAttentionBox dd ul.infoBox li {
  padding: 5px 0 0px 1em;
  text-indent: -1em;
}

.totalInfo {
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  margin: 30px 0 0 0;
}
.totalInfo .tit {
  font-size: 15px;
  text-align: center;
  margin: 0 0 20px 0;
}
.totalInfo .txt {
  text-align: center;
  font-size: 14px;
}
.totalInfo .link {
  display: block;
  color: #d4659e;
  margin: 10px 0 0 0;
  font-weight: bold;
}

@media screen and (min-width: 961px) {
  dl.scheduleBox dd .txt a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  dl.scheduleBox dt span {
    width: 15px;
    height: 15px;
    right: 0;
  }

  dl.scheduleBox dt p.soldpc {
    display: none;
  }
  dl.scheduleBox dt {
    position: relative;
    font-size: 12px;
  }
  dl.scheduleBox dd .txt {
    font-weight: bold;
    font-size: 12px;
    width: 100%;
    margin-bottom: 5px;
    padding: 13px;
  }
  dl.scheduleBox dt .event {
    font-size: 11px;
  }
  dl.scheduleBox dt p.soldsp {
    display: inline-block;
    background: #fff2cc;
    font-size: 10px;
    padding: 0.5em;
    line-height: 1;
    font-weight: bold;
    margin: 0 0 0 0em;
    letter-spacing: -0.01em;
  }

  dl.scheduleBox dt p.addsp {
    display: inline-block;
    background: #231916;
    color: #fff;
    font-size: 10px;
    padding: 0.5em;
    line-height: 1;
    font-weight: bold;
    margin: 0 0 0 0em;
    letter-spacing: -0.01em;
  }

  dl.scheduleBox dt p.addpc {
    display: none;
  }
  dl.scheduleBox dt .sub:nth-of-type(1) {
    width: 85%;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.8;
    margin: 0 0 15px 0;
  }
  dl.scheduleBox dt .sub:nth-of-type(2) {
    width: 85%;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.8;
  }

  dl.scheduleBox {
    padding: 15px 0;
  }
  .section--detail .section .inner dl.scheduleBox:first-of-type {
    padding: 0 0 15px;
  }
  dl.scheduleBox dt .main {
    font-size: 13px;
    margin-bottom: 4px;
  }

  dl.scheduleBox dt .add_txt {
    font-size: 13px;
    padding: 4px 6px;
  }

  dl.scheduleBox .soldout {
    font-size: 15px;
    padding: 6px 9px;
  }

  dl.scheduleBox .place {
    font-size: 20px;
    vertical-align: -1px;
  }

  dl.scheduleBox .area {
    font-size: 14px;
    width: 67px;
    letter-spacing: 0.1em;
    padding: 0px 0px;
  }

  dl.entryAttentionBox {
    margin: 30px auto 0px;
  }

  dl.entryAttentionBox dd {
    padding: 20px;
    margin: 30px 0 0;
  }
}

/*===================================================
	ticket
====================================================*/

#ticket {
  background: #e1e1e1;
}

#ticket .subTit {
  text-align: center;
  margin: 0 auto 20px;
  padding: 5px 0;
  background: #0d0d0d;
  color: #fff;
  width: 30%;
  font-size: 20px;
  font-weight: bold;
}

#ticket .cs {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 0;
}

.btn .main.btn--main.btn_white {
  background: #fff;
  color: #1d1d1d;
}

.btn .main.btn--main.btn_blue {
  background: #bcbdbd;
}

.btn .main.btn--main.btnTrade {
  margin: 20px auto 0;
}

.section--detail .section.ticketArea {
  background: #d82883;
}

.ticketBox {
  margin: 0 auto 50px;
}

.ticketBox .entryTit {
  text-align: left;
  font-weight: bold;
  margin: 0 auto 15px;
}

table.ticketDetail {
  width: 100%;
  border: 1px solid;
  border-bottom: none;
  letter-spacing: 2px;
  margin: 0 0 30px;
  background: #fff;
}

table.ticketDetail.vr_table {
  box-shadow: 5px 5px 0 #222;
}

table.ticketDetail:last-child {
  margin-bottom: 0;
}

.ticketBox.end {
  margin: 0 auto 45px;
}

.ticketBox:last-child {
  margin-bottom: 0;
}

.ticketBox dl.ticketInBox {
  position: relative;
  padding: 30px 40px;
  background: #fff;
  /*border: 1px solid;*/
  box-shadow: 5px 5px #222;
}

.ticketBox dl.ticketInBox dt {
  position: relative;
  cursor: pointer;
}
.ticketBox dl.ticketInBox dt h2 {
  margin: 0;
}

.ticketBox dl.ticketInBox dt h2 .red {
  color: #d82883;
  font-size: 0.9em;
  display: inline;
}

.ticketBox dl.ticketInBox dt span {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.ticketBox dl.ticketInBox dt span:before {
  width: 100%;
  height: 1px;
  background: #2f2f2f;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}
.ticketBox dl.ticketInBox dt span:after {
  width: 100%;
  height: 1px;
  background: #2f2f2f;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease-out;
}

.ticketBox dl.ticketInBox dt.active span:after {
  content: none;
}
.ticketBox dl.ticketInBox dd {
  display: none;
  padding: 30px 0 0 0;
}

.ticketBox .normaltit {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.general_desc {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -15px;
}

table.ticketDetail tr {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid;
  width: 100%;
}
table.ticketDetail tr:last-child {
  border-bottom: 1px solid;
}
table.ticketDetail th {
  line-height: 1.5;
  vertical-align: middle;
  text-align: center;
  padding: 0 20px;
  width: 25%;
  border-right: 1px solid;
}
table.ticketDetail td {
  padding: 0 35px;
  text-align: left;
  line-height: 1.8;
  vertical-align: middle;
  font-weight: 500;
  width: 75%;
  font-size: 14px;
}
table.ticketDetail td .txt {
  margin: 10px 0 0;
  border-top: solid 1px;
  padding: 10px 0 0;
}
table.ticketDetail td .txt:nth-child(1) {
  border: none;
  padding: 0;
  margin: 0;
}

table.ticketDetail td p.upImg {
  width: 100px;
}

table.ticketDetail td span.sml {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

table.ticketDetail td span a {
  text-decoration: underline;
}

table.ticketDetail td span.bold {
  color: #ccc;
  font-size: 0.9em;
  letter-spacing: 0.2em;
}

.streamsection .ticketBox {
  margin: 0 auto 0px;
}

table.ticketDetail td .streamDetail {
  margin: 0 auto 10px;
}
table.ticketDetail td a.streamlink {
  text-decoration: underline;
}

table.ticketDetail td a {
  color: #d82883;
  text-decoration: underline;
}
.ticket_detail > li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.ticket_detail > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ticket_detail_txt {
  width: calc(100% - 160px);
  letter-spacing: 0.06em;
}

.ticket_detail_tit {
  width: 160px;
  padding-right: 15px;
}

.ticket_cap {
  font-size: 0.85em;
}

.cs {
  text-align: center;
  font-size: 26px;
  padding: 20px;
  letter-spacing: 0.35em;
  font-family: "Cormorant+Garamond", serif;
}
.ticketBox .cs {
  text-align: center;
  border: 1px solid;
  padding: 40px 0;
}

.ticketBox .tradetxt {
  text-align: center;
  border: 1px solid;
  padding: 40px 0;
  margin: 0 auto 40px;
}

.ticketEnd {
  padding: 40px;
  background: #fff7;
}

.ticketEnd .endText {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.ticketEnd .ticketBox {
  margin: 0 auto 30px;
}

.ticketEnd .ticketBox:last-child {
  margin: 0 auto;
}

@media screen and (min-width: 961px) {
}

@media screen and (max-width: 960px) {
  #ticket .subTit {
    margin: 0 auto 10px;
    width: 90%;
    font-size: 15px;
  }
  .cs {
    font-size: 16px;
    padding: 0;
  }
  .section--detail .ticketArea .sectionTit {
    text-shadow: 2px 2px 0 #d82883;
  }

  .ticketBox {
    margin: 0 auto 20px;
  }

  .ticketBox.end {
    margin: 0 auto 30px;
  }

  .ticketBox.end:last-child {
    margin: 0 auto 0px;
  }

  .ticketBox dl.ticketInBox::before {
    width: 10px;
  }

  .section--detail .section.ticketArea::after {
    width: 30%;
    bottom: 0;
    top: 75vw;
  }

  .section--detail .section.specialArea::after {
    width: 30%;
    bottom: 56vw;
  }

  .ticketBox .entryTit {
    font-size: 13px;
    text-align: left;
  }

  .ticketBox dl.ticketInBox dd {
    padding: 15px 0 0 0;
  }

  .ticketBox dl.ticketInBox {
    padding: 15px;
  }

  .ticketBox dl.ticketInBox dt span {
    width: 12px;
    height: 12px;
    right: 0;
  }

  table.ticketDetail {
    margin: 0 0 15px;
  }

  .general_desc {
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-top: 0;
    margin-bottom: 15px;
  }

  table.ticketDetail tr {
    padding: 15px 0;
  }

  table.ticketDetail th {
    text-align: left;
    padding: 0 6%;
    width: 100%;
    border-right: 0px solid;
    display: block;
    font-size: 12px;
    margin: 0 0 5px 0;
    font-weight: bold;
  }
  table.ticketDetail td {
    padding: 0 6%;
    text-align: left;
    display: block;
    font-size: 11px;
    width: 100%;
    letter-spacing: 0.075em;
    line-height: 1.75;
  }

  .ticket_detail_tit {
    width: 30%;
    padding-right: 5px;
  }

  .ticket_detail_txt {
    width: 70%;
  }

  .btn .main.btn--main.btnTrade {
    margin: 10px auto 0;
  }

  .ticketEnd {
    padding: 20px;
  }

  .ticketEnd .endText {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .ticketEnd .ticketBox {
    margin: 0 auto 20px;
  }

  .ticketBox .normaltit {
    font-size: 18px;
  }
}

/*===================================================
	vr
====================================================*/

.container #vr h3::before {
  content: "VR";
}

.vrBox {
  background: #fff;
  box-shadow: none;
  padding: 50px 30px;
}

.vrBox .ph img {
  margin: 0 auto;
  width: auto;
}

.vrBox .ph {
  text-align: center;
  margin: 0 auto 20px;
}

.vrBox .lead {
  text-align: center;
}
.vrBox .vrAttendBox {
}
.vrBox .vrAttendBox .tit {
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto;
}
.vrBox .vrAttendBox .txt {
  margin: 0px 0 20px;
}
.vrBox .vrAttendBox ul.attentionBox {
  margin-bottom: 20px;
}
.vrBox .vrAttendBox ul.attentionBox li {
  padding: 0px 0 0px 1em;
  text-indent: -1em;
  font-size: 13px;
}
.vrBox .vrAttendBox ul.attentionBox li a {
  text-decoration: underline;
}

table.ticketDetail.vr_table {
  box-shadow: none;
  border: none;
}

table.ticketDetail.vr_table tr:last-child {
  border-bottom: none;
}

@media screen and (max-width: 960px) {
  .vrBox .vrAttendBox {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .vrBox .vrAttendBox .tit {
    font-size: 14px;
  }

  .vrBox .lead {
    text-align: left;
    margin: 0 auto 5px;
    line-height: 1.8;
    font-size: 14px;
  }

  .vrBox {
    padding: 25px 15px;
  }

  .vrBox .vrAttendBox ul.attentionBox li {
    font-size: 12px;
  }

  .vrBox .ph.logo {
    width: 50%;
  }
}

/*===================================================
	streaming
====================================================*/

.container #streaming h3::before {
  content: "LIVESTREAMING";
}

.mainTit {
  margin: 0 auto;
}

.logoList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto 20px;
}

.logoList li {
  width: 47%;
}
#streaming .inBox {
  background: #fff;
  padding: 40px;
}

#streaming .logo {
  width: 350px;
  display: block;
  margin: 0 auto 40px;
}

.bnrList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto 50px;
}

.bnrList li:nth-child(1) {
  width: 43%;
}
.bnrList li:nth-child(2) {
  width: 51%;
}

.stepbox {
  margin: 30px 0;
  background: #eee;
  padding: 40px;
}

.stepbox:last-child {
  margin: 0;
}

.steptit {
  padding: 0;
  font-size: 21px;
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.15em;
}

.steplead {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 50px 0;
  width: 100%;
  padding: 0;
  border: none;
  font-weight: 500;
}

.stepbox .box_inner {
  border: 1px solid #222;
  padding: 30px;
  margin-bottom: 30px;
}

.stepbox .box_inner .dlTxt {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 20px 0;
}

.stepbox .box_inner .date {
  margin-bottom: 30px;
  display: block;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.stepbox .box_inner .date:last-child {
  margin-bottom: 0;
}

.streaming .step .date dl dt {
  font-size: 14px;
  margin: 0 0 5px 0;
}

.stepbox .box_inner .date .inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background: transparent;
  width: auto;
  padding: 0;
  border: none;
  outline: none;
  max-width: 100%;
}

.stepbox .box_inner .date .tit {
  padding: 0;
  font-size: 21px;
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #000;
}

.stepbox .box_inner .date dl {
  width: 50%;
  border-right: 1px solid;
  padding: 0 20px 0 0;
}

.stepbox .box_inner .date dl:last-child {
  border-right: none;
  margin: 0;
  padding: 0 0 0 20px;
}

.stepbox .contact {
  text-align: center;
}

.stepbox .contact .subTit {
  font-size: 14px;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.stepbox .contact a.link {
  margin: 0 0 20px 0;
  display: block;
  color: #000;
}

.stepbox .contact a.link:last-child {
  margin-bottom: 0;
}

.attentionList li {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-indent: -1em;
  margin: 0 0 5px 1em;
}

@media screen and (max-width: 960px) {
  .mainTit {
    margin: 0 auto 10px;
  }

  .logoList {
  }

  #streaming .inBox {
    padding: 20px;
  }

  #streaming .logo {
    width: 70%;
    display: block;
    margin: 0 auto 12px;
    line-height: 0;
  }

  .bnrList {
    width: 100%;
    margin: 0 auto 30px;
  }

  .stepbox {
    padding: 14px;
    margin: 20px 0;
  }

  .steptit {
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .steplead {
    font-size: 12px;
    margin: 0 0 20px 0;
  }

  .stepbox .box_inner {
    padding: 15px 12px;
    margin-bottom: 15px;
  }

  .stepbox .box_inner .date .tit {
    border-bottom: 1px solid #000;
    padding: 0 0 10px 0;
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .stepbox .box_inner .dlTxt {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .stepbox .box_inner .date {
    padding: 0;
    margin-bottom: 15px;
  }
  .stepbox .box_inner .date dl {
    width: 100%;
    border-bottom: 1px dotted #000;
    border-right: none;
    margin: 0 0 11px 0;
    padding: 0 0 10px 0;
  }
  .stepbox .box_inner .date dl:last-child {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .stepbox .box_inner .date dl dd {
    line-height: 1.6;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .stepbox .contact .subTit {
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: bold;
  }

  .stepbox .contact a.link {
    margin: 0 0 20px 0;
    display: block;
    color: #000;
    font-size: 13px;
    overflow-wrap: break-word;
  }

  .attentionList li {
    font-size: 11px;
    word-break: break-all;
  }
}

/*===================================================
	goods
====================================================*/
#goods {
  background: #ccc;
}

#goods .ph {
  margin: 0 auto 60px;
}
#goods .attentionArea .mainTit {
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  margin: 0 auto 30px;
}
#goods .attentionArea .box {
  padding: 40px;
  border: 1px solid;
  margin: 0 auto 30px;
  background: #fff;
}
#goods .attentionArea .box .tit {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  margin: 0 0 15px 0;
}
#goods .attentionArea .box .lead {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
#goods .attentionArea .box dl {
  padding: 20px;
  background: #eee;
  margin: 0 0 20px 0;
}
#goods .attentionArea .box dl dt {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 15px 0;
}
#goods .attentionArea .box dl dd {
}
#goods .attentionArea .box dl dd .list {
  margin: 0 0 15px 0;
}
#goods .attentionArea .box dl dd .list:last-of-type {
  margin: 0;
}
#goods .attentionArea .box dl dd .list li {
  text-indent: -1em;
  font-size: 14px;
  margin: 0 0 10px 1em;
}
#goods .attentionArea .box dl dd .list li:last-child {
  margin: 0 0 0 1em;
}
#goods .attentionArea .box dl dd .attentionList {
}
#goods .attentionArea .box dl dd .attentionList li {
}
#goods .attentionArea .box dl dd .attentionList li:last-child {
}
#goods .attentionArea .box dl dd .txt {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

@media screen and (min-width: 961px) {
}

@media screen and (max-width: 960px) {
  #goods .ph {
    margin: 0 auto 40px;
  }
  #goods .attentionArea .mainTit {
    text-align: center;
    font-size: 15px;
    margin: 0 auto 20px;
  }
  #goods .attentionArea .box {
    padding: 20px;
    margin: 0 auto 10px;
  }
  #goods .attentionArea .box .tit {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  #goods .attentionArea .box .lead {
    font-size: 12px;
    margin: 0 0 10px 0;
  }
  #goods .attentionArea .box dl {
    padding: 15px;
    margin: 0 0 10px 0;
  }
  #goods .attentionArea .box dl dt {
    font-size: 13px;
    margin: 0 0 10px 0;
  }
  #goods .attentionArea .box dl dd .list li {
    font-size: 12px;
  }
  #goods .attentionArea .box dl dd .txt {
    font-size: 12px;
  }
}

/*===================================================
	special
====================================================*/

#special {
  background: #e1e1e1;
}
#special h3 {
}

#special .specialTit {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  margin: 0 auto 15px;
  width: 90%;
  max-width: 900px;
  border-bottom: 1px solid;
  padding: 0 0 15px;
}

#special .specialSubTit {
  font-weight: bold;
  margin: 0 auto 35px;
  line-height: 1;
  width: 90%;
  max-width: 900px;
}

#special .inBox {
  position: relative;
  padding: 30px 40px;
  background: #fff;
  box-shadow: 5px 5px #222;
  margin: 0 auto 40px;
}

#special .inBox:last-child {
  margin: 0 auto;
}

#special .inBox .specialBoxTit {
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
}

#special .inBox .specialBoxTit:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
  margin-left: 10px;
}

#special .inBox:nth-of-type(3) .specialBoxTit {
  margin: 0 0 15px;
}

#special .inBox .specialTxt {
}

#special .inBox:nth-last-child(2) .specialTxt {
  margin: 0px 0 10px;
}

#special .inBox .specialTxt span {
  display: block;
  font-size: 14px;
  padding: 5px 0 0;
}

#special .inBox .prizeBox {
  margin: 0px 0 15px;
}

#special .inBox .prizeBox:last-child {
  margin: 0;
}

#special .inBox .prizeBox .prizeTit {
  padding: 5px 10px;
  display: inline-block;
  border-radius: 100px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  margin: 0 0 5px;
  font-size: 14px;
}

#special .inBox .prizeBox:nth-of-type(1) .prizeTit {
  background: #c79455;
}

#special .inBox .prizeBox:nth-of-type(2) .prizeTit {
  background: #222;
}

#special .inBox .prizeBox:nth-of-type(3) .prizeTit {
  color: #222;
  border: 1px solid;
}

#special .inBox .prizeBox .prizeTxt {
}

#special .inBox .prizeBox .prizeTxt span {
  font-size: 14px;
  padding: 0 0 0 10px;
}

#special .inBox .attList {
}

#special .inBox .attList li {
  font-size: 14px;
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 0 0 5px;
}

#special .inBox .attList li:last-child {
  margin: 0;
}

@media screen and (max-width: 960px) {
  #special {
  }

  #special h3 {
  }

  #special .specialTit {
    font-size: 18px;
    line-height: 1.3;
  }

  #special .specialSubTit {
    line-height: 1.3;
    margin: 0 auto 25px;
  }

  #special .inBox {
    padding: 20px;
    margin: 0 auto 25px;
  }

  #special .inBox .specialBoxTit {
    font-size: 16px;
  }

  #special .inBox .specialTxt {
  }

  #special .inBox .specialTxt span {
    display: block;
    padding: 0;
  }

  #special .inBox .prizeBox {
  }

  #special .inBox .prizeBox:last-child {
  }

  #special .inBox .prizeBox .prizeTit {
  }

  #special .inBox .prizeBox .prizeTxt {
  }

  #special .inBox .prizeBox .prizeTxt span {
    display: block;
    padding: 0;
  }

  #special .inBox .attList {
  }

  #special .inBox .attList li {
  }

  #special .inBox .attList li:last-child {
  }
}

/*===================================================
	footer
====================================================*/
.footer {
  background: #0d0d0d;
  padding: 60px 0;
  color: #fff;
}

.footer .sns_wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}

.footer .sns_wrap .menuList {
  display: flex;
}

.footer .sns_wrap .menuList li {
  margin-right: 25px;
}

.footer .sns_wrap .menuList li:last-child {
  margin-right: 0;
}

.footer .sns_wrap .menu_official .official_link .menu_icon a {
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer .sns_wrap .menu_official .official_link .menu_icon:last-child a {
  margin-bottom: 0;
}

.footer .sns_wrap .menu_official .official_link .menu_icon a i {
  font-size: 24px;
}

.footer .copyright {
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 961px) {
  .footer .sns_wrap .menu_official .official_link .menu_icon a i {
    transition: 0.3s;
  }

  .footer .sns_wrap .menu_official .official_link .menu_icon a:hover i {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .footer {
    padding: 40px 0;
  }

  .footer .sns_wrap {
  }

  .footer .sns_wrap .menuList {
  }

  .footer .sns_wrap .menuList li {
  }

  .footer .sns_wrap .menuList li:last-child {
  }

  .footer .sns_wrap .menu_official .official_link .menu_icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 0;
  }
}
