@charset "utf-8";
/*faq :S*/
.faq_list {
    height:auto;
    border-bottom: 1px solid #b5b5b5;
    font-size:16px;
}
.faq_list  .qusition{
    position: relative;
    padding: 20px 0 20px 60px;
    cursor:pointer;
    background:#f8f8f8;
    font-weight:400;
}
.faq_list.selected .qusition{
    font-family:'noto5';
}
.faq_list  .qusition:before{
    position: absolute;
    left: 10px;
    top: calc(50% - 14px);
    width: 28px;
    height: 28px;
    display: block;
    background: #173168;
    color: #ffffff;
    content: 'Q';
    border-radius: 100%;
    padding-left: 9px;
    line-height: 25.5px;
    box-sizing: border-box;
    font-size: 14px;
}

.faq_list  .qusition > em{
    font-size: 26px;
    position: absolute;
    right: 10px;
    top: calc(50% - 13px);
    color:#8a8a8a;
}
.faq_list.selected  .qusition > em{
    color:#333;
}

.faq_list  .answer{
    position:relative;
    display:none;
    overflow:hidden;
    box-sizing:border-box;
    border-top:1px dashed #cccccc;
}

.faq_list  .answer:before{
    content: 'A';
    display:block;
    position:absolute;
    width:28px;
    height:25px;
    line-height:25px;
    left:10px;
    top:21px;
    text-align:center;
    font-family:tahoma;
    font-weight:600;
    border-radius:5px;
    color:#000;
    background: #ffd538;
}

.faq_list  .answer  p {
    font-family:'noto3';
    margin-bottom:0;
    margin-left:60px;
    padding: 20px 10px 20px 0;
    word-break: keep-all;
}
.faq_list  .answer  p  strong{
    display: block;
    margin:0 0 10px 0;
}
.faq_list:first-child .answer{
    display:block;
}

/*faq :E*/
