﻿@charset "UTF-8";
/* CSS Document */
/*===============================================

操作ボタン仕様

=============================================== */

/*ボタンを中央配置*/
.common_center_area{
	text-align: center;
}
/*===============================================
検索する　ボタン 幅固定 input併用
=============================================== */
/*safari仕様を消す*/

input[type="submit"] {

appearance: none;

-webkit-appearance: none;

}



.common_kensaku_btn{
  width: 120px;
  text-align: center;
	margin-top: 30px;
  padding: 8px 0;
  cursor: pointer;
	font-size: 16px;
color: #000000;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}

.common_kensaku_btn:hover{
  background-color: #5AB4BD;
  color: #ffffff;
}


/*===============================================
検索結果　次へ　前へのボタン input併用
=============================================== */
.common_heiretu_btn_flex{
	display: flex;
	 justify-content: center;/*中央並列*/
}
.common_idou_btn{
	/*width: 120px;*/
  /*width: 240px;*/
  text-align: center;
	margin-top: 0px;
	margin-right:30px;/*ボタン間隔*/
  padding: 8px 20px;
  /*cursor: pointer;*/
	font-size: 14px;
  border-radius: 4px;
  background-color: #ffffff;
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}
.common_idou_btn:last-child{
	margin-right: 0;
}
.common_idou_btn:hover{
  background-color: #5AB4BD;
  color: #ffffff;
}


/*aタグ使用の場合
----------------------------- */

/*ボタンのみ右矢印*/
.common_btn_arrow_r {
    display: block;
    width: 10px;
    height: 10px;
	margin-left: 5px;
    border-top: solid 1px;
    border-right: solid 1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*ボタンのみ左矢印*/
.common_btn_arrow_l {
    display: block;
    width: 10px;
    height: 10px;
	margin-right: 5px;
    border-top: solid 1px;
    border-right: solid 1px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*ボタン内のaタグ*/
a{
	text-decoration: none;
}
a .txt{
	display: inline-block;
}
