/* <!-- blog_sidebar_cta --> */
.right-side-bar-cta a {
  margin: 0;
  line-height: normal;
  text-decoration: none;
}

.right-side-bar-cta {
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.right-contact-links {
  width: 100%;
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.rcl-title {
/*   color: #0E3C82; */
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
  margin:0;
}

.btn-bg-white, .btn-bg-blue {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 14px 30px;
  /* max-width: 220px; */
  justify-content: space-between;
  border-radius: 50px;

  align-items: center;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  transition: all .3s ease;
}

.btn-bg-white p, .btn-bg-blue p{
  width: 100%;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}

.btn-bg-white:hover, .btn-bg-blue:hover {
  scale: 1.03;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* 
.btn-bg-blue {
  background: #0E3C82;
}
.btn-bg-blue p{
  color: #FFF;
}

.btn-bg-white {
  border: 1.5px solid #0E3C82;
  background: #FFF;
}
.btn-bg-white p {
    color: #0E3C82;
} */

@media(max-width: 1024px) {
  .right-side-bar-cta {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media(max-width: 768px) {
  .rcl-title {
    font-size: 16px;
  }
  .btn-bg-white p, .btn-bg-blue p {
    font-size: 16px;
  }
  .right-contact-links {
    gap:20px;
    padding: 20px;
  }