.bnr-btn {
  max-width: 1045px;
  margin: auto;
  margin-top: 110px;
  height: 137px;
}
.bnr-btn a {
  background: #e8478b;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease; /* hover時のスムーズな変化を追加 */
}

.bnr-btn a::after {
  content: "";
  position: absolute;
  right: 55px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41.19' height='25.174'%3E%3Cpath d='M29.219 24.955a.837.837 0 01-.047-1.166l9.353-10.363-37.718-.054a.826.826 0 010-1.652l37.741.055-9.379-10.392a.837.837 0 01.047-1.166.8.8 0 011.143.049l10.615 11.761a.84.84 0 010 1.119L30.359 24.907a.8.8 0 01-1.143.047z' fill='%23e8478b'/%3E%3C/svg%3E")
    right 5px center no-repeat;
  filter: brightness(0) invert(1);
  width: 50px;
  height: 50px;
  transition: right 0.3s ease; /* rightの変化をスムーズに */
}
.bnr-btn a:hover {
  opacity: 0.8;
}
.bnr-btn a:hover::after {
  right: 40px;
}
.bnr-btn a p {
  position: relative;
}
.bnr-btn a p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  background: url(/images/contact/calculator-icon.png);
  background-size: cover;
  width: 30px;
  height: 42px;
  left: -60px;
}
.bnr-btn .is_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .bnr-btn a {
    font-size: 20px;
  }
  .bnr-btn a::after {
    width: 25px;
    height: 14px;
    right: 14px;
  }
  .bnr-btn a p::before {
    width: 20px;
    height: 28px;
    left: -36px;
  }
  .bnr-btn .is_sp {
    display: block;
  }
}
