@charset "Shift_JIS";

/* =========================================================================
 layout-print.css
 （レイアウトの設定　印刷用）

　目　次

　1.リセット
　2.body
	2-1 テキストリンクの設定
	2-2 非表示の設定

　3.ラッパー（ヘッダー＋コンテナ＋フッター）

　4.ヘッダー（ヘッダーナビ、検索フォーム、ロゴ、グローバルナビ）

　5.コンテナ（コンテンツ＋サイドナビ）

　6.コンテンツ
	6-1 下層ページ
	6-2 トップページ

　7.サイドナビ（下層ページのみ）

　8.フッター
	8-1 フッターナビ
	8-2 コピーライト
========================================================================= */

/* -------------------------------------------------------------------------
 1.リセット
------------------------------------------------------------------------- */
html,body,div,
h1,h2,h3,h4,h5,h6,
p,blockquote,pre,address,hr,
ul,ol,li,
dl,dt,dd,
table,th,td,caption,
form,input,textarea,select,option,optgroup,button,label,fieldset,legend {
	font-size: 100%;
	margin: 0;
	padding: 0;
}
img {
	border: 0;
	vertical-align: bottom;
}

/* -------------------------------------------------------------------------
 2.body
------------------------------------------------------------------------- */
body {
	color: #000;
	font-size: 10pt;
	font-family: Verdana, Arial, sans-serif;
	background-color: #FFF;
	line-height: 1.2;
}

/* 2-1 テキストリンクの設定
---------------------------------------------------------------------- */
a:link {
	color: #000;	/* 未訪問リンクの色 */
}
a:visited {
	color: #000;	/* 既訪問リンクの色 */
}
a:hover,
a:active,
a:focus {
	color: #000;	/* ユーザーアクション時のリンクの色 */
}

/* 2-2 非表示の設定
---------------------------------------------------------------------- */
h2.hide,
hr.hide {
	display: none;
}

/* -------------------------------------------------------------------------
 3.ラッパー（ヘッダー＋コンテナ＋フッター）
------------------------------------------------------------------------- */
#wrapper {
	width: 100%;
}

/* -------------------------------------------------------------------------
 4.ヘッダー（ヘッダーナビ、検索フォーム、ロゴ、グローバルナビ）
------------------------------------------------------------------------- */
#header {
	display: none;
}

/* -------------------------------------------------------------------------
 5.コンテナ（コンテンツ＋サイドナビ）
------------------------------------------------------------------------- */
#container {
	width: 100%;
}

/* -------------------------------------------------------------------------
 6.コンテンツ
------------------------------------------------------------------------- */
/* コンテンツ内の項目は別ファイルcontent-print.cssで設定 */

/* 6-1 下層ページ
---------------------------------------------------------------------- */
#content {
	width: 100%;
}

/* 6-2 トップページ
---------------------------------------------------------------------- */
#content-top {
	width: 100%;
}
#content-top #content {
	width: 100%;
}
#content-top #top-banner {
	display: none;
}

/* -------------------------------------------------------------------------
 7.サイドナビ（下層ページのみ）
------------------------------------------------------------------------- */
#navi {
	display: none;
}

/* -------------------------------------------------------------------------
 8.フッター
------------------------------------------------------------------------- */
#footer {
	width: 100%;
	clear: both;
	padding: 20px 0 0;
}

/* 8-1 フッターナビ
---------------------------------------------------------------------- */
#footer ul#footer-navi {
	display: none;
}

/* 8-2 コピーライト
---------------------------------------------------------------------- */
#footer address {
	width: 100%;
	font-style: normal;
	text-align: center;
	padding: 5px 0;
	border-top: 1px solid #000;

}