@charset "utf-8";

/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
*, *:after, *:before { box-sizing: border-box; margin: 0; padding: 0}
body, html {padding: 0; margin: 0;}
button {all: unset;display: revert;}
ol, ul { list-style: none;}
i {font-style: normal;}
img { max-width: 100%; height: auto; vertical-align: top; margin: 0 auto;}
table { border-collapse: collapse;}
textarea { white-space: revert;}

h1,h2,h3,h4 {
	margin: 0;
}
:root {
	/* color */
	--black: #000; 
	--white: #fff; 
	--gray: #bcbcbc;
	--btn-color: #943c3b;
	--bgBlack: #262626; 
	
	/* width */
	--maxWidth: 1440px;
	--contentsWidth: 1000px;
	--spBreak: 768px;
}

/* ブレイクポイントメモ */
/*
1080px → 全体のカラム落とし
768px → スマホ切り替え

*/


 
/* -------------------------------
	大枠（共通部分）
 ------------------------------- */
html {
	scroll-behavior: smooth;
}
body {
	position: relative;
	font-family: 'Inter', 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-size: 14px;
	color: var(--white);
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-feature-settings: "palt" 1;
	background: var(--black);
}
	@media (max-width: 768px) {
	body {
		font-size: 12px;
	}
}
#wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
#main {
	width: 100%;
	text-align: center;
	max-width: var(--contentsWidth);
	padding: 0;
	margin: 80px 0 0 0;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
	#main {
		padding-left: 15px;
		padding-right: 15px;
		margin-top: 107px;
	}
}

/* -------------------------------
	ヘッダー/フッダー
 ------------------------------- */
 
#header {
	position: fixed;
	width: 100%;
	display: flex;
	padding: 20px;
	background: var(--black);
	z-index: 1000;
}
@media (max-width: 768px) {
	#header {
		display: block;
		padding: 10px;
	}
}
@media (max-width: 768px) {
	#header > * {
		text-align: center;
	}
}

#header .headerLogo img {
	width: 100px;
}
@media (max-width: 768px) {
	#header .headerLogo img {
		width: 80px;
	}
}

#header h1 {
	margin-left: 30px;
	font-size: 24px;
}
@media (max-width: 768px) {
	#header h1 {
		margin-top: 10px;
		line-height: 1.4;
		font-size: 16px;
		margin-left: 0;
	}
}

#header h1 i {
	display: inline-block;
}

#header h1 i + i {
	margin-left: 0.5em;
}
@media (max-width: 768px) {
	#header h1 i + i {
		display: block;
		margin-left: 0;
	}
}



#footer {
	position: relative;
	text-align: center;
	padding: 35px 15px 10px;
	margin-top: 80px;
	background: var(--black);
	border-top: 1px solid var(--white);
	z-index: 1;
}
@media (max-width: 768px) {
	#footer {
		padding-left: 0;
		padding-right: 0;
		margin-top: 40px;
	}
}



#footer .footerLogo img {
	max-width: 110px;
}
#footer .copyright {
	margin-top: 30px;
}
#footer .copyright small {
	font-size: 10px;
}





/* -------------------------------
	大枠
 ------------------------------- */
section {
	padding-top: 80px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
}
section {
	@media (max-width: 768px) {
		padding-top: 40px;
	}
}

section#topImage {
	padding-top: 0;
}
section#schedule {
	padding-top: 240px;
	background-image: url("../img/bg_schedule01.png");
}
@media (max-width: 1000px) {
	section#schedule {
		position: relative;
		z-index: 100;
	}
}
@media (max-width: 768px) {
	section#schedule {
	    padding-top: 75px;
	}
}
@media (max-width: 1000px) {
	section#schedule::after {
	    position: absolute;
	    content: "";
	    top: 0;
	    left: 0;
	    right: 0;
	    height: 100%;
	    margin: auto;
	    width: calc(100% + 20px);
	    background-color: var(--black);
	    z-index: 100;
    }
    section#schedule::before {
	    position: absolute;
	    content: "";
	    top: 0;
	    left: 0;
	    right: 0;
	    height: 100%;
	    margin: auto;
	    width: calc(100% + 20px);
		background: url("../img/bg_schedule01.png") no-repeat 50% 0;
	    background-size: contain;
		z-index: 102;
	}

}
@media (max-width: 1000px) {
	section#schedule * {
		position: relative;
		z-index: 103;
	}
}

