@charset "utf-8";

/* @override
  http://localhost/kobe_lizard/css/common.css
  http://localhost/kobe-lizard/htdocs/css/common.css
*/

/* reset */
body,div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,blockquote,th,td{
  margin:0;
  padding:0;
  color: #333;
}
h1,h2,h3,h4,h5,h6{
  font-size:100%;
  font-weight:normal;
}
table{
  border-collapse:collapse;
  border-spacing:0;
}
address,caption,em,th{
  font-style:normal;
  font-weight:normal;
}
img{
  border:0;
}
ol,ul{
  list-style:none;
}
input,textarea,select {
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
}
/* /reset */

/* global */
body{
  font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 87.5%;
  background-image: url(../img/common/dev_watermark.svg); /* テスト環境識別用(本番には反映しないこと) */
}

a:link{ color: #069; }
a:visited{ color: #28B; }
a:hover{ color: #F60; }
a:active{ color: #28B; }

#wrapper{
  text-align: center;
}
/* /global */

/* header */
#globalHeader,
#globalNavi .naviInner,
#container{
  text-align: left;
  width: 900px;
  margin: 0 auto;
  background-color: #fff; /* テスト環境識別用: コンテンツ部分はbodyの透かし模様を通さない(本番には反映しないこと) */
}

#globalHeader{
  padding-top: 18px;
  padding-bottom: 9px;
}
#globalHeader #siteName{
  float: left;
}

#globalNavi{
  width: 100%;
  height: 45px;
  padding-bottom: 25px; /* テスト環境識別用: margin-bottomのままだと下の余白から透かし模様が見えるためpaddingに変更(本番には反映しないこと) */
  background: url(../img/common/gn_bg.gif) left top repeat-x;
  background-color: #fff; /* テスト環境識別用(本番には反映しないこと) */
}
  #globalNavi .naviInner{
    height: 45px;
    background: url(../img/common/gn_navi_bg.gif) left top repeat-x;
  }
  #globalNavi ul.navi{
    padding-left: 1px;
  }
  #globalNavi ul.navi li{
    float: left;
    margin-left: -1px;
    display: inline;
  }
  #globalNavi .cart{
    float: right;
  }
/* /header */

/* container */
#container{}
#container .pageTop{
  clear: both;
  text-align: right;
  padding: 10px;
}
#container .pageTop span{
  background: url(../img/common/arrow_top_01.gif) left center no-repeat;
  padding-left: 15px;
}
/* /container */

/* main column */
#mainColumn{
  float: right;
  width: 670px;
}

#contents #pageTitle{
  height: 38px;
  padding: 1px 10px 1px 16px;
  margin-bottom: 10px;
  background: url(../img/common/pagetitle_bg.gif) left top no-repeat;
}
  #contents #pageTitle h1{
    font-size: 20px;
    color: #666;
    line-height: 38px;
  }
  #contents .block{
    padding: 0 15px;
    margin-bottom: 25px;
  }
  #contents .block .title{
    margin-bottom: 5px;
  }
  #contents .block .subtitle{
    color: #630;
    font-weight: bold;
    margin-bottom: 6px;
  }
  #contents .block .section{
    margin-bottom: 15px;
  }
  #contents .block .section p{
    line-height: 150%;
    margin-bottom: 10px;
  }
  #contents .block p.link{
    background: url(../img/common/arrow_right_02.gif) left center no-repeat;
    padding-left: 14px;
  }
  #container .block p.rightLink{
    clear: both;
    text-align: right;
    padding: 10px;
  }
  #container .block p.rightLink span{
    background: url(../img/common/arrow_right_02.gif) left center no-repeat;
    padding-left: 14px;
  }

  #contents span.required{
    color: #C00;
  }

  #contents .backParent{
    text-align: right;
  }
  #contents .backParent span{
    padding-left: 14px;
    background: url(../img/common/arrow_right_02.gif) left center no-repeat;
  }

