/* -------------------------------------
 ページ全体のスタイルシート
--------------------------------------- */
html{
	height:100%;
	overflow:hidden;
}

body{
	height:100%;
	width:100%;
	margin:0px auto;
	font-size:80%;
	font-family:"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",sans-serif;
	/* スクロールバーのスタイル定義(IEのみ反映される) */
	scrollbar-face-color: #ffffff;
	scrollbar-3dlight-color: #000000;
	scrollbar-highlight-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-darkshadow-color: #000000;
	scrollbar-arrow-color: #000000;
	scrollbar-track-color: #ffffff;
	line-height:17px;
}

h1 {
	font-size: medium;
}

h2 {
	font-size: small;
	font-weight:normal;
	display:inline;
}

/* リンクのスタイル定義 */
a {
	text-decoration:none;
	color:#000000;
}
/* リンクにマウスをのせたときのスタイル定義 */
a:hover {
	background-color:#d1ccff;
}

a.comBlueLink{
	color:#0000FF;
}

/* 各フォームのスタイル定義 */
select, textarea ,input[type="text"],input[type="password"],input[type="file"]{
	border: 1px #000000 solid;
	background-color: #ffffff;
} 

/* inputタグのスタイル定義 */
input.cominput{
	border: 0px;
}

input.whiteButton{
	border: 1px #000000 solid;
	background-color: #ffffff;
}


/* 画像の回り込みを解除する時に使用する */
br.clearBoth{
	clear:both;
}

img.comDetailImg{
	border: 1px #000000 solid;
	vertical-align:middle;
}

img.comMailDeliImg{
	vertical-align:middle;
}


table#rightTable{
	width: 650px;
	border-right: 1px #000000 solid;



}




/* --------------------------------------------------
 各領域のスタイルシート
　注意：
	各領域の幅及び位置は基本的にはJavascriptにて
	その都度、計算し"px"指定している。
	(IEがposition:fixをサポートしていない対応)
	cssにて各領域の幅を"%"で指定しているのは
	javascriptが呼び出されなかった場合にも
	極端にレイアウトが崩れないようにするため。

----------------------------------------------------- */

/* -------------------------------------
 ヘッダ領域(グローバルナビゲーション)
--------------------------------------- */
/* ヘッダ部ボックスのスタイル定義 */
div#header{
	position: absolute;
	width: 801px;
	height: 22px;
	margin: 0px;
	padding: 0px;
	border: 1px #000000 solid;
	background-color: #d4d0c8;
	z-index:15;

}

#headerTable{
	margin:0px;
	width: 100%;
	height: 15px;
}


td.headerTd{
	white-space: nowrap;
	padding:0px 10px;
}

#footerTable{
	margin:0px;
	width: 100%;
	height: 15px;
}


td.footerTd{
	white-space: nowrap;
	padding:0px 10px;
}

/* ヘッダ部グローバルナビゲーションのスタイル定義 */
ul#globalNav{
	margin:0px;
	width:500px;
	padding:0px;

}
#globalNav li{
	display:inline;
	list-style-type:none;
	margin-right:6px;
	padding-left:10px;
	border-left:2px groove #ffffff;


}
#globalNav li.firstList{
	border-left:0px;
	padding-left:0px;
}

/* -------------------------------------
 フッタ領域(著作権)
--------------------------------------- */
/* フッタ部ボックスのスタイル定義 */
div#footer{
	position: absolute;
	width: 801px;
	bottom: 0px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	border: 1px #000000 solid;
	text-align: right;
	z-index:15;
	background-color: #d4d0c8;
}

/* -------------------------------------
 左領域(ローカルナビゲーション)
--------------------------------------- */
/* 左部ボックスのスタイル定義 */
div#leftArea{
	position: absolute;
	left: 0px;
	top: 21px;
	bottom: 21px;
	width: 150px;
	height: 2000px;
	margin: 0px;
	padding: 0px;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px #000000 solid;
	border-style: none solid none;
	z-index:10;
}

/* 左部ローカルナビゲーションのスタイル定義 */
span.localNav{
	margin:10px 0px 0px 5px;
	padding:0px;
}


span.localNavTree{
	margin:0px;
	padding-left:20px;
	line-height:2;
}


ul#localNav{
	margin:5px;
	padding:0px;
}

#localNav li{
	list-style-type:none;
	padding-left:5px;
	padding-bottom:5px;
}

#localNav li.secondLv{
	list-style-type:none;
	padding-left:25px;
	padding-bottom:5px;
}

/* 左部ローカルナビゲーションのスタイル定義 */
ul#localNav2{
	margin:5px;
	padding:0px;
}

#localNav2 li{
	list-style-type:none;
	padding-left:5px;
	padding-bottom:5px;
}

#localNav2 li.secondLv{
	list-style-type:none;
	padding-left:25px;
	padding-bottom:5px;
}



img#logoImg{
	vertical-align:middle;
	width: 150px;
	height: 150px;
	border-bottom:1px solid #000000;
}

/* カートの中身がある場合に表示される領域 */
div#cartTotalList{
	margin: 10px 0px;
	text-align: center;

}


