@charset "utf-8";					/*使用する文字コード*/
/* サイト共通要素 */

/* ==================== タグの初期設定 ==================== */
BODY{
	background-color:#41352f;
	background-image:url(../images/body_bg.gif);
	background-position:center top;
	background-repeat:repeat-x;
	color:#cecec1;
}
/* 管理画面 WYSIWYG プレビュー用にBODYの背景をリセット */
BODY#editor{
	margin:5px;
	background:none;
	color:#6e6e6e;
}

H1,
H2,
H3,
H4,
H5,
H6{
	font-weight:bold;
}
H1{
	font-weight:normal;
	font-size: x-small;
	color:#CEC4BB;
	text-align:right;
}
H2,
H3,
H4,
H5,
H6{
	font-size:medium;
}
P,
TD,
TH,
LI,
INPUT,
TEXTAREA,
BODY#editor,
DIV.entryBody,
DIV.entryMore{
	font-size:small;
}
A,
A:visited{
	color:#cecec1;
	text-decoration:none;
	
}
A:hover{
	text-decoration:underline;
}



/* ==================== サイト全体 レイアウト ==================== */
/* ========== 全体枠 ========== */
DIV#container{
	width:100%;
	margin:0px auto 0px auto;
	padding:0px;
}

/* ========== ヘッダー ========== */
DIV#header{
	width:940px;
	margin:0 auto;
}
DIV#header H1{
	padding:5px 0px 0px 0px;
	height:15px;
}
DIV#header DIV#headerTitle{
	padding:0px 0px 0px;
	height:83px;
}
DIV#header DIV#headerAreaSub{
	float:right;
	text-align:right;
}
DIV#header P#headerAddress{
	color:#FFFFFF;
	font-size:10pt;
	padding:55px 0 0;
}
DIV#header DIV#headerSearch{}
DIV#header DIV#headerSearch DIV#googleSearch{
	margin:15px 0px 5px 0px;
	padding:5px 5px 0px 0px;
	width:290px;
	background-image:url(../images/header_gsearch_bg.gif);
	background-position:left top;
	background-repeat:no-repeat;
}
DIV#header DIV#headerSearch DIV#googleSearch FORM{
	padding:0px 5px 5px 0px;
	background-image:url(../images/header_gsearch_footer_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
}
DIV#header DIV#headerSearch INPUT.text{
	width:120px;
}
DIV#header DIV#headerSearch INPUT.submit{
	width:45px;
}
DIV#header DIV#headerSearch INPUT{
}
DIV#header DIV#headerAreaLogo{}


/* ========== メインメニュー + キャッチ画像 + セカンドエリア + コンテンツ 枠 ========== */
DIV#mainBg{
	width:940px;
	margin:0 auto;
}
DIV#main{
}


/* ========== 2カラム, 3カラム 設定 ========== */
/* { 2カラム, secondArea 右 */
DIV#catchArea{
	float:left;
}
DIV#secondArea{
	float:right;
}
DIV#thirdArea{
	display:none;
}
DIV#contents{
	float:left;
}
/* 2カラム, secondArea 右 } */

/* { 2カラム secondArea 左 
DIV#catchArea{
	float:right;
}
DIV#secondArea{
	float:left;
}
DIV#thirdArea{
	display:none;
}
DIV#contents{
	float:right;
}
 2カラム secondArea 左 } */

/* { 3カラム 画像 長, thirdArea 左, secondArea 右 
DIV#catchArea{
}
DIV#secondArea{
	float:right;
}
DIV#thirdArea{
	float:left;
}
DIV#contents{
	float:left;
}
 3カラム 画像 長, thirdArea 左, secondArea 右 } */

/* { 3カラム 画像 短, thirdArea 左, secondArea 右 
DIV#catchArea{
	float:left;
}
DIV#secondArea{
	float:right;
}
DIV#thirdArea{
	float:left;
}
DIV#contents{
	float:left;
}
 3カラム 画像 短, thirdArea 左, secondArea 右 } */

/* { 3カラム 画像 短, thirdArea 左, secondArea 右 
DIV#catchArea{
	float:right;
}
DIV#secondArea{
	float:left;
}
DIV#thirdArea{
	float:right;
}
DIV#contents{
	float:left;
}
 3カラム 画像 短, thirdArea 左, secondArea 右 } */

/* { 3カラム 画像 長, thirdArea 左, secondArea 右 
DIV#catchArea{
}
DIV#secondArea{
	float:left;
}
DIV#thirdArea{
	float:right;
}
DIV#contents{
	float:left;
}
 3カラム 画像 短, thirdArea 左, secondArea 右 } */



/* ========== メインメニュー ========== */

UL#mainMenu {

}

