@charset "UTF-8";
/* CSS Document */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■　ここからレイアウトブロック指定　　　　　　　　　　　　　　　　　　　　■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*
以下レイアウトブロック指定は、後に読み込まれるcssで内容を打ち消している場合があるため、
各プロパティを追加するとレイアウトが崩れる場合があります。
※このbase_styleのレイアウト構造
#container
#header_block
#content_block
	#layout_content_header_box
	#layout_content_body_box
		#layout_content_left_box
			#layout_sub1_box
		#layout_content_right_box
			#layout_search_parts_box
			#layout_sub2_box
			#layout_sub3_box
			#layout_main_box
	#layout_content_footer_box
#footer_block
*/
#container,
#header_block,
#content_block,
#layout_search_parts_box,
#layout_content_body_box,
#layout_content_left_box,
#layout_content_right_box,
#layout_main_box,
#layout_sub1_box,
#layout_sub2_box,
#layout_sub3_box,
#footer_block { /* 中身が空のdivは入れない */
	/*overflow:hidden;*/
	zoom:1; /* IE */
}
#layout_sub2_box,
#layout_sub3_box { /* 中身が空のdivがあるために回避20100114 */
	/*overflow:visible;*/
	zoom:normal; /* IE */

}
#container {
	margin:0 15px;
}
#header_block {}
#content_block {}
#layout_content_header_box {}
#layout_content_body_box {}
#layout_content_left_box {
	float:left;
	width:200px;
	/*margin-right:10px;*/
}
#layout_sub1_box {}
#layout_content_right_box {
	margin-left:210px;
}
#layout_search_parts_box {}
#layout_sub2_box {}
#layout_sub3_box {}
#layout_main_box {
	margin-top:10px;
}
#layout_main_box_pad {
	overflow:hidden;
	zoom:1; /* IE */
}
#layout_content_footer_box {}
#footer_block {}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■　ここからデザインブロック指定　　　　　　　　　　　　　　　　　　　　　■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*
 default.cssに全体に関わる「リセット/初期設定」の指定アリ（ただし基本変更不可）
*/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* add class */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
.f5{font-size:191.6%;line-height:1.1em;} /* 22px */
.f4{font-size:166.6%;line-height:1.1em;} /* 20px */
.f3{font-size:150%;line-height:1.2em;}   /* 18px */
.f2{font-size:133.3%;line-height:1.5em;} /* 16px */
.f1{font-size:125%;line-height:1.5em;}   /* 15px */
.f1{font-size:116.6%;line-height:1.5em;} /* 14px */
.f0{font-size:100%;line-height:1.5em;}   /* 12px */
.f-1{font-size:91.6%;line-height:1.3em;} /* 11px */
.f-2{font-size:83.3%;line-height:1.2em;} /* 10px */

