.section-point {
  background: linear-gradient(0deg,rgba(233, 228, 228, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(233, 228, 228, 1) 100%);
}
.section-point .flex-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 38px;
  margin-top: 26px;
}
.section-point .flex-wrap .flex-item {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 26px;
  width: 33%;
  max-width: 310px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #DADADA;
  border-radius: 6px;
}
.section-point .flex-wrap .flex-item .sp-text-wrap {
  display: contents;
}
.section-point .flex-wrap .flex-item .title-wrap {
  position: relative;
  padding-bottom: 22px;
  font-size: 26px;
  font-weight: bold;
  color: #e73817;
  order: 1;
}
.section-point .flex-wrap .flex-item .title-wrap::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, rgba(246, 139, 153, 1) 0%, rgba(255, 88, 40, 1) 50%, rgba(251, 204, 141, 1) 100%);
}
.section-point .flex-wrap .flex-item .title-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: url(/service/net/course/images_v10/dec-triangle-grad.svg) no-repeat center center / contain;
  width: 14px;
  height: 10px;
}
.section-point .flex-wrap .flex-item .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 16px;
  height: 178px;
  overflow: hidden;
  border-radius: 8px;
  order: 2;
}
.section-point .flex-wrap .flex-item .text-wrap {
  order: 3;
}
.section-point .flex-wrap .flex-item .text-wrap p {
  margin-bottom: 0;
  font-size: 18px;
}
.section-point .flex-wrap .flex-item .text-wrap p span {
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1045px) {
  .section-point .flex-wrap {
    gap: 10px 2px;
  }
}

@media screen and (max-width: 767px) {
  .section-point .flex-wrap {
    gap: 10px;
  }
  .section-point .flex-wrap .flex-item {
    display: flex;
    flex-direction: row;
    padding: 10px 0 10px 10px;
    width: 327px;
    height: 146px;
    max-width: none;
  }
  .section-point .flex-wrap .flex-item .img-wrap {
    margin: 0;
    width: 130px; 
    height: auto;
    order: 1;
  }
  .section-point .flex-wrap .flex-item .img-wrap img {
    border-radius: 4px;
  }
  .section-point .flex-wrap .flex-item .sp-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 130px);
    order: 2;
  }
  .section-point .flex-wrap .flex-item .title-wrap {
    padding-bottom: 12px;
    font-size: 20px;
    order: 2;
  }
  .section-point .flex-wrap .flex-item .title-wrap::before {
    bottom: 8px;
    width: 150px;
    height: 2px;
  }
  .section-point .flex-wrap .flex-item .title-wrap::after {
    width: 12px;
    height: 8px;
  }
  .section-point .flex-wrap .flex-item .text-wrap {
    order: 3;
  }
  .section-point .flex-wrap .flex-item .text-wrap p {
    font-size: 14px;
  }
}

