@charset "UTF-8";
/*=================================================
     common
==================================================*/
*{
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  word-break: break-all;
}
p{
	line-break: strict;
}
a{
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
a:hover{
	opacity:0.7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
nav a{
	-webkit-transition:none;
	-moz-transition:none;
	-ms-transition:none;
	transition:none;
}
nav a:hover{
	opacity:1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
body {
  font-size: 14px;
  font-family: "MS PMincho" , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.6;
  background:#fff;
  -webkit-text-size-adjust: 100%;
  min-width:1024px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
body.active{
	opacity: 1;
}
#wrapper{
	width:100%;
	/*padding:40px 0 0 0;*/
}
.inner{
	width:1100px;
	margin:0 auto;
}
#page-top{
	width: 89px;
	height: 25px;
	position:fixed;
	right:30px;
	bottom:0;
	z-index:200;
	cursor:pointer;
}
#page-top a{
	display:block;
	width:100%;
	height:100%;
	background-image:url(../img/btn_pagetop.gif);
	background-repeat:no-repeat;
	background-position:center top;
}
/*=================================================
     header
==================================================*/
header .inner{
	padding-bottom:4px;
	border-bottom:2px solid #b2b2b2;
}
header nav{
	width:100%;
	padding-bottom:15px;
	border-bottom:1px solid #b2b2b2;
	position:relative;
}
header nav p,
header nav h1{
	float:left;
}
header nav h1{
	border-left:1px dashed #999;
	border-right:1px dashed #999;
}
header nav h1{
	margin:0 43px;
}
header nav p:not(:nth-of-type(3n)){
	margin-right:34px;
}
/*header nav p:last-child{
	position:absolute;
	right:-21px;
}*/

/*=================================================
     footer
==================================================*/
footer .inner{
	margin-top:70px;
	border-top:1px solid #b2b2b2;
	padding:10px 0;
}
footer address{
	text-align:center;
	font-size:11px;
	letter-spacing:1px;
}
