@charset "UTF-8";

/*---選択肢フォームページ専用CSS---*/

body{
	background-image:url(../pc_img/cont_bk_01.png);
}



div.slect_txt{
	font-size: 16px;
}

div.right_imgbox_01{
	height:346px;
}

div.right_imgbox_zoom{
	position:relative;
	text-align:left;
	padding-left:30px;
	top:-335px;
}

div.right_pricebox_01{
	margin-left:20px;
	width:520px;
	height:101px;
	background-color:#CCC;
	font-size:11px;
	line-height:13px;
}

#price_txt{
	text-align:left;
	margin:5px 10px;
	padding-top:5px;
}

p.caution{
	padding-top:10px;
}


/*選択肢フォーム用*/
input[type=radio], input[type=checkbox] {
  display: none;
}

.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 10px 5px 2px;
  padding: 2px 3px 4px 18px;/*背景コントロール*/
  border-radius: 4px;
  background-color: #333333;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover, .checkbox:hover {
  background-color: #999999;
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #970E3E;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 2px;
  display: block;
  margin-top: -11px;/*ラジオボタン線*/
  width: 18px;/*ラジオボタン線*/
  height: 18px;/*ラジオボタン線*/
  border: 2px solid #bbb;
  border-radius: 3px;
  content: '';
}

.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 7px;/*●コントローラ*/
  display: block;
  margin-top: -6px;/*●コントローラ*/
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #970E3E;/*●の色*/
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
