@charset "UTF-8";

/* CSS Document */

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

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

	.btn

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

.btn {
	width: 100%;
	text-align: center;
}
.btn a {
	display: inline-block;
	border-radius : 48%;
	padding: 1em 6em 1em 5em;
	color: #000;
	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 var(--main-color) no-repeat;
	background-size: 10px;
}

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

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

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

	header

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

header {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100!important;
}
header .inner {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 60px 40px;
}
header .logo {
}
header .logo a {
	text-decoration: none;
	color: #fff;
}
header .logo a h2 {
	font-size: 90%;
	line-height: 1.8em;
	margin-bottom: 10px;
}
header .logo a h2 span {
	font-size: 120%;
	display: block;
	line-height: 1.8em;
}
header .logo a .ph {
	width: 300px;
}
header .logo a .ph img {
	width: 100%;
}
header nav {
	padding: 0 !important;
}
header nav .nav-container {
	text-align: right;
}
header nav .nav-container .wp_sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}
header nav .nav-container .wp_sns .cell {
	margin-left: 10px;
}
header nav .nav-container .wp_sns .cell a {
	display: block;
	background: var(--main-color);
	border-radius: 40px;
	padding: 6px 20px;
	text-decoration: none;
	color: #000;
}
header nav .nav-container .wp_sns .cell a dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
header nav .nav-container .wp_sns .cell a dl dt {
	width: 20px;
}
header nav .nav-container .wp_sns .cell a dl dd {
	flex: 1;
	font-size: 90%;
	line-height: 1em;
	padding: 0 0 0 10px;
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	background: transparent;
}
header nav ul li {
	width: 33%;
	margin-bottom: 6px;
}
header nav ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 150%;
	text-align: left;
	padding: 0 0 0 10px;
}
header nav ul li a span {
	display: block;
	line-height: 1em;
	font-size: 40%;
	padding: .2em 0 0 0;
	color: var(--main-color);
}
header nav ul li a:hover {
	color: var(--main-color);
}
header nav .hidden {
	display: none;
}

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

	#fixed-header

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

#fixed-header {
	position: fixed;
	top: -90px;
	left: 0;
	width: 100%;
	color: #fff;
	background: #937300;
	transition: .5s;
	border-bottom: 1px solid #7d6200;
	z-index: 101!important;
}
#fixed-header.is-show {
	top: 0;
}
#fixed-header .inner {
	max-width: 1800px;
	min-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px;
}
#fixed-header .inner .logo {
	width: 250px;
}
#fixed-header .inner .logo img {
	width: 100%;
}
#fixed-header .inner .nav {
	flex: 1;
	text-align: right;
}
#fixed-header .inner .nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#fixed-header .inner .nav ul li {
	margin-left: 20px;
}
#fixed-header .inner .nav ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 120%;
}

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

	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: rgba(0, 0, 0, .5);
	padding: 30px;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
}