a#cartTotalListLink:hover{
	background-color:#ffffff;
	text-decoration:none;
	color:#000000;
}

/* -------------------------------------
 右領域(メインコンテンツ)
--------------------------------------- */
/* 右部ボックスのスタイル定義 */
div#rightArea{
	position: absolute;
	width:652px;
	left: 151px;
	top: 21px;
	right: 0px;
	bottom: 21px;
	margin:0px;
	overflow: auto;
	height: 2000px;
	border: none;
	z-index:5;

}

/* 個数ステータスのスタイル定義 */
span.txt_status{
	color: #FF0000;
}

span.go_btn{
	display:inline;
}


/* -------------------------------------
 メールフォーム
--------------------------------------- */
/* メールフォームのスタイル定義 */

/* lightview.css
   http://www.nickstakenburg.com/projects/lightview
*/

#lightview {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 150px;
	width: 150px;
	margin: -75px 0 0 -75px;
	padding: 0;
	text-align: left;
}

/* The container that holds everything */
.lv_Container {
	position: relative;
	width: 100%;
	height: 100%;
	background: none;
	padding: 0;
	margin: 0;
}

.lv_Button {
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
}

/* The buttons on the side when you view a gallery */
.lv_Sides {
	position: absolute;
	top: 50%;
	left: 0;
	clear: both;
	width: 100%;
	padding: 0;
	margin: 0;
}
.lv_Sides * { padding: 0; margin: 0; }
.lv_Sides li {
	list-style-type: none;
	position: relative;
}

.lv_PrevSide { float: left; }
.lv_NextSide { float: right; }
.lv_Sides .lv_Wrapper {
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.lv_Sides .lv_Button {
	float: left;
	background: none;
}

/* The frames above and below the center, that hold the corners.
   It's recommended not to change anything here, a lot is done in
   javascript to build further upon this based on your settings.
*/
.lv_Frames {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}
.lv_Frames li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lv_Frame {
	width: 100%;
	display: block;
}
.lv_Frame * { padding: 0; margin: 0; }
.lv_FrameTop {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
}
.lv_FrameBottom {
	position: relative;
	float: left;
	clear: both;
}

.lv_Liquid {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	clear: both;
}
.lv_Liquid .lv_Filler {
	position: absolute;
	height: 100%;
	width: 2px;
	top: 0;
	left: 50%;
}

.lv_Half {
	display: block;
	height: 100%;
	clear: both;
	line-height: 0px;
}
.lv_Half li { list-style-type: none; }
.lv_Corner {
	float: left;
	position: relative;
}
.lv_CornerTr, .lv_CornerBr { float: right; }

.lv_Fill {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.lv_Half .lv_CornerWrapper {
	float: left;
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.lv_HalfRight .lv_CornerWrapper { float: right; }

.lv_Corner { position: relative; }
.lv_Corner canvas { position: relative; }
.lv_HalfLeft .lv_Corner { float: left; }
.lv_HalfRight .lv_Corner {
	position: relative;
	float: right;
}

/* To position content correctly in the center with correct
   rounded corner display we need a few wrappers.
   This is to get it right on all browsers.
*/
.lv_Center {
	position: relative;
	clear: both;
	height: 100%;
	overflow: hidden;
	background: none;
	padding: 0;
	margin: 0;
}
.lv_WrapUp {
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapDown {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapCenter {
	position: relative;
	padding: 0;
	margin: 0;
}

/* The loading indicator */
.lv_Loading {
	position: absolute;
	top: 50%;
	left: 50%;
}
.lv_Loading .lv_Button {
	float: left;
	height: 100%;
	width: 100%;
}

.lv_MediaWrapper {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	clear: both;
	padding: 0;
	margin: 0;
}
.lv_MediaWrapper img {
	position: relative;
	float: left;
	padding: 0;
	margin: 0;
}

/* The overlays on top of images that toggle the previous/next buttons */
.lv_PrevNext {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
.lv_PrevNext * { padding: 0; margin: 0; }
.lv_PrevNext .lv_Button {
	position: relative;
	height: 100%;
}
.lv_PrevButton { float: left; }
.lv_NextButton { float: right; }

/* The bar that holds title, caption, imagenumber, slideshow and closebutton */
.lv_MenuBar {
	clear: both;
	position: relative;
	width: 100%;
	font: 11px Arial, Helvetica, sans-serif;
	color: #7a7a7a;
	padding: 0;
	margin: 0;
	text-align: left;
}
.lv_MenuBar * { padding: 0; margin: 0;}


.lv_Close {
    position: relative;
	float: right;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.lv_Data {
	position: relative;
	float: left;
	padding-bottom: 3px;
	line-height: 13px;
	overflow: hidden;
}

/* simulates padding-left inside .lv_Data 
.lv_DataText div, .lv_ImgNumber div { margin-left: 3px; } */

.lv_Data li {
	list-style-type: none;
	float: left;
	margin-top: 3px;
}
.lv_DataText { width: 100%; }
.lv_DataText .lv_Title {
	font-weight: bold;
	margin-bottom: 2px;
}
.lv_DataText .lv_Caption { clear: both; }
.lv_Data .lv_ImgNumber {
	color: #a7a7a7;
	margin-right: 5px;
	margin-top: 5px;
}

.lv_Data .lv_innerPrevNext, 
.lv_Data .lv_Slideshow {
	position: relative;
	border-left: 1px solid #d7d7d7;
	padding: 0 5px;
	margin-top: 5px;
	vertical-align: middle;
}
.lv_Data .lv_Slideshow { padding-right: 0px; }

.lv_Data .lv_innerPrevNext .lv_Button, 
.lv_Data .lv_Slideshow .lv_Button { /* play and stop */
	float: left;
	background-position: center left;
	background-repeat: no-repeat;
}

/* the boxes that hold media or external content */
.lv_contentTop,
.lv_contentBottom {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	clear: both;
}

#lightview iframe {
	float: left;
	border: 0;
	clear: both;
	padding: 0;
	margin: 0;
	background: none;
}

/* The container that hold buttons above the view, currently only topclose */
.lv_topButtons {
	position: absolute;
	left: 0;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_topcloseButtonImage { cursor: pointer; }


/* The error/warning/download message that will appear when
   a required plugin is not installed.
*/
#lightviewError p { padding: 0 0 10px 0; }
#lightviewError div {
	padding: 6px;
	font: 11px Arial, Helvetica, sans-serif;
}
#lightviewError .message {
	background: #fcb5b5;
	color: #dd1f1f;
	margin-bottom: 3px;
}
#lightviewError .type { font-weight: bold; }
#lightviewError .pluginspage {
	background: #b5fcbd;
	color: #21be30;
}
#lightviewError a,
#lightviewError a:hover,
#lightviewError a:visited {
	color: #21be30;
	text-decoration: none;
	background: none;
	font-weight: bold;
	border-bottom: 1px solid #7de689;
}
#lightviewError p {
	margin-left: 0;
	padding: 0;
}

#lv_overlay {
  position: absolute; /* Opera will use fixed */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* navbar
   Adds a bar below the view that takes over the default Controller
*/
#lightviewController {
	position: fixed;
	bottom: 0;
	top: 0;
	left: 50%;
	margin: 0;
	padding: 0;
	color: #d2d2d2;
	font: 11px Arial, Helvetica, sans-serif;
}
* html body #lightviewController { /* IE6 */
	position: absolute;
	top: auto;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) + (Lightview.controllerOffset || 0)) + 'px');	
}
#lightviewController ul {
	display: block;
	height: 100%;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
