@charset "UTF-8";

/*
-----------------------------------------------------
Base CSS
FileName:   base.css
Version:    2007.9.4
-----------------------------------------------------
*/


/*
-----------------------------------------------------
ページ共通部分
-----------------------------------------------------
*/
*{
margin: 0;
padding: 0;
}

body {
color: #333333;
font-size: 12px;
line-height: 1.3em;
}

img{
border: 0;
}

ul{
list-style-type: none;
}

a{
color: #0000EE;
text-decoration: none;
}

a:hover{
text-decoration: underline;
}

a:active{
color: #0000EE;
}

a:visited{
color: #0000EE;
}

div {
display: block;
}

option {
float: none !important;
}

fieldset{
border: none;
}

img{
vertical-align:top;
}



/*
-----------------------------------------------------
全体レイアウト
-----------------------------------------------------
*/
#container{
width: 620px;
}

#contents-area{
padding:15px 20px;
}



/*
-----------------------------------------------------
アイテム写真
-----------------------------------------------------
*/
#itemphoto-area{
float:left;
width:252px;
text-align:center;
}

#itemphoto-area p{
text-align:left;
}

#itemphoto-area span{
border:1px solid #FF6A08;
margin:0px 0px 5px;
display:block;
}



/*
-----------------------------------------------------
アイテム説明
-----------------------------------------------------
*/
#itemdata-area{
float:right;
width:310px;
text-align:left;
}

#itemdata-area h1{
border:1px solid #FF6A08;
padding:7px;
color:#FF6A08;
font-size:14px;
margin:0px 0px 15px;
}

#itemdata-area p{
padding:0px 3px;
}



/*
-----------------------------------------------------
float回避 親ボックスに指定
-----------------------------------------------------
*/
.floatclear {
clear:both;
}

.clearfix:after {
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden;
}
.clearfix { display: inline-block; }
/* exlude MacIE5 \*/
* html .clearfix { height: 1% }
.clearfix {display:block;}
/* end MacIE5 */

