@charset "UTF-8";

#worries + section ul {
    width: fit-content;
    border: 8px solid var(--i_btn_color);
    border-radius: 8px;
    padding: 0 1.2rem;
    margin: 0 auto;
    font-size: 1.8rem;
}
#worries + section ul li {
    list-style: none;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #000;
    display: flex;
    align-items: center;
    gap: 1rem;
}
#worries + section ul li:last-child {
    border-bottom: none;
}
#worries + section ul li::before {
  content: '';
  display: block;
  top: .5em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
    #worries + section ul {
        padding: 0 1.8rem;
        font-size: 1.6rem;
    }
}