/* 背景画像は main_menu.css にて、MTのエントリーから読込 */
UL#mainMenu,
UL#mainMenu LI,
UL#mainMenu LI A{
	height:49px; /* 高さはUL,LI,Aそれぞれに設定 */
}
UL#mainMenu{
	clear:both;
	position:relative; /* liで絶対的に位置を設定する際に、ウインドウからでなくULからの位置を設定できるように設定 */
	margin:0px;
	padding:0px;
	background-color:;
}
UL#mainMenu LI,
UL#mainMenu A{
	position:absolute;/* liを横に並べるために、絶対的に位置を設定できるように設定 */
	top:0px;/* liを横に並べるため、全ての高さを揃える */
}
UL#mainMenu LI{
	list-style-type:none;/*Netscapeでは、表示エリア外に設定してもリストの「・」が残ってしまうための対応*/
	font-size:0.1em;/* IEでは「文字の高さ×liの数」の余白があいてしまう。余白があかないように設定 */
}
UL#mainMenu A{
	display:block;
	text-indent:-999em;/* 文字を表示エリア外に移動 */
	text-decoration:none;/* firefoxでは下線がされてしまう問題を修正 */
	background-position:center center;
}
UL#mainMenu A#mainMenu1{
	left:0px;/*ボタンの位置を指定*/
	width:156px;/* ボタンの幅 */
}
UL#mainMenu A#mainMenu2{
	left:156px;/*ボタンの位置を指定*/
	width:156px;/* ボタンの幅 */
}
UL#mainMenu A#mainMenu3{
	left:312px;/*ボタンの位置を指定*/
	width:156px;/* ボタンの幅 */
}
UL#mainMenu A#mainMenu4{
	left:468px;/*ボタンの位置を指定*/
	width:156px;/* ボタンの幅 */
}
UL#mainMenu A#mainMenu5{
	left:624px;/*ボタンの位置を指定*/
	width:156px;/* ボタンの幅 */
}
UL#mainMenu A#mainMenu6{
	left:780px;/*ボタンの位置を指定*/
	width:160px;/* ボタンの幅 */
}

/* ========== キャッチ画像 ========== */
DIV#catchArea{
	padding-top:25px;
}


/* ========== キャッチ画像・メインメニュー下 シャドウ ========== */
DIV#secondArea,
DIV#thirdArea,
DIV#contents{
}



/* ========== セカンドエリア ========== */
DIV#secondArea{
	width:220px;
	margin:0px;
	padding:25px 0px 15px 0px;
}



/* ========== サードエリア ========== */
DIV#thirdArea{}



/* ---------- サブメニュー ---------- */
DIV#secondArea DIV#subMenu {
	display:none;
}
DIV#secondArea DIV#banner {}
/* ----- 背景画像 ----- */
DIV#secondArea DIV#freeSpace,
DIV#secondArea DIV#qrcode,
DIV#secondArea DIV#case{
	margin-bottom:10px;
	background-image:url(../images/second_area_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
}
/* ----- タイトル ----- */
DIV#secondArea DIV#subMenu DIV.title,
DIV#secondArea DIV#freeSpace DIV.title,
DIV#secondArea DIV#banner DIV.title,
DIV#secondArea DIV#qrcode DIV.title,
DIV#secondArea DIV#case DIV.title,
DIV#secondArea DIV#brogPartsTagCloud DIV.title_tag{
	background-position:left top;
	background-repeat:no-repeat;
	height:32px;
}
/* ----- コンテンツの余白 ----- */
DIV#secondArea P,
DIV#secondArea SELECT,
DIV#secondArea DIV.entryBody,
DIV#secondArea DIV#freeSpace H3{
	margin:5px 10px 5px 10px;
}
/* ---------- サブメニュー ---------- */
DIV#secondArea DIV#subMenu DIV.title{
	background-image:url(../images/second_area_title_menu.gif);
}
/* ---------- サブメニュー ---------- */
DIV#secondArea DIV#subMenu UL{
	width:100%;/* IEの表示バグのため、widthを設定 */
	margin:0px;
	padding:0px;
}
DIV#secondArea DIV#subMenu LI{
	margin:0px;
	padding:0px;
	list-style-type:none;
	background-image:url(../images/second_area_hr.gif);
	background-position:center top;
	background-repeat:no-repeat;
	font-weight:bold;
}
DIV#secondArea DIV#subMenu LI A{
	display:block;
	margin:0px;
	padding:5px 10px 5px 10px;
	text-decoration:none;
	color:#2B1D13;
}
DIV#secondArea DIV#subMenu LI A:hover{
	color:#AB9E8E;
}
/* ---------- フリースペース ---------- */
DIV#secondArea DIV#freeSpace{}
DIV#secondArea DIV#freeSpace DIV.title{
	background-image:url(../images/second_area_title_free.gif);
}
DIV#secondArea DIV#freeSpace DIV.entryBody{
	padding-bottom:10px;
}
/* ---------- バナー ---------- */
DIV#secondArea DIV#banner{
	text-align:center;
	background-image:url(../images/second_line.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
	margin-bottom:15px;
	padding-bottom:15px;
}
DIV#secondArea DIV#banner DIV.title{
	display:none;

}
DIV#secondArea DIV#banner IMG{
	margin:0px auto 10px auto;
}
DIV#secondArea DIV#banner P{
	text-align:left;
}
/* ---------- QRコード ---------- */
DIV#secondArea DIV#qrcode{
	text-align:center;
}
DIV#secondArea DIV#qrcode DIV.title{
	background-image:url(../images/second_area_title_mobile.gif);
}
DIV#secondArea DIV#qrcode IMG{
	margin:5px auto 5px auto;
}
/* ---------- 事例集 ---------- */
DIV#secondArea DIV#case DIV.title{
	background-image:url(../images/second_area_title_case.gif);
}
DIV#secondArea DIV#case UL{
	width:100%;/* IEの表示バグのため、widthを設定 */
	margin:0px;
	padding:0px;
}
DIV#secondArea DIV#case LI{
	margin:0px;
	padding:0px;
	list-style-type:none;
	background-image:url(../images/second_area_hr.gif);
	background-position:center top;
	background-repeat:no-repeat;
	font-weight:bold;
}
DIV#secondArea DIV#case LI A{
	display:block;
	margin:0px;
	padding:5px 10px 5px 10px;
	text-decoration:none;
	color:#2B1D13;
}
DIV#secondArea DIV#case LI A:hover{
	color:#AB9E8E;
}