section#event {
	padding-top: 180px;
	background-image: url("../img/bg_event01.png");
}
@media (max-width: 768px) {
	section#event {
		padding-top: 75px;
	}
}
section#goods {
	padding-top: 180px;
	background-image: url("../img/bg_goods01.png");
}
@media (max-width: 768px) {
	section#goods {
		padding-top: 75px;
	}
}



/* -------------------------------
	見出し
 ------------------------------- */
.head {
	color: var(--white);
	text-align: left;
	font-size: 46px;
	letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
	.head {
	    font-size: 32px;
		margin-bottom: 20px;
	}
}
.head i {
	display: inline-block;
}
@media (max-width: 768px) {
	.head i {
		display: block;
	}
}
.head i + i {
	margin-left: 0.5em;
}
@media (max-width: 768px) {
	.head i + i {
		margin-left: 0;
	}
}
.head span {
	display: block;
	font-size: 16px;
	margin-top: 7px;
}
@media (max-width: 768px) {
	.head span {
		font-size: 11px;
		margin-top: 4px;
	}
}




/* -------------------------------
	リンク
 ------------------------------- */
a {
	display: block;
	color: var(--white);
	cursor: pointer;
	outline: none;
	background-color: transparent;
	border: 0;
	overflow: hidden;
	text-decoration: none;
	transition: .2s ease-in-out;
}
q:after,a:before {
	transition: .2s ease-in-out;
}
a img {
	transition: .2s ease-in-out;
}
a:link		{ color: var(--black); }
a:visited	{ color: var(--black); }
a:hover	{
	color: var(--black);
	text-decoration: none;
	opacity: .85;
}
a:active	{ color: var(--white); }


.btn a {
	position: relative;
	display: inline-block;
	background: var(--black);
	color: var(--white);
	text-decoration: none;
	font-weight: bold;
	width: 100%;
	text-align: center;
	padding: 13px 45px 13px 45px;
}
@media (max-width: 768px) {
	.btn a {
		font-size: 14px;
		padding: 12px 35px 12px 20px;
	}
}

.btn a::after {
    position: absolute;
    content: "";
    top: 0;
    right: 20px;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    transition: .2s ease-in-out;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
}

@media (max-width: 768px) {
.btn a::after {
		right: 15px;
		width: 8px;
		height: 8px;
	}
}


.btn.btn_ticket a,
.btn.btn_detail a {
	font-size: 15px;
	background: var(--btn-color);
	color: var(--white);
	padding: 12px 30px 12px 12px;
	white-space: nowrap;
	line-height: 1;
}
@media (max-width: 768px) {
	.btn.btn_ticket a,
	.btn.btn_detail a {
	    padding: 10px 30px 10px 10px;
    }
}
#nextSchedule .btn.btn_ticket a,
#nextSchedule .btn.btn_detail a {
	font-size: 11px;
}

.btn.btn_ticket a::after,
.btn.btn_detail a::after {
	border-color: var(--white);
	right: 7px;
	width: 8px;
    height: 8px;
    border-width: 1px;
    
}
.btn.btn_ticket a::before,
.btn.btn_detail a::before {
	position: absolute;
    content: "";
    top: 0;
	right: 0;
	background: rgba(0,0,0,.2);
	height: 100%;
	width: 18px;
}
.btn.btn_detail a {
	background: #5c5c5c;
}
.btn.btn_detail a::before {
	background: rgba(255,255,255,.2);
}
.btn.btn_ticket.disabled a,
.btn.btn_detail.disabled a {
	color: rgba(255,255,255,.4);
	opacity: .6;
	pointer-events: none;
	cursor: default;
}

.btn.btn_detail.disabled a::after {
	opacity: .2;
}
.btn.btn_detail.disabled a::before {
	opacity: .4;
}

