#cover {
	background-image: url('../img/cover.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 200px 0 100px;
}
#cover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	background: var(--color-main);
	opacity: 0.25;
	display: block;
}
#cover .cover__title {
	font-size: 3em;
	color: #FFF;
	z-index: 3;
	width: 90%;
	margin: auto;
}
#cover .cover__title span {
	font-size: 0.3em;
	color: #FFF;
	display: flex;
	align-items: center;
}
#cover .cover__title span:before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #FFF;
	margin-right: 5px;
}


article {
	padding: 100px 0;
	background: var(--color-main);
	overflow: hidden;
}
article section {
	width: 90%;
	max-width: 1000px;
	margin: 50px auto;
}


#sort__list {
	display: flex;
	max-width: 600px;
	margin: 50px auto;
}
#sort__list .sort__list-link {
	width: 100px;
	height: 100px;
	background: #FFF;
	border-radius: 100%;
	font-size: 0.9em;
	text-decoration: none;
	text-align: center;
	color: var(--color-main);
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#sort__list .sort__list-link span {
	display: block;
	padding-top: 3px;
	margin-top: 3px;
	font-size: 0.6em;
}
#sort__list .sort__list-link span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 1px;
	background: var(--color-main);
}
#sort__list .sort__list-link.active {
	background: var(--color-main);
	color: #FFF;
	border: 1px solid #FFF;
}
#sort__list .sort__list-link.active span:before {
	background: #FFF;
}


.section__bg {
	max-width: 1000px;
}
.tournament__bg {
	position: absolute;
	max-width: 1000px;
	width: 100%;
	top: 50px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	overflow: hidden;
}
.tournament__bg img {
	width: 1000px;
}

/*===========================
=============================
PC 780~
=============================
===========================*/
@media screen and (min-width: 780px) {

	#cover {
		padding: 150px 0;
	}
	#cover .cover__title {
		font-size: 4em;
		display: flex;
		align-items: baseline;
		width: fit-content;
	}
	#cover .cover__title span {
		align-items: flex-end;
	}
	#cover .cover__title span:before {
		width: 100px;
	}



	#sort__list .sort__list-link {
		width: 140px;
		height: 140px;
		font-size: 1.2em;
	}

}