.story2{
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.story2_article{
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.story2_article_text{
    box-sizing: border-box;
    margin-bottom: 40px;
}
.story2_article_text_title{
    font-size: 1.5em;
    margin: 30px 0;
    text-align: start;
    color: #444a4d;
    position: relative;
}
.story2_article_text_title::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background-color: #db0925;
    bottom: -15px;
    left: 0;
    z-index: 300;
}
.story2_article_text_description{
    height: 100%;
    color: #636363;
    font-size: 1.1em;
    line-height: 1.3em;
    margin: 0;
}
.story2_article_image{
    width: 100%;
    max-width: 400px;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}
@media only screen and (min-width: 800px) {
    .story2{
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .story2_article{
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 80px;
    }
    .story2_article_text{
        margin-bottom: 0;
    }
    .story2_article_reverse{
        flex-direction: row-reverse;

    }
    .story2_article_text{
        width: 48%;
    }
    .story2_article_image{
        box-sizing: border-box;
        width: 48%;
    }
    
}
@media only screen and (min-width: 1000px) {
    .story2_article_text_title{
        font-size: 1.8em;
    }
    .story2_article_text_description{
        font-size: 1.2em;
        line-height: 1.4em;
    }
}