
/*------------------------------------------
// 2015-05-28
// 「運営会社さまへ」リンクボタン用CSS
// 
// 	<!-- 運営会社メニュー -->
// 	<div class="general-button" onclick="location.href='/monitor'">
// 	  <div class="button-content">
// 		<span class="button-text">駐車場運営会社さまへ　▶</span>
// 	  </div>
// 	</div>
// 	<!-- /運営会社メニュー -->
// 
----------------------------------------- */




@font-face {
  font-weight: normal;
  font-style: normal;
}

.icon-font {
  font-family: "LigatureSymbols";
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga"1, "dlig"1;
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga"1, "dlig"1;
  -o-font-feature-settings: "liga"1, "dlig"1;
  font-feature-settings: "liga"1, "dlig"1;
}

/*------------------------------------------
// User style start
// change
----------------------------------------- */

.general-button  {
  border-radius: 9px;
  background-color: #4385bf;
  margin:40px 0 0;
  width:100%;
}

.general-button:before  {
  border-radius: 9px;
  border-bottom: 0px solid rgba(64,130,188, 0);
  background-color: rgba(64,130,188, 0);
}

.button-content  {
	text-align:center;
	width:100%;
  border-radius: 0px 0px 9px 9px;
  padding: 4px 0;
  box-shadow: 0px 0px 0px 0px rgba(64,130,188, 0);
  color: #f9f9f9;
}

.button-text  {
  padding: 0px 21px;
  line-height: 1.6em;
  font-size: 18px;
}

.icon-font  {
  padding: 0px 21px;
  font-size: 59px;
}

/*----------------- at hover -----------------*/

.general-button:hover  {
  top: -3px;
  transition: all 32ms;
  -moz-transition: all 32ms;
  -webkit-transition: all 32ms;
  -o-transition: all 32ms;
  background-color: #4e8cc2;
}

.general-button:hover:before  {
  border-bottom: 3px solid rgba(64,130,188, 0);
  transition: all 32ms;
  -moz-transition: all 32ms;
  -webkit-transition: all 32ms;
  -o-transition: all 32ms;
}

.general-button:hover .button-content  {
  box-shadow: 0px 3px 0px 0px rgba(64,130,188, 1);
  transition: all 32ms;
  -moz-transition: all 32ms;
  -webkit-transition: all 32ms;
  -o-transition: all 32ms;
}

/*----------------- at active -----------------*/

.general-button:active  {
  background-color: #3b77ad;
  box-shadow: 0px 1.6px 0px 0px rgba(57,117,169, 1) inset;
}

.general-button:active:before  {
  top: -3px;
  padding-bottom: 3px;
  border-bottom: 0px solid rgba(64,130,188, 0);
}

.general-button:active .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(64,130,188, 0);
}

/*------------------------------------------
// User style end
----------------------------------------- */

/*------------------------------------------
// Core style start
// not change
----------------------------------------- */

.general-button  {
  display: -moz-inline-box;
  display: inline-block;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;position: relative;
  top: 0px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;

  border: 1px solid #eee;
  max-width: 700px;
  height: 40px;
  padding-top:8px;

}

.general-button:before  {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-content  {
  display: table;
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.button-text  {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
}

.icon-font  {
  display: table-cell;
  vertical-align: middle;
}

/*----------------- at hover -----------------*/

.general-button:hover  {
  transition-timing-function: ease-in-out;
}

.general-button:hover:before  {
  transition-timing-function: ease-in-out;
}

.general-button:hover .button-content  {
  transition-timing-function: ease-in-out;
}

/*----------------- at active -----------------*/

.general-button:active  {
  top: 0px;
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.general-button:active:before  {
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.general-button:active .button-content  {
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

/*------------------------------------------
// Core style end
----------------------------------------- */

/*------------------------------------------
// Touch style start
----------------------------------------- */

/*----------------- at hover -----------------*/

.touch .general-button:hover  {
  top: 0px;
  background-color: #4385bf;
}

.touch .general-button:hover:before  {
  border-bottom: 0px solid rgba(64,130,188, 0);
}

.touch .general-button:hover .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(64,130,188, 1);

}

/*----------------- at active -----------------*/

.touch .general-button:active  {
  background-color: #3b77ad;
  box-shadow: 0px 1.6px 0px 0px rgba(57,117,169, 1) inset;
}

.touch .general-button:active:before  {
  top: -3px;
  padding-bottom: 3px;
  border-bottom: 0px solid rgba(64,130,188, 0);
}

.touch .general-button:active .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(64,130,188, 0);
}

/*------------------------------------------
// Touch style end
----------------------------------------- */




/*------------------------------------------
// ブラウザ版PPPark！ボタン
----------------------------------------- */
.browserPPPark_button{
  max-width: 95%;
  width: -webkit-calc(50% + 177px);
  width: calc(50% + 177px);
  margin-top: 20px;
  padding: 0;
  clear: both;
}
.browserPPPark_button button{
  background: #4385bf;
  border: 1px solid #eee;
  border-radius: 6px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  color: white;
}