/* /main column */

/* table */
table{
  width: 100%;
}
/* /table */

/* items */
#contents .items{
  width: 680px;
  margin-left: -10px;
}
  #contents .item{
    width: 160px;
    float: left;
    margin-top: 10px;
    padding-left: 10px;
  }
  #contents .item .img{
    margin-bottom: 10px;
  }
  #contents .item .name{
    margin-bottom: 10px;
    padding-left: 23px;
    background: url(../img/common/arrow_right_01.gif) 5px 3px no-repeat;
  }
  #contents .item .price{
    color: #C00;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 23px;
  }
  #contents .item .detail{
    text-align: center;
  }
/* /items */

/* form */
.formError{
  margin-bottom: 10px;
  padding: 8px;
  border: 2px solid red;
  background-color: #fcc;
}
.formError ul li{
  color: #C00;
  font-weight: bold;
}

table.form{
  border-top: 1px solid #999;
  margin-bottom: 15px;
}

table.form th,
table.form td{
  padding: 5px;
  border-bottom: 1px solid #999;
}

table.form th{
  width: 150px;
  background: #EED;
}

table.form td .input.text input,
table.form td .textarea textarea{
  border: 1px solid #AAB;
}

table.form td .input.text input{
  width: 240px;
}
table.form td .input.text.zip input{
  width: 72px;
}
table.form td .input.text input#tel{
  width: 122px;
}

table.form td .textarea textarea{
  width: 446px;
  height: 300px;
}

form .submit{
  text-align: center;
}
form .submit input{
  padding: 0 10px;
}
/* /form table */

/* side column */

#sideColumn{
  float: left;
  width: 220px;
}
  #sideColumn .block{
    border: 1px solid #CCC;
    padding: 4px;
  }
  #sideColumn .title{
    border-bottom: 2px solid #39c;
    padding: 10px 7px;
    background: #f8f8f8;
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(221,221,221,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(221,221,221,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 ); /* IE6-9 */
    font-weight: bold;
  }
  #sideColumn #memberNavi{
    margin-bottom: 20px;
  }
  #sideColumn #memberNavi .body{
    border: 1px solid #ccc;
    padding: 9px;
  }
  #sideColumn #cartNavi{
    margin-bottom: 20px;
  }
  #sideColumn #cartNavi h3{
    font-weight: bold;
  }
  #sideColumn #cartNavi .body{
    border: 1px solid #ccc;
    padding: 9px;
  }
  #sideColumn #cartNavi .price{
    color: #c00;
    font-weight: bold;
  }
  #sideColumn #categoryNavi{
    margin-bottom: 20px;
  }
  #sideColumn #categoryNavi .search{
    clear: both;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 4px;
    background: #eed;
  }
  #sideColumn #categoryNavi .search .title{
    padding: 2px 7px;
    border-bottom: none;
    background: none;
  }
  #sideColumn #categoryNavi .category{
    clear: both;
    margin-bottom: 10px;
  }
  #sideColumn #categoryNavi .category .title{
    padding: 2px 7px;
    border-bottom: none;
    line-height: 26px;
    height: 26px;
    background: #EEE;
    border-left: 2px solid #FC3;
    margin-bottom: 4px;
  }
  #sideColumn #categoryNavi .category .title a.toggle{
    width: 1em;
    height: 1em;
    margin-left: 0.25em;
    padding: 0.2em;
    background: #069;
    border-radius: 2px;
    line-height: 1;
    font-size: 75%;
    color: #fff;
    text-decoration: none;
  }
  #sideColumn #categoryNavi .category .title a.toggle:hover{
    background: #f60;
  }
  #sideColumn #categoryNavi .category .item{
    display: none;
    padding: 4px;
    border: 1px solid #EEE;
  }
  #sideColumn #categoryNavi .category .item .img{
    float: left;
    width: 80px;
  }
  #sideColumn #categoryNavi .category .item .summary{
    float: left;
    width: 108px;
    padding-left: 10px;
  }

  #sideColumn #calendar{
    text-align: center;
    margin-bottom: 15px;
  }

  #sideColumn #calendar .block{
    padding: 9px;
  }
  #sideColumn #calendar .month{
    clear: both;
    margin-bottom: 9px;
  }
  #sideColumn #calendar .title{
    margin-bottom: 3px;
  }
  #sideColumn #calendar ul.day{
    padding: 1px 0 0 1px;
  }
  #sideColumn #calendar ul.day li{
    line-height: 25px;
    float: left;
    width: 27px;
    height: 25px;
    border: 1px solid #DDD;
    margin: -1px 0 0 -1px;
    display: inline;
  }
  #sideColumn #calendar ul.day li.prevMonth{
    background: #EEE;
  }
  #sideColumn #calendar ul.day li.holiday{
    background: #FDD;
  }

  #sideColumn #calendar .info{
    text-align: left;
  }
  #sideColumn #calendar .info span.example{
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    font-size: 0px;
    margin-right: 5px;
    background: #FDD;
    border: 1px solid #DDD;
  }
  #sideColumn #companyInfo{
    padding: 10px;
    background: #EED;
    margin-bottom: 15px;
  }
  #sideColumn #companyInfo p{
    line-height: 130%;
  }
  #sideColumn #companyInfo .name{
    font-weight: bold;
  }

