@charset "UTF-8";

/* 見出し */
.product_tableheader{
	width: 100%;
	margin: 0;
	margin-bottom: 4px;
	padding:3px;
	color:#393939;
	font-size:120%;
	font-weight:bold;
	border-bottom:#ff9900 3px solid;
}
/* 商品リスト */
.product_table{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.product_table .top_updatedate{
	width: 100%;
	color: #393939;
	font-size: 120%;
	font-weight: bold;
	border-bottom: 3px solid #ff9900;
	padding: 4px;
	background-color: rgba(255,255,255,0.5);
	margin-bottom: 4px;
	text-align: center;
}
.product_table .product_box{
	position: relative;
	height: auto;
	width: calc(100% / 3);
	max-width: calc(100% / 3);
	flex-basis: calc(100% / 3);
	background-color: rgba(255,255,255,0.5);
	border: 1px solid rgba(128,128,128,0);
	padding: 1px;
	vertical-align: top;
	box-sizing: border-box;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.product_table .product_box:hover {
	border-color: #ff9900;
}
.product_table .product_box a {
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}
.product_table .product_box img {
	height: auto;
	width: 33%;
	float: left;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	opacity: 1;
	transition: 0.2s;
}
.product_table .product_box:hover .product_img img{
	opacity: 0.75;
}
.product_table .product_box ul {
	float: right;
	width: 67%;
	padding: 0px 8px;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
}
.product_table .product_icon{
	float: right;
	display: block;
	padding: 1px;
	height: 17px;
	width: 66%;
	box-sizing: border-box;
	overflow: hidden;
}

/* 商品 */
.product_table .product_img{
	float: left;
	display: block;
	padding: 1px;
	width: 33%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	max-height: none;
}
.product_table .product_img img{
	width: 100%;
	height: auto;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	transition: 0.2s;
}
.product_table .product_name{
	float: right;
	display: block;
	padding: 4px;
	width: 66%;
	height: auto;
	box-sizing: border-box;
}
.product_table .product_name .product_name_inner {
	height: 3.6em;
	font-size: 90%;
	font-weight: normal;
	line-height: 1.2em;
	overflow: hidden;
}
.product_table .product_day{
	float: right;
	bottom: 2em;
	width: calc(66% - 4px);
	display: block;
	margin-left: 4px;
	padding: 0px 4px;
	color: #aaaaaa;
	font-size: 80%;
	text-align: left;
	line-height: 1.2em;
	text-overflow: ellipsis;
	border-left: 5px solid #cccccc;
	box-sizing: border-box;
}
.product_table .product_day:before{
	content:"発売：";
}
.product_table .product_price{
	clear: right;
	float: right;
	width: 100px;
	display: block;
	padding: 1px;
	color: #CC0000;
	font-size: 100%;
	font-weight: bold;
	text-align: right;
	white-space: nowrap;
	box-sizing: border-box;
}
.product_table .product_price:after{
	content:"円";
}
.product_table .product_off{
	float: left;
    width: auto;
    min-width: calc(66% - 100px);
	display: none;
	padding: 1px;
	color:#333333;
	font-size: 100%;
	font-weight:normal;
	text-align: right;
	white-space: nowrap;
	box-sizing: border-box;
}
.product_table .product_off:after{
	content:" OFF";
}
.product_table .product_text {
	float: right;
	bottom: 2em;
	width: calc(66% - 4px);
	display: block;
	margin-left: 4px;
	padding: 0px 4px;
	color: #ff0000;
	font-size: 80%;
	text-align: left;
	line-height: 1.2em;
	text-overflow: ellipsis;
	border-left: 5px solid #ff0000;
	box-sizing: border-box;
	clear: none;
}

/* アイコン */
/* 予約 */
.icon_preorder{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #ff6600;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_preorder:before{
	content:"予約";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}
/* 再販（１文字） */
.icon_re{
	float:left;
	display:block;
	width:14px;
	height:14px;
	margin:0;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #99cc00;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_re:before{
	content:"再";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* 取り寄せ */
.icon_backorder{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #c96aff;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_backorder:before{
	content:"取り寄せ";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* 入荷 */
.icon_instock{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #ff6699;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_instock:before{
	content:"入荷";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* 在庫品 */
.icon_stock{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #EB7988;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_stock:before{
	content:"在庫品";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* 中古 */
.icon_preowned{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #929292;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_preowned:before{
	content:"中古";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* Pickup! */
.icon_pickup{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #ffaaaa;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_pickup:before{
	content:"Pickup!";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}
/* 任意の文字列 */
.icon_text{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}

/* 画像更新 */
.icon_imageupdate{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #4fcdff;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_imageupdate:before{
	content:"画像更新";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* 送料無料 */
.icon_freeship{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #6699cc;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_freeship:before{
	content:"送料無料";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* あみあみ店舗特典 */
.icon_amibonus{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #cc3300;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_amibonus:before{
	content:"店舗特典";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}

/* セール */
.icon_sale{
	float:left;
	display:block;
	width:45px;
	height:14px;
	margin:0;
	margin-right: 1px;
	padding:0;
	color:#393939;
	background-color:#ffffff;
	border:1px solid #cccccc;
	border-left:4px solid #F3D51A;
	font-size: 11px;
	text-align: center;
	overflow: hidden;
}
.icon_sale:before{
	content:"セール品";
	display:block;
	text-align:center;
	width: 100%;
	margin:auto;
}




.product_etc{
	width: 100%;
	text-align: center;
	list-style: none;
}
.product_etc li{
	margin:6px;
	border:none;
}

.kanren_header {
	background-image:url(/gold/amiami/img/menubg_relateditem.gif);
	width:600px;
	color:#FFF;
	padding-left:20px;
	padding-top:4px;
	background-repeat:repeat-y;
	clear:both;
	padding-bottom:4px;
	margin-bottom:0;
	background-position:left top
}
.kanren_bottom {
	background-image:url(/gold/amiami/img/menubg_relatedbottom.gif);
	background-repeat:repeat-y;
	width:600px;
	padding-top:10px;
	padding-left:4px;
	padding-bottom:10px;
	margin-bottom:10px;
	background-position:left bottom;
}
.kanren_style {
	font-size:60%;
	color:#333333;
	text-decoration:none;
}
