.carsensor-point {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  margin-bottom: 80px;
}

.carsensor-point__item {
  max-width: 341px;
  width: 30%;
  border-radius: 8px;
  background-color: var(--global-bg-color);
  padding: 24px 33px 40px 33px;
  position: relative;
}

.carsensor-point__item_num {
  color: var(--base-color);
  font-family: var(--font-rubik);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  position: absolute;
  top: 24px;
  left: 32px;
}

.carsensor-point__item_icon {
  width: 171px;
  height: 171px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 24px;
}

.carsensor-point__item_icon img {
  width: 80px;
  height: 80px;
}

.carsensor-point__item_title {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 20px;
  text-align: center;
}

.carsensor-point__item_content {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.carsensor-evaluation {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}

.carsensor-evaluation__list {
  max-width: 664px;
  width: 60%;
}

.carsensor-evaluation__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border-color);
}

.carsensor-evaluation__item_top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.carsensor-evaluation__item_top-num {
  color: var(--base-color);
  font-family: var(--font-rubik);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-right: 12px;
}

.carsensor-evaluation__item_top-title {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; 
}

.carsensor-evaluation__item_content {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.carsensor-evaluation__item_content .star {
  color: var(--base-color);
}

.carsensor-evaluation__img {
  max-width: 400px;
  width: 37%;
  height: 100%;
}

.carsensor-evaluation__img img {
  width: 100%;
}

.carsensor-evaluation__img_note {
  color: var(--light-text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-top: 12px;
}

.carsensor-evaluation__img_note a {
  color: var(--blue);
  font-family: var(--font-zen-kaku-new-type);
  text-decoration-line: underline;
}

@media screen and (max-width: 767px) {
  .carsensor-point {
    margin-top: 32px;
    display: block;
  }
  
  .carsensor-point__item {
    width: 100%;
    margin-bottom: 12px;
  }

  .carsensor-point__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .carsensor-point__item_num {
    font-size: 24px;
    left: auto;
    top: 16px;
    right: 20px;
  }

  .carsensor-point__item_icon {
    width: 96px;
    height: 96px;
    margin: 0;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .carsensor-point__item_icon img {
    width: 48px;
    height: 48px;
  }

  .carsensor-point__item_content {
    font-size: 14px;
  }

  .carsensor-evaluation {
    display: block;
    margin-top: 32px;
  }

  .carsensor-evaluation__list {
    max-width: 100%;
    width: 100%;
  }

  .carsensor-evaluation__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .carsensor-evaluation__item_top-title {
    font-size: 20px;
  }

  .carsensor-evaluation__item_top-num {
    font-size: 16px;
  }

  .carsensor-evaluation__item_content {
    font-size: 14px;
  }

  .carsensor-evaluation__img {
    max-width: 311px;
    width: 100%;
  }
}
