@charset "utf-8";

/*
	**********************************************************
	**
	**	熟れせん スタイルシート ver.201006renew
	**
	**	・共通スタイルの読み込み
	**	・スタイルのフォーマット
	**
	**********************************************************
*/

/*
	----------------------------------------------------------
		0.スタイルシートのインポート
*/

/* 共通スタイルシート */
@import "structure.css";	/*全体構造の定義*/
@import "navigation.css"; /*ナビゲーション・スタイルの定義*/
@import "sidebar.css";	/*サイドバーのスタイルの定義*/
@import "clearfix.css";	/*clearfixの読み込み*/
@import "common.css";

/* IE対策専用 */
@import "ie.css";

/* テスト時専用 */
/*@import "__teststyle.css"; /*テスト完了時にコメント化*/


/*
	----------------------------------------------------------
		1.デフォルトスタイルの初期化
*/

/*
	余白
*/
/* margin: 0; */
body, h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd, form
{ margin: 0; }

/* padding: 0; */
body, ol, ul, li, dl, dt, dd, form
{ padding: 0; }


/*
	枠線
*/
/* border: 0; */
img { border: 0; }


/*
	フォント関連のスタイル
*/
/* font-size: normal; */
body, h1, h2, h3, h4, h5, h6
{ font-size: 13px; }

/* font-weight: normal; */
h1, h2, h3, h4, h5, h6, th
{ font-weight: normal; }

/* font-syle: normal; */
address { font-style: normal; }


/*
	テーブル要素
*/
/* border-collapse: collapse; */
table, th, td
{ border-collapse: collapse; }

/* text-align: left; */
th { text-align: left; }

/* vertical-align: top; */
th, td { vertical-align: top; }

/*
	リスト要素
*/
/* list-style-type: none; */
li { list-style-type: none; }

