@charset "utf-8";

.hiring_section {
    position: relative;
}
.hiring_section>img {
    width: 560px;
    position: absolute;
    right: 0%;
    top: 50%;
    opacity: 0.04;
}
.hire_sub_container {
    position: relative;
}
.hire_sub_container>img {
    opacity: .2;
    position: absolute;
    top: -82%;
}
.hire_sub {
    font-size: var(--p-font-lg);
    text-align: center;
    font-weight: 500;
}
.hire_sub>span {
    display: block;
}
.hireBack{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hireBack>.innerWrap>p{
    text-align: center;
    z-index: 999;
}
.hireBack>img{
    width: 80vw;
    position: absolute;
    top: -78%;
    opacity: 0.2;
}
.circle_wrap {
    display: flex;
    justify-content: space-around;
    padding: var(--pd-sm) 0;
}
.circle {
    width: 300px;
    height: 300px;
    background: #FCFCFF;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.circle>img {
    width: 120px;
}
.circle>.contents_para_md {
    margin: var(--mg-xxs) 0;
}
.mission_wrap {
    display: flex;
    justify-content: space-around;
}
.mission_wrap>div:first-child>p>span {
    display: block;
}
.benefit_wrap{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}
.benefit_list{
    display: flex;
    align-items: center;
}
.benefit_list>img{
    width: 72px;
}
.benefit_list>p{
    font-size: var(--p-font-sm);
    padding: 0 var(--pd-xxxs);
}
.benefit_list_last {
    padding: var(--pd-sm) 0;
}
.hire_list{
    padding: var(--pd-xxxs) 0;    
    margin: var(--mg-xxxs) 0;    
    border-bottom: 1px solid #1a1a4d;
}
.hire_list_con{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hire_list_con:hover {
    cursor: url('../images/icon/cursor.png'), auto;
}
.hire_btn{    
    background: var(--color-navy-1);
    box-sizing: border-box;
    border-radius: 32px;
    padding: var(--pd-xxs) var(--pd-sm);
    text-align: center;
}
.hire_btn::after {
    content: '지원하기';
    font-size: var(--h4-font-size);
    color: var(--color-light-1);
}
.hire_wrap>.hire_list>a:hover>.hire_list_con>.hire_btn{
    background: var(--color-orange-1);
}

/*--------------------------------------------------
	Responsive
---------------------------------------------------*/
@media screen and (max-width: 1023px){
    .hiring_section>img {
        width: 420px;
    }
    .hire_sub_container>img {
        top: -120%;
    }
    .hire_sub {
        font-size: var(--p-font-md);
    }
    .circle_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .mission_wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .mission_wrap>div:last-child {
        width: 100%;
        text-align: right;
    }
    .benefit_wrap{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .benefit_list_last {
        padding: var(--pd-xxs) 0;
    }
    .benefit_list>img{
        width: 48px;
    }
    .benefit_list>p{
        font-size: var(--p-font-xs);
        padding: 0 var(--pd-xxxs);
    }
    .hire_btn::after {
        content: 'GO';
    }
}
@media screen and (max-width: 767px){
    .hiring_section>img {
        width: 300px;
        top: 56%;
    }
    .hire_sub_container>img {
        background-size: cover;
        top: -74%;
    }
    .hire_sub {
        font-size: var(--p-font-xs);
    }
    .hire_sub>span {
        display: inline;
    }
    .mission_wrap>div:first-child>p>span {
        display: inline;
    }
    .benefit_wrap{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }
    .benefit_list_last {
        padding: var(--pd-xxxs) 0;
    }
    .hire_btn{    
        padding: var(--pd-xxxs) var(--pd-xs);
        border-radius: 24px;
    }
}