/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
html {
	line-height: 1.8;
	letter-spacing: 0.08em;
	scroll-behavior: smooth;
}
body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	background: linear-gradient(90deg, #041323 0%, #0b233a 18%, #27496a 50%, #0b233a 76%, #041323 100%);
	color: #fff;
	overflow: hidden;
}
body::before {
	display: block;
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.1;
	z-index: -1;
}
main {
	margin-top: 100vh;
}
section {
	max-width: 1080px;
	margin: auto;
	padding: 64px;
}
section:nth-of-type(1) {
	padding-top: 120px;
}
img {
	width: 100%;
	vertical-align: middle;
}
h2 {
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: min(10vw, 60px);
	color: #5ecaf3;
	margin-bottom: 40px;
	line-height: 1;
}
li {
	list-style: none;
}
a {
	transition: all 0.5s ease;
	text-decoration: none;
	color: #fff;
	word-break: break-all;
}
.anim {
	opacity: 0;
	transition: all 1s ease-out;
}
.anim.on {
	opacity: 1;
}

.btnWrap,
.btnList {
	display: flex;
	justify-content: center;
}
.btnList li {
	padding: 0 10px;
	width: calc(50% - 10px);
	max-width: 280px;
	min-width: fit-content;
}
.btnWrap a,
.btnList li a {
	display: block;
	line-height: 1em;
	padding: 1em;
	font-size: min(3.4vw, 16px);
	background-color: #fff;
	color: #000;
	text-align: center;
	border-radius: 100px;
}
.btnWrap a {
	width: 100%;
	max-width: 280px;
	min-width: fit-content;
}
.btnWrap.close a {
	background-color: #8c8c8c;
	color: #fff;
}
.btnWrap span {
	opacity: 0.8;
	display: block;
	line-height: 1em;
	padding:  1em 2em;
	font-size: min(3.4vw, 16px);
	background-color: #8c8c8c;
	color: #cfcfcf;
	text-align: center;
	border-radius: 100px;
	width: 100%;
	max-width: 280px;
	min-width: fit-content;
}

.caution li {
	font-size: min(3vw, 14px);
	margin-bottom: 0.8em;
	position: relative;
	padding-left: 1em;
	line-height: 1.5em;
}
.caution li:before {
	content: "・";
	position: absolute;
	left: 0;
}
.caution li:last-child {
	margin: 0;
}
.caution li a {
	text-decoration: underline;
}

