@charset "UTF-8";


body {
	overflow: hidden;
}

iframe,
object {
	width: 100% !important;
	height: 100svh;
	margin: 0 0 64px 0;
	display: block;
}

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

	iframe,
	object {
		margin: 0 0 0 0;
	}
}



/*---------------------------------------------------------------*\
$menu tab
\*---------------------------------------------------------------*/

.tab-wrap {
	overflow: hidden;
}

.tab-label {
	background-color: #c09d4c;
	cursor: pointer;
	height: 68px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	font-size: 14px;
	width: calc((100%)/5);
	gap: 6px;
}

.tab-label:first-of-type {
	position: fixed;
	z-index: 4;
	bottom: 0;
	left: 0;
}

.tab-label:nth-of-type(2) {
	position: fixed;
	z-index: 4;
	bottom: 0;
	left: 20%;
	margin: auto;
}

.tab-label:nth-of-type(3) {
	position: fixed;
	z-index: 4;
	bottom: 0;
	left: 40%;
	margin: auto;
}

.tab-label:nth-of-type(4) {
	position: fixed;
	z-index: 4;
	bottom: 0;
	left: 60%;
	margin: auto;
}

.tab-label:last-of-type {
	position: fixed;
	z-index: 4;
	bottom: 0;
	left: 80%;
}

.tab-label .icon {
	height: 24px;
}

.tab-label .subject {
	font-size: 13px;
}

.tab-switch.switch-award:checked+.tab-label span {
	color: #fff;
}

.tab-switch.switch-ranking:checked+.tab-label {
	color: #00DAFF;
}

.tab-label::after {
	height: 2.5px;
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}

.tab-label.label-award::after {
	background-color: #fff;
}

.tab-label.label-ranking::after {
	background-color: #00DAFF;
}

.tab-switch:checked~.tab-label::after {
	transform: translateX(-100%);
}

.tab-switch:checked+.tab-label::after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
	height: 0;
	opacity: 0;
	pointer-events: none;
	position: relative;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked~.tab-content {
	transform: translateX(30%);
}

.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	height: 40px;
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}


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

	/* tab */
	.tab-label {
		font-size: 10px;
		height: 52px;
		gap: 4px;
	}

	.tab-label .icon {
		height: 20px;
	}

	.tab-label .subject {
		font-size: 10px;
	}

	.tab-wrap::after {
		height: 24px;
	}
}