/* /side column */

/* footer */
#globalFooter2{
  clear: both;  
  background: #f8f8f8;
  padding: 15px 0;
  border-top: 1px solid #eee;
  font-size: 85%;
}
  #globalFooter2 .footerInner{
    text-align: left;
    width: 900px;
    margin: 0 auto;
  }
  #globalFooter2 #shopList{
    width: 920px;
    margin-right: -20px;
  }
  #globalFooter2 #shopList ul{
    float: left;
    width: 210px;
    margin-right: 20px;
  }
  #globalFooter2 #shopList h3{
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    margin-right: 20px;
  }
  #globalFooter2 #shopList div.name{
    border-left: 2px solid #FC3;
    padding-left: 4px;
    font-weight: bold;
  }
  #globalFooter2 #shopList li{
    margin-left: 0.5em;
    margin-bottom: 5px;
  }


#globalFooter{
  clear: both;  
  height: 60px;
  background: url(../img/common/footer_bg.gif) left top repeat-x;
}
  #globalFooter .footerInner{
    text-align: left;
    width: 900px;
    margin: 0 auto;
  }
  #globalFooter .footerLink{
    float: left;
    width: 45%;
    height: 40px;
    background: url(../img/common/footer_border.gif) left top no-repeat;
    padding: 10px 14px;
  }
  #globalFooter .footerLink ul{
    background: url(../img/common/footer_link_border.gif) left 2px no-repeat;
    padding-left: 2px;
  }
  #globalFooter .footerLink ul li{
    float: left;
    background: url(../img/common/footer_link_border.gif) right 2px no-repeat;
    padding:0 8px 0 5px;
  }
  #globalFooter .footerLink ul li a{
    color: #FFF;
    text-decoration: none;
  }
  #globalFooter .footerLink ul li a:hover{
    text-decoration: underline;
  }

  #globalFooter .copyright{
    color: #FFF;
    float: right;
    height: 40px;
    background: url(../img/common/footer_border.gif) right top no-repeat;
    padding: 10px 14px;
  }
/* /footer */

/* ClearFix */
.clearfix:after {content:".";display:block;height:0;clear:both;visibility:hidden;}
.clearfix {display:inline-block;}
/* Hide from IE-mac \*/
*html .clearfix { height:1%;}
.clearfix { display:block;}
/* End hide form IE-mac */

/* 外税表示の内訳（本体価格＋消費税）。format_tax_breakdown()が出力するspan */
.taxBreakdown{
  font-weight: normal;
  font-size: 0.75em;
}