.acdTit {
	position: relative;
}
.acdTit::after {
	position: absolute;
	margin: -12px 0 0;
	content: "";
	vertical-align: middle;
	top: 53%;
	right: 25px;
	width: 10px;
	height: 10px;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	z-index: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.acdTit.open::after {
	margin: -5px 0 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: 0.4s;
}
.acdTit.close::after {
	display: none;
}
.acdIn {
	display: none;
}

.comingSoon {
	background-color: rgba(255,255,255,0.4);
}
.comingSoon p {
	text-align: center;
	padding: min(8vw, 80px) 0;
	font-size: min(3.4vw, 16px);
}


@media screen and (min-width:821px) {
	a:hover {
		opacity: 0.6;
	}
	.sp {display: none;}
}
@media screen and (max-width:820px) {
	.pc {display: none;}
	section {
		padding: 10vw 6vw;
	}

	.btnList {
		flex-direction: column;
		align-items: center;
		gap: min(4vw, 20px);
	}
	.btnList li {
		padding: 0;
		width: 100%;
	}
	.btnList li:last-child {
		margin-bottom: 0;
	}

	.comingSoon p {
		padding: min(20vw, 280px) 0;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	menu button

//////////////////////////////////////////////////////////////////////////////// */

header {
	opacity: 0;
	animation: op 1s ease-out 2.5s forwards;

	z-index: 10;
}
.mainNav {
  display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.mainNav a {
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #fff;
	font-size: 26px;
	text-decoration: none;
	letter-spacing: 0.04em;
}

@media screen and (min-width:881px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		/* padding: 24px 60px 0 24px; */
		padding: 14px 60px;
		position: fixed;
		top: 0;
		left: 0;
		transition: all 0.4s;
	}
	header.on {
		background-color: rgb(11, 35, 58, 0.6) ;
	}
	header .hdrLogo {
		width: 130px;
	}
	#globalNav {
		max-width: calc(100% - 200px);
	}
	.mainNav li {
		margin-left: 20px;
	}
	.mainNav li:first-child {
		margin-left: 0;
	}

	#menuButton {
		display: none;
	}
}
@media screen and (max-width:880px) {
	header {
		position: relative;
	}
	header .hdrLogo {
		display: none;
	}
	#menuButton {
		display: block;
		width: 40px;
		height:40px;
		position: fixed;
    top: 3vw;
    right: 2vw;
		z-index: 9999;
	}
	#menuButton span {
		display: block;
		background: #fff;
		width: 100%;
		height: 2px;
		position: absolute;
		left: 0;
		transition: all 0.4s;
	}
	#menuButton.active span,
	#menuButton.mvOn span {
		background: #fff;
	}
	#menuButton span:first-child { top: 12px;}
	#menuButton span:last-child { bottom: 12px;}

	#menuButton.active span:first-child {
		transform: translateY(7px) rotate(45deg);
	}
	#menuButton.active span:last-child {
		transform: translateY(-7px) rotate(-45deg);
	}

	#globalNav {
		display: none;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 2;
	}
	.navWrap {
		background: linear-gradient(90deg, #041323 0%, #0b233a 18%, #27496a 50%, #0b233a 76%, #041323 100%);
		height: 100vh;
		width: 100vw;
	}
	.mainNav {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100vw;
		height: 90vh;
    height: 100svh;
		background: linear-gradient(90deg, #041323 0%, #0b233a 18%, #27496a 50%, #0b233a 76%, #041323 100%);
	}
	.mainNav a {
		color: #fff;
		font-size: 4vh;
		line-height: 2.2;
		letter-spacing: 0.1em;
	}
	.mainNav a.menuBroadcast {
		font-size: 2.4vh;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	mainVisual

//////////////////////////////////////////////////////////////////////////////// */

.mainVisual {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;

	transition: all 1s ease;
	overflow-y: scroll;
}
.mainVisual.on {
	opacity: 0;
	z-index: -1;
}
.mainVisual .mvTitle {
	position: absolute;
	top: 14.25vw;
	left: 50%;
	transform: translateX(-50%);
	width: 54vw;

	opacity: 0;
	animation: op 1s ease-out 1.4s forwards;
}
.mainVisual .mvTitleBg {
	position: absolute;
	top: 9.86vw;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	opacity: 0.47;
}
.mainVisual .mvTitleBg img {
	opacity: 0;
	animation: op 1s ease-out 0.4s forwards;
}
@keyframes op {
	0% { opacity: 0;}
	100% { opacity: 1;}
}
@keyframes opBg {
	0% { opacity: 0;}
	100% { opacity: 0.1;}
}
@media screen and (min-width:821px) {

}
@media screen and (max-width:820px) {
	.mainVisual {
		overflow-y: hidden;
	}
	.mainVisual .mainImg img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 50% 30%;
	}
	.mainVisual .mvTitle {
		top: calc(30% - 23vw);
		width: 71.8vw;
	}
	.mainVisual .mvTitleBg {
		top: calc(30% - 24vw);
	}
}


.floatBnr {
	position: fixed;
	right: 4vw;
	bottom: 4vw;
	z-index: 1;

	opacity: 0;
	animation: op 1s ease-out 2.5s forwards;
}
.floatBnr a {
	position: relative;
	display: block;
	background: rgba(255 92, 96, 0.8);
	width: min(13.5vw, 200px);
	height: min(13.5vw, 200px);
	border-radius: 100%;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);

	transition: all 0.4s;
	overflow: hidden;
}
.floatBnr a::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(../images/noise.png);
	background-size: 330px;
	mix-blend-mode: multiply;
	opacity: 0.3;
}
.floatBnr a p {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	line-height: 1.2;
	font-size: min(1.2vw, 18px);
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.floatBnr a p span {
	display: block;
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-optical-sizing: auto;
	font-size: 1.85em;
	letter-spacing: 0.1em;
}

.floatBnr a.on {
	opacity: 0;
}

@media screen and (min-width:821px) {
	.floatBnr a span {
		margin-bottom: 0.1em;
	}
}
@media screen and (max-width:820px) {
	.floatBnr {
		right: 4vw;
		bottom: 4vw;
	}
	.floatBnr a {
		width: min(34vw, 240px);
    height: auto;
		border-radius: min(2vw, 10px);
	}
	.floatBnr a p {
		font-size: min(2.4vw, 18px);
		line-height: 1.2;
    padding: 2vw;
	}
	.floatBnr a p span {
		margin-bottom: min(1.2vw, 8px);
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	Schedule

//////////////////////////////////////////////////////////////////////////////// */

.schedule {
	margin-bottom: 40px;
}
.schedule li {
	position: relative;
	border-bottom: #fff solid 1px;
	padding: 14px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	line-height: 1.6;
}
.schedule li.new::before {
	position: absolute;
	top: 50%;
	left: -1em;
	transform: translate(-100%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	background: #5ecaf3;
	color: #4d4952;
	border-radius: 50%;
	width: 4em;
	height: 4em;
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	content: "NEW";
	font-size: min(2.2vw, 10px);
	font-weight: bold;
}
.schedule li.scheduleHead .date,
.schedule li.scheduleHead .area,
.schedule li.scheduleHead .venue,
.schedule li.scheduleHead .time,
.schedule li.scheduleHead .info {
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 12px;
	font-weight: bold;
}
.schedule li .date {
	width: 12%;
}
.schedule li:not(.scheduleHead) .date {
	font-family: como, sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: 22px;
	letter-spacing: 0;
	display: flex;
	align-items: center;
	gap: 0 0.5em;
}
.schedule li .date span {
	padding-top: 0.2em;
	font-size: 14px;
}
.schedule li .date span.sat {
	color: #5ecaf3;
}
.schedule li .date span.hol {
	color: #ff5c60;
}
.schedule li .area {
	width: 6%;
	font-weight: bold;
}
.schedule li .venue {
	width: 30%;
	font-weight: bold;
}
.schedule li .font-red {
	color: #ff1616;
	font-weight: bold;
	letter-spacing: 0;
	display: block;
	font-size: 1.1em;
}
.schedule li .time {
  width: 14%;
}
.schedule li .info {
	width: 32%;
}
.schedule li .info a {
	font-size: 1.1em;
	text-decoration: underline;
}

.schedule li.sold .venue {
	position: relative;
}
.schedule li.sold .venue::after {
	display: block;
	content: "SOLD OUT";
	font-size: min(4.2vw, 20px);
	font-weight: bold;
	color: #ff1616;
	text-align: center;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-15deg);
	width: 7em;
}

@media screen and (min-width:821px) {
	.schedule li .time,
	.schedule li .info {
		font-size: 14px;
	}
}
@media screen and (max-width:820px) {
	.schedule {
		margin-bottom: 20px;
	}
  .schedule li.scheduleHead {
		display: none;
	}
	.schedule li {
		padding: 3vw 0;
		display: block;
		font-size: min(3.6vw, 18px);
    text-align: left;
	}
	.schedule li.new::before {
		font-size: min(3vw, 14px);
    transform: none;
    top: 3vw;
    left: auto;
    right: 3vw;
	}
	.schedule li .date,
	.schedule li .area,
	.schedule li .venue,
	.schedule li .time,
	.schedule li .info {
		width: 100%;
		padding: 0.5em 0 0.5em 30vw;
		position: relative;
		box-sizing: border-box;
    line-height: 1.6;
	}

	.schedule li:not(.scheduleHead) .date {
		gap: 0 0.8em;
		font-size: min(5.2vw, 24px);
		padding: min(1vw, 10px) 0 min(1vw, 10px) 30vw;
		text-indent: -0.3em;
	}
	.schedule li .info {
		font-size: min(3vw, 14px);
		padding: 0.8em 0 0.5em 30vw;
	}

	.schedule li .date::before,
	.schedule li .area::before,
	.schedule li .venue::before,
	.schedule li .time::before,
	.schedule li .info::before {
		font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
		display: inline-block;
		width: 28vw;
		font-size: min(3vw, 16px);
		font-weight: normal;
		position: absolute;
		top: min(2.3vw, 12px);
		left: 0;
	}
	.schedule li .date::before  {
		content: "Date";
		top: min(3vw, 15px);
		text-indent: 0;
	}
	.schedule li .area::before  {content: "Area";}
	.schedule li .venue::before {content: "Venue";}
	.schedule li .time::before  {content: "Open / Start";}
	.schedule li .info::before  {content: "Info";}

	.schedule li .venue span:nth-child(1) {
		width: 12vw;
	}

}


/* ////////////////////////////////////////////////////////////////////////////////

	Ticket

//////////////////////////////////////////////////////////////////////////////// */

#ticket .ticketInfo {
	border: 1px solid;
	padding: 60px;
	margin: 40px 0;
}
#ticket .ticketInfoTit {
	font-size: min(4.6vw, 24px);
	margin-bottom: 40px;
	text-align: center;
}
#ticket .ticketInfoTxt {
	font-size: min(3.4vw, 16px);
	margin-bottom: 40px;
	line-height: 1.8em;
}
#ticket .ticketInfo .innerInfo {
	margin-top: min(6vw, 56px);
	border-top: #fff solid 1px;
	padding-top: min(4vw, 24px);
	text-align: center;
}
#ticket .ticketInfo .innerInfo h4 {
	font-size: min(3.8vw, 18px);
	margin-bottom: min(2vw, 16px);
}
#ticket .ticketInfo .innerInfo {
	font-size: min(3.4vw, 16px);
}
#ticket .ticketInfo .innerInfo a {
	text-decoration: underline;
}
#ticket .ticketInfo .link {
	font-size: min(5vw, 26px);
	text-align: center;
	margin-bottom: 40px;
}
#ticket .ticketInfo .link span {
	display: inline-block;
	font-size: min(3.4vw, 16px);
}
#ticket .ticketInfo .link .btnWrap {
	margin-top: min(2vw, 16px);
}
#ticket .ticketInfo .link .btnWrap a {
	text-decoration: none;
	margin-bottom: 0;
}
#ticket .ticketInfo .tel {
	font-size: min(5vw, 26px);
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
#ticket .ticketInfo .hours {
	font-size: min(3.4vw, 16px);
	text-align: center;
	margin-bottom: 40px;
}
#ticket .ticketInfo .btnList {
	margin-bottom: 50px;
}
#ticket .ticketInfo .btnWrap a {
	margin: 0 auto 30px;
}
#ticket .ticketInfo .note {
	font-size: min(3.2vw, 14px);
	text-align: center;
	padding-left: 1em;
	text-indent: -1em;
}

