.bl_symptomCont {
  background: #f8f5e9;
  border-radius: 8px;
  padding: 40px 0px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl_symptomSwiper {
  background: transparent;
  margin: 0;
}

.bl_symptomCategory svg {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.bl_symptomCategories {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.bl_symptomCategory {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_symptomCategory_ttl {
  font-size: 20px;
  line-height: 100%;
  color: var(--color-accent);
  margin: 0;
}

.bl_symptomCategory_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.bl_symptomCategory_list a {
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}

.bl_symptomCategory_list a img {
  border-radius: 50%;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.bl_symptomCategory_list a:hover,
.bl_symptomCategory_list a:focus {
  text-decoration: underline;
}

.bl_symptomCategory_itemTtl {
  font-weight: 400;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .bl_symptomCategories {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    gap: 0px;
    padding-bottom: 0;
  }

  .bl_symptomCategory {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px;
  }

  .bl_symptomCategory_list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 640px;
    max-width: unset;
    gap: 40px;
  }

  .bl_symptomCategory svg {
    width: 80px;
    height: 80px;
  }

  .bl_symptomCategory_list a {
    gap: 16px;
    padding-bottom: 16px;
  }

  .bl_symptomCategory_list a img {
    width: 80px;
    height: 80px;
  }

  .ly_symptoms {
    padding-block: 80px;
  }

  .bl_symptomCategory_ttl {
    flex-shrink: 0;
    width: 240px;
    font-size: 28px;
  }

  .bl_symptomCategory_list {
    /* flex-grow: 1; */
  }
}