.page-title span::before {
  background-image: url(../images/top/icon-safe.svg);
  filter: brightness(100);
}

.insurance {
  margin: 64px auto 0;
  max-width: 828px;
}

.insurance__title {
  font-size: 20px;
  line-height: 1.5;
  color: #1c085d;
  padding-bottom: 8px;
  border-bottom: 3px solid #1c085d;
}

@media (min-width: 440px) {
  .page-title .sp {
    display: none;
  }
}

.insurance__subtitle {
  margin: 8px 0;
  font-size: 18px;
  line-height: 28px;
  color: #303030;
}

.insurance__subtitle:last-of-type {
  margin-top: 40px;
}

.insurance__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insurance__list-item {
  font-size: 16px;
  line-height: 28px;
  gap: 5px;
  display: flex;
  align-items: flex-start;
}

.insurance__list-item::before {
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(../images/common/checkbox.svg);
  margin-top: 3px;
}

.insurance__list-item--comment::before {
  display: none;
}

.insurance__cases .insurance__subtitle {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

.insurance__cases .insurance__subtitle::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/icon-attention.svg);
}

.insurance__cases-list {
  border-radius: 6px;
  background-color: #fff0f0;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: 246px;
  gap: 24px;
  justify-content: center;
  width: 100%;
  border: 1px solid #bc0000;
  margin-bottom: 40px;
}

.insurance__case {
  width: 246px;
  /* max-height: fit-content; */
  background-color: #bc0000;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 19.5px;
  text-align: center;
}

@media (min-width: 600px) {
  .insurance__cases-list {
    grid-template-columns: 246px 246px;
  }

  .insurance__case {
    margin: 0;
  }
}

@media (min-width: 900px) {
  .insurance__cases-list {
    grid-template-columns: 246px 246px 246px;
  }
}

.download-btn {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  gap: 8px;
  padding-left: 8px;
  text-decoration: underline;
}

.download-btn::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
}

@media (min-width: 768px) {
  .insurance {
    margin: 80px auto 0;
  }

  .insurance__title {
    font-size: 25px;
    line-height: 37px;
  }

  .insurance__subtitle {
    margin: 16px 0;
    font-size: 20px;
    line-height: 30px;
  }

  .insurance__subtitle:last-of-type {
    margin-top: 32px;
  }

  .insurance__cases-list {
    margin-bottom: 62px;
    padding: 35px 45px;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }

  .insurance__case {
    width: auto;
  }
}