@charset "UTF-8";

.sec2_wrap{
    width: 80%;
    margin: 0 auto;
}
.sec2_tit_wrap{
    background-color: #001b42;
    padding: 5px;
}
.sec2_tit{
    color: #fff;
}
.sec2_tit span{
    font-weight: normal;
}
.sec2_content_box{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.sec2_content{
    width: calc(50% - 10px);
    background-color: #f0f0f0;
    margin-bottom: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.sec2_content_icon_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #001b42;
}
.sec2_content_icon{
    width: 60px;
    height: 60px;
}
.sec2_content_description span{
    font-weight: bold;
    color: #001b42;
    display: block;
}
.toggle_br{
    display: none;
}
@media only screen and (max-width: 1220px){
    .sec2_content_description{
        font-size: 14px;
    }
}
@media only screen and (max-width: 960px){
    .sec2_tit{
        font-size: 20px;
    }
}
@media only screen and (max-width: 900px){
    .sec2_tit{
        font-size: 16px;
    }
    .sec2_content_box{
        display: block;
    }
    .sec2_content{
        width: 100%;
        padding: 10px;
        height: auto;
    }
}
@media only screen and (max-width: 767px){
    .sec2_content_tit{
        font-size: 14px;
    }

    .sec2_wrap{
        width: 100%;
    }
    
    .sec2_tit_wrap{
        padding: auto;
    }
    .sec2_content{
        margin-bottom: 5px;
    }
    .sec2_content_description{
        font-size: 12px;
    }
    .sec2_content_icon{
        width: 40px;
        height: 40px;
    }
    .toggle_br{
        display: block;
    }
}