/*-----------------------------------------------------------------------------
	ひかりあづみ野 料金シミュレーション
--------------------------------------------------------------------------------*/

/*----------------------------------------------------
	選択表示
----------------------------------------------------*/
.select {
 	width: 150px;
    background-color: #01B3C4;
	float: left;	
	margin: 0 auto;
	padding: 8px 0;
	color: white;
	font-weight: bold;
	text-align: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.select_non {
 	width: 150px;
    background-color: #C0C0C0;
	padding: 8px 0;
	color: white;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

/*----------------------------------------------------
	 計算するボタン
----------------------------------------------------*/
button#submit_button {
    display: inline-block;
    padding: 7px 20px;
	border-radius: 50px;
    text-decoration: none;
    color: #FFF;
    background-color: #FF9600;
	border: 0;
	font-size: 1.8em;
	font-weight: bold;
	padding: 20px 60px;

outline: none;
}

#submit_button:hover {
    background-color: #FFB400;
}

#submit_button:active {
    transform: translateY(1px); 
    -ms-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

