
#index_benefits {
}
#index_benefits_container {
}
#index_benefits_content {
    flex-direction: column;
    /*border: solid 1px black;*/
}
#index_benefits_wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    /*border: solid 1px red;*/
}
#index_benefits_title {
    /*border: solid 1px black;*/
}
#index_benefits_panels {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    /*border: solid 1px blue;*/
}
.index_benefits_panel {
    width: 85vw;
    margin: 0.7rem;
    padding: 1rem;
    background-color: var(--white);
    /*border-top: solid 0.1rem var(--primary-color);*/
    /*border-right: solid 0.1rem var(--primary-color);*/
    /*border-bottom: solid 0.1rem var(--primary-color);*/
    border-left: solid 0.3rem var(--highlight-color);
    border-radius: var(--box-border-radius);
}
.index_benefits_panel_title {
    margin: 10px 0 15px 0;
    color: var(--highlight-color);
    text-decoration: none;
    font-size: 1.37rem;
    font-weight: bold;
}
.index_benefits_panel_explain {
}
#index_benefits_footer {
    margin: 30px 0;
}
#index_benefits_footer_title {
    margin: 15px 0;
    font-size: 2rem;
    font-weight: bold;
}

@media only screen and (min-width: 600px) {
}
@media only screen and (min-width: 900px) {
    .index_benefits_panel {
        width: 35vw;
    }
}
@media only screen and (min-width: 1200px) {
    .index_benefits_panel {
        width: 20vw;
    }
}
@media only screen and (min-width: 1400px) {
}