@charset "utf-8";

.process {
    margin-bottom: 5%;
    background-color: #EFF7FC;
    padding: 5% 0;
}

.process .common_tit {
    text-align: center
}

.step_list ul {
    display: flex;
    flex-wrap: wrap;
}

.step_list ul li {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 5);
    position: relative;
    font-size: 20px;
}

.step_list ul li:first-child::before {
    display: none;
}

.step_list ul li>div {
    height: 160px;
    width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.step_list ul li span {
    padding: .3rem 2rem;
    background-color: var(--color-main2);
    color: #fff;
    border-radius: 3rem;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: .5rem;
    position: relative;
}

.step_list ul li span:before {
    content: "";
    position: absolute;
    background-color: #ccc;
    width: 136%;
    height: 1px;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.step_list ul li span:after {
    content: "";
    position: absolute;
    background-image: url(/img/page/guide/next.png);
    width: 35px;
    height: 35px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: -80%;
    background-size: cover;
}

.step_list ul li:last-child span::before,
.step_list ul li:last-child span::after {
    display: none;
}

.talent_sec1 {
    margin-bottom: 5%;
    position: relative;
}

.tit_box {
    text-align: center;
}

.tit_box h5 {
    font-size: 30px
}

.tit_box h5 span {
    color: var(--color-main);
}

.tit_box p {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    font-family: var(--font-point);
}

.ideal_talent {
    margin-top: 5%;
}

.ideal_talent li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.ideal_talent li:nth-of-type(even) {
    display: flex;
    flex-direction: row-reverse;
}

.ideal_talent li+li {
    margin-top: 2rem
}

.ideal_talent .img {
    width: 50%;
    text-align: right;
}

.ideal_talent li:nth-of-type(even) .img {
    text-align: left
}

.ideal_talent .img img {}

.ideal_talent .conts {
    width: 50%;
}

.ideal_talent li:nth-of-type(even) .conts {
    text-align: right
}

.ideal_talent .conts h6 {
    font-size: 26px;
    /* color: var(--color-main2); */
    font-weight: 600;
}

.ideal_talent .conts h6 span {
    color: var(--color-main)
}

.ideal_talent .conts p {
    margin-top: 1.5rem;
    font-size: 20px;
}

.ideal_talent .conts em {
    background-color: #F4F7F8;
    padding: .5rem 3rem;
    border-radius: 2rem;
    margin-top: 2rem;
    display: inline-block;
    font-style: normal;
}

/* new */
.tit_circle {
    text-align: center;
    padding: 10rem;
}

.talent_tit {
    position: relative;
    background-color: rgb(236 110 97 / 25%);
    color: #fff;
    text-align: center;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    gap: 2rem;
    outline: 8rem solid rgb(236 110 97 / 8%);
}

.talent_tit:before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: var(--color-main);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 4px 4px 20px rgb(183 83 72 / 50%);
}

.talent_tit h5 {
    font-size: 24px
}

.talent_tit h5 strong {
    font-size: 40px;
    font-weight: 700;
}

.talent_tit p {
    line-height: 1.4;
    word-break: auto-phrase;
    opacity: .85;
}

.talent_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 2fr;
    position: absolute;
    top: 50%;
    left: 50%;
    gap: 8rem 50px;
    transform: translate(-50%, -50%);
    width: 100%;
    justify-items: center;
}

.talent_list li {
    display: flex;
    gap: 1rem;
    width: 80%;
    align-items: center;
    word-break: auto-phrase;
}

.talent_list li:nth-of-type(even) {
    display: flex;
    flex-direction: row-reverse;
}

.talent_list li:nth-of-type(3) {
    padding-right: 14rem;
    width: 100%;
}

.talent_list li:nth-of-type(4) {
    padding-left: 14rem;
    width: 100%;
}

.talent_list li:first-child span {
    background-color: #4FBBA7
}

.talent_list li:nth-of-type(2) span {
    background-color: #30AFC8
}

.talent_list li:nth-of-type(3) span {
    background-color: #4E87C6
}

.talent_list li:nth-of-type(4) span {
    background-color: #F5A43A
}

.talent_list li:nth-of-type(5) span {
    background-color: #B46EE2
}

.talent_list li:nth-of-type(6) span {
    background-color: #E9619C
}

.talent_list .li_txt {
    width: 65%;
    text-align: right;
}

.talent_list li:nth-of-type(even) .li_txt {
    text-align: left;
}