/* --- アコーディオン --- */
#ticket .ticketTit {
	background: #FFF;
	padding: 20px;
	font-size: min(3.8vw, 18px);
	color: #4d4952;
	font-weight: 600;
	line-height: 1.8em;
	margin-top: 40px;
	transition: .3s;
}
#ticket .ticketTit:not(.close) {
	cursor: pointer;
}
#ticket .ticketTit span {
	font-size: min(4.6vw, 24px);
}
#ticket .ticketTit span.tour {
	display: block;
	font-size: min(3.8vw, 18px);
}
#ticket .ticketTit span.name {
	font-size: min(4.6vw, 24px);
}
#ticket .ticketTit span.end {
	display: inline-block;
	background-color: #ff5c60;
	color: #fff;
	font-size: min(3.6vw, 18px);
	font-weight: normal;
	padding: 0 1em;
}
#ticket .ticketDetail {
	background: rgba(255,255,255,0.1);
	padding: 40px;
}
#ticket .ticketDetail .ticketDetailList {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid;
	padding-bottom: 20px;
}
#ticket .ticketDetail .ticketDetailList dt {
	width: 20%;
	font-size: min(3.4vw, 16px);
}
#ticket .ticketDetail .ticketDetailList dd {
	width: 80%;
	font-size: min(3.4vw, 16px);
	border-left: 1px solid;
	padding-left: 40px;
}
#ticket .ticketDetail .ticketDetailList dd .txt {
	margin-bottom: 10px;
}
#ticket .ticketDetail .ticketDetailList dd .txt:last-child {
	margin: 0;
}
#ticket .ticketDetail .ticketDetailList dd .caution {
	margin-bottom: 10px;
}
#ticket .ticketDetail .ticketDetailList dd .caution:last-child {
	margin: 0;
}
#ticket .ticketDetail .ticketDetailList dd .innerBox {
	background: rgba(255,255,255,0.1);
	padding: 20px;
	margin-bottom: 20px;
}
#ticket .ticketDetail .ticketDetailList dd .innerBox .methodTit {
	border-left: 5px solid;
	padding-left: 10px;
	margin-bottom: 15px;
}
#ticket .ticketDetail .ticketDetailList dd .innerBox .methodTxt {
	font-size: min(3.2vw, 14px);
	margin-bottom: 20px;
}
#ticket .ticketDetail .ticketDetailList dd .btnList {
	justify-content: space-between;
	padding-top:20px;
}
#ticket .ticketDetail .ticketDetailList dd .btnList li {
	padding: 0;
}
#ticket .ticketDetail .btnEntry {
	padding-top: 20px;
}
#ticket .ticketDetail .btnBlank {
	font-size: min(3.8vw, 18px);
	display: block;
	text-align: center;
	border-radius: 100px;
	font-weight: 600;
	color: #FFF;
	padding-top: 20px;
}
#ticket .ticketDetail .infoTrade {
	padding: 0;
	border: none;
	margin-top: 0;
}