.btn.btn_marinesTicket a {
	background: var(--btn-color);
	color: var(--white);
	font-size: 20px;
	padding: 20px 20px 20px 175px;
    max-width: 380px;
    line-height: 1.2;
    margin: 0 auto;
}
@media (max-width: 768px) {
	.btn.btn_marinesTicket a {
	    padding: 53px 40px 7px 20px;
	    font-size: 11px;
    }
}
@media (max-width: 768px) {
	.btn.btn_marinesTicket a br {
	    display: none;
    }
}

.btn.btn_marinesTicket a::after {
	border-color: var(--white);
}
.btn.btn_marinesTicket a::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	width: 158px;
	background: url("../img/icon_marinesTicket01.png") no-repeat 50% 50%;
	background-size: contain;
}
@media (max-width: 768px) {
	.btn.btn_marinesTicket a::before {
	    left: 0;
	    right: 0;
	    bottom: 17px;
	    width: 112px;
    }
}

.btn.btn_marinesTicket {
	margin: 5px 15px 0;
}
    
div.ticketContainer {
	border: none;
	padding: 50px 0;
	background: url("../img/bg_ticket01.png") no-repeat 50% 50%;
	background-size: cover;
}
@media (max-width: 768px) {
	div.ticketContainer {
	    padding: 30px 0 0;
    }
}



.pageTop {
	position: absolute;
	right: 250px;
	top: -1px;
	z-index: 100;
	border: 1px solid var(--white);
}
@media (max-width: 768px) {
	.pageTop {
		display: none;
		/*
		right: 10px;
		bottom: 80px;
		*/
	}
}
.pageTop a img {
	opacity: 0.6;
}
@media (max-width: 768px) {
	.pageTop {
		width: 35px;
		height: 35px;
	}
}


/* -------------------------------
	KV
 ------------------------------- */
#topImage {
	margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.topVideo #player {
    position: relative;
    margin: auto;
	width: 100%;
	height: auto;
    aspect-ratio: 16 / 9;
    /*aspect-ratio: 28 / 10;*/   
}
@media (max-width: 768px) {
	.topVideo #player {
		
	}
}
.topVideo #player iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* -------------------------------
	SCHEDULE
 ------------------------------- */
 #schedule .head span b,
 #scheduleFinal .head span b {
	font-size: 20px;
	display: inline-block;
	margin-bottom: 5px;
 }
 @media (max-width: 768px) {
	#schedule .head span b,
	#scheduleFinal .head span b {
		font-size: 18px;
	} 
 }
 
.scheduleList {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}
@media (max-width: 768px) {
	.scheduleList {
		flex-direction: column;
		gap: 10px;
	}
}
* + .scheduleList {
	margin-top: 30px;
}

.scheduleList > li {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	align-items: center;
	gap: 5px;
	padding: 7px 0;
	border-top: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
	width: calc((100% - (10px * 2)) / 3 );
}
@media (max-width: 1000px) {
	.scheduleList > li {
		width: calc((100% - (18px * 1)) / 2 );
	}
}
@media (max-width: 768px) {
	.scheduleList > li {
		gap: 10px;
		width: 100%;
		border-top: none;
		padding-top: 0;
	}
}
@media (max-width: 768px) {
	.scheduleList > li ul {
		padding-left: 10px;
	}
}
.scheduleList > li * {
	line-height: 1;
}


.scheduleList > li time {
	position: relative;
	text-align: center;
	line-height: 1;
}
.scheduleList > li time i {
	display: block;
}
.scheduleList > li time .month {
	position: relative;
	display: block;
	width: 1.1em;
	text-align: right;
	font-size: 24px;
	font-weight: bold;
    margin-left: -0.2em;
    margin-right: 0.5em;
    letter-spacing: -0.05em;
}
.scheduleList.number > li time .month {
	position: absolute !important;
	left: 0;
}
,

 @media (max-width: 768px) {
	.scheduleList > li time .month {
		 margin-right: 1em;
	}
}
.scheduleList > li time .month::before {
	position: absolute;
	display: inline-block;
	content: "/"; 
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	right: -10px;
	top: 2px;
	margin: auto;
 }
 @media (max-width: 768px) {
	.scheduleList > li time .month::before {
		display: block;
	}
}