.talent_list .li_txt dt {
    color: var(--color-main2);
    font-size: 20px;
    font-family: var(--font-point);
    font-weight: 600;
    padding-bottom: 1rem;
}

.talent_list .li_txt dt span {
    color: var(--color-main);
    font-weight: 900;
    font-size: 30px;
    background: unset;
    letter-spacing: 1px;
}

.talent_list .li_img {
    width: 30%;
    text-align: center;
}

.talent_list .li_img span {
    width: 140px;
    height: 140px;
    background-color: #ddd;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.talent_list .li_img span img {
    width: 45%
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/
@media all and (max-width:1024px) {
    .tit_circle {
        padding: 2rem;
        padding-bottom: 6rem;
    }

    .talent_tit {
        outline-width: 2rem;
    }

    .talent_tit:before {}

    .talent_list {
        position: relative;
        top: 0;
        left: 0;
        gap: 2rem;
        transform: unset;
        /* grid-template-columns: 1fr; */
    }





    .talent_list li,
    .talent_list li:nth-of-type(even) {
        display: flex;
        flex-direction: row-reverse;
        /* align-items: center; */
        /* justify-content: flex-end; */
        width: 100%;
    }

    .talent_list li:nth-of-type(3),
    .talent_list li:nth-of-type(4) {
        padding: 0
    }


    .talent_list .li_img {
        width: 30%;
        height: 100%;
    }

    .talent_list .li_img span {
        width: 100px;
        height: 100px;
    }

    .talent_list .li_img span img {
        width: 50%
    }

    .talent_list .li_txt,
    .talent_list li:nth-of-type(even) .li_txt {
        width: 70%;
        text-align: left;
        height: 100%;
    }

    .talent_list .li_txt dt {
        padding-bottom: .5rem;
    }

    .step_list ul {}

    .step_list ul li p {
        word-break: keep-all;
        text-align: center;
    }

    .step_list ul li>div {
        width: 100px;
        height: 100px;
    }

    .step_list ul li span {
        padding: .5rem 1rem;
        font-size: 13px;
    }

    .step_list ul li span:after {
        width: 25px;
        height: 25px;
    }

    .step_list dl {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
    }

    .step_list dt {
        width: 25%;
        padding: 1rem 0;
        font-size: 1em;
    }

    .step_list dd {
        width: 75%;
        padding: 1rem 0;
    }

    .step_list dt span {
        display: inline-block;
        margin-right: .5rem;
    }
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width:767px) {

    p,
    li,
    dd {
        font-size: 4.5vw;
        font-size: 16px;
    }

    .talent_sec1 {
        margin-bottom: 4rem
    }

    .tit_circle {
        padding: 0;
        padding-bottom: 2rem
    }

    .talent_tit {
        width: 300px;
        height: 300px;
        outline-width: 1rem;
        gap: 1rem;
        padding: 2rem;
    }

    .talent_tit:before {
        width: 260px;
        height: 260px;
    }

    .talent_tit h5 {
        font-size: 20px
    }

    .talent_tit h5 strong {
        font-size: 30px
    }

    .talent_list {
        grid-template-columns: 1fr;
    }

    .talent_list li,
    .talent_list li:nth-of-type(even) {
        display: flex;
        flex-direction: row-reverse;
    }

    .talent_list .li_txt,
    .talent_list li:nth-of-type(even) .li_txt,
    .talent_list .li_img {
        text-align: left;
        width: 75%;
    }

    .talent_list .li_txt dt,
    .talent_list .li_txt dt span {
        font-size: 18px;
        padding-bottom: .5rem;
    }

    .talent_list .li_img {
        width: 25%;
    }

    .talent_list .li_img span {
        width: 80px;
        height: 80px;
    }

    .talent_list .li_img span img {
        width: 55%
    }

    .process {
        padding: 3rem 0
    }

    .step_list ul {
        gap: 1rem 0;
    }

    .step_list ul li {
        width: 33%;
    }

    .guide_sec1 ul li strong {
        font-size: 4.8vw
    }

    .step_list ul li p {}

    .step_list ul li>div {}

    .step_list ul li:nth-of-type(3) span:before {
        display: none
    }

    .step_list ul li span:after {
        display: none
    }

    .step_list dl {
        display: flex;
        flex-wrap: wrap;
    }

    .step_list dl dt {
        width: 100%;
        border-bottom: unset;
        padding-bottom: 0;
    }

    .step_list dl dd {
        width: 100%;
        padding-top: 0;
    }
}