@charset "UTF-8";
/*----------------------------------------------
// お見積りはコチラボタン
----------------------------------------------*/
/* ボタンの初期状態（画面外にある） */
.btn-estimate {
  position: fixed;
  right: -480px;
  bottom: 45px;
  width: 440px;
  height: 80px;
  background: #a2cc45;
  border-radius: 8px;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  /* 表示時のクラス */
}
@media screen and (max-width: 767px) {
  .btn-estimate {
    width: 96%;
    left: 0;
    right: -200%;
    bottom: 30px;
    margin: auto;
  }
}
.btn-estimate.show {
  right: 45px;
}
@media screen and (max-width: 767px) {
  .btn-estimate.show {
    right: 0;
  }
}
.btn-estimate > p {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn-estimate > p {
    font-size: 2rem;
  }
}
.btn-estimate > p::after {
  position: absolute;
  right: -2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2.25rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-estimate > p::after {
    height: 1.75rem;
    font-size: 1.75rem;
  }
}