@charset "utf-8";
.faq dt{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: var(--fs-18);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--clr-gy);
}

.faq dt::before{
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-main);
    color: var(--clr-wh);
    font-family: var(--fnt-Arial);
    font-size: var(--fs-20);
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    margin-right: 10px;
}

.faq dt p{
    width: calc(100% - 80px);
}

.faq dt i{
    width: 20px;
    height: 20px;
    background-size: 10px;
    border: 1px solid var(--clr-main);
    border-radius: 50%;
    margin-left: auto;
}

.faq dd{
    padding: 40px;
    margin-bottom: 40px;
    background: var(--clr-lgy);
    display: none;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.faq dd .bt_close{
    margin-top: 20px;
}