@charset "utf-8";
/*	-------------------------------------------------------------
	Description:	CSS file for screen media
	Filename:		default.css
	Author: 		N Hayashi
	Date:			12/01/2008
	-------------------------------------------------------------
	■Universal selector-ユニバーサルセレクタ
	■Structure Module-body設定
	■Text Module-テキスト・フォント設定
	■Hypertext Module-リンク設定
	■List Module-リスト設定
	■Table Module-テーブル設定
	■Image Module-画像設定
	■hr Module-hr設定
	■form Module-フォーム設定
	■Block Element and Inline element Module

FOR SCREEN ****************************************************** */
/*	-------------------------------------------------------------
	■Universal selector
	ユニバーサルセレクタ
	ブラウザの初期期設定リセット
	タグに設定されている初期値を解除
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
* {
	margin: 0px;
	padding: 0px;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 12px;
	color: #333333;
}

/*	-------------------------------------------------------------
	■Structure Module
	body設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
body {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	font-size: 12px;
	text-align: center;
	border-collapse: collapse;
	background-position: top;
	background-color: #ff9900;
}

/*	-------------------------------------------------------------
	■Text Module
	テキスト・フォント設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
h1 {
	margin-top: 3px;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
	padding: 0px;
	font-size: 10px;
	font-weight: normal;
	color: #660000;
	text-align: left;
	width: 550px;
}

h2 {
width: 895px;
height: 125px;
}


/*	-------------------------------------------------------------
	■Hypertext Module
	リンク設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
a, a:link, a:visited {
	color: #0066cc;
	text-decoration: none;
}

a:hover, a:active {
	color: #CAE4FF;
	text-decoration: underline;
}

/*	-------------------------------------------------------------
	■List Module
	リスト設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
ul {
	list-style-position: outside;
}

	ul li {
		list-style: none;
	}

ol {
	list-style-position: outside;
}

	ol li {
		list-style: decimal;
	}


/*	-------------------------------------------------------------
	■Table Module
	テーブル設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
table {   
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border-spacing: 0px;
	border-collapse: collapse;
	empty-cells: show;
	word-break: break-all;
}

th {
	margin: 0px;
	font-weight: normal;
	border-collapse: collapse;
	vertical-align: middle;
	background-color: transparent;
	border: solid 1px #999999;
}

td {
	margin: 0px;
	font-weight: normal;
	border-collapse: collapse;
	text-align: left;
	vertical-align: middle;
	background-color: transparent;
	border: solid 1px #999999;
}

/*	-------------------------------------------------------------
	■Image Module
	画像設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
img {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	border: 0px;
	vertical-align: bottom;
}

/*	-------------------------------------------------------------
	■hr Module
	hr設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
hr {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	height: 1px;
	color: #CCCCCC;
	border-bottom: 1px solid #666666;
	border-top: 1px solid #ffffff;
	background-color: #666666;
}

/*	-------------------------------------------------------------
	■form Module
	フォーム設定
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
form {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	vertical-align: middle;
}

input, select, option ,textarea {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 0px;
	vertical-align: middle;
}

optgroup {
    font-style: normal;
}

button {
   background-color: #FFFFFF;
   vertical-align: middle;
}

fieldset {
	border: 0px;
}

/*	-------------------------------------------------------------
	■Block Element and  Inline element Module
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
div, p, span, address {
	text-align: justify;
}











