.scheduleList > li time .date {
	display: inline-block;
	font-size: 54px;
	font-weight: bold;
	width: 1.2em;
	letter-spacing: -0.03em;
}

@media (max-width: 768px) {
	.scheduleList > li time .date {
		font-size: 44px;
		display: block;
	}
}
.scheduleList > li time.sat .date,
.scheduleList > li time.sat .day {
	color: #00abea;
}
.scheduleList.number > li:first-child time.sat .date,
.scheduleList.number > li:first-child time.sat .day {
	padding-left: 40px;
}
@media (max-width: 768px) {
	.scheduleList > li:first-child time.sat .date,
	.scheduleList > li:first-child time.sat .day {
		padding-left: 0;
	}
}
.scheduleList > li time.sun .date,
.scheduleList > li time.sun .day {
	color: #ed0054;
}

.scheduleList > li time .day {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
}
.scheduleList:not(.number) > li time .day {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	width: 4em;
}

@media (max-width: 768px) {
	.scheduleList > li time .day {
		font-size: 14px;
		display: block;
	}
}
.scheduleList > li time .day:before {
	content: "[";
	margin-right: 3px;
}
.scheduleList > li time .day:after {
	content: "]";
	margin-left: 3px;
}


.scheduleList > li .versus {
	position: relative;
	text-align: left;
	margin-top: 20px;
	min-width: 50px;
 }
 
.scheduleList > li .versus::before {
	position: absolute;
	display: inline-block;
	content: "vs"; 
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
	left: 0;
	top: -15px;
	margin: auto;
 }
.scheduleList > li .versus img {
	 min-width: 50px;
}
@media (max-width: 768px) {
	.scheduleList > li .versus img {
		min-width: 45px;
		min-height: 45px;
	}
}

.scheduleList > li dl {
	position: relative;
	text-align: center;
}
.scheduleList > li dl dt {
	font-size: 10px;
	font-weight: bold;
	border: 2px solid var(--white);
	text-align: justify;
	text-align-last: justify;
	letter-spacing: 0;
    white-space: nowrap;
	padding: 3px 5px;
	width: 5.5em;
}
@media (max-width: 768px) {
	.scheduleList > li dl dt {
		border-width: 1px;
	}
}

.scheduleList > li dl dd {
	font-size: 16px;
	font-weight: bold;
	margin-top: 3px;
}
.scheduleList > li dl dd + dt{
	margin-top: 7px;
}

.scheduleList.final > li dl {
	display: flex;
	margin-bottom: 5px;
}
.scheduleList.final > li dd {
	margin-left: 0.5em;
}

.scheduleList > li ul {
	width: 100%;
}

#recentSchedule .scheduleList > li ul li + li {
	margin-top: 3px;
}

.scheduleList.number {
	margin-top: -30px;
}
@media (max-width: 768px) {
	.scheduleList.number {
		margin-top: 0;
		flex-direction: inherit;
	}
}
.scheduleList + .head {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--bgBlack);
}
@media (max-width: 768px) {
	.scheduleList + .head {
		margin-top: 20px;
		padding-top: 20px;
	}
}

#recentSchedule .scheduleList.number > li {
	border: none;
	width: auto;
}
@media (max-width: 768px) {
#recentSchedule .scheduleList.number > li {
		width: auto;
	}
}


/* -------------------------------
	TICKET
 ------------------------------- */
.ticketTable {
	width: 100%;
	background: #222;
	text-align: left;
}
.ticketTable td {
	padding: 20px;
}
@media (max-width: 768px) {
	.ticketTable td {
		padding: 10px;
	}
} 
.ticketTable tr:nth-child(even) td {
	background: #444;
}

.ticketTable td .ttl {
    font-size: 18px;
    font-weight: bold;
    float: left;
}
@media (min-width: 1000px) {
	.ticketTable td .ttl br {
	    display: none;
	}
}
@media (max-width: 768px) {
	.ticketTable td .ttl {
	    font-size: 14px;
	}
} 
.ticketTable td p {
    clear: left;
}
.ticketTable td .date {
    font-size: 20px;
    font-weight: bold;
}
@media (max-width: 768px) {
	.ticketTable td .date {
	    font-size: 17px;
	}
} 
.ticketTable td .date i {
    font-size: 17px;
}
@media (max-width: 768px) {
	.ticketTable td .date i {
	    font-size: 14px;
	}
} 

