@charset "UTF-8";

/*
.main_box h2 {
	margin-bottom: 0;
}
*/
.main_base {
/*	min-height: 1700px;*/
/* mainコンテンツは左サイドメニューの最大長さ分の高さを確保しておかないと、mainが短い場合サイドメニューがフッターに食い込む */
/* サイドメニューの項目によって必要な高さが変わるため、その都度変更する必要有！ */
	min-height: 1120px;
}

.main_box_addsub_inner article {
	margin-bottom: 80px;
}
.main_box_addsub_inner article:nth-last-of-type(1) {
	margin-bottom: 40px;
}
.main_box_addsub_inner figure {
	float: left;

	/* -- 商品一覧で表示画像がなかった場合にデザインズレを防ぐため 2015/09/04追加 -- */
	width: 250px;
	height: 188px;
}

/* -- 商品一覧で表示画像がなかった場合にデザインズレを防ぐため 2015/09/04追加 -- */
.main_box_addsub_inner figure img {
	width: 250px;
	height: 188px;
}

.main_box_addsub_inner .item_desc {
	float: left;
	margin-left: 20px;
	width: 370px;
/*	width: 324px;*/
}
.main_box_addsub_inner h3 {
	font-size: 20px;
	font-family: "Times New Roman","游明朝体","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HGS明朝B","Hiragino Mincho ProN","ＭＳ Ｐ明朝","MS PMincho",serif;
	background-color: #fff;
}
.item_desc_ruby {
	font-size: 14px;
/*	letter-spacing: 0.3em;*/
	float: left;
	color: #7f7f7f;
	font-family: "Times New Roman","游明朝体","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HGS明朝B","Hiragino Mincho ProN","ＭＳ Ｐ明朝","MS PMincho",serif;
}
.item_desc_details {
	float: right;
	font-size: 12px;
/*	letter-spacing: 0.1em;*/
	letter-spacing: 1.2px;
}
.item_desc_details a {
	color: #bc6b52;
}
.item_desc_a {
	padding-bottom: 10px;
}
.item_desc_a, h3 {
	line-height:1.4;
	padding-bottom: 8px;
}
.item_desc_b {
	border-top: 2px dotted #e0e0e0;
	padding-top: 10px;
}
.item_desc_txt {
	font-size: 12px;
	color: #3b3b3b;
	background-color: #fff;
}
.item_desc_b_1 {
	padding-top: 30px;
}
/*-- 購入数追加部分 --*/
.item_desc_b_1 .buy_box {
	float: right;
}
.item_desc_b_1 .buy_box label {
	font-size: 16px;
}
/*-- ここまで      --*/

.item_cart_txt {
	background-color: #bc6b52;
	color: #fff;
	float: right;
	font-size: 12px;
/*	letter-spacing: 0.1em;*/
	letter-spacing: 1.2px;

	/* -- aタグ範囲修正で削除 -- */
	//padding: 5px 20px;
	//line-height: 20px;
}
.item_cart_txt a {
	color: #fff;

	/* -- aタグ範囲修正で追加 -- */
	line-height: 30px;
	padding: 8px 20px;
}
.item_price_txt {
	background-color: #fff;
	color: #bc6b52;
	float: right;
/*	letter-spacing: 0.1em;*/
	letter-spacing: 2px;
	line-height: 30px;
	padding: 0 10px;
	font-size: 20px;
	font-family: メイリオ;
}
.item_tax_txt {
	background-color: #fff;
	color: #bc6b52;
	float: right;
/*	letter-spacing: 0.1em;*/
	letter-spacing: 1.4px;
	line-height: 30px;
	padding: 0 10px;
	font-size: 14px;
	font-family: メイリオ;
}


.fb-like {
  line-height: 1;
}

/* ページャ */

/* 上部設置時に必要な設定
div.pager_erea {
	position: absolute;
	top: 90px;
}
*/

div#pagenation {
	position: relative;
	overflow: hidden;
	float: right;
	width: 640px;
}
div#pagenation ul {
	position:relative;
	left:50%;
	float:left;
	list-style: none;
}
div#pagenation li {
	position:relative;
	left:-50%;
	float:left;
}
div#pagenation li a {
/*	border:1px solid #CECECE;*/
/*	margin: 0 3px;*/
	margin: 0 13px 10px;
	padding:3px 7px;
	display: block;
	text-decoration:none;
/*	color: #666666;*/
	background: #fff;
	font-size: 18px;
}
div#pagenation li.active a,
div#pagenation li a:hover{
/*	border:solid 1px #666666;*/
	color: #FFFFFF;
	background: #bc6b52;
}

/*----------------------------------------
 _画面の横幅が640pxまで
----------------------------------------*/
@media screen and (max-width:640px) {

	.main_base {
		min-height: 0;
	}

	/* 上部ページャ設置時に必要な設定
	.sidemenu_erea {
		margin-bottom: 150px;
	}
	*/

	.main_box_addsub_inner h3 {
		font-size: 30px;
		margin-top: 20px;
	}
	.main_box_addsub_inner article {
		margin-bottom: 150px;
	}
	.main_box_addsub_inner figure {
		float: none;
	}
	.main_box_addsub_inner .item_desc {
		float: none;
		margin-left: 0;
		width: auto;
	}

	.main_box_addsub_inner .item_desc_ruby {
		font-size: 24px;
		background-color: #fff;
	}
	.item_desc_details a {
		font-size: 20px;
	}
	.item_desc_txt {
		font-size: 24px;
		line-height: 2em;
	}

	/* -- 購入数追加部分 -- */
	.item_desc_b_1 .buy_box {
		margin-bottom: 30px;
	}
	.item_desc_b_1 .buy_box label,
	.item_desc_b_1 .buy_box select {
		font-size: 24px;
	}

	.item_cart_txt {
		line-height: 24px;
		margin-top: -8px;
		padding: 10px 20px 5px;
	}

	/* -- ここまで -- */

	.item_cart_txt a {
		font-size: 24px;
	}
	.item_price_txt {
		font-size: 36px;
	}
	.item_tax_txt {
		font-size: 24px;
	}

	/* ページャ */
	div#pagenation {
		width: 600px;
		margin: 60px 0 30px;
	}

	/* 上部設置時に必要な設定
	div.pager_erea {
		position: absolute;
		top: 250px;
	}
	*/

	div#pagenation li a {
		font-size: 24px;
	}

}