.lv_controllerTop, .lv_controllerMiddle, .lv_controllerBottom {
	list-style-type: none;
	float: left;
	display: block;
	position: relative;
	clear: both;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_controllerCenter  { width: auto; float: left; }
.lv_controllerCornerWrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.lv_controllerCornerWrapperTopLeft,
.lv_controllerCornerWrapperBottomLeft { top: 0; left: -100%;}
.lv_controllerCornerWrapperTopRight,
.lv_controllerCornerWrapperBottomRight { top: 0; left: 100%;}

#lightviewController .lv_CornerWrapper {
	width: 100%;
}
#lightviewController .lv_Corner { float: left; }
#lightviewController .lv_Corner {
	float: right;
	position: relative;
}
#lightviewController .lv_CornerTr, #lightviewController .lv_CornerBr { float: left; }
.lv_controllerBetweenCorners {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.lv_controllerMiddle {
	position: relative;
	height: 100%;
	float: left;
}
.lv_controllerCenter { float: left; width: auto;}
.lv_controllerCenter li {
	list-style-type: none;
	float: left;
	display: inline;
	position: relative;
	clear: none;
}
.lv_controllerSetNumber {
	float: left;
	text-align: center;
}

#lightviewController .lv_Button {
	float: left;
	position: relative;
	height: 100%;
	clear: none;
}
.lv_controllerSetNumber {
	position: relative;
	height: 100%;
	padding-right: 3px;
}
.lv_controllerPrev, 
.lv_controllerNext, 
.lv_controllerSlideshow, 
.lv_controllerClose {
	float: left;
	position: relative;
	height: 100%;
	padding-left: 3px;
}

.lv_controllerPrev { border-left: 1px solid #3c3c3c; }
#lightviewController .lv_controllerNext { padding-right: 3px; border-right: 1px solid #3c3c3c; }

* html #lightview { /* IE6 */
	position: absolute;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) - (Lightview.controllerHeight || 0)) + 'px');
	margin-left: expression( -1 * this.offsetWidth / 2 + (document.documentElement ? document.documentElement.scrollLeft : 0) + 'px');
}

/* Always cover 100% of the screen in IE6 */
html #lv_overlay {
	position: absolute;
	height: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight].max() : document.documentElement.scrollHeight) + 'px' );
	width: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollWidth, document.documentElement.scrollWidth, document.body.offsetWidth, document.documentElement.clientHeight].max() : document.documentElement.scrollWidth) + 'px' );
}