@charset "UTF-8";

/* 
(c) 2019 Big Fish Story, Inc. All rights reserved.
*/

.scroll{
	overflow: auto;　　　　/*tableをスクロールさせる*/
	white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
.scroll::-webkit-scrollbar{　　/*tableにスクロールバーを追加*/
	height: 5px;
}
.scroll::-webkit-scrollbar-track{　　/*tableにスクロールバーを追加*/
	background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
	background: #BCBCBC;
}


.item_box {
    width: 28%;
	max-width: 132px;
    margin: 0 1% 1% 0;
    padding: 1%;
    border: 1px solid #cc0000;
    display: block;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    float: left;
}

.item_pic {
    text-align: center;
}

.item_code {
	line-height: 17px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
	font-weight:bold;
}

.item_colorsize {
	line-height: 15px;
    font-size: 12px;
	color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
	margin:0 0 3px 0;
}

.item_qty {
	line-height: 15px;
    font-size: 12px;
	color: #000000;
	font-weight:bold;
	margin:0 0 3px 0;
}

.item_price {
	line-height: 17px;
    font-size: 15px;
    text-align: right;
	color: #FF0000;
	font-weight:bold;
	margin:0 0 3px 0;
}