/* --- info --- */
#ticket .infoTrade {
	padding: 40px;
	border: 1px solid;
	margin-top: 60px;
}
#ticket .infoTrade .caution.attn li::before {
	content: "※";
}
#ticket .infoTradeTit {
	font-size: min(4.2vw, 20px);
	border-left: #97aaee 5px solid;
	padding-left: 10px;
	margin-bottom: 20px;
	font-weight: 600;
}
#ticket .infoTradeTxt {
	margin-bottom: 20px;
	font-size: min(3.4vw, 16px);
	line-height: 1.5em;
}
#ticket .infoTradeTxt a {
	text-decoration: underline;
}
#ticket .attentionTit {
	border-bottom: 1px dashed;
	padding-bottom: 10px;
	margin-bottom: 16px;
}
#ticket .attentionTit span {
	color: #ff6767;
	padding-left: 10px;
}
#ticket .infoTrade .liveAttention dt {
	font-weight: 600;
	font-size: min(3.4vw, 16px);
	margin-bottom: 10px;
}
#ticket .infoTrade .liveAttention dd {
	margin-bottom: 20px;
	border-bottom: 1px dashed;
	padding-bottom: 20px;
	font-size: min(3.4vw, 16px);
}
#ticket .infoTrade .liveAttention dd .caution li {
	font-size: min(3.4vw, 16px);
}
#ticket .infoTrade .liveAttention dd .caution li:before {
	content: "■";
}
#ticket .infoTrade .liveAttention dd .caution .listAsterisk li:before {
	content: "※";
}
#ticket .infoTrade .leadList li {
	font-size: min(3.4vw, 16px);
	line-height: 1.5em;
	margin-bottom: 15px;
}
#ticket .infoTrade .leadList li:last-child {
	margin: 0;
}

