#company .profile {
    border-top:dashed 1px var(--color-lightgray);
    margin-top:var(--section-space);
}
#company .profile div {
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:var(--gap);
    border-bottom:dashed 1px var(--color-lightgray);
    margin:0;
    padding:var(--padding);
}
#company .profile div dt {
    color:var(--main-color);
    width:160px;
    text-align:left;
}
#company .profile div dd {
    flex:1;
    text-align:left;
}

#company .chronicle {
    margin-top:var(--section-space);
}
#company .chronicle > div {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    gap:40px;
}
#company .chronicle > div dt {
    color:var(--main-color);
    width:100px;
    font-size:1.4em;
    line-height:1;
}
#company .chronicle > div dd {
    flex:1;
    line-height:1.4;
}
#company .chronicle > div:not(:last-of-type) dd::before {
    content:'';
    width:1px;
    height:calc(100% + 37px);
    background:var(--main-color);
    position:absolute;
    left:-16px;
    top:0.5em;
}
#company .chronicle > div dd div::before {
    content:'';
    width:9px;
    height:9px;
    border-radius:100%;
    background:var(--main-color);
    position:absolute;
    left:-20px;
    top:0.5em;
    translate:0 -50%;
}
#company .chronicle > div dd div {
    display:flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap:30px;
    font-weight:bold;
    text-align:left;
}
#company .chronicle > div dd span {
    color:var(--main-color);
    width:60px;
    text-align:right;
}
#company .chronicle > div dd div p {
    flex:1;
    margin:0;
}


@media (max-width: 920px) {}
@media (max-width: 720px) {
    #company .chronicle > div {
        gap:20px;
    }
    #company .chronicle > div dt {
        width:70px;
        font-size:1em;
        line-height:1.3;
    }
    #company .chronicle > div dd {
        line-height:1.3;
    }
    #company .chronicle > div dd span {
        width:50px;
    }
    #company .chronicle > div:not(:last-of-type) dd::before {
        left:-6px;
    }
    #company .chronicle > div dd div::before {
        left:-10px;
    }
    #company .chronicle > div dd div {
        gap:10px;
        font-size:0.8em;
    }
}
@media (max-width: 520px) {
    #company .profile div {
        flex-direction: column;
        align-items: flex-start;
        gap:10px;
        padding-inline:0;
    }
    #company .profile div dd {
        font-size:0.8em;
    }
}