.ticketTable td .textBox {
	display: inline-block;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid var(--white);;
    padding: 5px 8px;
    margin-top: 5px;
}
@media (max-width: 768px) {
	.ticketTable td .textBox {
		 font-size: 13px;
	}
} 

.ticketTable td .specialSeat {
	display: inline-block;
	background: #ccc;
	padding: 5px 8px;
	font-size: 12px;
	margin-top: 2px;
	margin-left: 1em;
	border-radius: 2px;
	line-height: 1;
}
@media (max-width: 768px) {
	.ticketTable td .specialSeat {
		font-size: 10px;
	}
} 

.modaal-content-container {
	color: var(--black);
}

.modaal-content-container .ttl {
	border-bottom: 1px solid var(--black);
	margin-bottom: 20px;
}
.modaal-content-container .specialSeatList {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: #eee;
}
.modaal-content-container .specialSeatList li {
	width: calc((100% - 1px)/ 2);
    font-size: 12px;
    padding: 10px;
    border: 1px solid var(--white);   
}
@media (max-width: 768px) {
	.modaal-content-container .specialSeatList li {
	    font-size: 10px;
	    padding: 5px 5px;  
	}
} 


.ticketTable td .mstageTerm {
	display: block;
	background: #ffff;
	padding: 10px 30px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	border-radius: 4px;
	margin-top: 10px;
	max-width: 320px;
	line-height: 1;
}
@media (max-width: 768px) {
	.ticketTable td .mstageTerm { 
		padding: 7px 10px;
		font-size: 11px;
		line-height: 1.2;
	}
} 
.ticketTable td .mstageTerm br {
	display: none;
}
@media (max-width: 768px) {
	.ticketTable td .mstageTerm br {
		display: block;
	}
}

@media (max-width: 768px) {
	.modaal-content-container {
		padding: 15px !important;	
	}
}

.modaal-content-container .mstageTermTable {
	width: 100%;
}

.modaal-content-container .mstageTermTable th,
.modaal-content-container .mstageTermTable td {
	padding: 10px;
	font-size: 16px;
	border: 1px solid var(--gray);
	text-align: center;
}
@media (max-width: 768px) {
	.modaal-content-container .mstageTermTable th,
.modaal-content-container .mstageTermTable td {
		padding: 7px 10px;
		font-size: 11px;
		line-height: 1.2;
	}
} 
.modaal-content-container .mstageTermTable thead th {
	background: #eee;
	font-weight: bold;
}
.modaal-content-container .mstageTermTable tbody th {
	font-weight: bold;
	color: var(--white);
}
.modaal-content-container .mstageTermTable tbody th.m6 {
  background: #3b393a !important;
}
.modaal-content-container .mstageTermTable tbody th.m5 {
  background: #5f3b93 !important;
}
.modaal-content-container .mstageTermTable tbody th.m4 {
  background: #e94216 !important;
}
.modaal-content-container .mstageTermTable tbody th.m3 {
  background: #f18b00 !important;
}
.modaal-content-container .mstageTermTable tbody th.m2 {
  background: #009f41 !important;
}
   


 
.ticketTable td .btn_ticketTable a {
	white-space: nowrap;
}

/* -------------------------------
	EVENT
 ------------------------------- */