/* ---------- ブログパーツ・カスタムパーツ ---------- */
DIV#secondArea DIV#secondAreaBlogParts,
DIV#secondArea DIV#secondAreaCustomParts,
DIV#secondArea DIV#secondAreaDuplicate01Parts{}

DIV#secondArea DIV#brogPartsCategory H3,
DIV#secondArea DIV#brogPartsCalendar H3,
DIV#secondArea DIV#brogPartsTagCloud H3,
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop H3,
DIV#secondArea DIV#brogPartsMonthlyArchive H3,
DIV#secondArea DIV#brogPartsEntry H3,
DIV#secondArea DIV#brogPartsComment H3,
DIV#secondArea DIV#brogPartsAuthor H3,
DIV#secondArea DIV#customPartsCategory H3,
DIV#secondArea DIV#customPartsComment H3,
DIV#secondArea DIV#duplicateEntryList H3,
DIV#secondArea DIV#duplicateCategoryEntryList H3{
	padding:10px;
	background-image:url(../images/second_area_title.gif);
	background-position:left top;
	background-repeat:no-repeat;
	font-size: small;
	color:#cdcdcd;
}

/* ---------- UL ---------- */
DIV#secondArea DIV#brogPartsCategory UL,
DIV#secondArea DIV#brogPartsCalendar UL,
DIV#secondArea DIV#brogPartsTagCloud UL,
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop UL,
DIV#secondArea DIV#brogPartsMonthlyArchive UL,
DIV#secondArea DIV#brogPartsEntry UL,
DIV#secondArea DIV#brogPartsComment UL,
DIV#secondArea DIV#brogPartsAuthor UL,
DIV#secondArea DIV#customPartsCategory UL,
DIV#secondArea DIV#customPartsComment UL,
DIV#secondArea DIV#duplicateEntryList UL,
DIV#secondArea DIV#duplicateCategoryEntryList UL{
	width:100%;/* IEの表示バグのため、widthを設定 */
	margin:0px;
	padding:0px;
}
DIV#secondArea DIV#brogPartsCategory LI,
DIV#secondArea DIV#brogPartsCalendar LI,
DIV#secondArea DIV#brogPartsTagCloud LI,
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop LI,
DIV#secondArea DIV#brogPartsMonthlyArchive LI,
DIV#secondArea DIV#brogPartsEntry LI,
DIV#secondArea DIV#brogPartsComment LI,
DIV#secondArea DIV#brogPartsAuthor LI,
DIV#secondArea DIV#customPartsCategory LI,
DIV#secondArea DIV#customPartsComment LI,
DIV#secondArea DIV#duplicateEntryList LI,
DIV#secondArea DIV#duplicateCategoryEntryList LI{
	margin:0px;
	padding:8px;
	background-image:url(../images/second_area_hr.gif);
	background-position:center top;
	background-repeat: repeat-x;
	list-style-type:none;
	font-weight:bold;
}
DIV#secondArea DIV#brogPartsCategory LI LI,
DIV#secondArea DIV#brogPartsCalendar LI LI,
DIV#secondArea DIV#brogPartsTagCloud LI LI,
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop LI LI,
DIV#secondArea DIV#brogPartsMonthlyArchive LI LI,
DIV#secondArea DIV#brogPartsEntry LI LI,
DIV#secondArea DIV#brogPartsComment LI LI,
DIV#secondArea DIV#brogPartsAuthor LI LI,
DIV#secondArea DIV#customPartsCategory LI LI,
DIV#secondArea DIV#customPartsComment LI LI,
DIV#secondArea DIV#duplicateEntryList LI LI,
DIV#secondArea DIV#duplicateCategoryEntryList LI LI{
	background-image:url(../images/list_icon.gif);
	background-position:5px 12px;
	background-repeat:no-repeat;
	padding-left:1em;
}
/* ---------- 各パーツの設定 ---------- */
DIV#secondArea DIV#brogPartsCategory,
DIV#secondArea DIV#brogPartsCalendar,
DIV#secondArea DIV#brogPartsTagCloud,
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop,
DIV#secondArea DIV#brogPartsMonthlyArchive,
DIV#secondArea DIV#brogPartsEntry,
DIV#secondArea DIV#brogPartsComment,
DIV#secondArea DIV#brogPartsAuthor,
DIV#secondArea DIV#customPartsCategory,
DIV#secondArea DIV#customPartsComment,
DIV#secondArea DIV#duplicateEntryList,
DIV#secondArea DIV#duplicateCategoryEntryList{
	margin-bottom:15px;
	background-image:url(../images/second_area_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
}

