@charset "utf-8";


/*------------------------------------------------------------------
	リセット 
----------------------------------------------------------------- */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------------------------------------------------------
	スクロールバーを常に表示
----------------------------------------------------------------- */
html{
	overflow-y:scroll;
}


/*------------------------------------------------------------------
	ベースラインにあわす
----------------------------------------------------------------- */
sup{
	vertical-align: text-top;
}
sub{
	vertical-align: text-bottom;
}

/*------------------------------------------------------------------
	回り込み解除 
----------------------------------------------------------------- */
br.clear {
	clear:both; font:0pt/0pt sans-serif
}
.clearfix:after {
	content:"."; display:block; visibility:hidden; height:0.1px; font-size:0.1em; line-height:0; clear:both;
}
.clearfix {
	display:inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}


/*------------------------------------------------------------------
  font.css(YUI2.8.1)
----------------------------------------------------------------- */
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.8.1

10px = 77%     11px = 85%     12px = 93%     13px = 100%
14px = 108%    15px = 116%    16px = 123.1%  17px = 131%
18px = 138.5%  19px = 146.5%  20px = 153.9%  21px = 161.6%
22px = 167%    23px = 174%    24px = 182%    25px = 189%
26px = 197%
 */

body {
	font: 13px/1.231  "メイリオ",Meiryo, Osaka,"Hiragino Kaku Gothic Pro","Arial","Lucida Sans Unicode","verdana","tahoma","Lucida Grande","Arial","Lucida Sans Unicode",sans-serif;
	*font-size:small; 
	*font:x-small; 
}
select,input,button,textarea {
	font: 99%  "メイリオ",Meiryo, Osaka,"Hiragino Kaku Gothic Pro","Arial","Lucida Sans Unicode","verdana","tahoma","Lucida Grande","Arial","Lucida Sans Unicode",sans-serif;
}
table {
	font-size: inherit;
	font:100%;
}
pre,code,kbd,samp,tt {
	font-family: monaco, monospace;
	*font-size:108%;
	line-height: 1.4;
}


/*------------------------------------------------------------------
  フォント関連半角英数字折り返しする
----------------------------------------------------------------- */
body {
	word-break:break-all; /* 常に行末に改行 */
	word-wrap:break-word; /* 半角英数字折り返し許可 */
	text-align:justify; /*テキストを両端揃えFF */
	text-justify:inter-ideograph; /* テキストを両端揃えIE*/
	line-height:1;
	color:rgb(60,60,60);
}