@charset "UTF-8";

.loan_box {
	text-align: center;
}

.loan_box h2{
	text-align: left;
}

.loan_box dl{
	display: inline-block;
	background: #f5f5f5;
		border: 1px solid #999;
	padding:  6px ;
}

.loan_box dl dt{
	font-weight: normal;
	font-size: .8rem;
	text-align: center;
	margin-bottom: 5px;

}

.loan_box dl dd{
	text-align: center;
	font-size: .9rem;
}

.loan_box p{
	margin: 8px;
	font-size: .9rem;
	color: #666;
}


.loan_box input[type="number"],
.loan_box select,
.loan_cl button {
 appearance: none;	
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


.loan_box input[type="number"]
 {
	border: #999 solid 1px;
  background: #fff;
  font-size: 1rem;
  width: 6rem;
  padding: 12px 15px;
  margin-right: .5rem;
  transition: 0.8s;
  border-radius: 0;
}

.loan_box input[type="number"]:focus{
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



.loan_cl input[type="button"]{
	font-size: 1.1rem;
	display: block;
	color: #fff;
	background: #05284d;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 12px 24px;
	margin: 1rem auto;
}

/*セレクトボックスのショートタグにlabelタグでclassをselにすれば矢印が出る*/
label.sel {
	position: relative;
	display: block;
	width: 7rem;
	border-radius: 5px;
	background: #fff;
}

label.sel:before{
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 0;
	height: 0;
	margin: -2px 0 0 0;
	border: 5px solid transparent;
	border-top: 7px solid #333;
	}

.loan_box select{
	border: #999 solid 1px;
  background: #fff;
  font-size: 1rem;
  width: 100%;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
}


.loan_cl {
	text-align: center;
}

.loan_cl h3{
	font-size: 1.2rem;
	margin: 0 auto;
}

.loan_cl p {
	color: red;
}

.loan_cl p span#cl_month{
	font-size: 1.5rem;
	color: red;
}

.loan_cl  .bouns_box{
	font-size: .9rem;
	margin-top: .5rem;
	margin-bottom: .5rem;
}


/*スマートフォン*/
@media only screen and (max-width: 736px) {/*スマホStrat*/




.loan_box dl{
	width: 10rem;
	display: inline-block;
	background: #f5f5f5;
		border: 1px solid #999;
	padding:  6px ;
}

}/*スマホEND*/

@media only screen and  (min-width: 737px) and (max-width: 768px) {/*タブレットstart*/




}/*タブレットEND*/