@media screen and (min-width:821px) {
	#ticket .ticketDetail .ticketDetailList dd .btnList li {
		max-width: initial;
	}
}
@media screen and (max-width:820px) {
	#ticket .ticketInfo {
		padding: 20px;
	}
	#ticket .ticketInfoTit {
		margin-bottom: 20px;
		line-height: 1.3em;
	}
	#ticket .innerInfo {
		padding: 20px;
	}
	#ticket .innerInfoTit {
		line-height: 1.5em;
		margin-bottom: 20px;
		border-bottom: 1px solid;
		padding-bottom: 20px;
	}
	#ticket .ticketInfoTxt {
		margin-bottom: 20px;
	}
	#ticket .ticketInfo .link {
		margin-bottom: 20px;
	}
	#ticket .ticketInfo .tel {
		margin-bottom: 15px;
		text-decoration: underline;
	}
	#ticket .ticketInfo .hours {
		margin-bottom: 20px;
	}
	#ticket .ticketDetail {
		padding: 20px;
	}
	#ticket .ticketInfo .note {
		text-align: left;
	}

	/* --- アコーディオン --- */
	#ticket .ticketTit {
		padding: min(4vw, 20px) min(10vw, 40px) min(4vw, 20px) min(4vw, 20px);
		line-height: 1.4em;
		letter-spacing: 0;
		margin-top: 20px;
	}
	#ticket .ticketTit span.tour {
		margin-bottom: 8px;
		font-size: min(3.2vw, 18px);
	}
	#ticket .ticketTit span.name {
		font-size: min(4.2vw, 24px);
		line-height: 1.6;
	}
	#ticket .ticketTit span.end {
		line-height: 1.6;
	}
	#ticket .ticketDetail {
		padding: 20px;
	}
	#ticket .ticketDetail .ticketDetailList {
		display: block;
	}
	#ticket .ticketDetail .ticketDetailList dt {
		width: 100%;
		margin-bottom: 10px;
	}
	#ticket .ticketDetail .ticketDetailList dd {
		width: 100%;
		border-left: none;
		padding: 0;
	}
	#ticket .ticketDetail .btnEntry {
		padding: 0;
	}
	#ticket .ticketDetail .btnBlank{
		padding-top: 20px;
	}

	#ticket .acdTit::after {
		right: min(4vw, 20px);
	}

	/* --- info --- */
	#ticket .infoTrade {
		/* padding: 20px; */
		margin-top: 40px;
	}
	#ticket .infoTradeTit {
		margin-bottom: 15px;
	}
	#ticket .infoTradeTxt {
		margin-bottom: 15px;
	}
	#ticket .infoTrade .liveAttention dd {
		padding-bottom: 10px;
		margin-bottom: 16px;
	}
	#ticket .infoTrade .leadList li {
		margin-bottom: 10px;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	cinema / Streaming