.hr { /* IE6で独自のマージンあり */
	border-color:#999 #fff #fff;
	border-width:1px;
	border-style:solid;
	margin:0;
}
.opacity100 { /* 透明を指定（IEにてfilterを使用するとアンチが切れるので要注意） */
	opacity:1.0; /* except IE6 */
	filter:alpha(opacity=100); /* IE6,7 */
	-ms-filter:"alpha(opacity=100)"; /* IE8 */
}
.word-break { /* IE,safari独自（ただし、css3の仕様にはアリ） */
	word-break:break-all;
}
.none { /* 非表示 */
	display:none;
}
.clear {
	clear:both;
	line-height:0;
	font-size:0em;
}
.clearfix {
	overflow:hidden;
	zoom:1; /* IE */
}
/* overflow:hidden;を使わずにfloatをclear 20100128 */
.cfix { /* IE */
	zoom:1;
	_position:relative;
}
.cfix:after { /* except IE */
	content:".";
	clear:both;
	height:0;
	display:block;
	visibility:hidden;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* 個別初期設定 */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
body {}
/* ******************** */
/*［個別初期設定］リスト係 */
/* ******************** */
ul,
ol,
li { /* 全てのliの先頭に画像を指定する場合はdisc > noneに、margin-left,padding-leftのコメントを外す */
	list-style-type:none;
	margin-left:0;
	padding-left:0;
}
/* ******************** */
/*［個別初期設定］文字列係 */
/* ******************** */
p {}
span {}
strong {}
address {}
/* ******************** */
/*［個別初期設定］リンク係 */
/* ******************** */
a { /* リンク */
	/*outline:none;*/
	text-decoration:underline;
	/*color:#03c;*/ /* 一般的なリンク色 */
	color:#059; /* 彩度の低いリンク色 */
}
a:hover { /* マウスオーバー時 */
	text-decoration:none;
	/*color:#0bf;*/ /* 爽やかなリンク色 */
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
}
a:active { /* クリック時 */
	text-decoration:underline;
	color:#00a;
}
a:visited { /* 訪問済み */
	/*color:#609;*/
	color:#059; /* 彩度の低いリンク色 */
}
a:visited:hover { /* 訪問済みマウスオーバー */
	text-decoration:none;
	/*color:#0bf;*/ /* 爽やかなリンク色 */
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
}
a:visited:active { /* 訪問済みクリック時 */
	text-decoration:underline;
	color:#00a;
}
a:focus { /* tabキーで選択時 except IE6,7 */
	text-decoration:none;
	/*color:#000;*/
	/*background-color:#8cf!important;*/
	color:#fff!important; /* WCAG2.0対応 */
	background-color:#00f!important; /* WCAG2.0対応 */
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* ヘッダーブロック */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
.header_img a {
	/*display:block;
	height:66px;
	width:440px;*/
}
.header_img a.top_link:hover {
	background:none;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* コンテンツブロック */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */

/* ■■■■■■■■■■■■■■■■■■■■ */
/* 検索パーツブロック .design_search_area */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_area {
	padding:10px;
	border:1px solid #000;
	background:#ddd;

	/*border:1px solid #AED4E3;*/
	/*background:#E8F1F5;*/
}
.faq .design_search_area {
	background:#CCCC99;
}
.design_search_area .standard_search_parts label {
	white-space:nowrap;
}
#key {
	width:40%;
	min-width:100px; /* except IE6 */
	_width:20em;
}
.search_button {
	width:10em;
	_line-height:1em; /* IE6 */
	_padding:0.3em 0 0.1em; /* IE6 */
}
/* ******************** */
/* 詳細検索 */
/* ******************** */
.design_search_area .detail_condition_area {
	/*background:#fff;*/
	/*padding:5px;*/
	margin-top:10px;
}
.design_search_area .full_condition_box {}
.design_search_area .detail_condition_title {
	display:inline;
	font-weight:bold;
}
.design_search_area .detail_condition_list {
	display:inline;
	margin-left:0.5em;
}
.design_search_area .detail_condition_area .annotation {
	font-size:91.6%;
	color:#666;
}
/* ******************** */
/* もしかして */
/* ******************** */
.design_maybe_parts {
	background:#eee;
	padding:0.5em;
	font-size:91.6%;
}
.design_maybe_parts h3,
.design_maybe_parts ul,
.design_maybe_parts ul li {
	display:inline;
	padding-right:1em;
}
/* ******************** */
/* watermark - powered by Q'z Creative */
/* ******************** */
.design_search_area .watermark {
	float:right;
	margin:-4px -4px 0 0;
	display:none; /* 自治体での表示不可のため */
}
.design_search_area .watermark a {
	display:block;
	width:56px;
	height:6px;
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 -257px;
	text-indent:-9999px;
	line-height:0em; /* 画像下の隙間取り */
}
/* 検索ヘルプ */
.design_search_area .help{
	float:right;
}
/* ******************** */
/* "*+/!()- ,"などの検索演算子の注意書き表示 */
/* ******************** */
.design_search_area .notice_area {
	font-size:91.6%;
	margin-top:0.5em;
	margin-left:3px;
	color:#444;
}
.design_search_area .notice_area p {
	line-height:1.4em;
}
.design_search_area .notice_area strong {
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 -22px;
	text-indent:-9999px;
	width:12px;
	height:12px;
	margin-right:0.3em;
	float:left;
	display:block;
}
.design_search_area .notice_area .quotation_mark {
	margin:0 0.4em;
	letter-spacing:0.2em;
}
.design_search_area .notice_area .double_quotation {
	color:#f00;
	margin:0 0.4em;
}
.design_search_area .search_help {
	float:right;
	margin-right:0.5em;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* サブ１ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */

/* 共通 ******************************************************** */

/* ******************** */
/* 背景 */
/* ******************** */
.design_sub1_pad {}
/* ******************** */
/* 1px枠線 */
/* ******************** */
.design_sub1_pad,
.design_exclude_word_box {
	border:1px solid #000;
}
.design_search_condition_box .middle_r h3,
.category_stamp_box .middle_r h3,
.lifescene_area .middle_r h3,
.section_area .middle_r h3 {
	border-top:1px solid #000;
	border-bottom:1px solid #000;
}
.design_exclude_word_box .middle_r h3 {
	border-bottom:1px solid #000;
}
/* ******************** */
/* ～「で絞り込み」部分 */
/* ******************** */
.r_template_box .refinement_word {}
/* ******************** */
/* ～「複数選択可」部分 */
/* ******************** */
.r_template_box .notes {
	font-size:91.6%;
	margin-left:1em;
	color:#980000;
}
/* ******************** */
/* 絞り込みパーツ用外枠 */
/* ******************** */
.category_categorize_parts_box {}
/* ******************** */
/* middle_r */
/* ******************** */
.category_categorize_parts_box div.middle_r,
.category_categorize_parts_box div.middle_r div,
.category_categorize_parts_box div.middle_r div div,
.design_exclude_word_box div.middle_r,
.design_exclude_word_box div.middle_r div,
.design_exclude_word_box div.middle_r div div,
.lifescene_area div.middle_r,
.lifescene_area div.middle_r div,
.lifescene_area div.middle_r div div, {
	zoom:1; /* IE */
}
.category_categorize_parts_box div.middle_r {
	background:#eee;
	padding:0.5em 10px 0.6em;
}
.category_categorize_parts_box div.middle_r h3 {
	background:#ddd;
	height:14px;
}
.faq .category_categorize_parts_box div.middle_r{
	background:#dda;
}
.faq .category_categorize_parts_box div.middle_r h3{
	background:#cc9;
}

.category_categorize_parts_box div.middle_r h3 .h3_title { /* text-indent:-9999px;の代わり */
	/*display:none;*/
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* タグ絞り込みパーツ .lifescene_area, .section_area */
/* ■■■■■■■■■■■■■■■■■■■■ */

/* ******************** */
/* ライフシーン */
/* 各課 */
/* ******************** */
.lifescene_area .middle_r h3,
.section_area .middle_r h3 {
	background:#eee;
	padding:0.4em 10px 0.2em;
	line-height:1.2em;
}
.faq .lifescene_area .middle_r h3,
.faq .section_area .middle_r h3 {
	background:#cc9;
}
.lifescene_area .middle_r .data,
.section_area .middle_r .data {
	padding:7px 10px 0.5em;
	background:#fff;
}
.lifescene_area .middle_r .data h4,
.section_area .middle_r .data h4 {
	margin:0.3em 0;
	background:#eee;
	text-align:center;
	line-height:1.2em;
}
.lifescene_area .middle_r .data span,
.section_area .middle_r .data span {
	text-align:right;
	font-size:91.6%;
	padding-bottom:0.5em;
	display:block;
}
.lifescene_area .middle_r .data span img,
.section_area .middle_r .data span img {
	vertical-align:middle;
	margin-right:2px;
}
/* ******************** */
/* タグ絞り込みli画像指定 */
/* ******************** */
.lifescene_area .middle_r .data li,
.section_area .middle_r .data li {
	padding:0.1em 0 0.1em  0px;
	line-height:1.2em;
	clear:left;
}
.lifescene_area .middle_r .data li:hover,
.section_area .middle_r .data li:hover {
	background-position:-66px -155px;
}
.lifescene_area .middle_r .data li span,
.section_area .middle_r .data li span {
	padding:0;
}
.lifescene_area .middle_r .data li a,
.section_area .middle_r .data li a{
	line-height:1.2em;
	vertical-align: middle;
	_height:1%; /* IE6 */
	margin-left:0px;;
}
.lifescene_area .middle_r .data li a.stra,
.section_area .middle_r .data li a.stra{
	padding:0.1em 0;
}
.lifescene_area .middle_r .data li a:hover,
.section_area .middle_r .data li a:hover {
	background-position:-66px -155px;
	background-color:#00f;
	color:#fff;
}
.lifescene_area .middle_r .data li span,
.section_area .middle_r .data li span {
	padding:0;
}


.lifescene_area .middle_r .data li.selected_part span,
.section_area .middle_r .data li.selected_part span { /* 選択された項目 */
	font-size:100%;
	text-align:left;
	color:#fff;
	display:inline;
	background-color:#059;
	color:#fff;
}

/* ***************** */
/* multi select tag_field */
/* ***************** */
.lifescene_area .middle_r .data li.selected_part a.check,
.section_area .middle_r .data li.selected_part a.check,
.lifescene_area .middle_r .data li a.uncheck,
.section_area .middle_r .data li a.uncheck {
	background:url(../../include/img/icon_sprites.gif) no-repeat -66px -155px;
	padding :0.1em 0 0.1em 0px;
	display:inline;
	float:left;
	line-height:1.2em;
	height:1.2em;
	width:1.2em;
	_cursor:pointer;
	text-decoration: none;
}
.lifescene_area .middle_r .data li a.uncheck,
.section_area .middle_r .data li a.uncheck {
	background:url(../../include/img/icon_sprites.gif) no-repeat -87px -134px;
}
.lifescene_area .middle_r .data li a.uncheck:hover,
.section_area .middle_r .data li a.uncheck:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat -66px -155px;
}
.lifescene_area .middle_r .data li a.check:hover,
.section_area .middle_r .data li a.check:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat -87px -134px;
}
/* ***************** */
/* single select tag_field */
/* ***************** */
.lifescene_area .middle_r .data ul.single li.selected_part a.check,
.section_area .middle_r .data ul.single li.selected_part a.check,
.lifescene_area .middle_r .data ul.single li a.uncheck,
.section_area .middle_r .data ul.single li a.uncheck {
	background:url(../../include/img/icon_sprites.gif) no-repeat  -108px -113px;
}
.lifescene_area .middle_r .data ul.single li a.uncheck,
.section_area .middle_r .data ul.single li a.uncheck {
	background:url(../../include/img/icon_sprites.gif) no-repeat -129px -92px;
}
.lifescene_area .middle_r .data ul.single li a.uncheck:hover,
.section_area .middle_r .data ul.single li a.uncheck:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat  -108px -113px;
}
.lifescene_area .middle_r .data ul.single li a.check:hover,
.section_area .middle_r .data ul.single li a.check:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat -129px -92px;
}