DIV#secondArea DIV#brogPartsCategory{}
DIV#secondArea DIV#brogPartsTagCloud{}
DIV#secondArea DIV#brogPartsTagCloud .rank-1{

	font-size: 1.75em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-2{
	font-size: 1.75em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-3{
	font-size: 1.625em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-4{
	font-size: 1.5em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-5{
	font-size: 1.375em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-6{
	font-size: 1.25em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-7{
	font-size: 1.125em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-8{
	font-size: 1em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-9{
	font-size: 0.95em;
}
DIV#secondArea DIV#brogPartsTagCloud .rank-10{
	font-size: 0.9em;
}
DIV#secondArea DIV#brogPartsMonthlyArchiveDrop{}
DIV#secondArea DIV#brogPartsMonthlyArchive{}
DIV#secondArea DIV#brogPartsEntry{}
DIV#secondArea DIV#brogPartsComment{}
DIV#secondArea DIV#brogPartsAuthor{}
DIV#secondArea DIV#customPartsCategory{}
DIV#secondArea DIV#customPartsComment{}
DIV#secondArea DIV#duplicateEntryList{}
DIV#secondArea DIV#duplicateCategoryEntryList{}



/* ========== コンテンツ ========== */
DIV#contents{
	width:670px;
	margin-top:25px;
	border-top:1px solid #4e423c;
	padding:15px 15px 15px 15px;
	background-image:url(../images/contents_bg.gif);
	background-position:left bottom;
	background-repeat: repeat-y;
}
BODY#editor,/* 管理画面 WYSIWYG プレビュー用設定 */
DIV#contents{}



/* ========== フッター ========== */
DIV#footer{
	background-image:url(../images/footer_bg.gif);
	background-position:left top;
	background-repeat: repeat-x;
	width:100%;
	margin-top:40px;
}
/* ---------- フッターメニュー ---------- */
DIV#footer P#footerMenu{
	display:none;
}

/* ---------- フッター copyright エリア ---------- */
DIV#footer DIV#footerCopyrightArea{
	padding:7px 0px;
	width:940px;
	margin: 0 auto;
	height:250px;
		
}

/* ---------- フッター copyright 付メニュー ---------- */
DIV#footer P#footerFree{
	display:none;
}
DIV#footer P#footerSiteLink{
	float:right;
	width:300px;
	text-align:right;
	margin-bottom:10px;
}

/* ---------- copyright ---------- */
DIV#footer P#copyright{
	clear:both;
}

BR.clear{
	clear:both;
}



/* ==================== サイト全体 装飾 ==================== */
/* ========== セカンドエリア ========== */
/* ---------- 見出し ---------- */
DIV#secondArea H2,
DIV#secondArea H3,
DIV#secondArea H4,
DIV#secondArea H5,
DIV#secondArea H6,
DIV#secondArea TD,
DIV#secondArea TH,
DIV#secondArea LI,
DIV#secondArea P{
	font-size:small;
}
DIV#secondArea TD,
DIV#secondArea TH,
DIV#secondArea LI,
DIV#secondArea P{
	line-height:150%;
}
/* ========== コンテンツ ========== */
/* ---------- 見出し ---------- */
BODY#editor,
BODY#editor H2,
BODY#editor H3,
BODY#editor H4,
BODY#editor H5,
BODY#editor H6,
BODY#editor P,
BODY#editor TD,
BODY#editor TH,
BODY#editor LI,
BODY#editor DIV.entryBody,
BODY#editor DIV.EntryMore,
DIV#contents H2,
DIV#contents H3,
DIV#contents H4,
DIV#contents H5,
DIV#contents H6,
DIV#contents P,
DIV#contents TD,
DIV#contents TH,
DIV#contents LI,
DIV#contents DIV.entryBody,
DIV#contents DIV.EntryMore{
	line-height:150%;
}
BODY#editor P,
BODY#editor OL,
BODY#editor UL,
BODY#editor TABLE,
DIV#contents P,
DIV#contents OL,
DIV#contents UL,
DIV#contents TABLE{
	margin-bottom:15px;
}
BODY#editor H1,
BODY#editor H2,
BODY#editor H3,
BODY#editor H4,
BODY#editor H5,
BODY#editor H6,
DIV#contents H1,
DIV#contents H2,
DIV#contents H3,
DIV#contents H4,
DIV#contents H5,
DIV#contents H6{
	margin-bottom:10px;
}
BODY#editor H2,
BODY#editor H3,
BODY#editor H4 {
	color:000;
}

BODY#editor H2,
DIV#contents H2{
	background-image:url(../images/h2_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
	border-top:1px solid #746862;
	padding:7px 5px 7px 15px;
	color:#f1f1e2;
}
BODY#editor A.rss H2,
DIV#contents A.rss H2{
	background-image:url(../images/h2_rss_bg.gif);
	padding-right:32px;
}
BODY#editor A.rss,
DIV#contents A.rss{
	text-decoration:none;

}
BODY#editor A:hover.rss,
DIV#contents A:hover.rss{
	text-decoration:none;
}
BODY#editor H3,
DIV#contents H3{
	background-image:url(../images/h3_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
	padding:5px 3px 14px 25px;
	color:#f1f1e2;
}
BODY#editor H4,
DIV#contents H4{
	background-image:url(../images/h4_bg.gif);
	padding:10px;
	color:#f1f1e2;
	font-size:small;
}
BODY#editor H5,
DIV#contents H5{
	border-bottom:3px double #b7aaa4;
	padding:7px 7px 5px 5px;
	color:#f1f1e2;
	font-size:small;
}
BODY#editor UL.date,
DIV#contents UL.date{
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
	padding:0px;
}
BODY#editor UL.date LI,
DIV#contents UL.date LI{
	margin:0px;
	list-style-type:none;
	text-indent:-5.5em;
	padding:0px 0px 0px 5.5em;
}
BODY#editor TH,
BODY#editor TD,
DIV#contents TH,
DIV#contents TD{
	border:1px solid #746862;
	padding:5px;
}
BODY#editor TH,
DIV#contents TH{
	background-color:#625853;
}