//////////////////////////////////////////////////////////////////////////////// */
#cinemaStreaming .ovLead {
	font-size: 18px;
	line-height: 1.6em;
	margin: 0 0 40px;
}
#cinemaStreaming .ovDetailBlock {
	border-top: 1px solid;
	padding: 10px 0 0;
	margin: 0 0 40px;
}
#cinemaStreaming .ovDetail {
	display: flex;
	align-items: center;
	border-bottom: 1px solid;
	padding: 0 0 10px;
	margin: 0 0 10px;
}
#cinemaStreaming .ovDetail dt {
	width: 15%;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	padding: 0 10px 0 0;
}
#cinemaStreaming .ovDetail dd {
	width: 85%;
	position: relative;
	padding: 0 0 0 40px;
}
#cinemaStreaming .ovDetail dd:before {
	content: "";
	width: 1px;
	height: 100%;
	background: #FFF;
	position: absolute;
	left: 0;
	top: 0;
}
#cinemaStreaming .ovDetail dd .ovDetailTxt {
	line-height: 1.8em;
	font-size: 18px;
}
#cinemaStreaming .ovDetail dd .ovDetailTxt span {
	font-size: 20px;
	display: block;
	font-weight: 600;
}
#cinemaStreaming .btnList li a {
	background-color: #ff5c60;
	color: #fff;
}
@media screen and (max-width:820px) {
	#cinemaStreaming .ovLead {
    font-size: 15px;
	}
	#cinemaStreaming .ovDetail {
    display: block;
	}
	#cinemaStreaming .ovDetail dt {
		width: 100%;
		font-size: 14px;
		margin: 0 0 10px;
		font-weight: 900;
		text-align: left;
	}
	#cinemaStreaming .ovDetail dd {
		width: 100%;
		position: relative;
		padding: 0;
	}
	#cinemaStreaming .ovDetail dd:before {
		display: none;
	}
	#cinemaStreaming .ovDetail dd .ovDetailTxt {
    font-size: 14px;
    font-weight: 500;
	}
	#cinemaStreaming .ovDetail dd .ovDetailTxt span {
    font-size: 16px;
    padding: 5px 0 0;
	}
}
/* ////////////////////////////////////////////////////////////////////////////////

	GOODS

//////////////////////////////////////////////////////////////////////////////// */
#goods > div {
	padding: 60px;
	border: #fff solid 1px;
}
#goods > div + div {
	margin-top: min(4vw, 40px);
}
#goods h3 {
	font-size: min(5.2vw, 28px);
	text-align: center;
	line-height: 1.4;
	margin-bottom: min(4vw, 32px);
}
#goods .goodsNewsList {
	background-color: rgba(191, 210, 236, 0.2);
	padding: min(4vw, 24px) min(3vw, 32px);
}
#goods .goodsNewsList > p {
	font-size: min(4.2vw, 20px);
	padding: min(4vw, 16px) 0;
	border-top: #fff solid 1px;
}
#goods .goodsNewsList > p:first-child {
	padding-top: 0;
	border-top: none;
}
#goods .goodsNewsList > p:last-child {
	padding-bottom: 0;
}
#goods .goodsNewsList > p a {
	text-decoration: underline;
}
#goods .goodsImg {
	margin-bottom: min(6vw, 40px);
}
#goods .goodsImg img {
	display: block;
	max-width: 750px;
	margin: auto;
}
#goods .goodsMap {
	/* display: flex;
	justify-content: space-between; */
	margin-top: min(10vw, 80px);
}
/* #goods .goodsMap > div {
	width: 48%;
} */
#goods .goodsMap p {
	font-size: min(3.4vw, 16px);
	line-height: 1.6;
	margin-bottom: 0.6em;
}
#goods .comingSoonP {
	text-align: center;
	font-size: min(4.2vw, 20px);
}

@media screen and (max-width:820px) {
	#goods > div {
		padding: 20px;
	}
	#goods .goodsMap {
		display: block;
	}
	#goods .goodsMap > div {
		width: 100%;
		display: block;
		max-width: 750px;
		margin: auto;
	}
	#goods .goodsMap > div:nth-child(n+2) {
		margin-top: min(6vw, 32px);
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	SPECIAL

//////////////////////////////////////////////////////////////////////////////// */

#special .specialAccordion {
	border: 1px solid;
	margin: 40px 0;
}
#special .specialAccordion > dt {
	text-align: center;
	font-size: min(5.6vw, 36px);
	font-family: como, sans-serif;
	font-weight: 600;
	font-style: normal;
	padding: min(3.6vw, 20px);
}
#special .specialWrap {
	padding: 60px;
	border-top: #fff solid 1px;
}

