@charset "utf-8";

/*=======================
共通
=======================*/
.inner {
	width: 90%;
	margin: 0 auto;
}

.pc {
	display: none;
}

.sp {
	display: block;
}

.overlay.open {
	display: block;
}


/*=======================
header
=======================*/

header {
	width: 100%;
	height: 50px;
}

header > .header_inner {
	width: 100%;
	height: 50px;
	margin: 0 auto;
	position: relative;
	padding: 5px 2%;
}

header .header_inner h1 {
	margin-top: 5px;
	display: inline-block;
}

header .header_inner h1 img {
	width: 131px;
}

header .header_inner h1+img {
	display: inline-block;
	width: 126px;
	padding-bottom: 7px;
}

header .header_inner .gnav {
	display: none;
}

header .header_inner > .menu_btn {
	position: absolute;
	right: 10px;
	top: 12px;
	height: 25px;
	width: 25px;
}

header .header_inner .menu_btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	cursor: pointer;
	margin: 0;
	width: 25px;
	height: 25px;
	z-index: 9999;
	transition: .3s ease;
	-ms-transition: .3s ease;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	z-index: 0;
}

header .header_inner .hamburger-slim {
	position: relative;
	height: 17px;
	width: 23px;
	top: 6px;
	left: 1px;
	cursor: pointer;
	z-index: 1;
}

header .header_inner .hamburger-slim:before, header .header_inner .hamburger-slim:after {
	background: #8dc031;
	backface-visibility: hidden;
	content: "";
	height: 2px;
	left: 0;
	transition: 0.55s;
	width: 23px;
}

header .header_inner .hamburger-slim.active:before {
	box-shadow: transparent 0 0 0 0;
	top: 35%;
	transform: rotate(225deg);
	background: #8dc031;
}

header .header_inner .hamburger-slim.active:after {
	top: 35%;
	transform: rotate(315deg);
	background: #8dc031;
}

header .header_inner .hamburger-slim:before {
	box-shadow: #8dc031 0 14px 0 0;
	position: absolute;
	transition: .3s ease;
	-ms-transition: .3s ease;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	top: 0;
}

header .header_inner .hamburger-slim:after {
	position: absolute;
	top: calc(100% - 10px);
}

header .header_inner .sp_menu {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 260px;
	height: 100vh;
	z-index: 1000;
	background-color: #fff;
	padding: 25px 20px;
	transition: all 0.6s;
	transform: translate(280px);
}

header .header_inner .sp_menu.open {
	transform: translate(0px);
}

header .header_inner .sp_menu ul {
	width: 100%;
	justify-content: space-between;
	margin-bottom: 10px;
}

header .header_inner .sp_menu ul li:first-child {
	border-top: 1px solid #000;
}

header .header_inner .sp_menu ul li {
	width: 100%;
	border-bottom: 1px solid #000;
	box-sizing: border-box;
	padding-left: 10px;
}

header .header_inner .sp_menu ul a {
	display: block;
	padding: 16px 0;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}

header .header_inner .sp_menu .close {
	position: absolute;
	left: 30px;
	bottom: 120px;
	font-size: 12px;
	color: #000;
	padding-left: 30px;
	background-image: url(../../img/common/icn_x.png);
	background-size: 20px auto;
	background-position: left center;
	background-repeat: no-repeat;
}

/*=======================
footer
=======================*/

footer {
	height: auto;
	border-top: none;
	margin-top: 40px;
}

footer .inner {
	display: block;
	padding: 15px 0;
}

footer .inner .flex {
	display: block;
}

footer .inner .flex li {
	margin-bottom: 10px;
}




footer .copyright {
	padding: 7px 0 8px;
	text-align: center;
}






/*=======================
pagetop
=======================*/
#pagetop {
	text-align: center;
	position: static;
	width: 100%;
	margin-bottom: 20px;
}

#pagetop a {
	display: block;
	width: 100%;
}

#pagetop img {
	width: 50px;
	height: auto;
}