BODY#editor H2.rss A,
DIV#contents H2.rss A{
	display:block;
	text-decoration:none;
}
BODY#editor P.pankuzu,
DIV#contents P.pankuzu{}
BODY#editor .fontXLarge,
DIV#contents .fontXLarge{
	font-size:large;
}
BODY#editor .fontLarge,
DIV#contents .fontLarge{
	font-size:medium;
}
BODY#editor .fontSmall,
DIV#contents .fontSmall{
	font-size:x-small;
}
BODY#editor .fontMedium,
DIV#contents .fontMedium{
	font-size:small;
}
BODY#editor .fontXSmall,
DIV#contents .fontXSmall{
	font-size:xx-small;
}
BODY#editor input.text,
DIV#contents input.text{
	width:300px;
}
DIV#contents INPUT.textShort{
	width:50px;
}
BODY#editor TEXTAREA,
DIV#contents TEXTAREA{
	width:430px;
	height:15em;
}
BODY#editor .caution,
DIV#contents .caution{
	color:#EE0000;
}
BODY#editor P.price,
DIV#contents P.price{
	font-size:medium;
	text-align:right;
	font-weight:bold;
	color:#EE0000;
}
BODY#editor DIV.hr01,
DIV#contents DIV.hr01{
	margin:0px 0px 15px 0px;
	height:1px;
	background-image:url(../images/hr_bg.gif);
	background-position:left top;
	background-repeat:repeat-x;
}
BODY#editor DIV.comment DIV.hr01,
DIV#contents DIV.comment DIV.hr01{
	margin-top:-1em;
}
BODY#editor P.nextPrevious,
DIV#contents P.nextPrevious{
	text-align:center;
}
BODY#editor P.linkBlock,
DIV#contents P.linkBlock,
BODY#editor P.anchorTop,
DIV#contents P.anchorTop{
	padding-top:15px;
	background-image:url(../images/hr_bg.gif);
	background-position:left top;
	background-repeat:repeat-x;
}
BODY#editor P.entryMeta,
DIV#contents P.entryMeta{}
BODY#editor P.linkBlock,
DIV#contents P.linkBlock,
BODY#editor P.anchorTop,
DIV#contents P.anchorTop{
	text-align:right;
}
BODY#editor TD.buttonArea,
DIV#contents TD.buttonArea{
	border:none;
}
DIV#contents DIV.center{
	text-align:center;
}



/* ==================== トップページ ==================== */
DIV#contents DIV#categoryTop{}
DIV#contents DIV#categoryTop H3{
	background-image:url(../images/h2_bg.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
	border-top:1px solid #746862;
	padding:7px 5px 7px 15px;
	color:#f1f1e2;
	text-decoration:none;
}
DIV#contents DIV#categoryTop DIV.topNews{}
DIV#contents DIV#categoryTop DIV.topLatestBlog{}
DIV#contents DIV#categoryTop DIV#topContents{}

DIV#contents DIV#categoryTop DIV.accessText{}

DIV#contents DIV#categoryTop TABLE.accessTable{
	float:right;
	width:280px;
}

DIV#contents DIV#categoryTop DIV#googleMapsArea{
	float:left;
	margin-bottom:10px;
	width:280px;
	height:350px;
}



/* ==================== 企業情報 ==================== */
DIV#contents DIV#categoryCompany{}


DIV#contents DIV#categoryCompany DIV.accessText{}

DIV#contents DIV#categoryCompany TABLE.accessTable{
	float:right;
	width:670px;
}

DIV#contents DIV#categoryCompany DIV#googleMapsArea{
	float:left;
	margin-bottom:10px;
	width:670px;
	height:350px;
}




/* ==================== プライバシーポリシー ==================== */
DIV#contents DIV#categoryPrivacyPolicy{}



/* ==================== お問い合せ ==================== */
DIV#contents DIV#categoryInquiry{}

DIV#contents DIV#categoryInquiry TH{
	width:8em;
}
DIV#contents DIV#categoryInquiry .formErrorBg{
	background-color:#FFDDDD;
}


/* ==================== カスタムページ ==================== */
DIV#contents DIV#categoryCustom{}



/* ==================== フリーページ ==================== */
DIV#contents DIV#categoryFree{}



/* ==================== デュプリケートページ ==================== */
DIV#contents DIV#categoryDuplicate{}



/* ==================== ブログページ ==================== */
DIV#contents DIV#categoryBlog{}




