@charset "shift_jis";

/*お客様の声*/

body {
	color: #666666;	/*全体の文字色*/
	background-color: #ffffe3;	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク設定*/
a {
	color: #666666;
}
a:hover {
	color: #53BEE5;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

/*ページサイズ*/
#container {
	text-align: left;
	width: 970px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー*/
#header {
	height: 250px;	/*ヘッダーの高さ*/
	width: 100%;
	position: relative;
	background: url(../images/header_bg.jpg) no-repeat;	/*ヘッダー背景画像の読み込み*/
}


/*メインコンテンツ*/
#main {
	width: 900px;	/*メインコンテンツ幅*/
	padding-top: 30px;
	padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
}

/*段落タグの余白設定*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}


/*写真ボックス
---------------------------------------------------------------------------*/
#main .box1 {
	background: #eeeeee;	/*背景色*/
	height: 270px;		/*ボックスの高さ*/
	width: 350px;		/*ボックスの幅*/
	padding: 20px;		/*ボックス内の余白*/
	float: left;		/*ボックスを左へ回り込みさせる*/
	display: inline;	/*IE6対策*/
	margin: 0px 25px 15px;	/*左から、上、左右、下へのマージン（ボックス間のスペース）*/
	color: #666666;
	border: 1px solid #325338;
}
/*ボックス内の段落タグ*/
#main .box1 p {
	font-size: 16px;	/*文字サイズ*/
	padding: 0px;		/*余白のリセット*/
	text-align: center;	/*文字をセンタリング*/
}


.clear {
	clear: both;
