@charset "utf-8";


body {
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	color: #454545;
	font-size: 95%;
	line-height: 1.8;
	background: url( '../image/bg-body.png' ) repeat 0 0;
	width: 90%;
	margin: 0 auto;
}

#form {
	margin: 15px 0;
	text-align: right;
}

a:link,
a:visited {
	color: #4040ff;
	text-decoration: underline;
}

a:hover,
a:active {
	color: #4040ff;
	text-decoration: none;
}

header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 60px 0;
}

img {
	width: 100%;
}

nav.nav-menu {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background: #00000085;
	color: #fff;
	text-align: center;
	width: 100%;
	transform: translateY(-100%);
	transition: all 0.6s;
}

nav.nav-menu ul {
	background: #00000085;
	margin: 0 auto;
	padding: 0;
}

nav.nav-menu ul li {
	font-size: 1.1em;
	list-style: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}

nav.nav-menu ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

nav.nav-menu ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration: none;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

nav.nav-menu.active {
	transform: translateY(0%);
}

.toggle {
	display: block;
	position: relative;
	top: -5px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
}

.toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #3c4298;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 6px;
	border-radius: 2px 50% 50% 2px;
}

.toggle span:nth-child(1) {
	top: 9px;
}

.toggle span:nth-child(2) {
	top: 18px;
}

.toggle span:nth-child(3) {
	top: 27px;
}

.toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
	.title-box {
		width: 17%;
	}
}





/* -- responsive ------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

body {
	font-size: 100%;
}

}
/* 1000pixel end */




