@charset "UTF-8";

/* CSS Document */

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

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

	#app_top

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

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

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

	#app_sd

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

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

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

	loading

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

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

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

	.btn

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

.btn {
	width: 100%;
	text-align: center;
}
.btn a {
	display: inline-block;
	padding: .6em 6em .6em 5em;
	color: var(--sub-color);
	text-decoration: none;
	font-size: 100%;
	background: url(/common/images/icon_arrow.svg) top 50% right 2em var(--main-color) no-repeat;
	background-size: 10px;
	text-align: center;
}
.btn a:hover {
	background: url(/common/images/icon_arrow.svg) top 50% right 1.8em #fff no-repeat;
	background-size: 10px;
}

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

	header

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

header {
	width: 100%;
	z-index: 100!important;
	padding: 50px 30px;
	position: relative;
}
header .inner {
	margin: 0 auto;
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header .logo {
}
header .logo img {
	width: 400px;
	margin: 0 auto;
}
header nav {
	padding: 50px 0 0 0 !important;
}
header nav .nav-container {
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 420px;
}
header nav ul li {
	width: 33.33333%;
}
header nav ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 150%;
	padding: .2em 0;
}
header nav ul li a span {
	display: block;
	line-height: 1em;
	font-size: 40%;
	padding: .2em 0 0 0;
	color: var(--sub-color);
}
header nav ul li a:hover,
header nav ul li a:hover span {
	color: var(--main-color);
}
header .inner .btn_online {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
header nav .hidden {
	display: none;
}
header .sns {
	position: absolute;
	top: 40px;
	right: 20px;
}
header .sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	background: var(--main-color);
	border-radius: 40px;
	padding: 4px 20px;
}
header .sns ul li {
}
header .sns ul li:nth-child(2),
header .sns ul li:nth-child(3) {
	width: 20px;
	margin-left: 10px;
}
header .sns ul li p {
	font-size: 80%;
	color: #000;
}

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

	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;
}






