@charset "utf-8";
/* CSS Document */

#fixedCalc,
#fixedCalc * { box-sizing: border-box; }

#fixedCalc {
	margin: 0 0 14px;
	border: 1px solid #8bda69;
}

#fixedCalc_head {
	color: #67c041;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	padding: 12px 0 17px;
}

#fixedCalc_head span {
	display: inline-block;
	height: 52px;
	line-height: 60px;
	vertical-align: top;
}

#fixedCalc_head:before {
	content: '';
	display: inline-block;
	width: 50px;
	height: 52px;
	background: url(../images/fixed_calc/fixed_calc.png) no-repeat;
	margin: 0 20px 0 0;
}

#fixedCalc_form  {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	background: #fcfcfc;
	padding: 35px;
}

.fixedCalc_form__cell {
	float: left;
	width: 30%;
	margin: 0 0 0 5%;
}
.fixedCalc_form__cell:first-child { margin: 0; }

.fixedCalc_form__label {
	font-size: 16px;
	color: #838383;
	margin: 0 0 10px;
}

.fixedCalc_form__value input[type=text] {
	width: 100%;
	font-size: 21px;
	text-align: center;
	border: 1px solid #ededed;
	border-radius: 5px;
	background: #fff;
	outline: none;
	box-shadow: none;
	padding: 10px 20px;
}

#fixedCalc_form__submit {
	font-size: 20px;
	font-weight: 700;
	color: #74c553;
	text-align: center;
	display: block;
	background-color: #edf6e8;
	border: 1px dashed #8bda69;
	overflow: hidden;
	margin: 15px 0 0;
	padding: 19px 20px;
	border-radius: 5px;
	float: left;
	width: 100%;
	cursor: pointer;
}

#fixedCalc_result {
	padding: 30px;
	background-color: #fcfcfc;
	display: none;
}
.fixedCalc_result__head {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin: 0 0 10px;
}
.fixedCalc_result__body {
	width: 380px;
	margin: 0 auto;
}

.fixedCalc_result__td {
	float: left;
	width: 50%;
}

.fixedCalc_result__td:last-child {
	text-align: right;
}

.fixedCalc_result__th {
	border-bottom: 1px solid #eeeeee;
}

.fixedCalc_result__th .fixedCalc_result__td {
	font-size: 14px;
	color: #838383;
	padding: 5px;
}

.fixedCalc_result__tr {
	border-bottom: 1px solid #eeeeee;
	background: #fff;
}
.fixedCalc_result__tr .fixedCalc_result__td {
	color: #000;
	font-size: 18px;
	padding: 7px 5px;
}

@media screen and (max-width: 768px) {
	.fixedCalc_form__cell {
		float: none;
		width: auto;
		margin: 0 0 15px;
	}
	
	.fixedCalc_form__cell:first-child { margin: 0 0 15px; }
	
	.fixedCalc_form__label {
		margin: 0 0 5px 0;
	}
}

@media screen and (max-width: 480px) {
	#fixedCalc_form { padding: 35px 15px; }
	.fixedCalc_result__body {
		width: 280px;
	}
	#fixedCalc_result { padding: 30px 15px;	}
}
