/* Y'S GEAR : wishlist.css */


/*======================================================================*
 *  [ common ] 
 *======================================================================*/

.wishWrap * { box-sizing: border-box; }

.wishWrap input,
.wishWrap select,
.wishWrap button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	background: none;
	font-size: 1.4rem;
	line-height: 1.4;
}
.wishWrap input,
.wishWrap button { cursor: pointer; }
.wishWrap select::-ms-expand { /* IEハック */
	display: none;
}

.wishWrap label { display: inline-block; }

/* [ テキストボックス ] */
.wishWrap input[type="text"], 
.wishWrap input[type="number"], 
.wishWrap input[type="tel"], 
.wishWrap input[type="email"], 
.wishWrap input[type="password"],
.wishWrap textarea {
	-webkit-appearance: none;
	padding: 10px;
	border: 1px solid #aeaeae;
	border-radius: 0;
	background: #f3f4f5;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.3;
	cursor: auto;
}
.wishWrap input[type="text"]:focus, 
.wishWrap input[type="number"]:focus, 
.wishWrap input[type="tel"]:focus, 
.wishWrap input[type="email"]:focus, 
.wishWrap input[type="password"]:focus,
.wishWrap textarea:focus {
	border-color: #4571b0;
	background: #fff;
	outline: none;
}

.wishWrap .size10 { width: 10%; }
.wishWrap .size20 { width: 20%; }
.wishWrap .size30 { width: 30%; }
.wishWrap .size40 { width: 40%; }
.wishWrap .size50 { width: 50%; }
.wishWrap .size60 { width: 60%; }
.wishWrap .size70 { width: 70%; }
.wishWrap .size80 { width: 80%; }
.wishWrap .size90 { width: 90%; }