/* ==================== お買い物ページ ==================== */
DIV#contents DIV#categoryShop{}
DIV#contents DIV#categoryShop DIV.shopSubImg{
	margin-bottom:15px;
}
DIV#contents DIV#categoryShop DIV.shopMainImg IMG{
	margin-bottom:15px;
}
DIV#contents DIV#categoryShop DIV.shopSubImg IMG{
	margin:3px;
}



/* ==================== 事例集ページ ==================== */
DIV#contents DIV#categoryCase{}

/* トップページ ・ デザインコンセプト */
DIV#contents DIV.caseDesignEntry{}
DIV#contents IMG.caseDesignEntryImg{
	float:left;
	margin-bottom:10px;
}
DIV#contents DIV.caseDesignEntryText{
	float:right;
	width:440px;
}
DIV#contents P.caseDesignEntryLink{
	text-align:right;
}

/* デザインコンセプト */
DIV#contents DIV#categoryCase DIV.caseDesignGallary{
	margin-bottom:8px;
}
DIV#contents DIV#categoryCase DIV.caseDesignGallary IMG{
	margin:0px 7px 7px 0px;
}


/* ==================== ギャラリー & スタッフ ページ ==================== */
DIV#contents DIV.galleryCatContainer,
DIV#contents DIV.staffCatContainer{
	float:left;
	width:190px;
}
DIV#contents P.galleryListContainer,
DIV#contents P.staffListContainer{
	float:left;
	width:190px;
}
DIV#contents DIV.galleryCatContainer H3,
DIV#contents DIV.staffCatContainer H3{
	margin:0px 5px 0px 5px;
}
DIV#contents P.galleryListContainer A,
DIV#contents P.staffListContainer A{
	margin:5px;
	padding:5px;
	background-color:#f2f0e7;
	display:block;
	text-decoration:none;
}
DIV#contents P.galleryListContainer A,
DIV#contents P.galleryListContainer A:visited,
DIV#contents P.staffListContainer A,
DIV#contents P.staffListContainer A:visited{
	text-decoration:none;
	color:#907b6a;
}
DIV#contents P.galleryListContainer A:hover,
DIV#contents P.staffListContainer A:hover{
	background-color:#907b6a;
	text-decoration:none;
	color:#ffffff;
}
DIV#contents SPAN.galleryListImgContainer,
DIV#contents SPAN.staffListImgContainer{
	width:170px;
	height:170px;
	
	display:block;
	background-repeat:no-repeat;
	background-position:center center;
}
DIV#contents SPAN.galleryListTitleContainer,
DIV#contents SPAN.staffListTitleContainer{
	overflow:hidden;
	display:block;
	height:3em;
}
DIV#contents DIV.galleryCatContainer SPAN.galleryListTitleContainer,
DIV#contents DIV.staffCatContainer SPAN.staffListTitleContainer{
	height:6em;
}
DIV#contents DIV#galleryImageAndText,
DIV#contents DIV#staffImageAndText{
	margin-bottom:15px;
}
DIV#contents DIV.galleryThumb{
	
}
DIV#contents DIV.galleryThumb A{
	width:67px;
	height:67px;
	
	float:left;
	display:block;
	margin:2px;
	background-repeat:no-repeat;
	background-position:center center;
}
DIV#contents DIV#galleryImage,
DIV#contents DIV#staffImage{
	float:left;
	width:284px;
}
DIV#contents DIV#galleryMainImage,
DIV#contents DIV#staffMainImage{
	margin-bottom:10px;
	height:380px;
	overflow:hidden;
}
DIV#contents DIV#galleryText,
DIV#contents DIV#staffText{
	float:right;
	width:270px;
}
DIV#contents TABLE.galleryDetail,
DIV#contents TABLE.staffDetail{
	width:100%;
}
DIV#contents TABLE.galleryDetail TH,
DIV#contents TABLE.galleryDetail TD,
DIV#contents TABLE.staffDetail TH,
DIV#contents TABLE.staffDetail TD{
	border:none;
	border-bottom:1px dashed #C8AE8C;
}
DIV#contents TABLE.galleryDetail TH,
DIV#contents TABLE.staffDetail TH{
	background:none;
	font-weight:bold;
	color:#C8AE8C;
}
DIV#contents TABLE.galleryDetail TD,
DIV#contents TABLE.staffDetail TD{}

