@charset "UTF-8";
.notes_wrap {
    display: flex;
    max-width: 900px;
    flex-direction: column;
    width: 100%;
    margin: auto;
}
.notes_item {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 3rem;
}
@media screen and (max-width:480px) {
    .notes_item {
        padding: .1rem;
        margin-top: 50px;
    }
}
.notes_item h4 {
    display: flex;
    height: auto;
    justify-content: center;
    padding-bottom: 1rem;
    color: #2F1F8A;
    border-bottom: #2F1F8A solid 5px;
    font-size: 1.8rem;
    font-weight: 600;
}
@media screen and (max-width:480px) {
    .notes_item h4 {
        padding-bottom: 0;
        font-size: 1.125rem;
    }
}
.timeline {
    align-self: flex-end;
    color: dodgerblue;
    font-size: 1rem;
}
@media screen and (max-width:480px) {
    .timeline {
        font-size: .875rem;
    }
}
.notes_item p {
    flex-basis: 100%;
    max-width: 100%;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 2rem;
    align-self: center;
}
@media screen and (max-width:480px) {
    .notes_item p {
        font-size: .8125rem;
    }
}
.notes_item p em {
    font-weight: 600;
}
a.anchor {
    z-index: -1;
    display: block;
    width: 100%;
    margin-top: -150px;
    padding-top: 150px;
}
a.__return_btn{
    display: flex;
    align-self: center;
    background: #ccc;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
}