.wishWrap ::-webkit-input-placeholder { color: #bbb; }
.wishWrap ::-moz-placeholder { color: #bbb; -moz-opacity: 1; opacity: 1; }
.wishWrap :-moz-placeholder { color: #bbb; -moz-opacity: 1; opacity: 1; }
.wishWrap :-ms-input-placeholder { color: #bbb; }

.wishWrap .an { ime-mode: inactive; }

/* [ チェックボックス ] */
.checkBox {
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
}
.checkBox input[type="checkbox"] { display: none; }
.checkBox input[type="checkbox"] + span {
	display: inline-block;
	position: relative;
	padding-left: 30px;
}
.checkBox input[type="checkbox"] + span::before, 
.checkBox input[type="checkbox"] + span::after {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
}
.checkBox input[type="checkbox"] + span::before {
	width: 16px;
	height: 16px;
	border: 2px solid #aeaeae;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.checkBox input[type="checkbox"] + span::after {
	display: none;
	width: 6px;
	height: 10px;
	margin: -9px 0 0 5px;
	border-right: 4px solid #e44800;
	border-bottom: 4px solid #e44800;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.checkBox input[type="checkbox"]:checked + span::after { display: block; }

/* [ selectBox ] */
.selectBox {
	display: inline-block;
	position: relative;
	border: 1px solid #ccc;
	vertical-align: middle;
}
.selectBox::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border: 4px solid transparent;
	border-top: 8px solid #000;
	content: "";
	cursor: text;
}
.selectBox select { padding: 5px 20px 5px 5px; }


/*======================================================================*
 *  [ wishNav | ほしいものナビ ]
 *======================================================================*/

.wishNav {
	margin-bottom: 30px;
	padding: 10px 20px;
	border-radius: 5px;
	background: #f0f1f8;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
}
.wishNav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.wishNav li + li { margin-left: 40px; }
.wishNav a {
	display: inline-block;
	padding: 5px;
	color: #363A90;
}
.wishNav a:hover, 
.wishNav a:active { background: #e2e4f1; }
.wishNav a::before {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
	content: "";
}
.wishNav .list a::before { background-image: url(/app/shared/svg/wishlist/icon_list_blue.svg); }
.wishNav .calc a::before { background-image: url(/app/shared/svg/wishlist/icon_calc_blue.svg); }
.wishNav .guide a::before { background-image: url(/app/shared/svg/wishlist/icon_guide_blue.svg); }


/*======================================================================*
 *  [ wishHead | ほしいものヘッダ ]
 *======================================================================*/

.wishHead {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 3px solid #bfbfbf;
}
.wishHead label + label { margin-left: 8px; }

/* [ 登録数 ] */
.wishHead .number {
	float: right;
	margin-top: 10px;
	font-size: 1.3rem;
	font-weight: bold;
}
.wishHead .number b {
	font-size: 1.8rem;
	font-weight: normal;
}

/* [ 全て選択 ] */
.wishHead .checkBox {
	padding: 7px 7px;
	border: 1px solid #ccc;
	font-size: 1.4rem;
	line-height: 1.4;
}

/* [ 並び替え ] */
.wishHead .selectBox select {
	width: 130px;
	padding: 7px 20px 7px 5px;
}


/*======================================================================*
 *  [ wishList | ほしいものリスト ]
 *======================================================================*/

.wishList { width: 100%; }
.wishList th, 
.wishList td { vertical-align: middle; }
.wishList tr > *:first-child { padding-left: 10px !important; }
.wishList tr > *:last-child { padding-right: 10px !important; }

.wishList thead { background: #f7f7f7; }
.wishList thead th {
	padding: 10px 5px !important;
	font-size: 1.4rem;
	white-space: nowrap;
}
.wishList thead th span {
	font-size: 1.2rem;
	font-weight: normal;
}

.wishList tbody { border-top: 1px dotted #ccc; }
.wishList tbody tr {
	border-bottom: 1px dotted #ccc;
	background: #f7f7f7;
}
.wishList tbody tr.selected { background: #fff; }
.wishList tbody th, 
.wishList tbody td { padding: 20px 5px !important; }
.wishList tbody th { vertical-align: top; }
.wishList tbody td { text-align: center; }

/* [ お見積りチェック ] */
.wishList .check .checkBox {
	padding: 5px;
	line-height: 1;
}
.wishList .check .checkBox span {
	padding-left: 20px;
	height: 20px;
}

/* [ 画像 ] */
.wishList .image {
	width: 12.76%;
	padding-left: 0;
}
.wishList .image img { width: 100%; }

/* [ 商品 ] */
.wishList .item { text-align: left; }
.wishList .name { margin-bottom: 10px; }
.wishList .name span {
	display: block;
	color: #666;
	font-size: 1.1rem;
	font-weight: normal;
}
.wishList .name a {
	color: #000;
	text-decoration: underline;
}
.wishList .name a:hover, 
.wishList .name a:active {
	text-decoration: none;
}
.wishList .detail {
	color: #666;
	font-weight: normal;
}
.wishList .detail dt {
	float: left;
	clear: both;
}
.wishList .detail .add {
	display: inline-block;
	margin-top: 10px;
	font-size: 1.1rem;
	line-height: 1;
}

/* [ 在庫状況 ] */
.wishList .status .stock { color: #000; }
.wishList .status .order { color: #000; }
.wishList .status .reserve { color: #000; }
.wishList .status .inquiry { color: #118acb; }
.wishList .status .soldout { color: #ff0000; }
.wishList .status .end { color: #ff0000; }

/* [ 数量 ] */
.wishList .number .selectBox select { background: #f3f4f5; }

/* [ 買う ] */
.wishList .buy { width: 120px; }
.wishList .cartButton {
	display: inline-block;
	position: relative;
	padding: 10px 5px 10px 24px;
	background: rgb(238,117,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(238,117,0,1) 0%, rgba(224,64,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,117,0,1)), color-stop(100%,rgba(224,64,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(238,117,0,1) 0%,rgba(224,64,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(238,117,0,1) 0%,rgba(224,64,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(238,117,0,1) 0%,rgba(224,64,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee7500', endColorstr='#e04000',GradientType=0 ); /* IE6-9 */
	color: #fff;
	font-size: 1.3rem !important;
	font-weight: bold;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}
.wishList .cartButton:hover {
	background: rgb(224,64,0); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(224,64,0,1) 0%, rgba(238,117,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,64,0,1)), color-stop(100%,rgba(238,117,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(224,64,0,1) 0%,rgba(238,117,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(224,64,0,1) 0%,rgba(238,117,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(224,64,0,1) 0%,rgba(238,117,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e04000', endColorstr='#ee7500',GradientType=0 ); /* IE6-9 */
	color: #fff !important;
}
_:-ms-input-placeholder, :root .wishList .cartButton { /* IEハック */
	padding: 12px 5px 8px 24px;
}
.wishList .cartButton:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 7px;
	width: 15px;
	height: 15px;
	margin: -7px 0 0 0;
	background: url(/app/shared/svg/db-detail/icon_cart_button.svg) center center no-repeat;
	background-size: contain;
	content: "";
}
.wishList .cartButton br { display: none; }

/* [ 削除 ] */
.wishList .deleteButton {
	display: inline-block;
	overflow: hidden;
	width: 24px;
	height: 24px;
	background: url(/app/shared/svg/icon_delete.svg) center center no-repeat #909090;
	border-radius: 24px;
	text-indent: 100%;
	white-space: nowrap;
	cursor: pointer;
}
.wishList .deleteButton:hover { background-color: #000; }


/*======================================================================*
 *  [ calcBox | お見積り ]
 *======================================================================*/

.calcBox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 40px;
	padding: 20px;
	border-bottom: 3px solid #bfbfbf;
}

/* [ タイトル ] */
.calcBox h2 {
	position: relative;
	width: 30%;
	padding: 30px 0;
	border-radius: 5px;
	background: #f0f1f8;
	font-size: 2rem;
	text-align: center;
	white-space: nowrap;
}
.calcBox h2::after {
	position: absolute;
	top: 50%;
	right: -24px;
	width: 12px;
	height: 0;
	margin-top: -6px;
	border: 6px solid transparent;
	border-left: 12px solid #f0f1f8;
	border-right: 0;
	content: "";
}

/* [ 商品数 / 工数 / 金額 ] */
.calcBox dt, 
.calcBox dd { white-space: nowrap; }

/* [ 商品数 / 工数 ] */
.calcBox .item, 
.calcBox .hour {
	font-size: 1.4rem;
	text-align: right;
}
.calcBox .item dt, 
.calcBox .hour dt { line-height: 1.6; }
.calcBox .item dd, 
.calcBox .hour dd {
	padding: .6em 0 .2em;
	font-weight: bold;
}
.calcBox .item dd b, 
.calcBox .hour dd b { font-size: 1.6rem; }

/* [ 金額 ] */
.calcBox .price {
	color: #e44800;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;
}
.calcBox .price dd b { font-size: 2.4rem; }

/* [ ボタン ] */
.calcBox .btn { text-align: center; }
.calcBox .btn li + li { margin-top: 5px; }

.calcBox .calcButton, 
.calcBox .prevButton {
	display: inline-block;
	position: relative;
	width: 165px;
	padding: 10px 10px 10px 40px;
	font-size: 1.6rem;
	line-height: 1.2;
	cursor: pointer;
}
_:-ms-input-placeholder, :root .calcBox .calcButton, 
_:-ms-input-placeholder, :root .calcBox .prevButton { /* IEハック */
	padding: 14px 10px 6px 40px;
}
.calcBox .calcButton::before, 
.calcBox .prevButton::before {
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.calcBox .calcButton {
	background: #000; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(66,66,66,1) 0%, rgba(32,32,32,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(66,66,66,1)), color-stop(100%,rgba(32,32,32,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#202020',GradientType=0 ); /* IE6-9 */
	color: #fff;
	text-align: center;
}
.calcBox .calcButton:hover {
	background: #424242; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(66,66,66,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(100%,rgba(66,66,66,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#424242',GradientType=0 ); /* IE6-9 */
	color: #fff !important;
}
.calcBox .calcButton::before { background-image: url(/app/shared/svg/wishlist/icon_calc_white.svg); }

.calcBox .prevButton { background: #ececec; }
.calcBox .prevButton:hover {
	background: #bfbfbf;
	color: #333 !important;
}
.calcBox .prevButton::before { background-image: url(/app/shared/svg/wishlist/icon_print_gray.svg); }


/*======================================================================*
 *  [ loginSelect | ログイン選択 ]
 *======================================================================*/

.loginSelect {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 20px;
	padding: 20px;
	background: #f0f1f8;
}
.loginSelect.login {
	margin-bottom: 40px;
	background: #f7f7f7;
}

.loginSelect .inner {
	-webkit-flex: 1;
	flex: 1;
	padding-right: 10px;
}

.loginSelect h2 {
	margin-bottom: 15px;
	padding-left: 5px;
	border-left: 5px solid #363a90;
}
.loginSelect h2 b {
	font-size: 1.8rem;
	vertical-align: middle;
}
.loginSelect h2 span {
	display: inline-block;
	position: relative;
	margin-left: 15px;
	padding: 2px 10px;
	border-radius: 3px;
	background: #363a90;
	color: #fff;
	vertical-align: middle;
}
.loginSelect h2 span::before {
	position: absolute;
	top: 50%;
	left: -7px;
	margin-top: -4px;
	border: 4px solid transparent;
	border-right: 7px solid #363a90;
	border-left: none;
	content: "";
}

/* [ テキスト ] */
.loginSelect p {
	font-size: 1.4rem;
}
.loginSelect p a {
	display: inline-block;
	color: #363a90;
	text-decoration: underline;
}
.loginSelect p a:hover, 
.loginSelect p a:active { text-decoration: none; }
.loginSelect p a::before {
	display: inline-block;
	margin: 0 5px 3px;
	border: 4px solid transparent;
	border-right: none;
	border-left: 8px solid #363a90;
	vertical-align: middle;
	content: "";
}

/* [ フォーム ] */
.loginSelect label {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	margin-top: 15px;
}
.loginSelect label div {
	padding-left: 5px;
	width: 50%;
}
.loginSelect label .note {
	font-size: 1.1rem;
}
.loginSelect label .note strong, 
.loginSelect label .note span { display: inline-block; }
.loginSelect label a {
	display: inline-block;
	position: relative;
	padding: 0 0 0 12px;
	color: #363a90;
	line-height: 1.2;
	text-decoration: underline;
}
.loginSelect label a:hover {
	text-decoration: none;
}
.loginSelect label a:before {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: -3px 5px 0 -10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: 2px solid #666;
	border-right: 2px solid #666;
	content: "";
	vertical-align: middle;
}

/* [ ボタン ] */
.loginSelect .loginButton {
	display: block;
	position: relative;
	width: 100%;
	max-width: 285px;
	padding: 15px;
	border: none;
	box-sizing: border-box;
	background: #000; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(66,66,66,1) 0%, rgba(32,32,32,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(66,66,66,1)), color-stop(100%,rgba(32,32,32,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(66,66,66,1) 0%,rgba(32,32,32,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#202020',GradientType=0 ); /* IE6-9 */
	color: #fff !important;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}
.loginSelect .loginButton:hover {
	background: #424242; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(66,66,66,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(100%,rgba(66,66,66,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(66,66,66,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#424242',GradientType=0 ); /* IE6-9 */
	color: #fff !important;
}
.loginSelect .loginButton:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 10px;
	height: 10px;
	margin: -7px 0 0 0;
	border-top: 3px solid #969696;
	border-right: 3px solid #969696;
	content: "";
}

/*======================================================================*
 *  [ wishGuide | 活用ガイド ]
 *=========================s=============================================*/

.wishGuide {
	display: table;
	width: 100%;
	margin: 0 0 30px 0;
	border: 1px dotted #909090;
	box-sizing: border-box;
}
.wishGuide h2, 
.wishGuide ul {
	display: table-cell;
	vertical-align: middle;
}
.wishGuide h2 {
	width: 20%;
	color: #575757;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.2;
	text-align: center;
}
.wishGuide ul {
	padding: 20px;
	border-left: 1px dotted #909090;
}
.wishGuide li {
	list-style-type: none;
	float: left;
	width: 33.33%;
}
.wishGuide li:nth-child(3n+1) {
	clear: both;
	width: 40%;
}
.wishGuide li:nth-child(3n) { width: 26.66%; }
.wishGuide a {
	display: block;
	padding: 5px 15px;
}
.wishGuide a:before {
	display: inline-block;
	width: 0;
	height: 0;
	margin: 0 5px 1px -15px;
	border: 3px solid transparent;
	border-left: 5px solid #909090;
	content: "";
}

.wishGuide + .commonNotes { text-align: center; }


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

@media screen and (max-width: 768px) {
	
	#wishlist { margin: 0 -20px; }
	
	
	/*==================================================================*
	 *  [ wishHead | ほしいものヘッダ ]
	 *==================================================================*/
	
	.wishHead {
		margin-bottom: 15px;
		padding: 0 20px;
		border-bottom: none;
	}
	
	/* [ 登録数 ] */
	.wishHead .number {
		float: none;
		margin: 0 -20px 15px;
		padding: 0 20px 10px;
		border-bottom: 3px solid #bfbfbf;
	}
	
	
	/*==================================================================*
	 *  [ wishList | ほしいものリスト ]
	 *==================================================================*/
	
	.wishList thead th { font-size: 1.3rem; }
	.wishList thead th span { font-size: 1.1rem; }
	
	/* [ カートに入れる] */
	.wishList .cartButton br { display: block; }
	
	
	/*==================================================================*
	 *  [ calcBox | お見積り ]
	 *==================================================================*/
	
	.calcBox {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 20px 30px;
	}
	
	/* [ タイトル ] */
	.calcBox h2 {
		width: calc(100% + 20px);
		margin: 0 -10px 15px;
		padding: 10px;
		font-size: 1.8rem;
	}
	.calcBox h2::after { display: none; }
	
	
	/*==================================================================*
	 *  [ loginSelect | ログイン選択 ]
	 *==================================================================*/
	
	.loginSelect { display: block; }
	.loginSelect .inner { padding-right: 0; }
	
	/* [ ボタン ] */
	.loginSelect .loginButton {
		margin: 20px auto 0;
	}
	
	
	/*==================================================================*
	 *  [ wishGuide | 活用ガイド ] 
	 *==================================================================*/
	
	.wishGuide, 
	.wishGuide h2, 
	.wishGuide ul {
		display: block;
	}
	.wishGuide h2 {
		width: auto;
		padding: 10px 20px;
		border-bottom: 1px dotted #909090;
	}
	.wishGuide h2 br {
		display: none;
	}
	.wishGuide ul {
		border: none;
	}
	.wishGuide li, 
	.wishGuide li:nth-child(3n+1), 
	.wishGuide li:nth-child(3n) {
		clear: none;
		width: 50%;
	}
	.wishGuide li:nth-child(2n+1) {
		clear: both;
	}
	
	.wishGuide + .commonNotes { text-align: left; }
	
} /* */


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

@media screen and (max-width: 568px) {
	
	
	/*==================================================================*
	 *  [ wishNav | ほしいものナビ ]
	 *==================================================================*/
	
	.wishNav {
		margin-bottom: 20px;
		padding: 5px;
		font-size: 1.4rem;
	}
	.wishNav li + li { margin-left: 5px; }
	.wishNav a::before {
		width: 16px;
		height: 16px;
		margin-right: 5px;
	}
	
	
	#wishlist { margin: 0 -10px; }
	
	
	/*==================================================================*
	 *  [ wishHead | ほしいものヘッダ ]
	 *==================================================================*/
	
	.wishHead { padding: 0 10px; }
	
	/* [ 登録数 ] */
	.wishHead .number {
		margin: 0 -10px 15px;
		padding: 0 10px 10px;
	}
	
	
	/*==================================================================*
	 *  [ wishList | ほしいものリスト ]
	 *==================================================================*/
	
	.wishList { display: block; }
	
	.wishList tr > *:first-child { padding-left: 0 !important; }
	.wishList tr > *:last-child { padding-right: 0 !important; }
	
	.wishList thead { display: none; }
	
	.wishList tbody, 
	.wishList tbody tr,
	.wishList tbody th, 
	.wishList tbody td { display: block; }
	.wishList tbody tr {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		position: relative;
		padding: 10px;
	}
	.wishList tbody th, 
	.wishList tbody td { padding: 0 !important; }
	
	/* [ チェックボックス ] */
	.wishList .check {
		position: absolute;
		top: 32px;
		left: 5px;
	}
	
	/* [ 画像 ] */
	.wishList .image {
		position: absolute;
		left: 40px;
		width: 75px;
	}
	
	/* [ 商品 ] */
	.wishList .item {
		width: 100%;
		min-height: 75px;
		margin-bottom: 10px;
		padding-left: 115px !important;
	}
	
	/* [ 工数 / 在庫状況 / 数量 / 小計 ] */
	.wishList .hour, 
	.wishList .status, 
	.wishList .number, 
	.wishList .stotal {
		padding: 10px !important;
		background: #fff;
		text-align: left;
		font-size: 1.2rem;
		font-weight: bold;
	}
	.wishList .selected .hour, 
	.wishList .selected .status, 
	.wishList .selected .number, 
	.wishList .selected .stotal { background: #f7f7f7; }
	.wishList .hour, 
	.wishList .number { width: 40%; }
	.wishList .status, 
	.wishList .stotal { width: 60%; }
	.wishList .hour { padding: 10px 5px 0 10px !important; }
	.wishList .status { padding: 10px 10px 0 5px !important; }
	.wishList .number { padding: 10px 5px 10px 10px !important; }
	.wishList .stotal { padding: 10px 10px 10px 5px !important; }
	.wishList .hour::before, 
	.wishList .status::before, 
	.wishList .number::before, 
	.wishList .stotal::before {
		font-size: 1.2rem;
		font-weight: normal;
	}
	.wishList .hour::before { content: "工数："; }
	.wishList .status::before { content: "在庫状況　："; }
	.wishList .number::before { content: "数量："; }
	.wishList .stotal::before { content: "小計(税込)："; }
	
	/* [ 小計 ] */
	.wishList .stotal { line-height: 30px; }
	
	/* [ 買う ] */
	.wishList .buy {
		width: 100%;
		margin-top: 10px;
		line-height: 30px;
	}
	.wishList .cartButton br { display: none; }
	
	
	/* [ 削除 ] */
	.wishList .delete {
		position: absolute;
		right: 10px;
		bottom: 13px;
	}
	
	
	/*==================================================================*
	 *  [ calcBox | お見積り ]
	 *==================================================================*/
	
	.calcBox {
		display: block;
		padding: 20px;
	}
	
	/* [ タイトル ] */
	.calcBox h2 {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.calcBox h2::before {
		display: block;
		font-size: 1.4rem;
		content: "選択した商品を";
	}
	
	/* [ 商品数 / 工数 / 金額 ] */
	.calcBox dl {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
	}
	.calcBox dt, 
	.calcBox dd { line-height: 1 !important; }
	
	/* [ 金額 ] */
	.calcBox .price { margin: 15px 0 20px; }
	.calcBox .price dt::after {
		font-size: 1.2rem;
		content: "(税込)";
	}
	
	
	/*==================================================================*
	 *  [ loginSelect | ログイン選択 ]
	 *==================================================================*/
	
	.loginSelect { padding: 20px 10px; }
	
	.loginSelect h2 b { display: block; }
	.loginSelect h2 span { margin: 5px 0 0; }
	.loginSelect h2 span::before { display: none; }
	
	/* [ テキスト ] */
	.loginSelect p { font-size: 1.3rem; }
	
	.loginSelect label { display: block; }
	.loginSelect label > * { width: 100% !important; }
	.loginSelect label div { margin-top: 5px; }
	
	.loginSelect .loginButton {
		min-width: 100%;
		padding: 15px;
		font-size: 16px;
		font-size: 1.6rem;
	}
	
	/*==================================================================*
	 *  [ wishGuide | 活用ガイド ] 
	 *==================================================================*/
	
	.wishGuide li {
		float: none;
		width: 100% !important;
	}
	
} /* */


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

@media screen and (max-width: 320px) {

	/*==================================================================*
	 *  [ wishHead | ほしいものヘッダ ]
	 *==================================================================*/
	
	/* [ 並び替え ] */
	.wishHead .selectBox select { width: 110px; }
	
} /* */
