@charset "UTF-8";

/*-------------------------------------------------------------------
Name:       Style CSS (Base CSS)
Author:     Author: carecreates.com
Revision:   Revision: #1
-------------------------------------------------------------------*/


/* Inport CSS------------------------------------------------------*/
@import url("reset.css");


/* Layout-----------------------------------------------------------*/

html,body,content {
	height: 100%;
}

body {
	background: #e9f0f8;
	color: #333;
	font: 14px/24px Arial;
}

#page {
	background: #fff;
	margin:0 auto;
	width: 940px;
	box-shadow: 3px 0px 8px #666;
	-moz-box-shadow: 3px 0x 8px #666;　/* Firefox用 */
	-webkit-box-shadow: 3px 0px 8px #666;　/* Safari,Google Chrome用 */ 
}

#header {
background: #fff;
}

#content {
	float: left;
	width: 940px;
	min-height:480px;
	display: inline;
	background-color: #ffffff;
    background: url(../images/sidebar.png) repeat;
}

#main {
	width: 680px;
	height: auto;
	min-height: 680px;
	float: left;
	margin: 0px;
	padding: 20px 20px 10px 20px;
	background-color: #ffffff;
	background: url(../images/white.gif) repeat scroll;
}

#sidebar {
	width: 200px;
	float: right;
	padding: 20px 10px 0 10px;
	min-height:560px;
	height:100%;
}

#pageTop {
	width: 100%;
	text-align: right;
}

/* Text-----------------------------------------------------------*/
a {
	text-decoration: none;
}

a:hover,
#menu .current a {
	text-decoration: none;
}

p, dl, hr, h1, h2, h3, h4, h5, h6,
ol, ul, pre, table, fieldset, blockquote, .widget {
margin-bottom: 20px;
}

#main h2{
    font-size:18px;
    background: #eee;
    border-top:1px solid #ddd;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    border-left:3px solid #00599b;
    padding: 5px 0 5px 10px;
    background: -moz-linear-gradient(top, #fff 0%, #eee 50%, #ddd 51%, #fff 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(50%,#eee), color-stop(51%,#ddd), color-stop(100%,#fff)); /* webkit */
}
/*
* html #main h2 {
    -pie-background:linear-gradient(top, #fff 0%, #eee 50%, #ddd 51%, #fff 100%); /* ie */
    position:relative;
    behavior: url(/common/PIE.htc);  /* ie */

}
*/
#main h3{
	margin:20px 0;
	font-size: 19px;
	padding-left:5px;
	border-left:solid 3px #06c;
}

hr { border: 0 solid #ccc; border-top-width: 1px; clear: both; height: 0; }
ol { list-style: decimal; }
ul { list-style: disc; }

pre {
	background: #cecdcd;
	border: 2px solid #0066cc;
	font-size: 12px;
	padding: 10px;
}

pre:hover {
	opacity: 1;
}

pre code { background: none; }
code {
	background:#cfcfcf;
	font-size: 12px;
	padding:10px 2px;
	margin:10px 0;
}

blockquote {
	border: 1px solid #00599b;
	background:#fafafa;
	color: #424242;
	font-style: italic;
	padding: 10px 0 10px 10px;
	margin:10px 20px;
	text-indent: 10px;
}

blockquote p { margin: 0; }

/* Header-----------------------------------------------------------*/

.headerNavi {
	font-size: 10px;
	font-weight: normal;
	float:right;
	margin: 0 10px 0 0;
	padding: 0;
}

.headerNavi a {
	color: #003366;
}

.privacypolicy:before {
	content:url(../images/privacypolicy.png);
}

.sitemap:before {
	content:url(../images/sitemap.png);
	padding-left: 10px;

}

.siteName{
	clear:right;
	color: #000066;
	font-size: 48px;
	font-weight: bold;
	margin: 10px 0 15px 15px;
	letter-spacing: -3px;
	height:48px;
	line-height:48px;
}

.siteName a{
	color: #000066;
}


/* Sidebar--------------------------------------------------*/


/* Footer-------------------------------------------------- */

#footer {
	border-top:solid 1px #999;
	text-shadow: 1px 0 1px #999;
	text-align:right;
    background: -moz-linear-gradient(top, #6AA7DB 0%,#5A96CE 40%, #5A96CE 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6AA7DB), color-stop(40%,#5A96CE), color-stop(100%,#5A96CE)); /* webkit */
    -pie-background:linear-gradient(top, #6AA7DB 0%, #5A96CE 40%, #5A96CE 100%); /* ie */
    position:relative;
    behavior: url(/common/PIE.htc);  /* ie */
	height:250px;
}

#footer a {
	color: #fff;
	font-size: 90%;
	padding-left: 10px;
}

#footer a:hover {
	color: #9cf;
}