.lifescene_area .middle_r .data li.selected_part,
.section_area .middle_r .data li.selected_part {
	/* margin:0.2em 0; */
}
.lifescene_area .clear_condition,
.section_area .clear_condition {
	display:none;
}
.lifescene_area .clear_parts_condition,
.section_area .clear_parts_condition
{
	text-align:right;
}
/* ******************** */
/* 解除アイコン */
/* ******************** */
.lifescene_area .middle_r .data li.selected_part,
.section_area .middle_r .data li.selected_part {
	position:relative;
	padding-right:15px; /* 文字と画像のかぶり回避 */
}
.lifescene_area .middle_r .data li.selected_part .clear_condition,
.section_area .middle_r .data li.selected_part .clear_condition {
	background:none;
	position:absolute;
	width:11px;
	height:11px;
	top:1px;
	right:0;
	_right:35px;
}
.lifescene_area .middle_r .data li.selected_part .clear_condition a,
.section_area .middle_r .data li.selected_part .clear_condition a {
	float:left;
	width:11px;
	height:11px;
	text-indent:-9999px;
	background:url(../../include/img/icon_sprites.gif) no-repeat -51px -70px;
}
.lifescene_area .middle_r .data li.selected_part .clear_condition a:hover,
.section_area .middle_r .data li.selected_part .clear_condition a:hover {
	background-position:0 -101px;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 絞り込まれた条件パーツ .design_search_condition_box */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_condition_box .middle_r h3 {
	background:#eee;
	padding:0.4em 10px 0.2em;
	line-height:1.2em;
}
.faq .design_search_condition_box .middle_r h3 {
	background:#CCCC99;
}
.design_search_condition_box .middle_r .data {
	padding:7px 10px 0.5em;
	font-size:91.6%;
	background:#ffffe0;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_search_condition_box .middle_r .data li {
	border-bottom:1px dashed #aaa;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_search_condition_box .middle_r .data li.title {
	margin:0;
	padding:0.2em 0 0;
	line-height:1.1em;
	text-align:center;
	color:#444;
	background:#fff17b;
}
.design_search_condition_box .middle_r .data .item {
	line-height:1.2em;
	padding-top:4px;
}
.design_search_condition_box .middle_r .data .text {}
.design_search_condition_box .middle_r .data li a {
	float:right;
	width:4em;
	margin:0 0 3px 3px;
}
.design_search_condition_box .clear_condition {
	float:right;
	margin-top:3px;
}
.design_search_condition_box .middle_r .data li a { /* 解除ボタンの画像指定 */
	background:url(../../include/img/icon_sprites.gif) no-repeat 3em -70px;
	/*padding-right:12px;*/
}
.design_search_condition_box .clear_condition a { /* 一括解除ボタンの画像指定 */
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 -122px;
	text-indent:-9999px;
	width:56px;
	height:11px;
	display:block;
	line-height:11px; /* IE6 ただしoperaの「ウィンドウ幅で表示」機能への対応で＿ハックはしていない */
}
.design_search_condition_box .middle_r .data li a:hover { /* 解除ボタンの画像指定 */
	background-position:3em -101px;
	color:#f00;
	background-color:transparent;
}
.design_search_condition_box .clear_condition a:hover { /* 一括解除ボタンの画像指定 */
	background-position:0 -133px;
	background-color:transparent;
}
/* 絞り込み条件表示パーツ内の検索結果件数表示用 */
.design_search_condition_box ul li .design_search_result_count_box {
	margin:0;
	border:none;
	padding:0;
	text-align:left;
	font-weight:bold;
	background: none;
	line-height:1.2em;
}
.design_search_condition_box ul li .design_search_result_count_box span {
	white-space:normal;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 除外キーワードパーツ .design_exclude_word_box */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_exclude_word_box {
	margin-top:10px;
}
/* ******************** */
/* 除外キーワード top_r, bottom_r */
/* ******************** */
.design_exclude_word_box div.top_r,
.design_exclude_word_box div.bottom_r {
	display:none;
}
/* ******************** */
/* 除外キーワード middle_r */
/* ******************** */
.design_exclude_word_box .middle_r {}
.design_exclude_word_box .middle_r h3 {
	background:#ddd;
	padding:0.4em 10px 0.3em;
	line-height:1em;
}
.faq .design_exclude_word_box .middle_r h3 {
	background:#cc9;
}
.design_exclude_word_box .data_add_form { /* 除外キーワード入力フォーム */
	background:#eee;
	padding:5px 10px;
	border-bottom:1px solid #000;
}
.design_exclude_word_box .data_none { /* 除外キーワードが未入力の場合 */
	border-bottom:0;
}
.design_exclude_word_box .input_text {
	width:75%;
}
.design_exclude_word_box .input_submit {
	width:20%;
	_line-height:1em; /* IE6 */
	_padding:0.3em 0 0.1em; /* IE6 */
}
.design_exclude_word_box .middle_r .data {
	padding:7px 10px 0.5em;
	font-size:91.6%;
	background:#fff;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_exclude_word_box .middle_r .data li {
	border-bottom:1px dashed #bbb;
	padding-bottom:0.1em;
	margin-bottom:0.1em;
	line-height:1.4em;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_exclude_word_box .middle_r .data .text {
	float:left;
	width:75%;
	background:#FFFFE6;
}
.design_exclude_word_box .middle_r .data li a {
	float:right;
}
.design_exclude_word_box .clear_condition {
	float:right;
	margin-top:3px;
	_margin-top:0;
}
.design_exclude_word_box .middle_r .data li a { /* 解除ボタンの画像指定 */
	background:url(../../include/img/icon_sprites.gif) no-repeat 30px -68px;
	padding-right:12px;
}
.design_exclude_word_box .clear_condition a { /* 一括解除ボタンの画像指定 */
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 -122px;
	text-indent:-9999px;
	width:56px;
	height:11px;
	display:block;
	_line-height:11px; /* IE6 */
}
.design_exclude_word_box .middle_r .data li a:hover { /* 解除ボタンの画像指定 */
	background-position:30px -99px;
	color:#f00;
}
.design_exclude_word_box .clear_condition a:hover { /* 一括解除ボタンの画像指定 */
	background-position:0 -133px;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* カテゴリ分類パーツ（カテゴリ別件数のみ表示時）.category_stamp_box */
/* ■■■■■■■■■■■■■■■■■■■■ */

/* ******************** */
/* パンくず */
/* ******************** */
.category_stamp_box .category_stamp_area {
	font-size:91.6%;
	border-bottom:1px dashed #aaa;
	background:#ffffe0;
	padding:0.3em 0.4em 0.1em;
	margin-bottom:0.5em;
	line-height:1.3em;
	overflow:hidden;
	zoom:1; /* IE */
}
.category_stamp_box .category_stamp_area a,
.category_stamp_box .category_stamp_area .current,
.category_stamp_box .category_stamp_area .connector,
.category_stamp_box .category_stamp_area .category_top {
	text-decoration:none;
	float:left;
	height:14px;
}
.category_stamp_box .category_stamp_area .connector {
	margin-left:0.2em;
	margin-bottom:0.5em;
}
.category_stamp_box .category_stamp_area .catanchor {
	background:url(../../include/img/icon_sprites.gif) no-repeat -204px -24px;
	width:19px;
	height:14px;
	text-indent:-9999px;
}
.category_stamp_box .category_stamp_area .current{
	background:url(../../include/img/icon_sprites.gif) no-repeat -148px -71px;
	width:19px;
	height:14px;
	text-indent:-9999px;
}
.category_stamp_box .category_stamp_area .top,
.category_stamp_box .category_stamp_area .category_top {
	background:url(../../include/img/icon_sprites.gif) no-repeat -232px 0;
	width:28px;
	height:14px;
	text-indent:-9999px;
}
/* ******************** */
/* カテゴリ分類パーツ（共通） */
/* ******************** */
.category_stamp_box .middle_r h3 {
	background:#eee;
	padding:0.4em 10px 0.2em;
	line-height:1.2em;
}
.faq .category_stamp_box .middle_r h3 {
	background:#cc9;
}
.category_stamp_box .middle_r #category_stamp_area {
	padding:7px 6px 7px;
	background:#fff;
}
.category_stamp_box .middle_r #category_stamp_area h4 {
	color:#555;
	padding-bottom:0;
	margin-bottom:3px;
	border-bottom:1px dashed #aaa;
}
.category_stamp_box .middle_r .clear_condition {
	display:none;
}
#category_stamp_area {
	line-height:1.4em;
}
/* カテゴリ分類パーツ インデント処理指定 ******************************************************** */

/* ******************** */
/* 共通 */
/* ******************** */
#category_stamp_area li {
	padding-left:22px;
	background:url(../../include/img/icon_sprites.gif) no-repeat -200px -23px;
}
#category_stamp_area li:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat -174px -45px;
}
/* ******************** */
/* インデントされた要素の親 */
/* ******************** */
#category_stamp_area ul .parent_li {
	background:url(../../include/img/icon_sprites.gif) no-repeat -174px -45px;
}
/* ******************** */
/* インデントされたカテゴリ */
/* ******************** */
#category_stamp_area .nest_ul {
	margin-left:-4px;
	margin-top:0.3em;
}
/* ******************** */
/* 選択されたカテゴリ */
/* ******************** */
#category_stamp_area .selected_part {
	background:url(../../include/img/icon_sprites.gif) no-repeat -145px -69px;
	margin:0.3em 0 0.2em;
}
#category_stamp_area .selected_part:hover {
	background:url(../../include/img/icon_sprites.gif) no-repeat -145px -69px;
}
#category_stamp_area .selected_part a {
	background:#059;
	color:#fff;
	text-decoration:none;
	padding:1px;
	zoom:1; /* IE */
}
/* ******************** */
/* インデントされた最終カテゴリ */
/* ******************** */
#category_stamp_area .selected_ul a {
	background-color:transparent;
	color:#059;
	text-decoration:underline;
}
#category_stamp_area .selected_ul a:hover {
	/*color:#0bf;*/
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
	text-decoration:none;
}
/* ******************** */
/* 解除ボタン */
/* ******************** */
#category_stamp_area .clear_condition{
	text-align: right;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* サブ２ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */

/* ■■■■■■■■■■■■■■■■■■■■ */
/* 差し込み広告パーツ .design_top_content */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_top_content {
	margin-top:10px;
	border:1px solid #000;
	background:#f6f6f6;
	padding:5px;
}
.design_top_content .middle_r {
	overflow:hidden;
	zoom:1; /* IE */
}
.design_top_content .middle_r .data {
	overflow:hidden;
}
/* 店舗名h3 */
.design_top_content .middle_r h3 {
	font-weight:bold;
}
/* ******************** */
/* 画像部分 */
/* ******************** */
.design_top_content .ph_area {
	float:left;
	margin-right:1em;
	max-height:90px;
	line-height:0em; /* 画像下の隙間取り */
}
.design_top_content .ph_area img {
	max-width:120px;
	max-height:90px;
	width: auto !important;
	height: auto !important;
	/* IE */
	width: 120px;
	height: 90px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* サブ３ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */

/* ******************** */
/* 各機能の区切り線と背景 */
/* ******************** */
.design_related_word,
.design_ranking_box,
.design_main_categorize_parts {
	border:1px solid #000;
	padding:5px;
	margin-top:10px;
	background:#f6f6f6;
}
/* ******************** */
/* 各機能のh3タイトル */
/* ******************** */
.design_related_word h3,
.design_ranking_box h3,
.design_main_categorize_parts h3 {
	float:left;
	margin-right:1em;
	font-weight:bold;
	color:#980000;
}

/* ■■■■■■■■■■■■■■■■■■■■ */
/* 関連ワード .design_related_word */
/* ■■■■■■■■■■■■■■■■■■■■ */

/* ■■■■■■■■■■■■■■■■■■■■ */
/* ランキングパーツ .design_ranking_box */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_ranking_box {
	overflow:hidden;
	zoom:1; /* IE */
}
.design_ranking_box li {
	float:left;
	white-space:nowrap;
	_float:none; /* IE6 */
	_display:inline; /* IE6 */
	overflow:hidden;
	zoom:1; /* IE */
}
.design_ranking_box .rank {
	padding-left:1em;
	font-weight:bold;
}
.design_ranking_box ul li .up,
.design_ranking_box ul li .down,
.design_ranking_box ul li .stay,
.design_ranking_box ul li .new {
	width:13px;
	height:13px;
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 0;
	margin:0.2em -2px 0 0;
	text-indent:-9999px;
	line-height:13px; /* IE6 ただしoperaの「ウィンドウ幅で表示」機能への対応で＿ハックはしていない */
}
.design_ranking_box ul li .up {
	background-position:0 -170px;
}
.design_ranking_box ul li .down {
	background-position:0 -183px;
}
.design_ranking_box ul li .stay {
	background-position:0 -157px;
}
.design_ranking_box ul li .new {
	background-position:0 -144px;
}
.design_ranking_box ul li span {
	float:left;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 「よくある質問」での検索結果 .design_main_categorize_parts */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_main_categorize_parts {
	margin-bottom:10px;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_main_categorize_parts h3 {
	/*float:none;*/
}
.design_main_categorize_parts .item-result {
	float:left;
}
.design_main_categorize_parts .vertical {
	float:none;
}
.design_main_categorize_parts span {
	display:block;
	text-align:right;
}
.design_main_categorize_parts .item-result div {
	margin-right:1em;
}
.design_main_categorize_parts .item-result span.hitPoint {
	font-weight:bold;
	background:#ffff33;
	color:#000;
	display:inline;
}
.design_main_categorize_parts .item-result a:hover .hitPoint {
	/*color:#0bf;*/
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* メイン */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */

/* ■■■■■■■■■■■■■■■■■■■■ */
/* ヒット件数表示 .design_search_result_count_box */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_result_count_box {
	margin-bottom:2px;
	float:left;
}
.design_search_result_count_box span {}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 検索語表示（パンくず）.design_search_key_parts */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_key_parts {
	margin-bottom:5px;
}
.design_search_key_parts .text {}
.design_search_key_parts .ctrltext {
	display:none;
}
.design_search_key_parts .subtext {
	display:none;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 検索結果表示（リスト・タイル）.design_search_result */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_result {}
/* ******************** */
/* 検索結果（大枠）*/
/* ******************** */
.design_search_result {
	overflow:hidden;
	zoom:1; /* IE */
	/*clear:both;*/ /* ヒット0件表示時の崩れ防止：例外使用 */
}
/* ******************** */
/* ヒットポイント */
/* ******************** */
.design_search_result h3 .hitPoint {
	font-weight:bold;
	background:#ffff33;
	color:#000;
}
.design_search_result h3 a:hover .hitPoint {
	/*color:#0bf;*/
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
}
.design_search_result .lower_layer_box .hitPoint {
	background:#ffff33;
	font-weight:bold;
}
/* ******************** */
/* 検索結果（共通） */
/* ******************** */
.design_search_result .search_result_box img { /* 写真 */
}
.design_search_result .search_result_box h3 { /* タイトル */
	background:#efeff0;
	padding:0.3em 0.5em 0.2em;
	font-weight:bold;
}
.design_search_result .search_result_box .lower_layer_box {
	margin-left:1.7em;
	overflow:hidden;
	clear:left;
	zoom:1; /* IE */
}
.design_search_result .search_result_box h4 { /* 見出し */
	font-weight:bold;
}
.design_search_result .search_result_box .text { /* 本文 */
}
/* ******************** */
/* 検索結果（ブロック・スキップ） */
/* ******************** */
.skip {
	position:absolute;
	left:-9999px;
}
/* ******************** */
/* 検索結果（リスト時） */
/* ******************** */
.design_search_result .list {
	margin-bottom:1em;
	overflow:hidden;
	min-height:75px;
	zoom:1; /* IE */
}
.design_search_result .list img { /* 写真 */
	max-width:100px;
	min-width:100px;
	max-height:75px;
	min-height:75px;
}
.design_search_result .list .small img { /* リスト写真（小さい時） */
	/*width:80px;*/
}
.design_search_result .list .large img { /* リスト写真（大きい時） */
	/*width:100px;*/
}
.design_search_result .list .data_box {
	overflow:hidden;
	zoom:1; /* IE */
}
.design_search_result .list h3 { /* タイトル */
	font-size:150%;
	line-height:1.2em;
	margin-bottom:0.3em;
}
.design_search_result .list h4 { /* 見出し */
	font-size:116.6%;
}
.design_search_result .list .result_date { /* 更新日 */
	float:right;
	padding:0.5em 1em 0.5em 3em;
}
.design_search_result .list .detailed_data { /* 詳細情報（素材や色など） */
}
.design_search_result .list .image_box {
	float:left;
	margin-right:0.5em;
	overflow:hidden;
	border:1px solid #ddd;
	line-height:0em; /* 画像下の隙間取り */
	max-height:75px;
	width:100px;
	height:75px;
	background:url("../../include/img/now-printing_100_75.gif") repeat scroll 0 0 transparent
}
.design_search_result .list .small { /* 画像が表示されずalt情報が長い場合の崩れ防止 */
	/*max-width:100px;
	max-height:75px;*/
}
.design_search_result .list .large { /* 画像が表示されずalt情報が長い場合の崩れ防止 */
	/*max-width:100px;
	max-height:75px;*/
}
/* ******************** */
/* 所属カテゴリ一覧 */
/* ******************** */
.category_map {
	padding:0 1.8em 0.5em;
	font-size:91.6%;
	line-height:1.3em;
	overflow:hidden;
	width:90%;
	zoom:1; /* IE */
}
/* フォルダアイコン */
.category_map .title {
	background:url(../../include/img/icon_sprites.gif) no-repeat -202px -24px;
	float:left;
	width:20px;
	height:14px;
	text-indent:-9999px;
	margin-left:-4px;
	margin-right:2px;
}
/* フォルダアイコン マルチカテゴリ用  */
.category_map .title.multi1 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -67px;
}
.category_map .title.multi2 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -84px;
}
.category_map .title.multi3 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -101px;
}
.category_map .title.multi4 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -118px;
}
.category_map .title.multi5 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -135px;
}
.category_map .title.multi6 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -152px;
}
.category_map .title.multi7 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -169px;
}
.category_map .title.multi8 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -186px;
}
.category_map .title.multi9 {
	background:url(../../include/img/folder_icon_sprites.gif) no-repeat 0px -203px;
}

