.befaft {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}
.befaft_arrow {
  display: inline-block;
  width: 25px;
  height: 25px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: rgba(var(--green-rgb));
  @media screen and (max-width: 767px){
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
}
.cmn_borderbox {
  width: 75%;
  padding: 30px;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  @media screen and (max-width: 767px){
    width: 90%;
    padding: 20px 5%;
  }
}
.cmn_borderbox--title {
  font-size: var(--font-20);
  display: inline-block;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid rgba(var(--green-rgb));
}
