.Cbox {
	padding: 10px 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.Cbox-Input {
	margin: 0 5px;
	width: 0;
	opacity: 0;
}
.Cbox-Input:checked + .Cbox-Dummy::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/common/check.svg") no-repeat center;
	background-size: contain;
}
.Cbox-Dummy {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border: solid 2px #888888;
	background: #ffffff;
}
.Cbox-Text {
	margin-left:20px;
}
/* for mobile */
@media only screen and (min-width: 0px) and (max-width: 1150px) {
.Cbox-Dummy {
	width: 28px;
	height: 28px;
}
}

/*-------------------------------------------------------------------------------------*/

.item_wrapp {
	display:grid;
	grid-template-rows: 70px 1fr auto 60px 50px 80px;
	grid-template-columns: 330px 1fr;
	grid-template-areas:
	"title title"
	"pict  memo"
	"pict  customize"
	"pict  price"
	"pict  nouki"
	"pict  cartin";
	align-items: center;
}

.item_title{
	grid-area: title;
	font-size:120%;
	font-weight:500;
	align-self: start;
}

.item_pict{
	grid-area: pict;
}

.item_memo{
	grid-area: memo;
}

.item_customize{
	grid-area: customize;
	background-color: #f0f0f0;
}

.item_price{
	grid-area: price;
	align-self: end;
	font-size:120%;
}

.item_nouki{
	grid-area: nouki;
	font-size:90%;
}

.item_cartin{
	grid-area: cartin;
}
/* for mobile */
@media only screen and (min-width: 0px) and (max-width: 1150px) {
	.item_wrapp {
		grid-template-rows: 80px 1fr auto 80px 70px 80px;
	}
}

/*-------------------------------------------------------------------------------------*/

.button_cartin{
	width:170px;
	text-decoration:none;
	display:block;
	text-align:center;
	padding:4px;
	color:#fff;
	background-color:#052B46;
	font-weight:400;
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.button_cartin:hover {
	color:#fff;
	background-color: #0A578F;
}
/* for mobile */
@media only screen and (min-width: 0px) and (max-width: 1150px) {
.button_cartin{
	width:250px;
}	
}

/*-------------------------------------------------------------------------------------*/
.paramsel_wrap{
	width:650px;
	margin:0 auto;
	padding:0 0 40px;
	background-color:#f8f8f8;
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	text-align:center;
}

.paramsel{
	display:flex;
	width:650px;
	border-bottom:solid 3px #fff;
}

.paramsel_title{
	height:50px;
	width:120px;
	padding:10px;
	font-size:90%;
	font-weight:400;
	background-color:#e3e3e3;
}

.paramsel_item{
    width:460px;
	height:50px;
	padding:10px 20px;
	display:flex;
}

.paramsel_item input[type="radio"] {
    display: none;
}

.paramsel_item label{
	position: relative;
	width:150px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right:3px;
	border-radius:5px;
}

.paramsel_item input[type="radio"] + label {/* 未選択*/
	border:solid 3px #f8f8f8;
  }

.paramsel_item input[type="radio"]:checked + label {/* 選択 */
	border:solid 3px #e3e3e3;
}
/*-------------------------------------------------------------------------------------*/
.circle {
  background: #000;
  border-radius: 50%;
  height: 1em;
  width: 1em;
  margin-right:8px;
}
.square {
  background: #000;
  border-radius: 0%;
  height: 1em;
  width: 1em;
  margin-right:8px;
}

.ume{
	width:320px;
	height:1px;
}