.position{
    background: #030049;
}

.position__back{
    background: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}


.position__content{
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 100px;
}

.position__left{
    flex-shrink: 0;
}

.position__right{
    background: #F2F2F6;
    padding: 50px;
    border-radius: 20px;
    max-width: 860px;
}

.position__items{
    display: flex;
    gap: 100px;
}

.position__item{
    position: relative;
    display: flex;
    flex-direction: column;
}

.position__item:nth-of-type(1){
    width: calc(47.3% - 100px * 1 / 2);
}

.position__item:nth-of-type(2){
    width: calc(52.7% - 100px * 1 / 2);
}

.position__item:nth-of-type(1)::before{
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: #DADAE0;
    top: 0;
    right: -50px;
}

.position__img img{
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

.position__item:nth-of-type(1) img{
    aspect-ratio: 300 / 230;
}

.position__item:nth-of-type(2) img{
    aspect-ratio: 350 / 230;
}

.position__box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.position__head{
    margin-top: 30px;
}

.position__number{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.03em;
    color: #030049;
}

.position__name{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #040315;
    margin-top: 10px;
}

.position__description{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.1em;
    color: #030049;
    margin-top: 10px;
}

.position__text{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #4F4F5C;
    margin-top: 10px;
}

.position__btnarea{
    margin-top: 30px;
    text-align: left;
}

@media (max-width: 1440px) {
    .position__content{
        display: flex;
        gap: 50px;
        padding: 100px 0;
    }
    .position__right{
        padding: 20px;
    }
    
    .position__items{
        gap: 50px;
    }

    .position__item:nth-of-type(1){
        width: calc(47.3% - 50px * 1 / 2);
    }
    
    .position__item:nth-of-type(2){
        width: calc(52.7% - 50px * 1 / 2);
    }
    
    .position__item:nth-of-type(1)::before{
        position: absolute;
        content: "";
        width: 2px;
        height: 100%;
        background: #DADAE0;
        top: 0;
        right: -25px;
    }
}

@media (max-width: 1024px) {
    .position__content{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .position__items{
        flex-direction: column;
        gap: 80px;
    }

    .position__item{
        width: 100%!important;
    }

    .position__item:nth-of-type(1)::before{
        width: 100%;
        height: 2px;
        left: 0;
        top: auto;
        bottom: -40px;
    }
    .position__name{
        font-size: 22px;
        margin-top: 10px;
    }
    .position__text{
        margin-top: 15px;
    }
    .position__item:nth-of-type(1) img{
        aspect-ratio: 310 / 180;
    }
    
    .position__item:nth-of-type(2) img{
        aspect-ratio: 310 / 180;
    }
}
