@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

html {
	height: 100%;
}

body {
	display: flex;
	height: 100vh;
	flex-direction: column;
	background: #fff;
}

.inner {
	max-width: 1400px;
	margin: 0 auto;
}

/* header */
header {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 20px;
	background: #fff;
	border-top: 24px solid #89cd00;
	border-bottom: 1px solid #a9a9a9;
	z-index: 1000;
	}

header .logo {
	display: block;
	}

header .logo a {
	display: inline-block;
	}

header .logo a img {
	display: block;
	height: 40px;
	}

header span.bt {
	position: absolute;
	right: 30px;
	top: 30px;
	display: block;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 30px;
	content: "";
	transition: .1s ease;
	cursor: pointer;
	}
header span.bt span {
	position: absolute;
	left: 5px;
	top: 14px;
	width: 20px;
	height: 2px;
	content: "";
	background: #2F399A;
	transition: .2s ease;
	}
header span.bt:before {
	position: absolute;
	left: 5px;
	top: 7px;
	width: 20px;
	height: 2px;
	content: "";
	background: #2F399A;
	transition: .2s ease;
	}
header span.bt:after {
	position: absolute;
	left: 5px;
	bottom: 7px;
	width: 20px;
	height: 2px;
	content: "";
	background: #2F399A;
	transition: .2s ease;
	}

header span.bt.open {
	right: 290px;
	}
header span.bt.open span {
	height: 0;
	}
header span.bt.open:before {
	top: 14px;
	transform: rotate(-315deg);
	}
header span.bt.open:after {
	bottom: 14px;
	transform: rotate(315deg);
	}

header nav {
	position: fixed;
	right: -100%;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	transition: .1s ease;
	}
header nav.open {
	right: 0px;
	background: rgba(0,0,0,.1);
	}

header nav ul {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 260px;
	height: 100vh;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,.5);
	}

header nav ul li {
	display: block;
	font-family: din-2014-narrow, ten-mincho, sans-serif;
	font-weight: 300;
	font-style: normal;
	width: 100%;
	}

header nav ul li a,
header nav ul li a:hover {
	position: relative;
	display: block;
	padding: 1rem;
	color: #333;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1em;
	text-decoration: none;
	background: #fff;
	border-bottom: 1px solid #ECECEC;
	}

header nav ul li a::after {
	position: absolute;
	top: 45%;
	display: block;
	content: "";
	right: 18px;
	width: 7px;
	height: 7px;
	border-right: 1px solid #2F399A;
	border-bottom: 1px solid #2F399A;
	-webkit-transform: rotate(-45deg);
}

@media screen and (max-width: 980px) {
	article {
	padding: 0 30px;
	}

.inner {
	width: 100%;
	padding: 0;
	}
}
/* =============== enb nav =============== */
/* =============== footer =============== */
#footer {
	background-color: #89cd00;
	color: #333;
	padding: 2rem 1rem;
	flex-shrink: 0;
}

#footer ul {
	max-width: 1400px;
	margin: 0 auto 1rem auto;
	text-align: center;
}

#footer ul li {
	display: inline;
}

#footer ul li a {
	color: #333;
	font-size: .8rem;
	text-decoration: none;
	white-space: nowrap;
}

#footer ul li:after {
	content: "　|　";
}

#footer ul li:last-child:after {
	content: "";
}

#footer .copy {
	text-align: center;
	font-size: .8rem;
}

@media screen and (max-width: 980px) {
#footer ul li:nth-last-child(2):after {
	content: "　|　";
}

#footer ul li:nth-last-child(1) {
	display: contents;
} }

@media screen and (max-width: 767px) {
#footer ul {
	text-align: left;
} }
/* =============== end footer =============== */
/* =============== #pagetop =============== */
#pagetop {
	bottom: 3em;
	font-size: .8rem;
	position: fixed;
	right: 1.5em;
	background: #89cd00;
	border-radius: 5px;
	color: #333;
	display: block;
	opacity: 0.7;
	padding: 1em;
	text-align: center;
	text-decoration: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

#pagetop:hover {
	background: #999;
	text-decoration: none;
}

/* =============== end #pagetop =============== */
