/* Y'S GEAR : db-list.css */


/*======================================================================*
 *  [ modelMain | モデル情報 ] 
 *======================================================================*/

.modelMain a {
	display: table;
	width: 100%;
	margin: 0 0 30px 0;
	box-sizing: border-box;
	text-align: center;
}
.modelMain a > div {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.modelMain .img img {
	width: 100%;
	max-width: 410px;
	max-height: 255px;
}

.modelMain .name img {
	width: auto;
	max-width: 80%;
	max-height: 100px;
	margin: 0 0 10px 0;
}
.modelMain .name h2 {
	width: 80%;
	margin: 0 auto;
	padding: 10px 0;
	border-top: 1px dotted;
	border-bottom: 1px dotted;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: normal;
}
.modelMain .name h2 strong {
	display: inline-block;
	margin: 0 0 5px 0;
	font-size: 20px;
	font-size: 2rem;
	font-weight: normal;
}


/*======================================================================*
 *  [ modelCode | 機種コード ] 
 *======================================================================*/

.modelCode {
	display: table;
	width: 100%;
	margin: 0 0 30px 0;
	padding: 10px;
	box-sizing: border-box;
	background: #e6e6e6;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.2;
}

.modelCode h3, 
.modelCode ul {
	display: table-cell;
}

.modelCode h3 {
	width: 6em;
	font-weight: normal;
	white-space: nowrap;
}
.modelCode h3:after {
	content: "：";
}

.modelCode li {
	display: inline-block;
	list-style-type: none;
}
.modelCode li:after {
	content: " /";
}


/*======================================================================*
 *  [ dbListWrap | 商品一覧ページ ] 
 *======================================================================*/

.dbListWrap {
	float: right;
	width: 76.5%;
	padding: 0 0 0 2.05%;
	box-sizing: border-box;
	font-size: 13px;
	font-size: 1.3rem;
}


/*======================================================================*
 *  [ dbListWrap form | ラジオボタン・チェックボックス ] 
 *======================================================================*/

.dbListWrap label {
	display: inline-block;
}

.dbListWrap input[type="radio"], 
.dbListWrap input[type="checkbox"] {
	display: none;
}
.dbListWrap input[type="radio"] + span, 
.dbListWrap input[type="checkbox"] + span {
	display: inline-block;
	position: relative;
	padding: 10px 10px 10px 35px;
	border-radius: 5px;
	box-sizing: border-box;
	background: #f3f4f5;
	vertical-align: middle;
	-webkit-transition: background 0.2s linear;
	transition: background 0.2s linear;
	cursor: pointer;
}
.dbListWrap input[type="radio"] + span:hover, 
.dbListWrap input[type="checkbox"] + span:hover {
	background: #fff2ee;
}
.dbListWrap input[type="radio"] + span:after, 
.dbListWrap input[type="checkbox"] + span:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 16px;
	height: 16px;
	margin: -10px 0 0 0;
	border: 2px solid #aeaeae;
	border-radius: 6px;
	content: '';
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
}
.dbListWrap input[type="radio"] + span:before {
	display: block;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 15px;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 0;
	border-radius: 50%;
	background: #e44800;
	content: '';
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.dbListWrap input[type="checkbox"] + span:before {
	display: block;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 16px;
	width: 5px;
	height: 9px;
	margin: -7px 0 0 0;
	border-right: 3px solid #e44800;
	border-bottom: 3px solid #e44800;
	content: '';
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* [ 選択された時 ] */
.dbListWrap input[type="radio"]:checked + span:before {
	opacity: 1;
}
.dbListWrap input[type="checkbox"]:checked + span:before {
	opacity: 1;
}
/* [ 使用不可の時 ] */
.dbListWrap input[type="radio"]:disabled + span, 
.dbListWrap input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: default;
}
.dbListWrap input[type="radio"]:disabled + span:hover, 
.dbListWrap input[type="checkbox"]:disabled + span:hover {
	background: #f3f4f5;
}
.dbListWrap input[type="radio"]:disabled + span:after, 
.dbListWrap input[type="checkbox"]:disabled + span:after {
	border-color: #ccc;
}
.dbListWrap input[type="radio"]:disabled + span:before, 
.dbListWrap input[type="checkbox"]:disabled + span:before {
	height: 22px;
	margin: -13px 0 0 ;
	border-right: 2px solid #ccc;
	border-bottom: none;
	opacity: 1;
}


/*======================================================================*
 *  [ dbListWrap form select | セレクトボックス（共通） ] 
 *======================================================================*/

.dbListWrap .selectBox:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border: 4px solid transparent;
	border-top: 7px solid #000;
	content: "";
	cursor: text;
}