.eventList {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
@media (max-width: 768px) {
	.eventList {
		flex-direction: column;
	}
} 
.eventList > li {
	position: relative;
	width: calc((100% - (22px * 1)) / 2);
	background: var(--bgBlack);
	padding: 26px 26px 40px 26px;
	display: flex;
	flex-direction: column;
}
@media (max-width: 768px) {
	.eventList > li {
		width: 100%;
		padding: 15px 10px 15px 10px;
	}
} 



.eventList > li time {
    font-weight: bold;
}
.eventList > li time > * {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}
.eventList > li time .month {
	position: relative;
	font-size: 26px;
	margin-right: 0.5em;
}
.eventList > li time .month::before {
	position: absolute;
	display: inline-block;
	content: "/"; 
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	right: -10px;
	top: 3px;
	margin: auto;
 }
.eventList > li time .date {
	font-size: 56px;
}
.eventList > li .ttl {
	font-size: 20px;
}
@media (max-width: 768px) {
	.eventList > li .ttl i {
		display: block;
	}
}
.eventList > li .ttl i + i::before {
	content: "・"; 
	font-size: 20px;
}
@media (max-width: 768px) {
	.eventList > li .ttl i + i::before {
		display: none;
	}
}

.eventList > li figure {
	margin: 15px auto;
}
.eventList > li .text {
	text-align: left;
}

.eventList > li .btn {
	margin-top: auto;
}

.eventList > li .btn a {
	margin-top: 30px;
	color: var(--black);
	background: var(--white);
	max-width: 294px;
}
@media (max-width: 768px) {
	.eventList > li .btn a {
		max-width: 240px;
	}
}

.eventList > li .btn a::after {
    border-color: var(--black);
}


/* -------------------------------
	GOODS
 ------------------------------- */
.goodsList {
	display: flex;
	flex-wrap: wrap;
	column-gap:30px;
}
@media (max-width: 768px) {
	.goodsList {
		gap: 15px;
	}
} 

.goodsList > li {
	position: relative;
	width: calc((100% - (38px * 3)) / 4);
	display: flex;
	flex-direction: column;
}
@media (max-width: 768px) {
	.goodsList > li {
		width: calc((100% - (15px * 1)) / 2);
	}
} 

.goodsList > li figure {
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.goodsList > li figure {
		margin-bottom: 10px;
	}
} 
.goodsList > li .ttl {
	font-weight: normal;
} 
.goodsList > li .detail dt,
.goodsList > li .detail dd {
	display: inline-block;
} 
.goodsList > li .btn {
	margin-top: auto;
}
.goodsList > li .btn a {
	margin-top: 20px;
	border: 1px solid var(--white);	
}
@media (max-width: 768px) {
	.goodsList > li .btn a {
		font-size: 14px;
	}
}

.btn_onlineshop a {
	margin-top: 56px;
	color: var(--black);
	background: var(--white);
	max-width: 294px;
}
@media (max-width: 768px) {
	.btn_onlineshop a {
		margin-top: 20px;
		max-width: 245px;
	}
}

.btn_onlineshop a::after {
    border-color: var(--black);
}

/* -------------------------------
	SEASON REVIEW
 ------------------------------- */
.reviewList {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}
@media (max-width: 768px) {
.reviewList {
		margin-left: -10px;
		margin-right: -10px;
	}
} 

.reviewList > li {
	position: relative;
	width: calc((100% - (2px * 5)) / 6);
}
@media (max-width: 768px) {
	.reviewList > li {
		width: calc((100% - (2px * 2)) / 3);
	}
} 

.reviewList > li figure a:hover {
} 
.reviewList > li a:hover img {
	scale: 1.3;
} 


#bottomImage {
	margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* -------------------------------
	SPONSOR
 ------------------------------- */
.sponsorList {
	background: var(--white);
	padding: 37px 0;
	margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
@media (max-width: 768px) {
	.sponsorList {
		padding: 20px 0;
	}
} 

.sponsorList > li {
	display: inline-block;
	margin: 0 5%;
	vertical-align: middle;
}
@media (max-width: 768px) {
	.sponsorList > li {
		margin: 0 15px;
	}
} 

@media (max-width: 768px) {
	.sponsorList > li figure {
		width: 22vw;
	}
} 



.btn_float_mticket {
	position: fixed;
    bottom: 1%;
    height: 120px;
    width: 120px;
    right: 5%;
    transition: .2s ease-in-out;
    z-index: 10;
}
@media (max-width: 1000px) {
	.btn_float_mticket {
		right: 5px;
	}
}


.modaal-gallery-item img {
	max-height: 100vh;
}


.u-font-bold {
	font-weight: bold;
} 
.u-font-color__red {
	color: #e40049;
}

