@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: normal;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.4rem;
	min-width: 1100px;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
/*
 * "AXIS Font" licensed under the SIL Open Font License
 * http://www.axisfont.com/
 */
@font-face { font-family: "axis"; src: url(../font/axis.woff) format("woff"); }
::selection{
	color: #014099;
	background: #dee4e5;
}
::-moz-selection{
	color: #014099;
	background: #dee4e5;
}

/* header
------------------------------------------------------------*/
header {
	background: url(../images/bg_diagonal.png) repeat-x center top;
	padding: 18px 0 30px;
	text-align: right;
}
header .inner {
	position: relative;
}
header .logo {
	display: block;
	position: absolute;
	top: 15px;
}
header ul {
	margin-top: 25px;
}
header li {
	display: inline-block;
}
header li:not(:last-child)::after {
	content: "";
	width: 1px;
	height: 8px;
	background: #555;
	margin: 0 10px 0 15px;
	display: inline-block;
	position: relative;
	top: 1px;
}
header li a {
	font-size: 1rem;
	color: #555;
	text-decoration: none;
}
header li a:hover {
	text-decoration: underline;
}


/* nav
------------------------------------------------------------*/
#menuBtn {
	display: none;
}
nav {
	background: #f8f8f9;
	background: -moz-linear-gradient(top, #f8f8f9 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #f8f8f9 0%,#ffffff 100%);
	background: linear-gradient(to bottom, #f8f8f9 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f9', endColorstr='#ffffff',GradientType=0 );
}
nav ul {
	font-size: 0;
	text-align: center;
}
nav li {
	font-size: 1.4rem;
	display: inline-block;
}
nav li a {
	color: #333;
	padding: 18px 30px;
	display: block;
	text-decoration: none;
	transition: .3s;
}
nav li a:hover {
	background: #f1f2f3;
}
nav li.ac a {
	color: #014099;
	background: #f1f2f3;
	position: relative;
}
nav li.ac a::after {
	content: "";
	width: 100%;
	height: 2px;
	background: #014099;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}


/* footer
------------------------------------------------------------*/
.pagetop {
	font-size: 1.2rem;
	color: #fff;
	background: #014099;
	padding: 8px 25px;
	display: block;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	transition: .3s;
}
.pagetop:hover {
	opacity: .6;
}
.pagetop::before {
	content: "";
	width: 9px;
	height: 5px;
	background-image: url(../images/i_pagetop.png);
	background-size: contain;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	top: -2px;
}
footer p:not(:last-child) {
	margin-bottom: 0;
}
footer .topArea {
	background: #dee4e5;
}
footer .topArea .inner {
	padding: 15px 0;
	position: relative;
}
footer .topArea ul {
	width: 80%;
}
footer .topArea li {
	width: 20%;
	float: left;
}
footer .topArea li:nth-child(-n+5) {
	margin-bottom: 5px;
}
footer .topArea li a {
	font-size: 1.2rem;
	color: #333;
	text-decoration: none;
}
footer .topArea li a:hover {
	text-decoration: underline;
}
footer .topArea li a::before {
	content: "";
	width: 11px;
	height: 11px;
	background-image: url(../images/i_footer.png);
	background-size: contain;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	top: 1px;
}
footer .bottomArea {
	font-size: 1.2rem;
	color: #666;
}
footer .bottomArea .inner {
	padding: 20px 0;
	position: relative;
}
footer .bottomArea .ttl {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 5px;
}
footer .bottomArea .copy {
	position: absolute;
	right: 0;
	bottom: 20px;
}


@media screen and (max-width:480px) {
	
	* {
		-webkit-appearance: none;
	}
	body {
		font-size: 1.3rem;
		min-width: inherit;
	}
	
	
	/* header
	------------------------------------------------------------*/
	header {
		background-size: auto 4px;
		padding: 15px 0 11px;
	}
	header .logo {
		width: 174px;
		height: 34px;
		position: static;
	}
	header ul {
		display: none;
	}
	
	
	/* nav
	------------------------------------------------------------*/
	#menuBtn {
		width: 24px;
		height: 22px;
		background: #000;
		border-top: 10px solid #fff;
		border-bottom: 10px solid #fff;
		display: block;
		position: absolute;
		top: 20px;
		right: 5%;
		transition: .3s;
	}
	#menuBtn:before {
		content: '';
		position: absolute;
		width: 24px;
		height: 2px;
		background: #000;
		top: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn:after {
		content: '';
		position: absolute;
		width: 24px;
		height: 2px;
		background: #000;
		bottom: -9px;
		right: 0;
		transition: all 0.3s;
	}
	#menuBtn.active {
		background: #FFF;
	}
	#menuBtn.active:before {
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: 0;
		right: 0;
	}
	#menuBtn.active:after {
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		bottom: 0;
		right: 0;
	}
	nav ul {
		max-width: 100%!important;
		float: none;
		text-align: center;
		display: none;
		border-top: 1px solid #dcdfe4;
		position: absolute;
		z-index: 100;
	}
	nav li {
		font-size: 1.2rem;
		width: 50%;
		border-bottom: 1px solid #dcdfe4;
	}
	nav li:nth-child(odd) {
		border-right: 1px solid #dcdfe4;
	}
	nav li a {
		background: rgba(255,255,255,.95);
		padding: 10px;
	}
	nav li.ac a::after {
		display: none;
	}
	
	
	/* footer
	------------------------------------------------------------*/
	footer .topArea .inner {
		max-width: 100%!important;
		padding: 0;
	}
	.pagetop {
		padding: 15px;
		text-align: center;
		position: static;
	}
	footer .topArea ul {
		width: 100%;
	}
	footer .topArea li {
		width: 50%;
		border-bottom: 1px solid #ccc;
		text-align: center;
	}
	footer .topArea li:nth-child(odd) {
		border-right: 1px solid #ccc;
	}
	footer .topArea li:nth-child(-n+5) {
		margin-bottom: 0;
	}
	footer .topArea li a {
		display: block;
		padding: 10px;
	}
	footer .topArea li a::before {
		display: none;
	}
	footer .bottomArea .inner {
		padding: 15px 0;
		text-align: center;
	}
	footer .bottomArea .copy {
		font-size: 1rem;
		margin-top: 10px;
		position: static;
	}
}
