@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;
}

/* -------- テキストリンク部分 -------- */
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
a:hover,
a:active,
a:focus {
	color: #000;
}

/* -------- その他 -------- */
hr.hide {
	display: none;
}

/* ------------------------------------------------------
 3.ラッパー（ヘッダー＋コンテナ＋フッター）
------------------------------------------------------ */
#wrapper {
	width: 100%;
}

/* ------------------------------------------------------
 4.ヘッダー
------------------------------------------------------ */
#header {
	display: none;
}

/* ------------------------------------------------------
 5.コンテナ（コンテンツ＋サイドナビ）
------------------------------------------------------ */
#container {
	width: 100%;
	padding: 0 0 15px;
}
#container:after {
	/*Newブラウザ フロート対策*/
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

/* ------------------------------------------------------
 6.コンテンツ
------------------------------------------------------ */
/*コンテンツ内の項目は別ファイルcontent-print.cssで設定*/

/* 下層ページ */
#content-wrap {
	width: 100%;
}
#content {
	width: 100%;
}

/* トップページ */
#top-content {
	width: 100%;
}
#top-content #leftnavi {
	display: none;
}

/* ------------------------------------------------------
 7.サイドナビ
------------------------------------------------------ */
#navi {
	display: none;
}

/* ------------------------------------------------------
 8.フッター
------------------------------------------------------ */
#footer {
	width: 100%;
	clear: both;
	border-top: 1px solid #333;
}

/* -------- フッターバナー（トップページのみ） -------- */
#footer #footer-banner-wrap {
	display: none;
}

/* -------- ライフイベント（チャンネルページ） -------- */
#footer #footer-lifeevent {
	display: none;
}

/* -------- フッターナビ -------- */
#footer ul#footernavi {
	display: none;
}

/* -------- アドレス -------- */
#footer address {
	font-style: normal;
	padding: 10px;
	line-height: 1.3;
}

/* -------- コピーライト -------- */
#footer p#copyright {
	width: 100%;
	padding: 7px 0;
	border-top: 1px solid #333;
	text-align: center;
}