@charset "utf-8";
/* --------------------------------------------------
**
** company.css
** version : 0.1
** date : 2015/09/11
**
** -------------------------------------------------- */

dl {
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}
.glossary dt {
    float: left;
    width: 23%;
    clear: both;
    margin: 1em 0;
    padding: 3px 2% 15px 0;
    position: relative;
}
.glossary dd {
    float: right;
    width: 72%;
    margin: 1em 0;
    padding: 3px 0 15px 3%;
    box-sizing: border-box;
}
.glossary:before {
    content: "";
    width: 1px;
    position: absolute;
    border-left: 1px solid #ccc;
    top: 0;
    bottom: 0;
    left: 25%;
}
.glossary dt:before {
    content: "";
    width: 30px;
    position: absolute;
    border-top: 1px solid #999;
    top: 15px;
    right: -15px;
}
.glossary dt:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #3396d1;
    border: 1px solid #3396d1;
    position: absolute;
    border-radius: 6px;
    top: 12px;
    right: -4px;
}