section#cta {
  background: url(../images/cta_bg.png) no-repeat;
  background-size: 100%;
  padding: 50px 0;
}
@media (max-width: 768px) {
  section#cta {
    background-size: cover;
    position: relative;
    padding: 30px 0;
  }
  section#cta::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: linear-gradient(0, #fff, transparent);
    position: absolute;
    bottom: 0px;
    left: 0;
  }
  section#cta .titleBox h2 small {
    font-size: 1.8rem;
  }
}
section#cta .titleBox {
  margin-bottom: 30px;
}
section#cta .btn {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
section#cta a {
  padding: 24px 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: currentColor;
  border: 2px solid #bc9d3a;
  border-radius: 40px;
  box-shadow: 0 8px 16px rgb(34 34 34 / 50%);
  color: #bd3a46;
  height: 80px;
  max-width: 484px;
  width: 100%;
  position: relative;
  transition: 0.3s;
}
section#cta a span {
  display: block;
  text-align: center;
}
section#cta a span:first-child {
  font-size: 12px;
  font-weight: 500;
}
section#cta a span:last-child {
  font-size: 28px;
  margin-top: 2px;
}
section#cta a div {
  position: absolute;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  height: 42px;
  width: 42px;
}
section#cta a svg {
  fill: currentColor;
  width: 18px;
}
section#cta a::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background: url(../images/cta_btn_hukidshi.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -20px;
  left: -15px;
}
@media (max-width: 560px) {
  section#cta a {
    height: 64px;
    max-width: 400px;
  }
  section#cta a span:first-child {
    font-size: 10px;
  }
  section#cta a span:last-child {
    font-size: 18px;
  }
  section#cta a div {
    right: 12px;
    height: 32px;
    width: 32px;
  }
  section#cta a svg {
    width: 12px;
  }
  section#cta a::before {
    width: 64px;
    height: 64px;
  }
}
section#cta a:hover {
  transform: translateY(2px);
  color: #8f2c34;
  box-shadow: 0 0 0 #222;
}