@charset "utf-8";
/* CSS Document */

/* clearfix */
*:after {
	display:block;
	clear:both;
	}

html{
	overflow-y:scroll; 
}

/* はみ出し対策 */
body {
	width: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
	font-family: Helvetica, HiraKakuProN-W3, sans-serif;
	line-height: 1.5;
	}


/* リンク */
a {
	color: #900;
	text-decoration: none;
}

nav a {
	display: block;
	width: 100%;
}

/* 中の要素をfloatさせる */
.box {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: box;
}

/* footer */
footer {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;	
	background-color: #646473;
	color: #FFF;
	font-size: 14px;
	
}

footer a {
	color: #FFF;
	text-decoration: underline;
}



address {
	padding: 20px 0;
}

.copy {
	text-align: center;
	font-size: 12px;
	font-style:italic;
}


/* ページトップへ戻る部分レイアウト */

#pageTop a{
	position: fixed;
	bottom: 5px;
	right: 5px;
	padding: 10px;
	background-color: #646473;
	text-align: center;
	display: block;
	border-radius: 10px;
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

*html #pageTop {
	position: absolute;
	right: 0px;
}

#pageTop a:link{
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
}

#pageTop a:hover{
	text-decoration: none;
	color: #FFF;
	font-weight: bold;	
	opacity: 1;
	filter:alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}

#pageTop a:visited{
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
}

.notice {
	text-align: right;
	font-size: 14px;
}