@charset "utf-8";
/* CSS Document */

/* PCフォーム関連 */

#form{
	width:750px;
	background-color:#FFF;
	margin:0 auto;
}

.order_title {
  width:730px;
  margin:0 auto;
  background-color:#009438;
  font-size:18px;
  font-weight:bold;
  text-align:center;
  color:#fff;
  padding:10px;
}

table {
 border-collapse: collapse;
 border: 1px solid #909090;
}
th,td{
 border: 1px solid #909090;
 text-align:left;
}

.form1{
  margin:30px auto;
  width:700px;
}
.form table {
	border-collapse:collapse;
}
.form1 thead tr td div {
  padding:10px;
  background-color:#FC0;
  font-size:18px;
  font-weight:bold;
}
.form1 * tr th,td{
  padding:8px;
  font-size:14px;
}
.form1 tbody tr th {
  background-color:#fff1D2;
  text-align:center;
  font-weight:normal;
}
.form1 tbody tr td {
  background-color:#fff;
}

/* SPフォーム関連 */

#form_sp{
	width:100%;
	background-color:#FFF;
	margin:0 auto;
}

.order_title_sp {
  background-color:#009438;
  font-size:18px;
  font-weight:bold;	
  color:#fff;
  padding-bottom: 0.5em;
  padding-top: 0.5em;	
}

table {
 border-collapse: collapse;
 border: 1px solid #909090;
}
th,td{
 border: 1px solid #909090;
 text-align:left;
}

.form1_sp{
	margin:2%;
	width:96%;
}
.form table {
	border-collapse:collapse;
}
.form1_sp thead tr td div {
  padding:0.3em;
  background-color:#FC0;
  font-size:1.2em;
  font-weight:bold;
}
.form1_sp * tr th,td{
  padding:3%;
  font-size:1em;
}
.form1_sp tbody tr th {
  background-color:#fff1D2;
  text-align:center;
  font-weight:normal;
}
.form1_sp tbody tr td {
  background-color:#fff;
}
.form1_sp table tbody tr td {
	padding: 0.5em;
}



/* ラジオボタンの見た目 */
.form1 input[type=radio] {
  display: none;
}

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

.order_radio_btn {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 20px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.order_radio_btn:hover {
  background-color: #e2edd7;
}
.order_radio_btn:hover:after {
  border-color: #53b300;
}
.order_radio_btn:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}

.order_radio_btn:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #53b300;
  content: '';
  opacity: 0;
}
.form1 input[type=radio]:checked + .order_radio_btn:before {
  opacity: 1;
}
.form1_sp input[type=radio]:checked + .order_radio_btn:before {
  opacity: 1;
}

span.recommend{
background-color: #ffff66;
    color: #ff3333;
}