@charset "UTF-8";
.help {}
.help_title {}
.help_list {
    list-style: none;
    display: flex;
}
.help_list > li {
    width: 23.5%;
    margin-left: 2.5%;
}
.help_list > li:first-child {
    margin-left: 0;
}
.help_list > li:last-child {}
.help_list > li:nth-child(2n+1) {}
.help_list > li:nth-child(n+3) {}
.help_list > li > a {}
.help_list > li > a::before {
    content: "";
}
.help_list > li > a::after {
    content: "";
}
ul.qa_questionary {
    margin-top: 1em;
}
li.qa_questionary {
    display: inline;
    margin-right: 5px;
    border: 1px solid #0099D6;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
li.qa_questionary a {
    text-decoration: none;
    font-weight: bold;
}
span.length {
    display: none;
}
@media screen and (min-width:1000px) {
    .help_list > li > a:hover {}
}
@media screen and (max-width:999px) {
    .help {}
    .help_title {}
    .help_list {}
    .help_list > li {
        width: auto;
        flex-grow: 1;
    }
    .help_list > li:first-child {}
    .help_list > li:last-child {}
    .help_list > li:nth-child(2n+1) {}
    .help_list > li:nth-child(n+3) {}
    .help_list > li > a {}
    .help_list > li > a::before {}
    .help_list > li > a::after {}
}
@media screen and (max-width:767px) {
    .help {}
    .help_title {}
    .help_list {
        flex-wrap: wrap;
    }
    .help_list > li {
        width: 49%;
        margin-left: 2%;
    }
    .help_list > li:first-child {}
    .help_list > li:last-child {}
    .help_list > li:nth-child(2n+1) {
        margin-left: 0;
    }
    .help_list > li:nth-child(n+3) {
        margin-top: 2%;
    }
    .help_list > li > a {}
    .help_list > li > a::before {}
    .help_list > li > a::after {}
    li.qa_questionary {
    	display: inline-block;
        margin-bottom: 1em;
    }
}