@charset "UTF-8";
header {
  position: relative;
}

.price__col {
  display: flex;
  gap: 100px;
}

.price__heading-xl {
  font-size: 36.4px;
  color: #444;
  margin-bottom: 55px;
  text-align: center;
}

.price__lead {
  font-size: 16px;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 50px;
}

.price__lead--large {
  color: #3A48A6;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
}

.price__lead--point {
  -webkit-text-emphasis:filled;
}

.price__col-item {
  width: 100%;
}

.price__col-form {
  width: 100%;
}

.price__plan {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 50px;
  margin-bottom: 50px;
}

.price__plan-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 40px 10px;
  border: 2px solid #DBDBDB;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  color: #3A48A6;
  font-weight: 700;
}

.price__plan-text {
  font-size: 14px;
  color: #444;
}

.price__plan-item:last-of-type:before {
  position: absolute;
  top: calc(50% - 2.5px);
  left: -40px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #444;
}

.price__plan-item:last-of-type::after {
  position: absolute;
  top: calc(50% - 15px);
  left: -27px;
  content: '';
  width: 5px;
  height: 30px;
  background-color: #444;
}

.price__box {
  background-color: #F5F6FA;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__heading-l {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  color: #444;
  margin-bottom: 35px;
}

.price__check-item {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  padding-left: 30px;
}

.price__check-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #4D61DE;
}

.price__check-item::after {
  position: absolute;
  top: 3px;
  left: 5px;
  content: '';
  width: 10px;
  height: 8px;
  transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.price__check-item + .price__check-item {
  margin-top: 10px;
}

.price__heading-l-lead {
  position: relative;
  color: #3A48A6;
  font-size: 16px;
  padding: 0 10px 0 20px;
  margin: auto auto 10px;
}

.price__heading-l-lead::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 2px;
  height: 18px;
  background-color: #3A48A6;
  transform: rotate(-15deg);
}
.price__heading-l-lead::after {
  position: absolute;
  bottom: -2px;
  right: 0;
  content: '';
  width: 2px;
  height: 18px;
  background-color: #3A48A6;
  transform: rotate(15deg);
}

.price__text {
  text-align: center;
  margin-bottom: 40px;
}

.price__privacymark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price__privacymark p {
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  .price__plan {
    display: block;
  }
  .price__plan-item:last-of-type:before {
    top: -30px;
    left: calc(50% - 15px);
  }
  .price__plan-item:last-of-type::after {
    top: -42px;
    left: calc(50% - 2.5px);
  }
  .price__plan-item + .price__plan-item {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .price__col {
    display: block;
  }
  .price__col-item {
    margin-bottom: 50px;
  }
  .price__heading-l {
    font-size: 21px;
    margin-bottom: 30px;
  }
  .price__lead--large {
    font-size: 20px;
  }
  .price__plan {
    margin-bottom: 40px;
  }
  .price__plan-item {
    font-size: 24px;
  }
  .price__lead {
    margin-bottom: 40px;
  }
  .price__heading-xl {
    margin-bottom: 30px;
  }
}