#footer p { margin: 0; }


.footerbox {
	width: 200px;
	text-align:left;
	float: left;
	margin: 0 20px 0 0;
	padding: 10px;
	min-height: 100px;
}

.footerboxright {
	width: 200px;
	text-align:left;
	float: left;
	padding: 10px;
	min-height: 100px;
}

#copyright {
	border-top:solid 1px #999;
	padding:20px 0 20px 0;
}

#copyright a {
	color: #111;
	font-size: 16px;
	padding: 2px 3px;
}
#copyright a:hover {
	color: #fff;
}

#copyright p {
	margin: 0;
	text-align: center;
}

/* Form -------------------------------------------------- */

input,
textarea,
label {
font: 16px Georgia, "Times New Roman", Times, serif;
}

input[type=text],
input[type=email],
textarea {
	border: 2px solid #0066cc;
	padding: 6px 5px;
}

input[type=text]{
	width:200px;

}


input[type=search] {
	padding: 6px 5px;
}

textarea { overflow: auto; }

input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover, input[type=email]:focus,
textarea:hover, textarea:focus {
	background: #000099;
	border: 2px solid #000099;
}

form input[type=submit] {
	border: none;
	cursor: pointer;
	padding: 12px 6px;
}


/* easy clearing by PIE
----------------------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}

/* Hides from IE-mac ¥*/
* html .clearfix {height: 1%;}
.clearfix { display: block; }
/* End hide from IE-mac */

/* Gnavi -------------------------------------------------- */


.NaviHome {
    position: relative;
    height: 48px;
    width: 200px;
    display: block;
    background: url(../images/logo.png) no-repeat;
    padding: 0;
    margin: 0 0 0 12px;
    text-indent: -9999px;
}


.Navi * {
	z-index: inherit;  /* Make sure IE drops the header in front of other elements */
}

.Navi {
    position: relative;
    margin: 0 0 11px;
    line-height: 14px;
    color: #333;
    zoom: 1;
    z-index: 999;
	text-rendering: auto;
}

