@charset "UTF-8";

/*こんなお悩みございませんか?*/
.worries_lists{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 700px;
    padding: 3rem 7rem 3rem 3rem;
    background: var(--i_sub2_color);
}
.worries_list{
    width: 100%;
    padding: 1rem 0 1rem 4rem;
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted;
}
.worries_list:before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/common/upload_data/shihousakurajp/image/20240515172119.png) center center / contain;
    top: 15px;
    left: 10px;
}
@media screen and (max-width: 900px) {
.worries_lists {
    max-width: 100%;
    padding: 2rem;
    width: auto;
}
.worries_list {
    width: 95%;
    padding: 1rem 0 1rem 2rem;
}
.worries_list:before {
    width: 15px;
    height: 15px;
    top: 18px;
    left: 0;
}
}