@charset "UTF-8";
/* CSS基本設定 */

/* 一括初期化
------------------------------------------------- */
/*マージン及びパディング*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,blockquote,table,th,td{
	margin: 0;
	padding: 0;
}

/*テーブル*/
table{
	border-collapse: collapse;
	border-spacing: 0;
}

/*イメージボーダー*/
img{
	border: 0;
}

/*ヘッディング*/
h1,h2,h3,h4{
	font-style: normal;
	font-weight: normal;
}

/*パラグラフ*/
p{
	margin: 0;
	padding: 0 0 1em 0;
}


/* ボディ設定
------------------------------------------------- */
body{
	font-size: 80%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
}

a:link{
	color: #009D60;
}
a:visited{
	color: #557715;
}
a:hover{
	color: #8CDC00;
}




/* ページ設定
------------------------------------------------- */
#container{
	width: auto;
	text-align: center;
}


h1{
	margin:  7em 0 1em 0;
}

#contact{
	width: 285px;
	text-align: left;
	margin: 3em auto;
}

#linkPict{
	background-image: url(./imgbasic/pict_list.gif);
	background-position: 0 0.3em;
	background-repeat: no-repeat;
}

#linkPict a{
	padding-left: 12px;
}

/* フッタ設定
------------------------------------------------- */
#footer{
	width: 560px;
	text-align: left;
	margin: 3em auto;
}

#footer p{
	margin:  0;
	padding: 0;
}


/* 回り込み解除
------------------------------------------------- */
.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

.clearBoth{
	clear: both;
}