/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.kita_btn.full {
  padding: 8px 0px !important;
  width: 100%;
}
/*== ボタン共通設定 */
.kita_btn.border{
		border: 1px solid #143B14;
}

.kita_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 10px 40px 10px 20px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  background: url("/img/bg01.jpg");
  background-size: 100%;

}
.kita_btn:after {
  /*画像を絶対配置*/
  position: absolute;
  content: '';
  top: 15px;
  right: 10px;
  display: block;
  width: 25px; /*幅*/
  height: 30px;
  background-image: url("/img/arrow02.png");
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
}
/*ボタン内spanの形状*/
.kita_btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #143B14;
}
.kita_btn:hover span {
  color: #fff;
}
.kita_pricebtn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 10px 0px 10px 10px;
  border: 1px solid #143B14;
  text-align: left;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  background: #fff;
  width: calc(100% - 10px);
}
.kita_pricebtn:after {
  /*画像を絶対配置*/
  position: absolute;
  content: '';
  top: 18px;
  right: 10px;
  display: block;
  width: 20px; /*幅*/
  height: 30px;
  background-image: url("/img/arrow03.png");
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
}
/*ボタン内spanの形状*/
.kita_pricebtn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #143B14;
}
.kita_pricebtn:hover span {
  color: #fff;
}
/*== 背景が流れる（上から下） */
.bgtop:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #143B14; /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  transition: .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
/*hoverした際の形状*/
.bgtop:hover:before {
  height: 100%;
  background-color: #143B14;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .kita_pricebtn {
    padding: 10px 0px 10px 20px;
    width: calc(100% - 20px);
  }
  .kita_pricebtn:after {
    top: 22px;
    right: 15px;
    width: 25px; /*幅*/
  }
}