@charset "utf-8";

/*******************************************

-------------------------------------------
wrap
********************************************/

.wrap1200 {
	width: 1200px;
	margin: 0 auto;
}
.wrap920 {
	width: 920px;
	margin: 0 auto;
}

/*******************************************

-------------------------------------------
header
********************************************/

header {
	height: 130px;
	position: relative;
	background-color: #fff;
	border-bottom: 1px solid #419641;
}
header h1 {
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
header h1 a {
	display: inline-block;
}
header nav.gNav {
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
}
header nav.gNav ul {
	display: flex;
	height: 100%;
}
header nav.gNav ul li {
	width: 130px;
	height: 100%;
	border-left: 1px solid #419641;
}
header nav.gNav ul li:last-of-type {
	width: 190px;
}
header nav.gNav ul li a {
	display: flex;
	height: 100%;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-color: #fff;
	color: #419641;
}
header nav.gNav ul li:last-of-type a {
	background-color: #419641;
	color: #fff;
}
header nav.gNav ul li a img {
	display: block;
	transition: all 0.15s linear;
	position: relative;
	top: 0;
}
header nav.gNav ul li a:hover img {
	top: -5px;
}
header nav.gNav ul li a em {
	display: block;
	width: 100%;
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}

/*******************************************

-------------------------------------------
main
********************************************/

main {
}

/*******************************************

-------------------------------------------
footer
********************************************/

footer {
	width: 100%;
	height: 73px;
	background-color: #dcdcdc;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 100px;
}
footer p {
	font-size: 12px;
	text-align: center;
}