.companyHistoryWrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color:bisque; */
    position: relative;
    top: -46px;
}

.selectwrap{
    /* background-color: aquamarine; */
    /* padding-bottom: 62px; */
    /* width: 1280px; */
    position: relative;
    top: -113px;
    left: 536px;
}

.selectwrap > select{
    background-color:#eeeeee;
    width: 185px;
    height: 46px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    padding-left: 14px;

    appearance: none; /* 브라우저 기본 화살표 제거 */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../img/company_history/arrow_down.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;    
}


.historyWrap{
    /* background-color: chocolate; */
    width: 1280px;
    /* padding-top: 80px; */

}

.history{
    display: flex;
    justify-content: flex-start;
    /* background-color: #333D4B; */
}
.history > div{
    display: flex;
    position: relative;
}
.history > div::before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border-left: 4px solid #1B64DA;
    position: absolute;
    left: 7px;
    top: 11px;
}
.history > .historyLast::before{
    content: "";
    display: block;
    width: 1px;
    height: 13%;
    border-left: 4px solid #1B64DA;
    position: absolute;
    left: 7px;
    top: 0px;
}
/* 연도 */
.history > div > .historyYear{
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    color:#1B64DA;
    width: 123px !important;
    padding-right: 26px;
    margin-left: 46px;
}

.history > div > .historyYear::after{
content: "";
display: block;
width: 12px;
height: 12px;
background: white;
border: 3px solid #1B64DA;
border-radius: 50%;
position: absolute;
left: 0px;
top: 10px;
}


.historyLine{
    display: flex;
}
.historyLeft{
    padding-top: 4px;
}
/* 내용 */
.history > div > .historyLeft > .historyContents > .historyLine > p:first-child{
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color:#333D4B;
    width: 64px;
    padding-right: 14px;
}
.history > div > .historyLeft > .historyContents > .historyLine > p:last-child{
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color:#333D4B;
    width: 1000px;
}
.history2025{
    font-weight: 700 !important;

}

.historyContents > div:last-child{
    padding-bottom: 100px;
}

.companyHistoryWrap > div:last-child{
    padding-bottom: 100px;
}


/* 반응형------------------------------------------------ */

#pagewrap.mobile .selectwrap{
    position: static;
    margin-bottom: 50px;
    width: 90%;
}
#pagewrap.mobile .companyHistoryWrap{
    width: 90%;
    position: static;
}
#pagewrap.mobile .selectwrap > select {
    width: 100%;
    padding:0px;
    height: 120px;
    font-size: 45px;
    font-weight: 700;
    border-radius: 14px;
    padding-left: 60px;
    color:#111;
}

#pagewrap.mobile .historyWrap{
    width: 100%;
}

#pagewrap.mobile .history > div > .historyYear,
#pagewrap.mobile .history > div > .historyLeft > .historyContents > .historyLine > p:first-child,
#pagewrap.mobile .history > div > .historyLeft > .historyContents > .historyLine > p:last-child {
    font-size: 40px;
    line-height: 60px;
}
#pagewrap.mobile .history > div > .historyYear{
    line-height: 64px;
}
#pagewrap.mobile .historyLeft,
#pagewrap.mobile .historyContents,
#pagewrap.mobile .historyLine{
    width: 100%;
}
#pagewrap.mobile .historyLine > p:first-child{
    width: 12%;
}

#pagewrap.mobile .history > div > .historyLeft > .historyContents > .historyLine > p:last-child{
    width: 910px;
}

#pagewrap.mobile .history > div > .historyYear::after {
    top:24px
}