/*------------------------------------------------------------
                        　独自追加
------------------------------------------------------------*/
/* ==================== TABLE ==================== */
DIV#contents TABLE {
	width:100%;
}
DIV#contents TABLE TH {
	width:25%;
}
/* ==================== フリーHTML ==================== */
DIV#secondSalonArea {
	margin-bottom:15px;
	padding-bottom:15px;
	background-image:url(../images/second_line.gif);
	background-position:left bottom;
	background-repeat:no-repeat;
}
/* ==================== フッターフリースペース ==================== */
DIV#footer DIV#footerFree01 {
	width:270px;
	float:left;
}
DIV#footer DIV#footerFree02 {
	width:560px;
	float:left;
	color:#598f34;
	padding:30px 0 0;
	background-image:url(../images/footer_free_menu_bg.gif);
	background-position:right top;
	background-repeat: repeat-y;
	height:165px;
	
}
DIV#footer DIV#footerFree02 p#footerFreeMenu {
	font-size: x-small;
}
DIV#footer DIV#footerFree02 a {
	color:#598f34;
}
DIV#footer DIV#footerFree02 img {
	margin-bottom:5px;
}
/* ==================== 求人案内 ==================== */
dl.dlList01 {
	background:transparent url(../images/hr_bg.gif) repeat-x scroll left bottom;
	border:medium none;
	color:#cecec1;
	display:block;
	min-height:1%;
	padding:10px 5px;
}
dl.dlList01 dt {
	clear:left;
	float:left;
}
dl.dlList01 dd {
	margin-left:9.5em;
	padding-left:1.2em;
}
/* ==================== コンテンツのリスト ==================== */
DIV#contents ul {
	margin:0;
	padding:0;
}
DIV#contents ul li {
	background:transparent url(../images/list_icon.gif) no-repeat scroll 6px 8px;
	list-style-type:none;
	margin:0;
	padding:3px 0 3px 1.5em;
}
/* ==================== 店舗案内 ==================== */
DIV#menuLeft {
	width:325px;
	float:left;
	font-size:12px;
}
DIV#menuRight {
	width:325px;
	float:right;
	font-size:12px;
}
DIV#menuLeft h5,
DIV#menuRight h5 {
	font-size:small;
	background:transparent url(../images/h5_bg.gif);
	padding:5px;
	color:#574b45;
	border:none;
}

dl.dlMenu {
	background:transparent url(../images/hr_bg.gif) repeat-x scroll left bottom;
	border:medium none;
	color:#cecec1;
	display:block;
	min-height:1%;
	padding:5px;
}
dl.dlMenu dt {
	clear:left;
	float:left;
}
dl.dlMenu dd {
	margin-left:3.5em;
	padding-left:1.2em;
}
/* ==================== トップページ ==================== */
BODY.topPage div#contents {
	background:none;
	border:none;
	margin-top:25px;
	padding:0px;
	width:700px;
}
/*----------キャンペーン更新情報--------------*/
DIV#topStoreLatest {
	width:670px;
	padding:15px 15px 15px 15px;
	background-image:url(../images/contents_bg.gif);
	background-position:left bottom;
	background-repeat: repeat-y;
	font-size:small;
	margin-bottom:25px;
}
DIV#topStoreLatestBody {
	padding:10px;
	background-image:url(../images/dots_bg.gif);
}
DIV#topStoreLatestBody span.categoryName {
	color:#75c241;
	padding:0 0 0 10px;
}
DIV#topStoreLatestBody span.allView {
	display:block;
	text-align:right;
	padding:5px 0;
}
DIV#topStoreLatestBody dl {
	background-image:url(../images/dots_blk.gif);
	background-position:left bottom;
	background-repeat:repeat-x;
	padding:10px 0;
	color:#c0c0c0;
}
DIV#topStoreLatestBody dl dt {
	background-image:url(../images/list_icon.gif);
	background-position:left center;
	background-repeat:no-repeat;
	margin-left:5px;
	padding:3px 0 1px 10px;
}
DIV#topStoreLatestBody dl dd {
	margin:0 0 0 15px;
}
/*----------最新情報更新情報--------------*/
DIV#topStoreNewsLeft {
	width:308px;
	float:left;
	padding:10px;
	background-image:url(../images/dots_bg.gif);
}
DIV#topStoreNewsRight {
	width:308px;
	float:right;
	padding:10px;
	background-image:url(../images/dots_bg.gif);
}
DIV#topStoreNewsLeft span.categoryName,
DIV#topStoreNewsRight span.categoryName {
	color:#75c241;
	padding:0 0 0 10px;
}
DIV#topStoreNewsLeft dl,
DIV#topStoreNewsRight dl {
	padding:0px 0;
	color:#c0c0c0;
	
}
DIV#topStoreNewsLeft dl dt,
DIV#topStoreNewsRight dl dt {
	background-image:url(../images/list_icon.gif);
	background-position:left center;
	background-repeat:no-repeat;
	margin-left:5px;
	padding:3px 0 1px 10px;
	font-size:x-small;
}
DIV#storeNews {
	height:60px;
	background-image:url(../images/dots_blk.gif);
	background-position:left bottom;
	background-repeat:repeat-x;
	margin-bottom:10px;
}
DIV#storeNews img {
	float:left;
	width:70px;
	height:47px;
	padding-right:0px;
}
DIV#storeNews dl {
	float:right;
	width:230px;
}
span#newsLinks {
	display:block;
	text-align:right;
	padding:53px 0 0 0;
}

/* ==================== スクール紹介 ==================== */
div#contents TABLE#schoolAd {
	width:430px;
}
div#contents TABLE#schoolAd TH {
	width:80px;
}
/*----------Q&A--------------*/
div#contents div.entryBody div.questionbox {
	background:transparent url(../images/hr_bg.gif) repeat-x scroll center bottom;
	margin-bottom:10px;
	padding:10px 0;
	width:640px;
}
div#contents div.entryBody p.questiontext {
	background:transparent url(../images/qa_icon1.gif) no-repeat scroll left top;
	font-weight:bold;
	padding:4px 0 4px 30px;
}
div#contents div.entryBody p.answertext {
	background:transparent url(../images/qa_icon2.gif) no-repeat scroll left top;
	padding:4px 0 4px 30px;
}