.category_map .text {
	_float:left; /* IE6 */
}
/* ******************** */
/* 検索結果のファイル拡張子表示 */
/* ******************** */
.design_search_result h3 .extension{
	font-weight:normal;
	font-size:66.6%;
	margin-left:0.3em;
	padding-left:16px;
	padding-top:0.1em;
	vertical-align:10%;
	position:relative;
	zoom:1;
}
.extension_search_part li.item01 ul li{
	padding-left:16px;
	padding-top:0.1em;
	vertical-align:10%;
	position:relative;
	zoom:1;
}

.design_search_result h3 .extension span,
.extension_search_part ul li span  {
	background:url(../../include/img/icon_sprites02.gif) no-repeat 0 0;
	height:16px;
	width:12px;
	top:0;
	_top:15%; /* IE6 */
	/top:15%; /* IE7 */
	left:0;
	position:absolute;
}
.design_search_result h3 .html span,
.extension_search_part ul li span.extension {
	background-position:0 0;
}
.design_search_result h3 .pdf span,
.extension_search_part ul li span.pdf {
	background-position:0 -26px;
}
.design_search_result h3 .xsl span,
.design_search_result h3 .Excel span,
.extension_search_part ul li span.xsl,
.extension_search_part ul li span.Excel {
	background-position:0 -52px;
}
.design_search_result h3 .doc span,
.design_search_result h3 .Word span,
.extension_search_part ul li span.doc,
.extension_search_part ul li span.Word {
	background-position:0 -78px;
}
.design_search_result h3 .ppt span,
.extension_search_part ul li span.ppt {
	background-position:0 -104px;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* 検索結果0件時の表示 */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_result .nodata { /* ヒットが無かった場合 */
	text-align:center;
	padding:2em 0;
}
.design_search_result .nodata .note {
	font-size:116.6%;
	font-weight:bold;
	margin-bottom:1em;
}
.design_search_result .nodata h4 {
	font-weight:bold;
	margin-top:1em;
}
.design_search_result .nodata fieldset{
	border:1px solid #CCC;
	text-align:left;
	padding:0 1em 1em;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.design_search_result .nodata legend {
	color:#000;
}
.design_search_result .nodata ul{
	text-align:left;
	margin-left:1.5em;
}
.design_search_result .nodata .indent ul{
	margin-left:0;
}
.design_search_result .nodata ul li{
	list-style:none;
	zoom:1;
}
.design_search_result .nodata ul li.indent{
	list-style-type:none;
}
.design_search_result .nodata .nodata_comment {
	text-align:center;
/*	font-weight:bold; */
	margin:3em 0;
}
.design_search_result .nodata h3 {
	text-align:left;
	font-weight:bold;
}
.nohit_hint_area {
	background:#f0f0f0;
	padding:1em;
	text-align:left;
}
.nohit_hint_area h4 {
	background:#ddd;
	padding-left:0.5em;
	margin-bottom:0.3em;
}
.nohit_hint_area .child {
	margin-left:0.5em;
	margin-bottom:1em;
	color:#444;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* ソートパーツ .design_search_control_box */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_search_control_box{
	margin-bottom:5px;
	padding:1px 0;
	text-align:right;
}
.extension_search_part{
	text-align:right;
}
/* 横並びさせるためのinline指定 */
.design_search_control_box .search_control_parts_top,
.design_search_control_box .search_control_parts_bottom,
.design_search_control_box .search_control_parts_top *,
.design_search_control_box .search_control_parts_bottom *,
#extension_search_parts *{
	display:inline;
}
/* ie7.cssの内容を打ち消すために例外的にie7ハック使用20100114 */
*:first-child+html .design_search_control_box .search_control_parts_top .item01 ul {
	float:none;
}
*:first-child+html .design_search_control_box .search_control_parts_bottom .item01 ul {
	float:none;
}
/* vista,win7のli background-color 切れ防止 */
.design_search_control_box .search_control_parts_top .item01 ul,
.design_search_control_box .search_control_parts_bottom .item01 ul,
#extension_search_parts ul {
	line-height:1.9em;
}
/* ******************** */
/* <h5>部分の指定 */
/* ******************** */
.design_search_control_box .item01 h5 {
	background:#eee;
	display:none;
}
.design_search_control_box .search_control_parts_bottom {
	border-left:1px solid #666;
	padding-left:0.5em;
}
/* ******************** */
/* <a>部分の指定 */
/* ******************** */
.design_search_control_box a {
	padding:0 5px;
}
.design_search_control_box .current{
	background:#059;
	border:1px solid #037;
	padding:2px 5px;
	color:#fff;
	text-decoration:none;
}
.design_search_control_box a:hover{
	/*background:#ddd;
	border:1px solid #aaa;
	color:#333;*/
	padding:2px 5px;
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
	border:1px solid #00a; /* WCAG2.0対応 */
}
.design_search_control_box .current:hover {
	background:#059;
	border:1px solid #037;
	color:#fff;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* ページングパーツ .design_paging_parts */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_paging_parts {
	float:right;
	margin-bottom:8px;
	white-space:nowrap;
	padding:1px 3px;
	_float:none; /* IE6 */
	_text-align:right; /* IE6 */
	zoom:1; /* IE */
}
.design_paging_parts a {
	padding:2px 6px;
}
.design_paging_parts .pager_back {}
.design_paging_parts .pager_fwd {}
.design_paging_parts .pager_current {
	background:#059;
	border:1px solid #037;
	padding:2px 6px;
	color:#fff;
}
.design_paging_parts a:hover {
	/*background:#ddd;
	border:1px solid #aaa;
	color:#333;*/
	padding:2px 6px;
	background:#00f; /* WCAG2.0対応 */
	color:#fff; /* WCAG2.0対応 */
	border:1px solid #00a; /* WCAG2.0対応 */
}
.design_paging_parts .pager_nolink {
	color:#aaa;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* RSS */
/* ■■■■■■■■■■■■■■■■■■■■ */
.design_rss_icon {}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* フッターブロック */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
.design_common_footer {
	color:#999;
	padding:10px 0;
	border-top:1px solid #ddd;
	overflow:hidden;
	zoom:1; /* IE */
}
.design_common_footer a {
	text-decoration:none;
}
.design_common_footer a:hover {
	text-decoration:underline;
}
.design_common_footer img {
	width:88px;
	height:31px;
	float:right;
}
address {
	font-size:91.6%;
}
/* ■■■■■■■■■■■■■■■■■■■■ */
/* google map */
/* ■■■■■■■■■■■■■■■■■■■■ */
.google_map {
	float:left;
	margin-right:1em;
}
.google_map iframe {
	height:150px;
	width:300px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
/* 絞り込みパーツやソートパーツの開閉機能用 */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■□□□□□■■ */
.jq_ec_view_button {
	float:right;
	width:13px;
	height:13px;
	_line-height:13px; /* IE6 */
	_font-size:83.3%; /* IE6 */
	/*margin-top:-2px;*/
	background:url(../../include/img/icon_sprites.gif) no-repeat 0 -34px;
}
.jq_ec_view_button_off {
	background-position:0 -47px;
}


div.about_mark{
	font-size:9px;
	color:#888888;
	text-align:right;
	margin:0;
	padding:0;
}

a.top_link:active{
	background:none !important;
}
