@charset "UTF-8";
/* style.css */

@media screen and (min-width:601px), print {

/*--------------------
1:body
--------------------*/
body {
	color: #000;
	font-family: "Noto Sans Japanese", sans-serif;
	font-size: 15px;
	line-height: 1.5;
}
#wrapper {
	position: relative;
	min-width: 1160px;
	width: 100%;
}
#wrapper.page { padding-top: 110px;}
.content {
	margin: 0 auto;
	width: 1024px;
}
.sp { display: none;}

/*--------------------
2:header, nav
--------------------*/
header {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px 0;
	width: 100%;
	z-index: 10;
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease;
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	bottom: auto;
	background-color: #fff;
}
header h1 {
	display: none;
}
.page header.fixed h1 {
	display: block;
}
header h1 a {
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}
header h1 a:hover { opacity: 0.7;}
header .content {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
header nav {
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	width: 100%;
}
header.fixed nav { width: 817px;}
header nav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-size: 17px;
	line-height: 1;
	width: 100%;
}
header nav ul li a {
	background-color: #93bb4b;
	border-radius: 10px;
	color: #fff;
	display: block;
	font-weight: bold;
	height: 50px;
	padding-top: 16px;
	text-align: center;
	text-decoration: none;
	/* font-size: 13px;
	line-height: 19px; */
	width: 200px;
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease;
}
header.header--new nav ul li a {
	font-size: 13px;
	line-height: 19px;
	width: 160px;
}
header nav ul li a:hover {
	background-color: #bed693;
	color: #006837;
}
#nav-btn { display: none;}


}/*media*/