/*======================================================================*
 *  [ dbListWrap form select | セレクトボックス（モバイル） ] 
 *======================================================================*/

.dbListWrap.spn .selectBox {
	display: inline-block;
	position: relative;
	border: 1px solid #aeaeae;
	background: #f3f4f5;
}
.dbListWrap.spn .selectBox select {
	display: block;
	position: relative;
	width: 100%;
	padding: 10px 40px 10px 10px;
	border: none;
	box-sizing: border-box;
	background: none;
	font-size: 16px;
	font-size: 1.6rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	z-index: 2;
}


/*======================================================================*
 *  [ dbListWrap form select | セレクトボックス（PC） ] 
 *======================================================================*/

.dbListWrap.pc .selectBox {
	display: inline-block;
	position: relative;
}
.dbListWrap.pc .hasCustomSelect {
	z-index: 100;
}
.dbListWrap.pc .customSelect {
	padding: 5px 0;
	border: 1px solid #aeaeae;
	box-sizing: border-box;
	background: #f3f4f5;
	color: #000;
	line-height: 1.8;
}
.dbListWrap.pc .customSelectInner {
	padding: 0 20px 0 10px;
}


/*======================================================================*
 *  [ productListBox | 商品一覧 ] 
 *======================================================================*/

.productListBox h3 {
	margin: 0 0 10px 0;
	padding: 2px 0 2px 10px;
	border-left: 7px solid #000;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.2;
}
.productListBox h3 span {
	display: inline-block;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
}

/* [ メーカー・シリーズ解除ボタン ] */
.productListBox h3 button {
	position: relative;
	width: 16px;
	height: 16px;
	margin: -2px 0 0 5px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #f3f4f5;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	cursor: pointer;
}
.productListBox h3 button:before, 
.productListBox h3 button:after {
	display: block;
	position: absolute;
	top: 3px;
	left: 7px;
	width: 0;
	height: 10px;
	border-left: 2px solid #999;
	content: "";
}
.productListBox h3 button:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.productListBox h3 button:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/*======================================================================*
 *  [ productNarrow | 商品を絞り込む ] 
 *======================================================================*/

.productNarrow {
	margin: 0 0 40px 0;
	border-top: 1px dotted #909090;
	border-bottom: 1px dotted #909090;
}

.productNarrow dt {
	padding: 15px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: normal;
}
.productNarrow dd {
	padding: 0 15px 5px 15px;
}
.productNarrow p, 
.productNarrow ul, 
.productNarrow li {
	display: inline-block;
	vertical-align: middle;
}
.productNarrow p {
	margin: 0 10px 10px 0;
}
.productNarrow ul {
	margin: 0 0 5px 0;
}
.productNarrow li {
	margin: 0 0 5px 0;
	list-style-type: none;
}


/*======================================================================*
 *  [ productListNav | 商品一覧 商品数・並び順・表示件数 ] 
 *======================================================================*/

.productListNav {
	margin: 0 0 20px 0;
}

/* [ narrow | 絞り込み項目 ] */
.productListNav .narrow {
	margin: 0 0 15px 0;
	padding: 10px 5px;
	background: #efefef;
	font-weight: bold;
}
.productListNav .narrow span {
	display: inline-block;
	margin: 0 5px;
	line-height: 20px;
}
.productListNav .narrow button {
	position: relative;
	width: 16px;
	height: 16px;
	margin: -2px 0 0 5px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #fff;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	cursor: pointer;
}
.productListNav .narrow button:before, 
.productListNav .narrow button:after {
	display: block;
	position: absolute;
	top: 3px;
	left: 7px;
	width: 0;
	height: 10px;
	border-left: 2px solid #999;
	content: "";
}
.productListNav .narrow button:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.productListNav .narrow button:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* [ item | 商品数 ] */
.productListNav .item {
	float: left;
	font-weight: bold;
	line-height: 34px;
}
.productListNav .item strong {
	font-size: 16px;
	font-size: 1.6rem;
}
.productListNav .item span {
	margin: 0 0 0 5px;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: normal;
}

