@charset "utf-8";

/*----------------------------------------------------------------------> ▼ general <----------*/

body {
	--footer_height: var(--header_height);	
}

.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--footer_height);
	margin-top: 0;
	background: var(--blue);
}

.copyright {
	text-align: center;
	font-family: YuGo-B;
	font-size: 14px;
	
	letter-spacing: 1px;
	color: #fff;
}

.copyright span {
	font-family: Helvetica-M;
	font-size: 16px;
}

@media (width <= 767px) {
	.footer {
		margin-top: 0px;
	}
	
	.copyright  {
		font-size: 12px;
	}
	
	.copyright span {
		font-size: 13px;
	}
}