@charset "UTF-8";
/*********************
Common
*********************/
a:hover,
a:focus {
	text-decoration: none !important;
}
/*********************
Trigger
*********************/
header .navTrigger {
	position: fixed;
	top: -40px;
	right: 30px;
	width: 100px;
	height: 100px;
	border: 2px solid var(--thinColor);
	background-color: var(--accentColor);
	border-radius: 50%;
	color: var(--text);
	text-align: center;
	line-height: 130px;
	cursor: pointer;
	transform: rotate(0);
	transform-origin: center;
	transition: 1s background-color ease, 1.5s color ease, 0.9s transform ease;
	z-index: 1000;
}
header .navTrigger:before {
	display: block;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	content: 'MENU';
	font-size: 1.8rem;
	font-family: var(--oswald);
	font-weight: blod;
	color: var(--text);
}
header .navTrigger:after {
	display: block;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%)rotate(180deg);
	content: 'CLOSE';
	font-size: 1.8rem;
	font-family: var(--oswald);
	font-weight: blod;
	color: white;
}
header .navTrigger:hover, header .navTrigger:focus {
	transform: scale(1.1);
	background-color: var(--deepColor);
	color: var(--thinGray);
}
header .navTrigger:hover:before {
	color: var(--thinGray);
}
header .navTrigger.active {
	transform: rotate(180deg);
}
header .navTrigger .menu {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	z-index: 10;
}
header .navTrigger .close {
	display: block;
	position: absolute;
	top: -38px;
	left: 50%;
	transform: translateX(-50%)rotate(-180deg);
	font-size: 30px;
	color: var(--subColor1);
	opacity: 1;
}
nav {
	width: 100vw;
	height: 100vh;
	height: 100lvh;
	padding: 40px 0 100px;
	border-bottom: 5px solid var(--mainColor);
	position: fixed;
	background-color: var(--thinGray);
	top: -100vh;
	top: -100lvh;
	left: 0;
	z-index: 900;
	transition: 1.2s all cubic-bezier(0.1, 0.05, 0.09, 1);
	overflow: scroll;
}
.navShowFlg {
	display: block;
	top: 0;
}
@keyframes navShow {
	0% {
		top: -100vh;
	}
	100% {
		top: 0;
	}
}
.navCloseFlg {
	bottom: -100vh;
	animation: 1.5s navClose ease;
}
@keyframes navClose {
	0% {
		bottom: 0;
		top: 0;
	}
	100% {
		bottom: -100vh;
		top: auto;
	}
}
/***************************
Navigation Layout
***************************/
.flex {
	width: 90vw;
	min-height: 90vh;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	font-size: 12px;
}
.grid {
	display: grid;
	background-color: beige;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
	grid-template-columns: repeat(4, 25%);
	grid-template-rows: repeat(2, auto);
	justify-content: space-between;
	text-align: center;
}
/*h2*/
.grid h2 {
	padding: 8px 0;
	font-size: 2rem;
}
.outline {
	background-color: var(--deepColor);
	color: var(--thinColor);
	font-family: var(--oswald);
	grid-column: 1 / 5;
}
.outline:before {
	display: block;
	margin-bottom: -5px;
	font-size: 5rem;
	font-family: var(--icon);
	color: var(--subColor1);
}
.member:before {
	content: '\f8df';
}
.newcomer:before {
	content: '\e7fe';
}
.extra:before {
	content: '\e87c';
}
/*grid*/
.grid li {
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	font-size: var(--f6);
}
.grid li a {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 10px 0;
	color: #333;
	overflow: hidden;
	z-index: 1;
	transition: 0.8s all ease;
}
.grid li a:before {
	display: block;
	font-size: 3rem;
	font-family: var(--iconOutline);
	color: var(--text);
	transition: 0.6s all ease;
}
/*************************
UX Controls
*************************/
.grid li a:hover {
	background-color: var(--mainColor);
	color: white;
}
.grid li a:hover:before {
	color: yellow;
	transform: translateY(2px)scale(1.1);
}
/*************************
Grid Layout
*************************/
.grid li.news {
	color: #fff;
	grid-row: 2 / 4;
}
.grid li.about {
	grid-column: 1 / 3;
}
.grid li.guideLine {
	grid-column: 1 / 5;
}
/*************************
before
*************************/
.grid li.home a:before {
	content: '\e587';
}
.grid li.news a:before {
	content: '\e32c';
}
.grid li.schedule a:before {
	content: '\ebcc';
}
.grid li.ranking a:before {
	content: '\f8df';
}
.grid li.result a:before {
	content: '\ead7';
}
.grid li.record a:before {
	content: '\e7af';
}
.grid li.rule a:before {
	content: '\ea19';
}
.grid li.report a:before {
	content: '\f1c6';
}
.grid li.guideLine a:before {
	content: '\e55e';
}
.grid li.fes a:before {
	content: '\ea68';
}
.grid li.about a:before {
	width: 70px;
	height: 3rem;
	margin: 0 auto;
	content: '';
	background-color: #000;
	mask-image: url("../format/header/logo.svg");
	mask-size: cover;
	-webkit-mask-image: url("../format/nav/logo.svg");
	-webkit-mask-size: cover;
}
.grid li.competition a:before {
	width: 60px;
	height: 3rem;
	margin: 0 auto;
	content: '';
	background-color: #000;
	mask-image: url("../format/nav/lure.svg");
	mask-size: cover;
	-webkit-mask-image: url("../format/nav/lure.svg");
	-webkit-mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
.grid li.reportForm a:before {
	content: '\e745';
}
.grid li.dictionary a:before {
	content: '\e666';
}
.grid li.inquiry a:before {
	content: '\e158';
}
/*************************
after
*************************/
.grid li a:after {
	width: 100%;
	display: block;
	position: absolute;
	left: 50%;
	top: -10px;
	transform: translateX(-50%);
	font-size: 5rem;
	font-family: var(--oswald);
	color: rgba(209, 209, 209, 0.58);
	z-index: -1;
	transition: 0.6s all ease;
}
.grid li a:hover:after {
	color: rgba(209, 209, 209, 0.18);
}
.grid li.home a:after {
	content: 'TOP PAGE';
}
.grid li.news a:after {
	content: 'INFORMATION';
}
.grid li.schedule a:after {
	content: 'SCHEDULE';
}
.grid li.ranking a:after {
	content: 'RANKING';
}
.grid li.result a:after {
	content: 'RESULT';
}
.grid li.record a:after {
	content: 'RECORD';
}
.grid li.rule a:after {
	content: 'RULE';
}
.grid li.report a:after {
	content: 'REPORT';
}
.grid li.guideLine a:after {
	content: 'FIELD GUIDELINE'
}
.grid li.fes a:after {
	content: 'KNB FES';
}
.grid li.about a:after {
	content: 'ABOUT US';
}
.grid li.competition a:after {
	content: 'COMPETITION TYPE';
}
.grid li.reportForm a:after {
	content: 'FORM';
}
.grid li.dictionary a:after {
	content: 'DICTIONARY';
}
.grid li.inquiry a:after {
	content: 'INQUIRY';
}
/************************
FlexLayout
************************/
ul.showFlg {
	display: flex;
	position: absolute;
	animation: 1s fade ease;
	z-index: 10000;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	header .navTrigger {
		right: 10px;
	}
	.grid {
		grid-template-columns: repeat(2, 50%);
		grid-template-rows: repeat(13, auto);
	}
	.outline {
		grid-column: 1 / 3;
	}
	.grid li {
		font-size: var(--f7);
	}
	.grid li.about {
		grid-column: 1;
		grid-row: 2 / 4;
	}
	.grid li.guideLine {
		grid-column: 1 / 3;
	}
	.grid li a:after {
		top: 0;
		font-size: 2.8rem;
	}
	
}