.part_wrap{

}
.part_wrap .part{
    display: flex;
}
.part_wrap .part .year{
    width: 80px;
    letter-spacing: 0px;
    color: #129299;
    font-size: 30px;
    font-weight: 800;
}
.part_wrap .part:nth-of-type(1) .year{
    color: #129299;
}
.part_wrap .part:nth-of-type(2) .year{
    color: #00BC70;
}
.part_wrap .part:nth-of-type(3) .year{
    color: #7EC37C;
}
.part_wrap .part:nth-of-type(4) .year{
    color: #B4CF65;
}
.part_wrap .part .year .in{
    height: 36px;
}
.part_wrap .part .deco{
    margin-left: 140px;
    margin-right: 95px;
    width: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.part_wrap .part .deco::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: orange;
}
.part_wrap .part:nth-of-type(1) .deco::before{
    background-color: #129299;
    top: 15px;
    height: calc(100% - 15px);
}
.part_wrap .part:nth-of-type(2) .deco::before{
    background-color: #00BC70;
}
.part_wrap .part:nth-of-type(3) .deco::before{
    background-color: #7EC37C;
}
.part_wrap .part:nth-of-type(4) .deco::before{
    background-color: #B4CF65;
    height: 15px;
    flex: none;
}
.part_wrap .part .deco .dot_wrap{
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.part_wrap .part .deco .dot_wrap .dot{
    aspect-ratio: 1/1;
    width: 15px;
    height: 15px;
    background-color: orangered;
    border-radius: 50%;
    z-index: 1;
}
.part_wrap .part:nth-of-type(1) .deco .dot_wrap .dot{background-color: #129299;}
.part_wrap .part:nth-of-type(2) .deco .dot_wrap .dot{background-color: #00BC70;}
.part_wrap .part:nth-of-type(3) .deco .dot_wrap .dot{background-color: #7EC37C;}
.part_wrap .part:nth-of-type(4) .deco .dot_wrap .dot{background-color: #B4CF65;}
.part_wrap .part .deco .line_wrap{
    width: 1px;
    flex: 1;
}
.part_wrap .part .cont{
    flex: 1;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.part_wrap .part .cont .box{

}
.part_wrap .part .cont .box:last-of-type{
    padding-bottom: 60px;
    border-bottom: 1px solid #EEEEEE;
}
.part_wrap .part:last-of-type .cont .box:last-of-type{
    border-bottom: 0;
}
.part_wrap .part .cont .box .month{
    letter-spacing: 0px;
    color: #1E1E1E;
    font-size: 24px;
    font-weight: 700;
    height: 36px;
    display: flex;
    align-items: center;
}
.part_wrap .part .cont .box .con{
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.part_wrap .part .cont .box .con .num{
    width: 150px;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    border-radius: 800px;
    background-color: #F5F5F5;
    letter-spacing: 0px;
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 17px 13px 23px;
    justify-content: center;
    text-align: center;
}
.part_wrap .part .cont .box .con .text{
    line-height: 1.5;
    padding-top: 9px;
}

@media (max-width: 1800px) {

}
@media (max-width: 1340px) {

}
@media (max-width: 1280px) {
    .part_wrap .part .deco{
        margin-left: 40px;
        margin-right: 40px;
    }
}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {
    .part_wrap .part{
        flex-direction: column;
    }
    .part_wrap .part .deco{
        display: none;
    }
    .part_wrap .part .year .in{
        margin-bottom: 50px;
    }
    .part_wrap .part .cont{
        padding-bottom: 30px;
    }
    .part_wrap .part .cont .box .con{
        flex-direction: column;
        gap: 0;
    }
    .part_wrap .part .cont .box .con .num{
        width: auto;
        min-width: auto;
        padding: 10px 15px;
        font-size: 15px;
        border-radius: 0;
    }
}
@media (max-width: 425px) {

}
@media (max-width: 375px) {

}