#special .specialWrap h3 {
	font-size: min(3.4vw, 24px);
	text-align: center;
	margin-bottom: min(6vw, 30px);
}
#special .specialWrap .specialImg {
	line-height: 0;
	margin-bottom: min(6vw, 30px);
}
#special .specialWrap > p {
	font-size: min(3.4vw, 16px);
	margin-bottom: min(4vw, 20px);
}
#special .specialWrap h4 {
	font-size: min(4vw, 20px);
	margin-top: min(7vw, 50px);
	margin-bottom: min(3vw, 15px);
}
.specialWrap h4 .note {
	font-size: 0.75em;
	font-weight: normal;
	margin-left: 0.5em;
}
#special .specialWrap .specialInfo > div {
	display: flex;
	align-items: center;
	padding: min(3vw, 20px) 0;
	border-top: #fff solid 1px;
}
#special .specialWrap .specialInfo > div:last-child {
	border-bottom: #fff solid 1px;
}
#special .specialWrap .specialInfo .specialInfoHead {
	text-align: center;
	width: 140px;
	font-size: min(3.8vw, 18px);
}
#special .specialWrap .specialInfo .specialInfoBody {
	width: 100%;
	padding: 0;
	font-size: min(3.4vw, 16px);
}
#special .specialWrap .specialInfo .specialInfoHead + .specialInfoBody {
	width: calc(100% - 140px);
	padding: min(2vw, 10px) 0 min(2vw, 10px) min(6vw, 30px);
	border-left: #fff solid 1px;
}

#special .specialWrap .specialInfo .specialInfoBody p + p {
	margin-top: min(3vw, 10px);
}
#special .specialWrap .specialInfo .specialInfoBody p span {
	font-size: 0.9em;
	padding-left: 1.1em;
}


.fcDetail {
	border-bottom: #fff solid 1px;
	display: flex;
}
.fcDetail li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	border-top: #fff solid 1px;
	padding: min(2vw, 10px) min(3vw, 16px);
}
.fcDetail > li:first-child {
	border-right: #fff solid 1px;
}
.fcDetail li .ttl {
	width: 180px;
	font-weight: bold;
	font-size: min(3.4vw, 16px);
	letter-spacing: 0.04em;
	line-height: 1.4;
}
.fcDetail li .desc {
	width: calc(100% - 180px);
	font-size: min(3.2vw, 14px);
}

#special .specialWrap .caution.asterisk li:before {
	content: "※";
}
#special .specialWrap .specialInfo + .caution.asterisk {
	margin-top: 1em;
}

#special .specialWrap .btnWrap {
	margin-top: min(7vw, 40px);
	margin-bottom: 0;
}
#special .specialWrap .btnWrap a {
    padding: min(4vw, 20px);
    font-size: min(3.6vw, 18px);
    max-width: 320px;
}

#special .specialWrap .specialMore {
	text-align: center;
	font-weight: bold;
	font-size: min(5.2vw, 32px);
	margin-top: min(4vw, 40px);
}

@media screen and (max-width:820px) {
	#special .specialAccordion {
		margin: 40px 0;
	}
	#special .specialWrap {
		padding: 20px;
	}
	#special .specialWrap h4 {
		text-align: center;
	}
	#special .specialWrap .specialInfo > div {
		flex-direction: column;
	}
	#special .specialWrap .specialInfo > div + div {
		border-top: rgba(255, 255, 255, 0.5) solid 1px;
	}
	#special .specialWrap .specialInfo .specialInfoHead {
		width: 100%;
		padding-bottom: min(3vw, 15px);
		font-weight: bold;
		text-align: left;
	}
	#special .specialWrap .specialInfo .specialInfoBody {
		line-height: 1.6;
		letter-spacing: 0.04em;
	}
	#special .specialWrap .specialInfo .specialInfoHead + .specialInfoBody {
		width: 100%;
		/* border-top: #fff solid 1px; */
		border-left: none;
		/* padding: min(3vw, 15px) 0 0; */
		padding: 0;
	}

  .fcDetail {
    flex-direction: column;
  }
	.fcDetail li {
    width: 100%;
		flex-direction: column;
		padding: min(3vw, 20px) 0;
	}
	.fcDetail li + li {
    border-top: rgba(255, 255, 255, 0.5) solid 1px;
	}
  .fcDetail > li:first-child {
    border-right: none;
  }
	.fcDetail li .ttl {
    display: block;
		width: 100%;
		margin-bottom: min(1vw, 5px);
		margin-bottom: 0.4em;
	}
	.fcDetail li .desc {
		width: 100%;
	}

	#special .specialWrap .btnWrap a {
		max-width: 240px;
	}
}


