@charset "utf-8";

.timeline {
    width: 96%;
    max-width: 940px;
}

.timeline-list {
    padding: 0 0;
}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-list-item .date {
    width: 20%;
    padding: 0 0 0 20px;
    color: #222222;
    font-weight: bold;
}
@media (max-width: 569px) {
    .timeline-list-item .date {
        width: 30%;
        padding: 0 20px 0 20px;
        color: #222222;
        font-weight: bold;
    }
}

.timeline-list-item .content {
    position: relative;
    width: 70%;
    padding: 0 20px 60px 30px;
    border-left: 1px solid #0081CC;
}

.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px; /*widthの半分の値を指定*/
    width: 20px;
    height: 20px;
    background-color: #0081CC;
    border-radius: 10px;
}