@font-face {
  font-family: Optima;
  src: url(../font/Optima.woff);
}
h3.lead-ttl {
  font-family: Optima, sans-serif;
  font-size: 44px !important;
  color: #1889bc !important;
}
@media screen and (max-width: 768px) {
  h3.lead-ttl {
    font-size: 32px !important;
  }
}

.plan-new-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 500px;
  max-width: 100%;
  margin: auto;
}
.plan-new-block__item {
  width: calc(50% - 20px);
  text-align: center;
  font-weight: bold;
  color: #1d72c7;
  line-height: 1.3;
  position: relative;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
}
@media screen and (max-width: 480px) {
  .plan-new-block__item {
    width: 70%;
  }
}
.plan-new-block__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #eaf5ff;
  z-index: -1;
  border-radius: 50%;
}