.sec1 {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sec1 .title {
    display: flex;
    align-items: center;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.sec1 .title .sq {
    width: 12px;
    height: 12px;
    background: #014099;
    margin: 0 12px 0 0;
}

.sec1 .title h5 {
    font-weight: 500;
    font-size: 16px;
    color: #014099;
}

.sec1 .year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec1 .year p {
    font-family: DIN;
    font-weight: bold;
    font-size: 399px;
    color: #014099;
    opacity: 0.1;
}

.sec1 .imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec1 .imgs .text {
    position: absolute;
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: animate8 0.8s linear forwards;
    animation-delay: 4s;
}

.sec1 .imgs .text h1 {
    font-weight: 800;
    font-size: 48px;
    color: #FFFFFF;
    margin: 0 0 30px;
}

.sec1 .imgs .text p {
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
}

.sec1 .imgs .img {
    position: absolute;
}

.sec1 .imgs .img:nth-child(1) {
    opacity: 0;
    transform: translateY(30vh) rotate(10deg);
    animation: animate1 0.6s linear forwards;
}

.sec1 .imgs .img:nth-child(2) {
    opacity: 0;
    transform: translateY(30vh) rotate(-10deg);
    animation: animate2 0.6s linear forwards;
    animation-delay: 0.7s;
}

.sec1 .imgs .img:nth-child(3) {
    opacity: 0;
    transform: translateY(30vh) rotate(8deg);
    animation: animate3 0.6s linear forwards;
    animation-delay: 1.3s;
}

.sec1 .imgs .img:nth-child(4) {
    opacity: 0;
    transform: translateY(30vh) rotate(-15deg);
    animation: animate4 0.6s linear forwards;
    animation-delay: 1.9s;
}

.sec1 .imgs .img:nth-child(5) {
    width: 100vw;
    height: 100vh;
    clip-path: inset(calc((100vh - 250px) / 2) calc((100vw - 400px) / 2));
    opacity: 0;
    transform: translateY(30vh) rotate(5deg);
    animation: 0.6s 2.5s animate5 linear forwards, 0.8s 3.2s animate7 linear forwards;
}

.sec1 .imgs .img:nth-child(5) img {
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    animation: animate6 0.8s linear forwards;
    animation-delay: 3.1s;
}

.header {
    background: unset;
}

.sec2 .wrap {
    width: 1260px;
    margin: 0 auto;
    display: flex;
}

.sec2 .wrap h1 {
    font-weight: bold;
    font-size: 48px;
    color: #1A1A1A;
    height: 100vh;
    padding: 20vh 0 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}

.sec2 .wrap .content_list {
    width: 600px;
    padding: 20vh 0 calc(80vh - 586px);
    margin: 0 180px 0 185px;
    position: relative;
}

.sec2 .wrap .content_list .box {
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 80%);
    position: absolute;
    left: 0;
    top: 0;
}

.sec2 .wrap .content_list .item {
    margin-bottom: 100px;
}

.sec2 .wrap .content_list .item .item_year {
    display: flex;
    align-items: flex-end;
    font-family: DIN;
    font-weight: bold;
    font-size: 48px;
    color: #014099;
    line-height: 1;
    margin: 0 0 30px;
}

.sec2 .wrap .content_list .item .item_year span {
    display: block;
    margin: 0 0 5px;
    font-size: 18px;
    color: #014099;
}

.sec2 .wrap .content_list .item p {
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 24px;
    margin: 0 0 30px;
}

.sec2 .wrap .content_list .item .item_img {
    width: 597px;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
}

.sec2 .wrap .content_list .item .item_img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec2 .wrap .year_list {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 100vh;
    padding: 100px 0 0 0;
}
.sec2 .wrap .year_list:after {
    content: "";
    width: 1px;
    height: 100vh;
    background: #DFDFDF;
    position: absolute;
    top: 0;
    overflow: hidden;
    left: 1px;
}
.sec2 .wrap .year_list .hidden {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 34px;
}
.sec2 .wrap .year_list p {
    font-weight: bold;
    font-size: 24px;
    color: #1A1A1A;
    line-height: 100px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.sec2 .wrap .year_list p:after {
    content: "";
    width: 2px;
    height: 30px;
    background: #014099;
    position: absolute;
    left: -33px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    transition: 0.3s;
}

.sec2 .wrap .year_list p.on {
    color: #014099;
}

.sec2 .wrap .year_list p.on:after {
    transform: translateY(-50%) scaleY(1);
}

@keyframes animate1 {
    0% {
        opacity: 0;
        transform: translateY(30vh) rotate(10deg) scale(0.9);
    }
    60% {
        transform: translateY(5vh) rotate(10deg) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0vh) rotate(5deg) scale(0.8);
    }
}

@keyframes animate2 {
    0% {
        opacity: 0;
        transform: translateY(30vh) rotate(-10deg);
    }
    60% {
        transform: translateY(5vh) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0vh) rotate(-5deg) scale(0.8);
    }
}

@keyframes animate3 {
    0% {
        opacity: 0;
        transform: translateY(30vh) rotate(8deg) scale(0.9);
    }
    60% {
        transform: translateY(6vh) rotate(8deg) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(1vh) rotate(6deg) scale(0.7);
    }
}