/* ==================== 店舗詳細 ==================== */
DIV#storeDetailEntryList img {
	padding:4px;
	background-color:#3b302b;
}
span#storeDetail img {
	padding:0px;
	background:none;
}
DIV#storeDetailEntry img {
	padding:4px;
	background-color:#3b302b;
}
/*-----------------ページ内リンク---------------------*/
div#contents p#storeAnchor {
	/*background:transparent url(../images/h5_bg.gif) repeat scroll 0 0;
	margin-bottom:7px;
	padding:3px 0;*/
	text-align:center;
	font-size:12px;
}
div#contents p#storeAnchor a {
	color:#CECEC1;
	padding:6px;
	margin:0 3px;
	background-color:#3b302b;
	border:1px solid #746862;
}
/*-----------------更新情報---------------------*/
div#storeDetailNewsArea,
div#storeDetailCampaignArea {
	background-image:url(../images/dots_bg.gif);
	padding:10px;
	margin-bottom:15px;
}
div#storeDetailNewsArea h3,
div#storeDetailCampaignArea h3 {
	background-image:url(../images/h4_bg.gif);
	color:#F1F1E2;
	font-size:small;
	padding:10px;
	background-position:;
	background-repeat: repeat;
	margin-bottom:0px;
}

div#storeDetailNewsArea dl,
div#storeDetailCampaignArea dl {
	background-image:url(../images/dots_blk.gif);
	background-position:left bottom;
	background-repeat:repeat-x;
	color:#C0C0C0;
	padding:10px 0;
	font-size:small;
}
div#storeDetailNewsArea dl dt,
div#storeDetailCampaignArea dl dt {
	background-image:url(../images/list_icon.gif);
	background-position:left center;
	background-repeat:no-repeat;
	margin-left:5px;
	padding:3px 0 1px 10px;
}
div#storeDetailNewsArea dl dd,
div#storeDetailCampaignArea dl dd {
	margin:0 0 0 15px;
}
div#storeDetailNewsArea span.categoryName,
div#storeDetailCampaignArea span.categoryName {
	color:#75C241;
	padding:0 0 0 10px;
}
/*-----------------メニュー・料金---------------------*/
DIV#storeDetailPlan {
	text-align:center;
}
DIV#storeDetailPlan h3 {
	text-align:left;
}
/*-----------------お問い合わせ---------------------*/
DIV#storeInquryArea {
	padding:15px 0;
	margin:15px 0;
	text-align:center;
}

/*--------------------ライブラリ-----------------------*/
/* 店舗風景 */
DIV#galleryBody {
	padding:10px 0;
	margin-bottom:15px;
	background-image:url(../images/dots_bg.gif);
}

DIV#jCarouselLiteDemo {
	margin:0 auto;
	width:620px;
}
 #jCarouselLiteDemo .carousel  {
            padding:0;
            margin:0 a;
            position:relative;
			width:610px;
			height:120px;
         }
         #jCarouselLiteDemo .digg {
            position:absolute;
            left:670px; top:110px;
         }
         #jCarouselLiteDemo .main {
            margin-left:0px;
         }
         #jCarouselLiteDemo .demo em {
            color:#ff3300;
            font-weight:bold;
            font-size:60%;
            font-style:normal;
         }
         #jCarouselLiteDemo .carousel button { /*Don't remove this. we still use this for individual demos. only the front pages use images as of now*/
            float:left;
         }              
         #jCarouselLiteDemo .carousel a.prev, #jCarouselLiteDemo .carousel a.next {
            display:block;
            float:left;
			margin-top:20px;
            width:16px; height:81px;
            text-decoration:none;
            background:url("../images/store_detail_left_icon.gif") left center no-repeat;
         }
         #jCarouselLiteDemo .carousel a.next {
            background:url("../images/store_detail_right_icon.gif") right center no-repeat;
         }  
         #jCarouselLiteDemo .carousel a:hover, #jCarouselLiteDemo .carousel a:active {
            border:none;
            outline:none;
         }
         #jCarouselLiteDemo .carousel .jCarouselLite {
            float:left;
            _height:180px;
            background-image:url(../images/second_store_detail_bg.gif);
            position:relative;
            visibility:hidden;
            left:-5000px;
			
         }
         #jCarouselLiteDemo .carousel ul {
            overflow:hidden;
            margin:0; padding:0;
         }
         #jCarouselLiteDemo .carousel li img {
            background-color:#fff;
            width:140px; height:100px;
			display:inline;
            list-style:none;
            margin:0;
			padding:0px;
            overflow:hidden;
         }
         #jCarouselLiteDemo .carousel li {            
            width:134px; height:120px;
            list-style:none;
            margin:5px; padding:0;
         }
         #jCarouselLiteDemo .widget img {
            cursor:pointer;
         }
         #jCarouselLiteDemo .mid {
            margin-left:80px;
            width:670px; height:120px;
         }
         #jCarouselLiteDemo .vertical {
            margin-left:170px;
         }
         #jCarouselLiteDemo .vertical .jCarouselLite {   /* so that in IE 6, the carousel div doesnt expand to fill the space */
            width:140px;
         }
         #jCarouselLiteDemo .imageSlider li img, 
         #jCarouselLiteDemo .imageSlider li p, 
         #jCarouselLiteDemo .imageSliderExt li img , 
         #jCarouselLiteDemo .imageSliderExt li p {
            width:670px; height:120px;
         }

/* ========== LightBox ========== */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}




