@charset "UTF-8";

h3 {
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin: 50px 0 50px;
    letter-spacing: 2px;
    color: #434242;
}

dl {
    color: #434242;
    margin-bottom: 100px;
}

dt {
    position: relative;
    font-weight: normal;
    font-size: 1em;
    line-height: 28px;
    border-top: solid #70707038 1px;
    padding: 25px 0 10px 17%;
}

dt::before {
    position: absolute;
    content: "Q";
    font-size: 25px;
    top: 25px;
    left: 10%;
}

dd {
    position: relative;
    width: 90%;
    font-weight: normal;
    font-size: 1em;
    line-height: 28px;
    border: solid #BACEA1 1px;
    box-shadow: 12px 10px 0 #BACEA1;
    padding: 20px 0 20px 12%;
    margin: 15px auto 25px;
}

dd::before {
    position: absolute;
    content: "A";
    font-size: 25px;
    top: 20px;
    left: 5.5%;
}

@media screen and (max-width: 430px) {

    h3 {
        font-size: 25px;
    }

    dl {
        margin-bottom: 80px;
    }

    dt {
        font-size: 14px;
        line-height: 24px;
        padding: 20px 5px 8px 13%;
    }
    
    dt::before {
        font-size: 20px;
        top: 20px;
        left: 5%;
    }
    
    dd {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        padding: 20px 5px 20px 13%;
    }
    
    dd::before {
        font-size: 20px;
        left: 5%;
    }

}