@media screen and (min-width:1024px){
    .note{
        font-size: 16px;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .note{
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .note{
        font-size: 14px;
    }
}

.guides{
    padding: 5px 20px;
}
.guides ul{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 70px;
}
.guides ul li{
    padding-top: 2px;
    padding-bottom: 2px;
}
.item{
    font-weight: bold;
}
.note{
    color: rgb(13, 76, 146);
}

/* Q&A */
.qa{
    margin: 15px 20px;
    padding: 5px 20px;
    border: 1px solid rgb(207, 245, 231);
    border-radius: 5px;
}
.question, 
.answer{
    margin-left: 25px;
    position: relative;
}
.question::before{
    position: absolute;
    content: "Q.";
    top: 5px;
    left: -25px;
}
.answer::before{
    position: absolute;
    content: "A.";
    top: 5px;
    left: -25px;
}
