﻿/* CSS Document */
/* base.css 基本設定用スタイルシート 
bodyのbackgroundの設定や、aタグの挙動、標準フォントのcolorとfont-sizeとline-heightなどの初期値の設定など。*/

/*------------- 基本設定 ------------------*/
html {
	height:100%;
	margin:0px;
	padding:0px;
}

body {
/*	height: 100%;*/
	width: 100%;
	margin: 0px;
	padding: 0px;
	color:#333333;
	text-align:center;
	font-size:small;
	background-image:url('../image/backgrand.jpg');
	background-repeat: repeat-x;
	background-color:#99CCFF;
	position: relative;
}

/*------------- 文字関係 ------------------*/
h1 {
	/* 背景付タイトル：各頁のタイトル */
	padding: 0px 0px 0px 20px;
	margin: 0px 0px 0px 10px;
	background-image: url( ../image/h1image.jpg );
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 16px;
	letter-spacing:0.6em;
	height:20px;
}

h2 {
	/* 背景付タイトル：各頁のタイトル */
	padding: 0px 0px 0px 20px;
	margin: 0px 0px 0px 30px;
	background-image: url( ../image/h2.gif );
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 14px;
}

h3 {
	font-size: 15px;
}

h4 {
	/*強調文字設定（太文字・上マージンあり）：製品紹介にて使用*/
	font-size: 14px;
	/*color: #003366;*/
	margin: 20px 0px 0px 0px;
	padding: 0px 0px;
}

h5 {

}

b {
	/*太文字強調*/
	font-style: normal;
	font-weight: bold;
}

i {			/*斜体強調   斜体なしフォントサイズ＋１・製品紹介にて使用*/
	font-style:normal;
	font-weight: bold;
	font-size:large;
}

em {			/*斜体強調（強め）*/
	
}

strong {			/*最上の強調   事業内容の強調で使用*/
	color:#FF9900;
	font-weight: bold;
}

p {			/*段落*/

}

a:link {

}

a:visited {

}

a:hover {

}

img {
	border: 0;
}

.fsmall{
	font-size:small;
}

.fxsmall{
	font-size:x-small;
}


/*------------- テーブル 設定 ------------------*/

table {
}

th {		/*背景色だけ灰色に設定*/
	background-color:#CCCCCC;
}

td {
}

/*------------- 基本 list 設定 ------------------*/

#list {
	margin: 0px;
	padding: 0px;
}

#list li{
	margin: 20px 5px 0px 40px;
	line-height: 24px;
	text-align: left;
}

#list li.star{
	margin: 20px 0px 0px 60px;
	list-style-image: url("../image/star.gif");
}
