.faq_wrapper {
    dl {
        margin-bottom: 40px;
        dt {
            display: grid;
            grid-template-columns: 40px 1fr;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 500;
            gap: 10px;
            align-items: flex-start;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px #c4c4c4 solid;
            span{
                width: 40px;
                height: 40px;
                display: grid;
                place-content: center;
                font-size: 20px;
                background: #939393;
                color: #ffffff;
                font-family: "roboto";
                font-weight: 700;
            }
        }
        dd {
            display: grid;
            grid-template-columns: 30px 1fr;
            gap: 10px;
            margin-left: 40px;
            span{
                width: 30px;
                height: 30px;
                display: grid;
                place-content: center;
                font-size: 20px;
                border: 1px #939393 solid;
                color: #939393;
                font-family: "roboto";
                font-weight: 400;
            }
        }
    }
}