@charset "UTF-8";

/*===================================================
  OP:LOADER
====================================================*/
.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 99999;
}


/*===================================================
  OP:anim
====================================================*/
.anim.fadeX,
.anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.anim.fadeX {
    transform: translateX(20px);
}
.anim.fadeY {
    transform: translateY(20px);
}
.anim.fadeX.on,
.anim.fadeY.on {
    opacity: 1;
}
.anim.fadeX.on {
    transform: translateX(0px);
}
.anim.fadeY.on {
    transform: translateY(0px);
}


/*===================================================
  OP:ACCORDION
====================================================*/
.op_accord .accordionList {
}
.op_accord .accordionList .accordionTit {
  background: #ddd;
  padding: 20px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}
.op_accord .accordionList .accordionTit span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  transform: rotate(180deg) translateY(50%);
  transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
  transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
  content: "";
  position: absolute;
  top: 25%;
  width: 100%;
  height: 100%;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
}
.op_accord .accordionList .accordionDetail {
  display: none;
  padding: 40px;
  background: #efefef;
}

/* OP:ACCORD:PC-min-770 */
@media screen and (min-width: 770px) {
  .accordionList .accordionTit:hover {
    background: #ccc;
  }
}

/* OP:ACCORD:SP-max-769 */
@media screen and (max-width: 769px) {
  .accordionList .accordionDetail {
    padding: 20px;
  }
}


/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
  display: block;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 9999;
  box-sizing: border-box;
  transition-delay: 3.5s;
}
.hamSwitch {
}
.hamBtn .hamMenu {
  background: #000;
  position: relative;
  width: 45px;
  height: 45px;
}
.hamBtn span {
  display: block;
  position: absolute;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
  top: calc(50% - 12px);
}
.hamBtn .hamMenu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamBtn .hamMenu span:nth-of-type(3) {
  bottom: calc(50% - 12px);
}
.hamSwitch.open {
}
.hamSwitch.open span {
  background: #fff;
}
.hamSwitch.open span:nth-of-type(1) {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.hamSwitch.open span:nth-of-type(2) {
  opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
  transform: translateY(50%) rotate(45deg);
  bottom: 50%;
}
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E5E5E5;
  z-index: 10;
}
.navigation.active {
  transition: opacity 0.5s ease;
  pointer-events: auto;
  opacity: 1;
}
.navigation .headerNav {
  display: block;
  padding: 60px;
}
.navigation .headerNav li {
  padding: 0;
  position: relative;
  margin: 0 0 40px;
}
.navigation .headerNav li:after {
  content: none;
}
.navigation .headerNav li a {
  font-size: 24px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.navigation .headerNav li a.blankBtn {
  color: #a6a6a6;
  pointer-events: none;
}
.navigation .navTit {
  color: #fff;
  position: absolute;
  right: 60px;
  bottom: 60px;
  text-align: right;
  font-family: "Poppins", sans-serif;
}

/* NAVIGATION:PC-min-770 */
@media screen and (min-width: 770px) {
  .hamBtn {
    display: none;
  }
  .navigation {
    position: fixed;
    pointer-events: auto;
    top: 0;
    opacity: 1;
    left: auto;
    right: 0;
    width: auto;
    height: auto;
    background: transparent;
    transition: 0.5s ease;
  }
  .navigation .navTit {
    display: none;
  }
  .navigation .headerNav {
    display: block;
    padding: 30px;
    text-align: right;
  }
  .navigation .headerNav li {
    margin: 0 0 15px;
    line-height: 1em;
  }
  .navigation .headerNav li a {
    font-size: 24px;
    line-height: 1em;
    display: inline-block;
    letter-spacing: 0.05em;
  }
  .navigation .headerNav li a:hover {
    opacity: 0.7;
  }
}

/* NAVIGATION:SP-max-769 */
@media screen and (max-width: 769px) {
  .navigationBlock {
    position: fixed;
    z-index: 9999;
  }
  .navigation {
    pointer-events: none;
    opacity: 0;
  }
  .navigation .headerNav {
    padding: 60px 30px;
  }
  .navigation .navTit {
    right: 30px;
    bottom: 30px;
    max-width: 120px;
  }
  .navigation .headerNav li {
    margin: 0 0 20px;
  }
  .navigation .headerNav li a {
    font-size: 200%;
  }
}

/*===================================================
  visual
====================================================*/
.visual {
  position: relative;
  width: 100%;
  height: 100svh;
  margin-bottom: 100px;
}
.visual .heroView {}
.visual .action {}

/* item1 */
.visual .item1 {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.heroView .item1 .snsList {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heroView .item1 .snsList li {
  margin: 0 0 15px;
  font-size: 20px;
}
.heroView .item1 .snsList li:last-child {
  margin-bottom: 0;
}
.heroView .item1 .snsList li a {
  display: block;
  font-size: 20px;
}

/* item2 */
.visual .item2 {
}
.visual .scrollTxt {
  position: absolute;
  right: 16px;
  bottom: 130px;
  font-size: 70%;
  transform: rotate(90deg);
  transition: 0.5s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #000;
}
.visual .scrollarrow {
  width: 1px;
  height: 60px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  background: #000;
  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);
  }
}

/* item3 */
.visual .item3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
}

