/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,small{
	display: block;
}
ul,ol{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 200;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
	cursor: pointer;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border-radius: 0;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}
/*--------------------------------
global element
--------------------------------*/
html{
	width: 100%;
}
body{
	width: 100%;
	color: #fff;
	-webkit-text-size-adjust: 100%;
	font-size: 18px;
	font-family: sans-serif;
	-webkit-overflow-scrolling: auto;
	background: #000;
}
body::after{
	width: 100%;
	height: 100vh;
	content: "";
	background: url(../images/bg.jpg) no-repeat center top #000;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
a,button{
	transition: .3s;
	-webkit-tap-highlight-color: transparent;
}
a:hover,button:hover{
	opacity: .6;
}
.wrap{
	margin: 0 auto;
	padding: 16px 0 140px 0;
	width: 100%;
	max-width: 1024px;
	position: relative;
	z-index: 2
}
.content-img{
	width: 100%;
	height: auto;
	object-fit: contain;
}
/*--------------------------------
Header
--------------------------------*/
.top{
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.logo{
	margin: 0 auto;
	width: 100%;
	max-width: 750px;
}
.gnav{
	padding: 32px 0;
	width: 100%;
	max-width: 480px;
}
.gnav-list{
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.gnav-item{
	width: 48%;
}
.gnav-link{
	text-align: center;
	box-shadow: 2px 2px 2px rgba(0,0,0,.1);
	border-radius: 4px;
	overflow: hidden;
	display: block;
}
.gnav-txt{
	line-height: 44px;
	display: block;
	background: #ff0;
	color: #000;
	position: relative;
}
.gnav-txt:nth-of-type(1)::after{
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #000;
	position: absolute;
	top: 14px;
	left: 8px;
	z-index: 2;
}
.gnav-txt:nth-of-type(2){
	line-height: 32px;
	background: rgba(0,0,0,.75);
	color: #fff;
}
.fixed{
	padding: 16px 0;
	max-width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 3;
	background: rgba(0,0,0,.85);
}
.fixed .gnav-list{
	max-width: 1024px;
}
.fixed .gnav-txt:nth-of-type(2){
	background: #111
}
/*--------------------------------
Post
--------------------------------*/
.content{
	margin: 0 0 32px 0;
	padding: 0 16px;
	width: 100%;
	background: rgba(0,0,0,.75);
	box-shadow: 2px 2px 2px rgba(0,0,0,.1);
	border-radius: 4px;
}
.heading{
	padding: 32px 0 40px;
	text-align: center;
	position: relative;
}
.heading::before,.heading::after{
	width: 100%;
	height: 2px;
	content: "";
	background: #666;
	position: absolute;
	bottom: 0;
	left: 0;
}
.heading::before{
	bottom: 8px;
}
.heading::after{
	bottom: 0;
}
.heading-txt{
	font-size: 24px;
}
.sub-head{
	padding: 0 0 16px 0;
	text-align: center;
	position: relative;
}
.subhead-txt{
	font-size: 24px;
}
.general-item{
	padding: 16px 0;
	border-bottom: 1px solid #222;
}
.general-item:nth-last-child(1){
	border: 0;
}
.intro{
	padding: 16px 0 0 0;
}
.info-detail{
	padding: 16px;
	background: rgba(255,255,255,.05);
	border: 1px solid #222;
}
.info-list{
	padding: 16px 0;
	line-height: 20px;
	display: flex;
}
.info-list:nth-of-type(even){
	background: rgba(0,0,0,.5);
}
.info-label{
	width: 30%;
	text-align: right;
	font-size: 14px;
	flex-shrink: 0;
	flex-grow: 0;
}
.info-txt{
	width: 70%;
	text-align: left;
	text-align :center;
	flex-shrink: 0;
	flex-grow: 0;
}
.info-txt a{
	color: #ccc;
	text-decoration: underline;
}
.sold-price{
	margin: 0 4px 0 0;
	padding: 0 4px;
	text-decoration: line-through;
}
.sold-txt{
	color: #a00;
}
.info-sub{
	width: 100%;
	text-align: center;
}

.btn-row{
	padding: 32px 0 16px 0;
	text-align: center;
}
.ticket-btn{
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
	line-height: 60px;
	color: #333;
	border-radius: 4px;
	overflow: hidden;
	display: block;
}
.ticket-btn .gnav-txt:nth-of-type(2){
	background: #111;
}
.card-desc{
	margin: 16px 0 0 0;
	padding: 16px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align :center;
	background: rgba(255,255,255,.05);
	border: 1px solid #222;
}
.roster-txt{
	line-height: 18px;
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.roster-txt-full{
	line-height: 18px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.roster-name{
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.roster-info{
	font-size: 12px;
	color: #999;
}
.roster-title{
	margin: 0 0 8px 0;
	padding: 2px 0;
	font-size: 12px;
	line-height: 18px;
	color: #d1b663;
	border-bottom: 2px solid #d1b663;
}
.vs-txt{
	width: 20%;
	font-family: arial,sans-serif;
	font-weight: bold;
	font-size: 48px;
	flex-shrink: 0;
}
.general-desc{
	padding: 16px 0;
	text-align :center;
	background: rgba(255,255,255,.05);
	border: 1px solid #222;
}
.general-txt{
	padding: 16px;
	line-height: 24px;
}
.general-txt a{
	color: #ccc;
	text-decoration: underline;
}
/*--------------------------------
Footer
--------------------------------*/
.footer{
	padding: 16px;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 14px;
}
.copy{
	font-size: 14px;
	font-family: arial,sans-serif;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.social-btn{
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 3;
}
@media screen and (max-width:767px) {
/*--------------------------------
global element
--------------------------------*/
body{
	font-size: 16px;
}
a:hover,button:hover{
	opacity: 1;
}
.wrap{
	padding: 16px 0 124px 0;
}
/*--------------------------------
Header
--------------------------------*/
.gnav{
	padding: 16px 0 64px 0;
}
.fixed{
	padding: 8px;
}
.fixed .gnav-list{
	padding: 0;
}
/*--------------------------------
Post
--------------------------------*/
.info-detail{
	padding: 16px 8px;
}
.info-list{
	padding: 0;
	display: block;
}
.info-list:nth-of-type(even){
	background: none;
}
.info-label{
	padding: 4px 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	display: block;
}
.info-txt{
	padding: 8px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,.5);
}
.info-sub{
	padding: 8px 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
}
.card-desc{
	margin: 16px 0 0 0;
	padding: 16px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align :center;
	background: rgba(255,255,255,.05);
	border: 1px solid #222;
}
.roster-txt{
	width: 45%;
}
.roster-name{
	padding: 4px 8px;
}
.roster-info{
	font-size: 11px;
	line-height: 12px;
}
.roster-title{
	margin: 0 0 4px 0;
	padding: 2px 0;
	font-size: 11px;
	line-height: 12px;
}
.vs-txt{
	width: 10%;
	font-family: arial,sans-serif;
	font-weight: bold;
	font-size: 24px;
}
}