@keyframes animate4 {
    0% {
        opacity: 0;
        transform: translateY(30vh) rotate(-15deg) scale(0.8);
    }
    60% {
        transform: translateY(5vh) rotate(-15deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0vh) rotate(-10deg) scale(0.6);
    }
}

@keyframes animate5 {
    0% {
        opacity: 0;
        transform: translateY(30vh) rotate(5deg);
    }
    60% {
        transform: translateY(5vh) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0vh) rotate(2deg) scale(0.9);
    }
}

@keyframes animate6 {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes animate7 {
    0% {
        clip-path: inset(calc((100vh - 250px) / 2) calc((100vw - 400px) / 2));
        transform: rotate(2deg) scale(0.9);
    }
    100% {
        clip-path: inset(0 0);
        transform: rotate(0deg) scale(1);
    }
}

@keyframes animate8 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*# sourceMappingURL=events.css.map */

@media screen and (max-width: 1919px) {
    .sec1 .title{
        top: 10.4166666667vw;
    }
    .sec1 .title .sq{
        width: 0.625vw;
        height: 0.625vw;
        margin: 0px 0.625vw 0px 0px;
    }
    .sec1 .title h5{
        font-size: 0.8333333333vw;
    }
    .sec1 .year p{
        font-size: 20.78125vw;
    }
    .sec1 .imgs .text h1{
        font-size: 2.5vw;
        margin: 0px 0px 1.5625vw;
    }
    .sec1 .imgs .text p{
        font-size: 1.0416666667vw;
    }
    .sec1 .imgs .img:nth-child(5){
        clip-path: inset(calc(-6.5104166667vw + 50vh) calc(-10.4166666667vw + 50vw));
    }
    .sec2 .wrap{
        width: 65.625vw;
    }
    .sec2 .wrap h1{
        font-size: 2.5vw;
    }
    .sec2 .wrap .content_list{
        width: 31.25vw;
        padding: 20vh 0px calc(-30.5208333333vw + 80vh);
        margin: 0px 9.375vw 0px 9.6354166667vw;
    }
    .sec2 .wrap .content_list .item{
        margin-bottom: 5.2083333333vw;
    }
    .sec2 .wrap .content_list .item .item_year{
        font-size: 2.5vw;
        margin: 0px 0px 1.5625vw;
    }
    .sec2 .wrap .content_list .item .item_year span{
        margin: 0px 0px 0.2604166667vw;
        font-size: 0.9375vw;
    }
    .sec2 .wrap .content_list .item p{
        font-size: 0.8333333333vw;
        line-height: 1.25vw;
        margin: 0px 0px 1.5625vw;
    }
    .sec2 .wrap .content_list .item .item_img{
        width: 31.09375vw;
        height: 17.1875vw;
        border-radius: 1.0416666667vw;
    }
    .sec2 .wrap .year_list{
        padding: 5.2083333333vw 0px 0px;
    }
    .sec2 .wrap .year_list .hidden{
        padding: 0px 0px 0px 1.7708333333vw;
    }
    .sec2 .wrap .year_list p{
        font-size: 1.25vw;
        line-height: 5.2083333333vw;
    }
    .sec2 .wrap .year_list p::after{
        width: 0.1041666667vw;
        height: 1.5625vw;
        left: -1.71875vw;
    }
}
@media screen and (max-width: 1024px) {
    .sec1 .imgs .img {
        display: none;
    }
    .sec1 .imgs .img:nth-child(5) {
        display: block;
        animation: none;
        clip-path: unset;
        opacity: 1;
        transform: unset;
    }
    .sec1 .imgs .img:nth-child(5) img {
        animation: none;
        transform: unset;
    }
    .sec1 .imgs .text {
        opacity: 1;
        animation: none;
    }
    .sec1 .imgs .text h1 {
        font-size: 24px;
    }
    .sec1 .imgs .text p {
        font-size: 16px;
    }
    .sec2 .wrap {
        width: 90%;
        display: block;
    }
    .sec2 {
        padding: 60px 0 40px;
    }
    .sec2 .wrap .content_list {
        width: 100%;
        padding: 0 0 0 20px;
        border-left: 1px solid #ccc;
        margin: 0;
    }
    .sec2 .wrap .year_list {
        display: none;

    }
    .sec2 .wrap h1 {
        font-size: 24px;
        height: unset;
        padding: 0;
        margin-bottom: 40px;
    }
    .sec2 .wrap .content_list .item {
        margin-bottom: 40px;
    }
    .sec2 .wrap .content_list .item .item_year {
        font-size: 30px;
        margin-bottom: 20px;
        position: relative;
    }
    .sec2 .wrap .content_list .item .item_year:after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        background: #014099;
    }
    .sec2 .wrap .content_list .item .item_img {
        width: 100%;
        height: 45vw;
        border-radius: 8px;
        margin: 30px 0 0;
    }
    .sec2 .wrap .content_list .box {
        display: none;
    }
    .sec2 .wrap .content_list .item .item_year span {
        font-size: 16px;
        margin: 0 0 2px 4px;
    }
    .sec2 .wrap .content_list .item p {
        font-size: 16px;
        line-height: 1.6;
    }
}
