@charset "UTF-8";

/* ----------------------------------------------
　基本スタイルシート
　制作者：Takuya Nagai
　更新日：2008/05/17
 ----------------------------------------------
　[目次]
　・初期設定
　　　└リセット
　　　└基本設定（文字など）
　　　└レイアウト
　・CSS Hack
---------------------------------------------- */


/* ----------------------------------------------
　初期設定
---------------------------------------------- */


/* リセット
------------------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td	{
	padding: 0;
	margin: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,img {
	border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
ol,ul {
	list-style: none;
}
caption,th {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before,q:after {
	content: '';
}
abbr,acronym {
	border: 0;
}


/* 基本設定（文字など）
------------------------------------------------- */

body {
	font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
	/*font-size: 16px;*/ /*Firefoxのデフォルトpx数が他のブラウザと違う点を修正*/
}
/* 参考：http://www.adobe.com/jp/devnet/dreamweaver/articles/css_takano_03.html */
* html body {
	font-family: Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	letter-spacing: 1px;
	vertical-align:baseline;
	font-size: medium;
	 /* IE 6 or sooner */
}
*:first-child+html body {
	font-family: 'メイリオ', Meiryo, sans-serif;
	 /* IE 7 */
}
dt,dd,li,h1,h2,h3,h4,h5,h6,p,th,td,caption,code,address	{
	font-size: 0.8em;
	line-height: 1.5em;
	/*★★★基本文字サイズの設定★★★*/
}
li th,li td, li caption,
li li,td li,td li li,
dt p,dd p,li p,th p,td p	{
	font-size: 1em;
	/* ネストした要素のフォントサイズ調整 */
}
h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	clear: both;
}
strong {
	font-weight: bold;
}
abbr,acronym {
	border-bottom: 1px dotted #000000;
	cursor: help;
}
em {
	font-style: italic;
}
a	{
	color: #0099FF;
}
a:hover	{
	color: #FF3300;
}
a, a:hover	{
	background-color: transparent;
}
img	{
	vertical-align: text-top;
}
input.img	{
	vertical-align: bottom;
}
a:hover img	{
	position: relative;
	left: 1px;
	top: 1px;
}
/*注釈など*/
.notes	{
	font-size: 0.8em;
}
.notes span	{
	color: #FF0000;
	background-color: transparent;
}
.attention	{
	color: #FF0000;
	background-color: transparent;
	font-weight: bold;
}
/*アクセシビリティ対応*/
.skip	{
	position: absolute;
	left: -9999px;
}
legend.skip	{
	display: none;
}