/* ////////////////////////////////////////////////////////////////////////////////

	Q&A

//////////////////////////////////////////////////////////////////////////////// */
#faq .qaCatTit {
	font-size: min(4.2vw, 20px);
	font-weight: 800;
	margin-bottom: 40px;
	border-left: #97aaee 5px solid;
	padding-left: 10px;
}
#faq .acc-list {
	width: 100%;
	letter-spacing: 0.6px;
	display: block;
	box-sizing: border-box;
	position: relative;
	transition: 0.4s;
	font-weight: bold;
	line-height: 1.5;
	font-size: min(3.6vw, 17px);
	border-top: 1px solid;
	margin-bottom: 60px;
}
#faq .acc-list .item {
	border-bottom: 1px solid;
}
#faq .acc-list .acdTit {
	width: 100%;
	letter-spacing: 0.6px;
	display: block;
	box-sizing: border-box;
	transition: 0.4s;
	font-weight: bold;
	line-height: 1.5;
	padding: 20px 50px 20px 40px;
	font-size: min(3.6vw, 17px);
	cursor: pointer;
}
#faq .acc-list .acdTit::before {
	content: "Q";
	font-size: min(4.4vw, 23px);
	position: absolute;
	top: 46%;
	left: 0;
	transform: translateY(-50%);
}
#faq .acc-list .acdIn {
	padding: 20px 40px;
	margin-left: 40px;
	position: relative;
	font-size: min(3.2vw, 14px);
	border-top: 1px dashed #DDD;
}
#faq .acc-list .acdIn::before {
	content: "A";
	font-size: min(4vw, 19px);
	position: absolute;
	left: 0;
	box-sizing: border-box;
	line-height: 1em;
}
#faq .acc-list .acdIn .set {
	margin-bottom: 20px;
	border-bottom: 1px dotted #DDD;
	padding-bottom: 20px;
}
#faq .acc-list .acdIn .txt {
	margin-bottom: 20px;
}
#faq .acc-list .acdIn .txt a {
	text-decoration: underline;
}
#faq .acc-list .acdIn .btnList {
	margin-bottom: 20px;
}
#faq .acc-list .acdIn .btnList li {
	max-width: 360px;
}
#faq .acc-list .acdIn .btnList li a {
	font-size: min(3.2vw, 14px);
}
#faq .acc-list .acdIn .caution {
	margin-bottom: 20px;
}
#faq .acc-list .acdIn *:last-child {
	margin: 0;
}
#faq .acc-list .acdIn .flowList {
	background: rgba(255,255,255,0.15);
	padding: 40px;
	margin-bottom: 20px;
}
#faq .acc-list .acdIn .flowList:last-child {
	margin: 0;
}
#faq .acc-list .acdIn .flowList dt {
	border-left: 5px solid;
	font-size: min(3.4vw, 16px);
	padding-left: 15px;
	margin-bottom: 20px;
}
#faq .acc-list .acdIn .flowList dd {
	margin-bottom: 20px;
}
#faq .acc-list .acdIn .flowList dd:last-child {
	margin: 0;
}

#faq .ticketInformation {
	background: #F2F2F2;
	color: #000;
	padding: 40px;
}
#faq .ticketInformation a {
	color: #000;
}
/* #faq .ticketInformation .tit {
	border-left: 5px solid;
	padding-left: 15px;
	margin-bottom: 20px;
	font-size: min(3.8vw, 18px);
	font-weight: 600;
	line-height: 1em;
} */
#faq .ticketInformation .txt {
	font-size: min(3.4vw, 16px);
	line-height: 1.6em;
	font-weight: 600;
	margin-bottom: 20px;
}
#faq .ticketInformation .txt a {
	text-decoration: underline;
	color: #000;
}

@media screen and (max-width:820px) {
	#faq .qaCatTit{
		margin-bottom: 20px;
	}
	#faq .acc-list {
		margin-bottom: 40px;
	}
	#faq .acc-list .acdTit {
		padding: 15px 25px 15px 40px;
	}
	#faq .acc-list .acdTit::after {
		right: 4px;
	}
	#faq .acc-list .acdIn {
		padding: 20px 0 20px 40px;
		margin-left: 0;
	}
	#faq .acc-list .acdIn .flowList {
		padding: 20px;
	}
	#faq .acc-list .acdIn .flowList dt {
		line-height: 1.3em;
	}
	#faq .ticketInformation {
		padding: 20px;
	}
	#faq .ticketInformation .tit {
		line-height: 1.5em;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	footer

//////////////////////////////////////////////////////////////////////////////// */

footer {
	padding: 120px 0 160px;
}
footer .footerLogo{
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}
footer .logo{
	width: 200px;
	margin-bottom: 10px;
	padding: 0 20px;
}
footer .credit{
	font-weight: 600;
	color: #FFF;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width:820px) {

	footer {
		padding: min(12vw, 120px) 0 min(16vw, 160px);
	}
	footer .credit {
		font-size: 10px;
	}
	footer .footerLogo {
		margin: 0 0 10px;
	}
	footer .logo {
		width: 27%;
		padding: 0 10px;
	}
}