.NaviBar {
    padding-left: 39px;
    line-height: 39px;
	background: #b4c4dc none;
	background: -webkit-gradient(linear, left top, left bottom, from(#b4c4dc), to(#7798c0));
	background: -webkit-linear-gradient(top, #b4c4dc, #7798c0);
	background: -moz-linear-gradient(top, #b4c4dc, #7798c0);
	background: -ms-linear-gradient(top, #b4c4dc, #7798c0);
	background: -o-linear-gradient(top, #b4c4dc, #7798c0);
	background: linear-gradient(top, #b4c4dc, #7798c0);
	-pie-background: linear-gradient(top, #b4c4dc, #7798c0);
	behavior: url(/common/PIE.htc);
}

/*

background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #1a62db), color-stop(0.51, #3690f0), color-stop(0.50, #54a3ee), color-stop(0.00, #70b6f2));
background: -webkit-linear-gradient(top, #70b6f2 0%, #54a3ee 50%, #3690f0 51%, #1a62db 100%);
background: -moz-linear-gradient(top, #70b6f2 0%, #54a3ee 50%, #3690f0 51%, #1a62db 100%);
background: -o-linear-gradient(top, #70b6f2 0%, #54a3ee 50%, #3690f0 51%, #1a62db 100%);
background: -ms-linear-gradient(top, #70b6f2 0%, #54a3ee 50%, #3690f0 51%, #1a62db 100%);
background: linear-gradient(top, #70b6f2 0%, #54a3ee 50%, #3690f0 51%, #1a62db 100%);


*/



.NaviBarItem:hover {
	border-left: 1px solid #2c5a94;
	background: #5E95C0 none;
	background: -webkit-gradient(linear, left top, left bottom, from(#5E95C0), to(#2c5a94));
	background: -webkit-linear-gradient(top, #5E95C0, #2c5a94);
	background: -moz-linear-gradient(top, #5E95C0, #2c5a94);
	background: -ms-linear-gradient(top, #5E95C0, #2c5a94);
	background: -o-linear-gradient(top, #5E95C0, #2c5a94);
	background: linear-gradient(top, #5E95C0, #2c5a94);
	-pie-background: linear-gradient(top, #5E95C0, #2c5a94);
	behavior: url(/common/PIE.htc);
}

.NaviBarItem:active {
    margin-left: 0;
    margin-right: 0;
    padding: 1px 16px 0 16px;
	border-left: 1px solid #4f74a5;
	background: #77A6CA none;
	background: -webkit-gradient(linear, left top, left bottom, from(#77A6CA), to(#4f74a5));
	background: -webkit-linear-gradient(top, #77A6CA, #4f74a5);
	background: -moz-linear-gradient(top, #77A6CA, #4f74a5);
	background: -ms-linear-gradient(top, #77A6CA, #4f74a5);
	background: -o-linear-gradient(top, #77A6CA, #4f74a5);
	background: linear-gradient(top, #77A6CA, #4f74a5);
	-pie-background: linear-gradient(top, #77A6CA, #4f74a5);
	behavior: url(/common/PIE.htc);
}

.NaviBar {
    _height: 1em;
    zoom: 1;
}

.NaviBar:after {
    clear: both;
    content: "\0020";
    height: 0;
    display: block;
}

.NaviBar li {
    float: left;
}

.NaviBarItem {
    position: relative;
    float: left;
    border-left: 1px solid #b4c4dc;
    border-right: 1px solid #7695bf;
    background: inherit;
    padding: 1px 16px 0 16px;
    margin: 0;
    z-index: 1000;
	cursor: pointer;
}

.NaviBarItemFirst {
    border-left: 1px solid #7695bf;
}

.NaviBarItemLast {
    background: none;
    border-right: 1px solid #b4c4dc;
	padding: 1px 0 0 0;
	width: 1px;
}

.NaviBarLink, .NaviPanelHeader a {
	display: block;
	zoom: 1;	/* IE6以前に対応 */
}

.NaviBarLink,
a.NaviBarLink,
a.NaviBarLink:link,
a.NaviBarLink:visited,
a.NaviBarLink:active,
a.NaviBarLink:hover,
a.NaviBarLink:visited:hover {
    color: #f5f5f9 !important;  /* !important needed for IE 6 */
    text-decoration: none;
    text-shadow:  0 -1px 0 #142a4e;
    -moz-text-shadow: 0 -1px 0 #142a4e;
}

.NaviBarItemLast:hover {
    background: none;
	border-left: 1px solid #595959;
}

.NaviBarItemLast:active {
    background: none;
	border-left: 1px solid #595959;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    #search-input {
        padding-top: 7px;
    }
}

.NaviDropPanel {
    position: absolute;
    background-color: #FFF;
    border: 1px solid;
    border-color: #2F4E6B #B0B0B0 #737373;
    *border-color: #2F4E6B #2F4E6B #737373;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    -moz-box-shadow: 0 4px 10px -moz-rgba(0,0,0,.5);
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.5);
    *filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999', Direction=180, Strength=4);
    z-index: 100;
    top: 100%;
    left: 0;
    width: 220px;
    color: #333;
    padding: 6px 0;
    margin-top: -1px;
    _margin-top: 0;
	margin-left: -1px;
	line-height: normal;
    zoom: 100%;
}

.NaviPopPanel {
    position: absolute;
    border-top: 1px solid #D8D8D8;
    background-color: #FFF;
    z-index: 100;
    top: 100%;
    right: 0;
    color: #333;
    margin: 2px 1px;
    padding: 6px 0;
}

.NaviPopPanelShadow {
    position: absolute;
    border: 1px solid;
    border-top: 0;
    border-color: #FFF #B0B0B0 #737373;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    -moz-box-shadow: 0 4px 10px -moz-rgba(0,0,0,.5);
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.5);
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999', Direction=180, Strength=4);
    margin: 2px 0;
    top: 100%;
    right: 0;
    z-index: 99;
}

/*.CartHeaderPopPanel {    
    border-top: 1px solid #D8D8D8;
    background-color: #FFF;    
    color: #333;
    /*margin: 0;*/
    overflow: hidden;
    /*padding: 6px 0;*/
}

/*.CartHeaderPopPanelShadow {
    position: absolute;
    border: 1px solid;
    border-top: 0;
    border-color: #FFF #B0B0B0 #737373;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    -moz-box-shadow: 0 4px 10px -moz-rgba(0,0,0,.5);
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.5);
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999', Direction=180, Strength=4);
    filter: none\9;
    top: 100%;
    right: 0;
    z-index: 99999 !important;*/
}

#modalContent .CartHeaderPopPanelShadow
{
	border-bottom: 0px;
}

.width-150 {
    width: 150px;
}

.width-250 {
    width: 250px;
}

.width-450 {
    width: 450px;
}

.width-485 {
	width:485px;
}

.HoverCartBoxShot{
	width: 50px;
	position: relative;
	clear: left;
	float: left;
	left: -60px;
	margin-right: -60px;
}

div.NaviPanelRow {
    padding: 5px 12px;
    position: relative;
}

div.NaviPanelRow a,
.NaviPanelHeader a {
	display: block;
	width: 100%;
}

.NaviPanelHeader {
    display: block;
    font-weight: bold;
}

div.NaviPanelLink a,
div.NaviPanelLink a:link,
div.NaviPanelLink a:visited,
div.NaviPanelLink a:active,
div.NaviPanelLink a:visited {
    text-decoration: none;
    color: #333;
}

div.NaviPanelLinkHover,
div.NaviPanelLinkHover a,
div.NaviPanelLink:hover,
div.NaviPanelLink a:hover {
    background-color: #447099;
    color: #FFF !important;  /* !important needed for IE 6 */
}

.NaviDropdownLink .NaviDropPanel {
    display: none;
}

.NaviDropdownLink:hover .NaviDropPanel {
    display: block;
}


#gallery {
	position:relative;
	height:240px
}
	#gallery a {
		float:left;
		position:absolute;
	}
	
	#gallery a img {
		border:none;
	}
	
	#gallery a.show {
		z-index:500
	}

	#gallery .caption {
		z-index:600; 
		background-color:#000; 
		color:#ffffff; 
		height:60px; 
		width:100%; 
		position:absolute;
		bottom:0;
	}

	#gallery .caption .content {
		margin:5px
	}
	
	#gallery .caption .content h3 {
		margin:0;
		padding:0;
		color:#1DCCEF;
	}
	


nav {
	height: 40px;
}

table {
    width: 530px;
    border: 1px #E3E3E3 solid;
    border-collapse: collapse;
    border-spacing: 0;
    margin: auto;
}

table th {
    padding: 5px;
    border: #E3E3E3 solid;
    border-width: 0 0 1px 1px;
    background: #F5F5F5;
    font-weight: bold;
    line-height: 120%;
    text-align: center;
}
table td {
    padding: 5px;
    border: 1px #E3E3E3 solid;
    border-width: 0 0 1px 1px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.width150 {
	width: 150px;
}

.width200 {
	width: 200px;
}

#fancybox {
	width: 220px;
	margin-left: 2px;
	height: 220px;
}

img.small {
	width: 75px;
	height: 75px;
}