
.after-merit__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 48px;
}

.after-merit__item {
  max-width: 341px;
  width: 30%;
  margin-bottom: 82px;
}

.after-merit__item_img {
  position: relative;
  margin-bottom: 16px;
}

.after-merit__item_img img {
  width: 100%;
  object-fit: cover;
}

.after-merit__item_num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24px;
  left: -8px;
  width: 56px;
  height: 56px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-rubik);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.after-merit__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: 12px;
}

.after-merit__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%;
}

.after-merit__item_content .emphasis {
  color: var(--base-color);
}

.after-safeCase {
  margin-top: 48px;
}

.after-safeCase__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.after-safeCase__item {
  max-width: 540px;
  width: 49%;
  background-color: var(--global-bg-color);
  border-radius: 8px;
  padding: 24px 20px;
  margin-bottom: 24px;
}

.after-safeCase__item_top {
  margin-bottom: 24px;
}

.after-safeCase__item_top-title {
  color: var(--base-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 8px;
}

.after-safeCase__item_top-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%;
}

.after-safeCase__item_table {
  border-radius: 5px;
  background-color: var(--white);
  padding: 20px;
  padding-bottom: 0;
}

.after-safeCase__item_table-field {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--border-color);
}

.after-safeCase__item_table-field:last-child {
  border-bottom: none;
}

.after-safeCase__item_table-label, .after-safeCase__item_table-value {
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.after-safeCase__item_table-label {
  color: var(--light-text-color);
  width: 64px;
  margin-right: 16px;
}

.after-safeCase__item_table-value {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; 
}

.after-safeCase__item_table-value img {
  margin: 0 8px;
}

.after-safeCase__item_table-value .middle-num, .after-safeCase__item_table-value .large-orange-num {
  font-family: var(--font-rubik);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.after-safeCase__item_table-value .middle-num {
  font-size: 24px;
}

.after-safeCase__item_table-value .large-orange-num {
  color: var(--base-color);
  font-size: 40px;
  margin-bottom: 8px;
}

.after-safeCase__item_table-value .orange {
  color: var(--base-color);
}

@media screen and (max-width: 767px) {
  .after-merit__list {
    display: block;
    margin-top: 32px;
  }

  .after-merit__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .after-merit__item_num {
    top: -6px;
  }

  .after-safeCase__list {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .after-safeCase__item {
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
    padding: 20px 16px;
  }

  .after-safeCase__item_table {
    padding: 12px;
  }

  .after-safeCase__item_table-field {
    display: block;
  }

  .after-safeCase__item_table-field:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}