/*####################################
#共通                                #
####################################*/
/*========================================================================
■詳細画面
========================================================================*/
/*基本------------------------------*/
.shopDetailBlock {
	position: relative;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
}

/*========================================================================
■画像
========================================================================*/
/*基本------------------------------*/
.shopDetailBlock .itemImages {
	float: left;
	position: relative;
	margin: 0;
	padding: 0;
	width: 250px;
	height: auto;
}
.shopDetailBlock .itemImages div.noImage,
.shopDetailBlock .itemImages a:link,
.shopDetailBlock .itemImages a:active,
.shopDetailBlock .itemImages a:visited {
	float: left;
	display: block;
	margin: 0 15px 15px 0;
	padding: 0;
	width: 71px;
	height: 71px;
	
	border: solid 1px #cc9966;
	
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.shopDetailBlock .itemImages a:hover {
	display: block;
	border-color: #eee;
}

.shopDetailBlock .itemImages div.noImage:last-child,
.shopDetailBlock .itemImages a:last-child {
	margin-right: 0;
}

.shopDetailBlock .itemImages div.noImage:first-child,
.shopDetailBlock .itemImages a:first-child {
	margin-right: 0;
	width: calc(100% - 2px);
	height: 244px;
}

/*========================================================================
■商品ステータス
========================================================================*/
/*基本------------------------------*/
.shopDetailBlock .itemStatus {
	display: block;
	position: relative;
	margin: 0 0 2em 280px;
	padding: 0;
	/*width: 385px;*/
	width: auto;
	height: auto;
}

/*基本テキスト------------------------------*/
.shopDetailBlock .itemStatus p.statusText {
	margin: 0 0 .25em 0;
	padding: 0 0 .25em 0;
	
	border-bottom: dotted 1px #ccc;
}
.shopDetailBlock .itemStatus p.statusText img {
	vertical-align: middle;
}

/*詳細テキスト------------------------------*/
.shopDetailBlock .itemStatus .detailText {
	margin: 2rem 0;
	padding: 0;
	
}
.shopDetailBlock .itemStatus .detailText strong {
	font-weight: bold;
}
.shopDetailBlock .itemStatus .detailText ol,
.shopDetailBlock .itemStatus .detailText ul {
	margin: 0;
	padding: 0 0 0 1em;
	list-style: outside;
}
.shopDetailBlock .itemStatus .detailText ol li,
.shopDetailBlock .itemStatus .detailText ul li {
	margin: 0 0 .5em 1em;
	padding: 0 0 0 0;
}
.shopDetailBlock .itemStatus .detailText ol li:last-child,
.shopDetailBlock .itemStatus .detailText ul li:last-child {
	margin-bottom: 0;
}

/*========================================================================
■バリエーション
========================================================================*/
/*基本------------------------------*/
.shopDetailBlock .itemStatus table.itemVariation {
	margin: 0 0 1em 0;
	padding: 0;
	width: 100%;
	height: auto;
	
	border-collapse: collapse;
}
.shopDetailBlock .itemStatus table.itemVariation th {
	padding: .25em;
	
	border: solid 1px #000;
	background-color: #D2B795;
	
	text-align: center;
}
.shopDetailBlock .itemStatus table.itemVariation td {
	padding: .25em;
	
	border: solid 1px #000;
}

/*種類選択------------------------------*/
.shopDetailBlock .itemStatus table.itemVariation td.select {
	width: 1em;
	text-align: center;
}

/*価格------------------------------*/
.shopDetailBlock .itemStatus table.itemVariation th.price {
	width: 10em;
}
.shopDetailBlock .itemStatus table.itemVariation td.price {
	text-align: right;
}

/*在庫------------------------------*/
.shopDetailBlock .itemStatus table.itemVariation th.num {
	width: 2.5em;
}
.shopDetailBlock .itemStatus table.itemVariation td.num {
	text-align: center;
}

/*========================================================================
■数量
========================================================================*/
/*基本------------------------------*/
.shopDetailBlock .itemStatus .selectNum {
	margin: 0 0 1em 0;
	padding: 0;
	
	text-align: right;
}

/*========================================================================
■サブミットボタン
========================================================================*/
/*基本------------------------------*/
.formBlock {
	text-align: right;
}

/*========================================================================
■戻るボタン
========================================================================*/
/*基本------------------------------*/
.formButtonBlock {
	position: relative;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
}
.formButtonBlock .formBlock {
	margin: 0;
	padding: 1em 0 0 0;
	
	border-top: dotted 1px #ccc;
	text-align: left;
}

/*####################################
#PC以上                              #
####################################*/
@media only screen and (min-width: 1025px){
	
}


/*####################################
#タブレット以上                      #
####################################*/
@media only screen and (min-width: 645px){
	
}


/*####################################
#スマートフォン以下                  #
####################################*/
@media only screen and (max-width: 644px){
	/*========================================================================
	■画像
	========================================================================*/
	/*基本------------------------------*/
	.shopDetailBlock .itemImages {
		float: none;
		width: 100%;
		height: auto;
	}
	
	/*========================================================================
	■商品ステータス
	========================================================================*/
	/*基本------------------------------*/
	.shopDetailBlock .itemStatus {
		margin: 0 0 0 0;
	}
	
	/*========================================================================
	■数量
	========================================================================*/
	/*基本------------------------------*/
	.shopDetailBlock .itemStatus .selectNum {
		text-align: center;
	}
	
	/*========================================================================
	■サブミットボタン
	========================================================================*/
	/*基本------------------------------*/
	.formBlock {
		text-align: center;
	}
}