.scrollBox {
    position: absolute;
    width: 100%;
    height: 100svh;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
.scrollBox .scrollArrow {
    width: 1px;
    height: 60px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    background: #000;
    animation: scrollArrow 3s cubic-bezier(.19,1,.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);}
}

/* PC-min-770 */
@media screen and (min-width: 770px) {
  .heroView .item1 .snsList li a:hover img {
    filter: invert(0.7);
  }
}

/* SP-max-769 */
@media screen and (max-width: 769px) {
  .visual .item1 {
    bottom: 20px;
    left: 20px;
    top: initial;
    transform: initial;
  }
  .heroView .item1 .snsList {
    flex-direction: row;
  }
  .heroView .item1 .snsList li {
    margin: 0 5px 0 0;
  }
  .heroView .item1 .snsList li a {
    padding: 6px;
  }
  .visual .item3 {
    width: 80%;
  }
  .scrollBox .scrollArrow {
    right: 20px;
    bottom: 20px;
  }
}

/*===================================================
  visual animation
====================================================*/

.scrolled .visual .action {
  transition-delay: 0s;
}

/* act01 */
.bgBox .bg02.act01 {
  opacity: 0;
  transition: 1s ease 1.25s;
}
.loaded .bgBox .bg02.act01 {
  opacity: 0.25;
}

/* act02 */
.bgBox .bg03.act02 {
  opacity: 0;
  transition: 1s ease 1.75s;
}
.loaded .bgBox .bg03.act02 {
  opacity: 1;
}

/* act03 */
.act03 {
  opacity: 0;
  transition: 1s ease 2.25s;
}
.loaded .act03 {
    opacity: 1;
}

/* act04 */
.act04 {
  opacity: 0;
  transition: 1s ease 2.75s;
}
.loaded .act04 {
    opacity: 1;
}



/*===================================================
  OP:SCHEDULE
====================================================*/
.op_schedule {}

.op_schedule .tourDateBox {}

.op_schedule .tourDateBox .tourDateList.listHead {
    padding: 0 0 10px;
}
.op_schedule .tourDateBox .tourDateList.listHead li {
    justify-content: center;
    font-size: 70%;
    font-weight: 600;
}
.op_schedule .tourDateBox.fin .tourDateList.listHead {
    background: none;
    padding: 0 0 10px;
}
.op_schedule .tourDateBox .tourDateList.listHead li:after {
    display: none;
}
.op_schedule .tourDateBox .listHead .scheduleInfo {
    justify-content: center!important;
    font-size: 100%;
}

