@charset "UTF-8";

/* =========================================================================
 layout-print.css
 （レイアウトの設定　印刷用）

　目　次

　1.リセット
　2.body
　3.ラッパー（ヘッダー＋コンテナ）
　4.ヘッダー（ロゴ、文字サイズ変更、グローバルナビ、検索フォーム）
　5.コンテナ（コンテンツ＋サイド）
　6.コンテンツ
　7.サイド
　8.フッター
========================================================================= */

/* -------------------------------------------------------------------------
 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: #F00;
}

/* 2-2 非表示の設定
---------------------------------------------------------------------- */
h2.hide,
hr.hide {
	display: none;
}

/* -------------------------------------------------------------------------
 3.ラッパー（ヘッダー＋コンテナ）
------------------------------------------------------------------------- */
#wrapper {
	width: 100%;
}

/* -------------------------------------------------------------------------
 4.ヘッダー（ロゴ、文字サイズ変更、グローバルナビ、検索フォーム）
------------------------------------------------------------------------- */
#header-wrap {
	display: none;
}

/* -------------------------------------------------------------------------
 5.コンテナ（コンテンツ＋サイド）
------------------------------------------------------------------------- */
#container {
	width: 100%;
	padding: 0 0 15px;
}

/* -------------------------------------------------------------------------
 6.コンテンツ
------------------------------------------------------------------------- */
/* コンテンツ内の項目は別ファイルcontent-print.cssで設定 */

/* 6-1 下層ページ（ナビあり）
---------------------------------------------------------------------- */
#content {
	width: 100%;
}

/* 6-2 下層ページ（ナビなし）
---------------------------------------------------------------------- */
#nonavi-content {
	width: 100%;
}
#nonavi-content #content {
	width: 100%;
}

/* 6-3 トップページ
---------------------------------------------------------------------- */
#top-content {
	width: 100%;
}
#top-content #content {
	width: 100%;
}
#top-content #top-leftnavi {
	display: none;
}
#top-rightnavi {
	display: none;
}

/* -------------------------------------------------------------------------
 7.サイド
------------------------------------------------------------------------- */
#side {
	display: none;
}

/* -------------------------------------------------------------------------
 8.フッター
------------------------------------------------------------------------- */
#footer {
	width: 100%;
	clear: both;
	border-top: 1px solid #000;
}
#footer-info {
	width: 100%;
}

/* 8-1 アドレス
---------------------------------------------------------------------- */
#footer address {
	font-style: normal;
	padding: 10px;
	line-height: 1.3;
}

/* 8-2 フッターナビ
---------------------------------------------------------------------- */
#footer ul#footer-navi {
	display: none;
}

/* 8-3 コピーライト
---------------------------------------------------------------------- */
#footer p#footer-copyright {
	width: 100%;
	padding: 7px 0;
	border-top: 1px solid #000;
	text-align: center;
}
