@charset "utf-8";

.left-column section {
    padding: 30px 0 0;
}
.left-column section#sub-nav{
    margin-bottom: 0;
    padding: 0;
}
.qa-list{
    margin: 20px 0;
    padding: 20px 25px;
    background: #f3f5f7;
    border-radius: 10px;
}
.qa-list li{
    position: relative;
    float: left;
    width: 33.3%;
    width: calc(100% / 3);
    padding-left: 15px;
}
.qa-list li::before{
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-top: 2px solid #024387;
    border-right: 2px solid #024387;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.faq dl{
    padding-top: 30px;
    border-top: 1px solid #CCC;
}
.faq dt{
    position: relative;
    margin-bottom: 20px;
    padding-left: 40px;
    font-weight: bold;
}
.faq dd{
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 30px 40px;
    border-bottom: 1px solid #CCC;
}
.faq dt:before,
.faq dd:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    font-weight: bold;
    text-align: center;
}
.faq dt:before{
    content: "Q";
    background: #333;
    color: #FFF;
}
.faq dd:before{
    content: "A";
    background: #e5e5e5;
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .qa-list li{
        float: none;
        width: 100%;
    }
    .qa-list li::before{
        top: 12px;
    }
    .faq dd{
        margin-bottom: 20px;
        padding: 0 0 20px 40px;
    }
    .faq dt:before{
        line-height: 2;
    }
}

/*-----------------------------------
clear
-----------------------------------*/
ul.qa-list{
    display: block;
    min-height: 1%;
}

ul.qa-list:after{
    clear: both;
    content:".";
    display: block;
    height: 0;
    visibility: hidden;
}