.op_schedule .tourDateBox .tourDateList {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #fff;
    padding: 0 0 15px;
    margin: 0 0 15px;
    position: relative;
}
.op_schedule .tourDateBox .tourDateList:last-child {
    margin: 0;
}
.op_schedule .tourDateBox.fin .tourDateList {
    margin: 0;
    padding: 15px 0;
}
.op_schedule .tourDateBox .tourDateList li {
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90%;
    line-height: 1.5em;
}
.op_schedule .tourDateBox .tourDateList li:after{
    content: "";
    position: absolute;
    background: #fff;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
} 
.op_schedule .tourDateBox .tourDateList .scheduleDate {
    width: 26%;
    position: relative;
}
.op_schedule .tourDateBox .tourDateList .scheduleDate .day {
    font-size: 150%;
    padding: 0 5px 0 0;
    font-weight: bold;
}
.op_schedule .tourDateBox .tourDateList .scheduleDate .week {
    padding: 0 10px 0 0;
    display: inline-block;
}
.op_schedule .tourDateBox .tourDateList .scheduleDate .week.sat {}
.op_schedule .tourDateBox .tourDateList .scheduleDate .week.sun {}
.op_schedule .tourDateBox .tourDateList .scheduleDate .area {
  font-weight: bold;
}
.op_schedule .tourDateBox .tourDateList .scheduleVenue {
    width: 35%;
    text-align: center;
    font-weight: bold;
    font-size: 110%;
}
.op_schedule .tourDateBox .tourDateList .scheduleTime {
    width: 16%;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo {
    width: 23%;
    justify-content: left;
    font-size: 70%;
    padding: 0 0 0 20px;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo:after {
	display: none;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner i {
	padding: 0 3px 0 0;
	display: inline-block;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span {
    display: block;
    padding: 2px 0 0;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone,
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web {
	text-decoration: underline;
    display: inline-block;
    margin: 0 5px 0 0;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span .webInquiry {
	border-bottom: 1px solid;
}
.op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span a {
  color: #fff;
}

@media screen and (min-width: 770px){

  .op_schedule .tourDateBox .tourDateList .scheduleTime .subTxt {
    display: none;
  }

	.op_schedule  .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone a:hover,
  .op_schedule  .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web a:hover {
	    opacity: 0.7;
	}
	
}

/* OP:SCHEDULE:SP-max-769 */
@media screen and (max-width: 769px) {
  
  .op_schedule .tourDateBox {}

  .op_schedule .tourDateBox .tourDateList.listHead {
  padding: 0;
  }
  .op_schedule .tourDateBox.fin .tourDateList.listHead {
  padding: 0;
  }
  .op_schedule .tourDateBox .tourDateList.listHead li {
  display: none;
  }

  .op_schedule  .tourDateBox .tourDateList {
  display: block;
  padding: 0 0 20px;
  margin: 0 0 20px;
  }
  .op_schedule .tourDateBox.fin .tourDateList {
  padding: 15px;
  }
  .op_schedule  .tourDateBox .tourDateList li {
  padding: 0;
  display: block;
  font-size: 100%;
  }
  .op_schedule  .tourDateBox .tourDateList li:after{
  display: none;
  } 
  .op_schedule  .tourDateBox .tourDateList .scheduleDate {
  width: 100%;
  margin-bottom: 5px;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleDate br.sp {
  margin: 0;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleDate .day {
        font-weight: bold;
        font-size: 125%;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleDate .week {
  width: initial;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleDate .week {}
  .op_schedule  .tourDateBox .tourDateList .scheduleArea {
  display: none;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleVenue {
        width: 100%;
        text-align: left;
        font-size: 20px;
        margin: 0 0 10px;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleTime {
  width: 100%;
  margin: 0 0 10px;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleTime .subTxt {
  font-size: 70%;
  line-height: 1;
  width: 100%;
  }
  .op_schedule  .tourDateBox .tourDateList .scheduleInfo {
  width: 100%;
  padding: 0;
  margin: 0 0 20px;
  }
  .op_schedule .tourDateBox .tourDateList .scheduleInfo {
  margin-bottom: 0;
  }
  .op_schedule .tourDateBox .tourDateList .scheduleInfo .txt {
    font-size: 110%;
  }
  .op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone, 
  .op_schedule .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web {
        padding: 0 0 2px;
  }

  .op_schedule .csBox {
  padding: 10px 30px;
  font-size: 18px;
  }
  .op_schedule .csBox p {}
  .op_schedule .csBox p:first-child {}
  .op_schedule .csBox p:last-child {}

}



/*===================================================
  OP:TICKET
====================================================*/
.op_ticket {
}
.op_ticket .ticketList {
  margin-bottom: 20px;
}
.op_ticket .ticketList:last-child {
  margin-bottom: 0;
}
.op_ticket .tikcetTit {
  background: #000000;
  padding: 40px 60px 40px 40px;
  font-size: 120%;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}
.op_ticket .end .tikcetTit:after {
  content: "受付終了";
  font-size: 70%;
  background: #ffc100;
  color: #000000;
  line-height: 1em;
  padding: 4px 7px 3px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0 0 0 10px;
}
.op_ticket .tikcetTit span {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 12px;
  height: 12px;
  transform: rotate(180deg) translateY(50%);
  transition: 0.3s ease;
}
.op_ticket .tikcetTit.open span {
  transform: translateY(-50%);
}
.op_ticket .tikcetTit span:before {
  content: "";
  position: absolute;
  top: 25%;
  width: 100%;
  height: 100%;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
}
.op_ticket .tikcetDetail {
  display: none;
  padding: 0 40px 40px;
  background: #000000;
}
.op_ticket .detailList {
  display: flex;
  border-bottom: 1px solid;
  padding: 0 0 20px;
  margin: 0 0 20px;
  align-items: stretch;
}
.op_ticket .detailList:first-child {
  border-top: 1px solid;
  padding: 20px 0 20px;
}
.op_ticket .detailList:last-child {
  margin: 0;
}
.op_ticket .detailList dt {
  width: 20%;
  padding: 0 40px 0 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1.6em;
}
.op_ticket .detailList dt:before {
}
.op_ticket .detailList dd {
  width: 80%;
  position: relative;
  padding: 0 0 0 40px;
  display: flex;
  align-items: center;
}
.op_ticket .detailList dd:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}

.op_ticket .detailList dd > * {
  margin-bottom: 20px;
}
.op_ticket .detailList dd > *:last-child {
  margin-bottom: 0;
}
.op_ticket .detailList dd .detailInner {
  width: 100%;
}
.op_ticket .detailList dd .detailInner > * {
  margin-bottom: 10px;
}
.op_ticket .detailList dd .detailInner > *:last-child {
  margin-bottom: 0;
}

/* OP:TICKET:PC-min-770 */
@media screen and (min-width: 770px) {
  .op_ticket .tikcetTit:hover {
    opacity: 0.7;
  }
}

/* OP:TICKET:SP-max-769 */
@media screen and (max-width: 769px) {
  .op_ticket .tikcetDetail {
    padding: 0 20px 20px;
  }
  .op_ticket .detailList {
    display: block;
  }
  .op_ticket .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
  }
  .op_ticket .detailList dt .txt {
    font-size: 120%;
  }
  .op_ticket .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .op_ticket .detailList dd:before {
    content: none;
  }
  .op_ticket .tikcetTit {
    padding: 15px 45px 15px 20px;
    font-size: 110%;
    font-weight: 600;
  }
  .op_ticket .tikcetTit span {
    right: 20px;
  }
}



/*===================================================
  footer
====================================================*/

footer {
  position: relative;
  text-align: center;
  padding: 100px;
  z-index: 1;
}
footer .footerLogo {
  display: none;
}
footer .copyright {
  font-weight: 800;
  color: #000;
  font-size: 100%;
}

/* SP-max-769 */
@media screen and (max-width: 769px) {
  footer {
    padding: 40px;
  }
  footer h2.footerLogo {
    line-height: 0;
    max-width: 200px;
    margin-bottom: 20px;
  }
}
