@charset "UTF-8";

/* CSS Document */

body {
	font-size: 16px;
	line-height: 1.85em;
	background: #f7f7f7;
}

/*====================================

	#app_top

====================================*/

#app_top {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	padding: 80px 0 0 0;
}

/*====================================

	#app_sd

====================================*/

#app_sd {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
}

/*====================================

	loading

====================================*/

.spinner {
	width: 100px;
	height: 100px;
}

/*====================================

	header

====================================*/

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100!important;
}
header .inner {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	position: relative;
	background: #0f0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header .logo {
	width: 200px;
}
header nav {
	border: 2px solid #00f;
	padding: 0 !important;
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	background: transparent;
}
header nav ul li {
	background: #098;
	margin-left: 20px;
}
header nav ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #000;
}
header nav ul li a span {
}
header nav ul li a:hover {
}
header nav .hidden {
	display: none;
}

/*====================================

	breadcrumbs

====================================*/

.breadcrumbs {
	background: #098;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap:wrap;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumbs li+li::before {
	content: "›";
	margin: 0 .25rem;
	opacity: .6;
}
.breadcrumbs a,
.breadcrumbs p {
	text-decoration: none;
	font-size: 80%;
	display: inline-block;
}
.breadcrumbs [aria-current="page"] {
	font-weight: 600;
}

/*====================================

	footer

====================================*/

footer {
	background: #333;
	padding: 30px;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
}






