@charset "UTF-8";
/* CSS Document */

/* ===共通設定（リセットスタイル）

：各htmlのタグには、デフォルトで設定されているスタイル
（下線が付いていたり、文字が太くなっていたり）があるので、
初めに、そのような初期の設定を無くしておく為の設定を以下に記述しておく。
デザインデータに合わせた指定は、改めてそれそれの該当箇所に個別に指定する。

===========*/

* {
	margin:0px;
	padding:0px;
}

img {
	border:0px;
}

ul, ol {
	list-style-type:none;
}

.clrfix:after {/*疑似クラスafterは該当の要素の後に疑似的にボックスを追加する命令*/
	content:".";/*要素の前後に文字や画像を追加*/
	display:block;
	height:0px;
	visibility:hidden;
	clear:both;
}

	
.clrfix {
	display:inline-block;
	min-height:1px;
	/* for IE 7 */
}



/* ===フォントの共通設定==================*/

body, div, a, ul, ol, dl, dt, dd, li, p, table, tr, td,address,h1, h2, h3, h4 {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	font-style:normal;
	font-weight:normal;
	line-height:1.5em;
	text-decoration:none;
	padding:0px;
	margin:0px;
}

a.text_link {
	color:#3fc;
	text-decoration:underline;
}

/* ===基本構造==================*/

body {
	background-color:#FFF;
	margin:0;
	padding:0:
}

#wrapper {
	background-color:#FFF;
	margin:auto;
	width:800px;
}

#header {
	width:800px;
	height:160px;
	background:url(../images/common/news_header.jpg) 0px center no-repeat;
	margin:auto;
}

#header h1 {
	width:800px;
	text-align:center;
}

#contents {
	margin:auto;
	width:800px;
	/*heightは、更新が増えてきたら消す*/
	height:400px;
	padding-bottom:60px;
}

#contents .diary {
	width:720px;
	margin:auto;
	padding:30px 0 20px;
}

.diary .title {
	float:left;
	width:600px;
	margin:0;
	padding:0;
}

.title h2 {
	font-weight:bolder;
	font-size:16px;
	color:#950000;
}

.diary .date {
	float:right;
	width:120px;
	margin:0;
	padding:0;
}

.date p.ymd {
	width:120px;
	padding-top:6px;
	text-align:right;
	font-size:10px;
	font-weight:normal;
	color:#666;
}

.diary p.line {
	clear:both;
	width:720px;
	margin:0;
	padding:0;	
	border-top:#950000 1px solid;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

.diary .text {
	width:720px;
}

.text p.content {
	margin:0;
	font-size:13px;
	color:#666;
}