.productListNav ul {
	float: right;
}
.productListNav li {
	display: inline-block;
	width: auto;
	margin: 0 0 0 10px;
	list-style-type: none;
}


/*======================================================================*
 *  [ productList | 商品一覧 ] 
 *======================================================================*/

.productList {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-align-items：stretch;
	align-items：stretch;
	margin: 0 0 40px 0;
	padding: 1px 0 0 1px;
}

.productList a {
	position: relative;
	display: block;
	width: 25.13%;
	margin: -1px 0 0 -1px;
	padding: 30px 10px 15px 10px;
	border: 1px solid #bfc0c0;
	box-sizing: border-box;
}
.productList a:hover {
	z-index: 1;
}

/* [ iconNew | NEWアイコン ] */
.iconNew {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	z-index: 1;
}
.iconNew strong {
	display: block;
	width: 45px;
	height: 45px;
	background-size: 100% 100%;
}
.iconNew.new {
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjY2MxNTMzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjY2MxNTMzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTElIiBzdG9wLWNvbG9yPSIjY2MxNTMzIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(-45deg,  rgba(204,21,51,1) 0%, rgba(204,21,51,1) 50%, rgba(204,21,51,0) 51%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(204,21,51,1)), color-stop(50%,rgba(204,21,51,1)), color-stop(51%,rgba(204,21,51,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(204,21,51,1) 0%,rgba(204,21,51,1) 50%,rgba(204,21,51,0) 51%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(204,21,51,1) 0%,rgba(204,21,51,1) 50%,rgba(204,21,51,0) 51%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(204,21,51,1) 0%,rgba(204,21,51,1) 50%,rgba(204,21,51,0) 51%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(204,21,51,1) 0%,rgba(204,21,51,1) 50%,rgba(204,21,51,0) 51%); /* W3C */
}
.iconNew.new strong { background-image: url(/app/shared/img/db-list/icon_new.png); }
.iconNew.color {
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjY2VhYTAwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjY2VhYTAwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTElIiBzdG9wLWNvbG9yPSIjY2VhYTAwIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(-45deg,  rgba(206,170,0,1) 0%, rgba(206,170,0,1) 50%, rgba(206,170,0,0) 51%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(206,170,0,1)), color-stop(50%,rgba(206,170,0,1)), color-stop(51%,rgba(206,170,0,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(206,170,0,1) 0%,rgba(206,170,0,1) 50%,rgba(206,170,0,0) 51%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(206,170,0,1) 0%,rgba(206,170,0,1) 50%,rgba(206,170,0,0) 51%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(206,170,0,1) 0%,rgba(206,170,0,1) 50%,rgba(206,170,0,0) 51%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(206,170,0,1) 0%,rgba(206,170,0,1) 50%,rgba(206,170,0,0) 51%); /* W3C */
}
.iconNew.color strong { background-image: url(/app/shared/img/db-list/icon_color.png); }

/* [ iconOut | 社外品アイコン ] 2023.11 追記 */
.iconOut { background: #0000ff;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 73px;
	height: 73px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	clip-path: polygon(45px 0, 100% 0, 0 100%, 0 45px);
	z-index: 1;
}
.iconOut strong {
	display: block;
	width: 73px;
	height: 73px;
	background-size: 100% 100%;
}
.iconOut.out {
	background: #888888;
}
.iconOut.out strong { background-image: url(/app/shared/img/db-list/icon_out.png); }

/* [ iconState | ステータスアイコン ] */
.iconState {
	position: absolute;
	top: 5px;
	right: 5px;
	text-align: right;
}
.iconState span {
	display: inline-block;
	padding: 2px 5px;
	border: 1px solid;
	border-radius: 3px;
	font-size: 11px;
	font-size: 1.1rem;
}
.iconState .stock, 
.iconState .order, 
.iconState .reserve { color: #cc1533; }
.iconState .stock:before, 
.iconState .order:before, 
.iconState .reserve:before {
	display: inline-block;
	margin: -3px 2px -2px 0;
	content: url(/app/shared/svg/db-list/icon_cart.svg);
	vertical-align: middle;
}
.iconState .inquiry, 
.iconState .soldout, 
.iconState .end 	{ background: #e4e4e4; color: #666; }

/* [ サムネイル ] */
.productList .img {
	position: relative;
	width: 100%;
	max-width: 150px;
	margin: 0 auto;
	padding: 100% 0 0 0;
}
.productList .img div {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}
.productList .img img {
	width: 100%;
}

/* [ maker | メーカー ] */
.productList .maker {
	margin: 10px 0 0 0;
	font-size: 11px;
	font-size: 1.1rem;
}

/* [ name | 商品名 ] */
.productList .name {
	margin: 5px 0 0 0;
	line-height: 1.2;
}

/* [ price | 価格 ] */
.productList .price {
	margin: 5px 0 0 0;
	color: #000;
	font-weight: bold;
	line-height: 1.2;
}
.productList .price span {
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: normal;
}

/* [ comment | コメント ] */
.productList .comment {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-top: 1px dotted #bfc0c0;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.2;
}

/* [ model | 適応機種 ] */
.productList .model {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-top: 1px dotted #bfc0c0;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.2;
}
.productList .model dt {
	margin: 0 0 5px 0;
}
.productList .model dd {
	display: inline-block;
}
.productList .model dd:after {
	content: " / ";
}

/* [ iconPoint | クーポン・ポイントアイコン ] */
.iconPoint {
	margin: 5px -5px 0 0;
	font-size: 10px;
	font-size: 1rem;
}
.iconPoint i {
	margin: 5px 5px 0 0;
	display: inline-block;
	padding: 2px;
	border: 1px solid #464646;
	border-radius: 3px;
	color: #464646;
	font-style: normal;
}


/*======================================================================*
 *  [ productList | 商品一覧（IE9） ] 
 *======================================================================*/

.productList:after {
	display: block;
	clear: both;
	content: "";
}
:root .productList a {
	float: left\0/;
}
:root .productList a:nth-child(4n+1) {
	clear: both\0/;
}


/*======================================================================*
 *  [ Media Queries 768 ] 
 *======================================================================*/

@media screen and (max-width: 768px) {
	
	/*==================================================================*
	 *  [ productList | 商品一覧 ] 
	 *==================================================================*/
	
	.productList a {
		width: 33.5%;
	}
	:root .productList a:nth-child(4n+1) { /* [ IE9 ] */
		clear: none\0/;
	}
	:root .productList a:nth-child(3n+1) { /* [ IE9 ] */
		clear: both\0/;
	}
	
}


/*======================================================================*
 *  [ Media Queries 730 ] 
 *======================================================================*/

@media screen and (max-width: 730px) {
	
	/*==================================================================*
	 *  [ modelMain | モデル情報 ] 
	 *==================================================================*/
	
	.modelMain {
		padding: 0 20px;
	}
	
	
	/*==================================================================*
	 *  [ dbListWrap | 商品一覧ページ ] 
	 *==================================================================*/
	
	.dbListWrap {
		float: none;
		width: 100%;
		margin: 0 0 50px 0;
		padding: 0 20px;
	}
	
	
	/*==================================================================*
	 *  [ productNarrow | 商品を絞り込む（モバイル） ] 
	 *==================================================================*/
	
	.dbListWrap.spn .productNarrow dt {
		position: relative;
		cursor: pointer;
	}
	.dbListWrap.spn .productNarrow dt span {
		display: block;
		position: absolute;
		top: 15px;
		right: 15px;
		width: 15px;
		height: 15px;
		border: 1px solid;
	}
	.dbListWrap.spn .productNarrow dt span:before, 
	.dbListWrap.spn .productNarrow dt span:after {
		display: block;
		position: absolute;
		content: "";
	}
	.dbListWrap.spn .productNarrow dt span:before {
		right: 7px;
		bottom: 2px;
		width: 0;
		height: 11px;
		border-left: 1px solid;
	}
	.dbListWrap.spn .productNarrow dt.active span:before {
		display: none;
	}
	.dbListWrap.spn .productNarrow dt span:after {
		right: 2px;
		bottom: 7px;
		width: 11px;
		height: 0;
		border-top: 1px solid;
	}
	.dbListWrap.spn .productNarrow dd {
		display: none;
	}
	
	
	/*==================================================================*
	 *  [ productList | 商品一覧 ] 
	 *==================================================================*/
	
	.productList a {
		width: 25.13%;
	}
	:root .productList a:nth-child(4n+1) { /* [ IE9 ] */
		clear: both\0/;
	}
	:root .productList a:nth-child(3n+1) { /* [ IE9 ] */
		clear: none\0/;
	}
	
}


/*======================================================================*
 *  [ Media Queries 667 ] 
 *======================================================================*/

@media screen and (max-width: 667px) {
	
	/*==================================================================*
	 *  [ productList | 商品一覧 ] 
	 *==================================================================*/
	
	.productList a {
		width: 33.49%;
	}
	:root .productList a:nth-child(4n+1) { /* [ IE9 ] */
		clear: none\0/;
	}
	:root .productList a:nth-child(3n+1) { /* [ IE9 ] */
		clear: both\0/;
	}
	
}


/*======================================================================*
 *  [ Media Queries 568 ] 
 *======================================================================*/

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ dbListWrap | 商品一覧ページ ] 
	 *==================================================================*/
	
	.dbListWrap {
		padding: 0 10px;
	}
	
	
	/*==================================================================*
	 *  [ productNarrow | 商品を絞り込む ] 
	 *==================================================================*/
	
	.productNarrow {
		margin: 0 0 20px 0;
	}
	
	.productNarrow ul,
	.productNarrow li,
	.productNarrow li label, 
	.productNarrow li input[type="checkbox"] + span {
		display: block;
	}
	
	
	/*==================================================================*
	 *  [ productListNav | 商品一覧 商品数・並び順・表示件数 ] 
	 *==================================================================*/
	
	.productListNav li label {
		display: block !important;
		margin: 5px 0 0 0;
	}
	
	
	/*==================================================================*
	 *  [ productListNav | 商品一覧 商品数・並び順・表示件数（モバイル） ] 
	 *==================================================================*/
	
	.dbListWrap.spn .productListNav .item, 
	.dbListWrap.spn .productListNav ul {
		float: none;
	}
	.dbListWrap.spn .productListNav .item {
		margin: 0 0 10px 0;
	}
	
	.dbListWrap.spn .productListNav li {
		float: left;
		width: 65%;
		margin: 0;
	}
	.dbListWrap.spn .productListNav li + li {
		width: 35%;
		padding: 0 0 0 10px;
		box-sizing: border-box;
	}
	
	
	/*==================================================================*
	 *  [ productListNav | 商品一覧 商品数・並び順・表示件数（PC） ] 
	 *==================================================================*/
	
	.dbListWrap.pc .productListNav .item {
		line-height: 50px;
	}
	
	
	/*==================================================================*
	 *  [ productList | 商品一覧 ] 
	 *==================================================================*/
	
	.productList {
		display: block;
		padding: 0;
	}
	
	.productList a {
		width: 100%;
		margin: -1px 0 0 0;
		padding: 25px 30px 25px 95px;
	}
	.productList a:before {
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		width: 10px;
		height: 10px;
		margin: -7px 0 0 0;
		border-top: 3px solid #bfc0c0;
		border-right: 3px solid #bfc0c0;
		content: "";
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.productList a:after {
		display: block;
		clear: both;
		content: "";
	}
	
	/* [ maker | メーカー ] */
	.productList .maker {
		margin: 0;
	}
	
	/* [ サムネイル ] */
	.productList .img {
		position: absolute;
		top: 50%;
		left: 10px;
		width: 75px;
		margin: -37px 0 0 0;
		padding: 0;

	}
	.productList .img div {
		position: relative;
	}
	
}


/*======================================================================*
 *  [ Media Queries 480 ] 
 *======================================================================*/

@media screen and (max-width: 480px) {
	
	/*==================================================================*
	 *  [ modelMain | モデル情報 ] 
	 *==================================================================*/
	
	.modelMain {
		display: block;
		padding: 0 10px;
	}
	.modelMain > div {
		display: block;
		width: 100%;
	}
	
	.modelMain .img {
		margin: 0 0 15px 0;
	}
	
	.modelMain .name img {
		max-width: 100%;
		max-height: 50px;
	}
	.modelMain .name h2 {
		width: 100%;
	}
	
	
	/*==================================================================*
	 *  [ modelCode | 機種コード ] 
	 *==================================================================*/
	
	.modelCode, 
	.modelCode h3, 
	.modelCode ul {
		display: block;
	}
	.modelCode {
		font-size: 12px;
		font-size: 1.2rem;
	}
	.modelCode h3 {
		margin: 0 0 2px 0;
		font-weight: bold;
	}
	
}

