/*----------------------
商品エリア
----------------------*/

.product_cnt{
	margin-top: 50px;
	width:80%;
	margin:50px auto 0;
}
@media screen and (max-width: 768px) {
	.product_cnt{
		width:100%;
	}
}
.product_cnt .product_image{
	text-align: center;
}
.product_cnt img{
	max-width: 350px;
	width: 100%;
}

.product_cnt table{
	margin: 0 auto;
	font-size: 18px;
	max-width: 350px;
}

@media screen and (max-width: 768px) {
	.product_cnt table{
		width:100%;
		font-size: 14px;
	}
}

.product_cnt table th{
	text-align: left;
	padding: 20px 0 10px 0 ;
}

.product_cnt table td{
	padding: 20px 0 10px 25px ;
}
@media screen and (max-width: 768px) {
	.product_cnt table th{
		padding: 0 0 10px 0 ;
		white-space: nowrap;
	}
	
	.product_cnt table td{
		padding: 0 0 10px 16px ;
	}
}
.product_cnt .shortRed{
	color:#ea6363;
	font-size: small;
	font-weight: normal;
}

/* 購入数のプラスマイナスボタンの調整 */
.product_cnt .spinner_btn{
	font-size:16px;
	text-align: center;
	vertical-align: middle;
	width: 40px;
	height:40px;
	cursor:pointer;
	/* padding: 5px; */
    background-color: #ddd;
	border: 1px solid #333;
	border-radius: 5px;
	display: inline-block;
	line-height: 40px;
}

/* 購入数のフォームサイズ */
.product_cnt #product1_amount,
.product_cnt #product2_amount,
.product_cnt #product3_amount,
.product_cnt #product4_amount{
	width: 50px;
	height:40px;
}
.product_cnt select{
	width: 190px;
	height: 40px;
}

/* セレクトボックスのエラーメッセージ */
.errorMessage{
	display: none;
	font-size: 12px;
	color:#ea6363;
}

/*---------------------
ボタンの設定 
---------------------*/

.product_cnt .getbasket{
	margin-top: 32px;
}

@media screen and (max-width: 768px) {
	.product_cnt .getbasket{
		margin-top: 16px;
	}
}

/* ボタンを画像にする場合 */
.product_cnt .getbasket input[type="image"]{
	width: 100%;
	max-width: 350px;
	transition: all 0.9s;
	text-align: center;
	display: block;
	margin: 0 auto;
}
.product_cnt .getbasket input[type="image"]:hover{
	opacity: 0.8;
}

/* ボタンデザインをCSSで設定する場合 */
.addCart {
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	padding:5px 30px !important;
	background:#333;/* ボタンの色指定*/
	color:#fff;/* ボタンの文字色指定*/
	font-size:14px;
	line-height:2;
	font-weight:bold;
	cursor:pointer;
}

