@charset "UTF-8";
/* CSS Document */
img{
    max-width: 100%;
    height: auto;
}
.historyTitle{
    margin-bottom: 2em;
}
.historyList{
    position: relative;
    border-left: 16px solid #c4bfb5;
    padding: 0;
    margin-left: 7px;
    margin-bottom: 9rem;
}
.historyList::before{
    content: '';
    position: absolute;
    bottom: -13px;
    left: -16px;
    width: 16px;
    clip-path: polygon(0 0, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #c4bfb5;
    aspect-ratio: 1;
}
.historyItem{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.historyItem::before{
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #c4bfb5;
    border-radius: 50%;
    top: 15px;
    left: -16px;
}
.historyItem::after{
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    border-top: 4px solid #c4bfb5;
    position: absolute;
    top: 20px;
    left: 0px;
}
.historyBox{
    padding: 1rem 0;
    width: 60%;
}
.historyTime{
    padding: 0 0 0 6rem;
    margin-bottom: 1rem;
    font-size: 1.8em;
}
.historyTime span{
    color: #333;
    font-size: 0.7em;
}
.historyText{
    padding: 0 0 0 6rem;
    font-size: 1.4rem;
    line-height: 1.75;
}
.titleBold{
    font-size: 1.2em;
    font-weight: 700;
}
.historyImg{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 35%;
}
.historyImg img{
    display: block;
}

@media(max-width: 600px){
    .historyItem{
        flex-direction: column;
    }
    .historyBox{
        width: 100%;
    }
    .historyImg{
        padding: 0 0 0 6rem;
        width: 100%;
    }
}