@charset "UTF-8";

/* コンテンツ */
#detailArea{
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
#detailL{
	width: 600px;
}
#detailR{
	width: 400px;
}
#detailR .tit{
	padding: 0 0 25px;
	font-size: 2.5rem;
	color: #b49e53;
}
#detailR .txt{
	padding: 0 0 60px;
	font-size: 1.6rem;
	line-height: 180%;
}
@media screen and (max-width:667px){
	#detailArea{
		display: block;
	}
	#detailL{
		width: 100%;
	}
	#detailR{
		width: 100%;
	}
	#detailR .tit{
		padding: 0 0 10px;
		font-size: 2.0rem;
	}
	#detailR .txt{
		padding: 0 0 30px;
		font-size: 1.4rem;
		line-height: 160%;
	}
}


/* 画像リスト */
#listDetailImg li{
	padding: 0 0 30px;
}
#listDetailImg li:last-of-type{
	padding: 0 0 0;
}
#listDetailImg li img{
	width: 100%;
}
@media screen and (max-width:667px){
	#listDetailImg li{
		padding: 0 0 10px;
	}
	#listDetailImg li:last-of-type{
		padding: 0 0 20px;
	}
}


/* 表 */
.dtHead{
	font-size: 2.0rem;
}
.dtPrice{
	font-size: 2.0rem;
	font-weight: bold;
}
.listDetail dt{
	width: 40%;
	position: relative;
}
.listDetail dt::after{
	content:'：';
	position: absolute;
	right: 10px;
}
.listDetail dd{
	width: 60%;
}
.listDetail dt,
.listDetail dd{
	margin: 0 0 5px;
	float: left;
}
.listDetail dt:last-of-type,
.listDetail dd:last-of-type{
	margin: 0 0 10px;
}
.quantity{
	display: -ms-flex;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 15px 0 0;
	position: relative;
}
.quantity::after{
	font-family:"Font Awesome 5 Free";
	content:'\f078';
	font-size: 1.0rem;
	color: #555555;
	font-weight:900;
	position:absolute;
	top:50%;
	right:10px;
	-webkit-transform:translate(0, -50%);
	transform:translate(0, -50%);
}
.quantity span{
	width: 50px;
}
@media screen and (max-width:667px){
	.dtHead{
		font-size: 1.5rem;
	}
	.dtPrice{
		font-size: 1.8rem;
	}
	.listDetail dt::after{
		right: 5px;
	}
	.listDetail dt:last-of-type,
	.listDetail dd:last-of-type{
		margin: 0 0 5px;
	}
}


/* セレクトエリアの設定 */
select{
	width: calc(100% - 50px);
	cursor: pointer;
	border: 1px solid #BBBBBB;
	font-size:1.4rem;
	padding: 7px 25px 7px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-size: 16px 8px;
	z-index: 1;
}
select::-ms-expand{
	display:none;/*IE10以降*/
}
select:disabled{
	border:1px solid #DDDDDD;
	color:#CCCCCC;
	box-shadow:none;
}
@media screen and (max-width:667px){
	select{
		width: 85%;
	}
}

/* 備考 */
.remarksArea{
	padding: 40px;
	margin: 60px 0 0;
	border: 1px solid #bec6c6;
}
.remarksArea dl{
	display: -ms-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.remarksArea dl dt{
	width: 20%;
	position: relative;
}
.remarksArea dl dt::after{
	content:'：';
	position: absolute;
	right: 10px;
}
.remarksArea dl dd{
	width: 80%;
}
.remarksArea dl dt,
.remarksArea dl dd{
	margin: 0 0 10px;
}
.remarksArea dl dt:last-of-type,
.remarksArea dl dd:last-of-type{
	margin: 0 0 0;
}
@media screen and (max-width:667px){
	.remarksArea{
		padding: 20px;
		margin: 30px 0 0;	
	}
	.remarksArea dl dt{
		width: 20%;
	}
}

