@charset "utf-8";

/*
 * File : withus.css
 * SUMMARY:
 * 1) BOX MARGIN
 * 2) Field Setting
 * 3) Form

 * 4) Contact - #contact
 * 5) Location - #location
 * 6) Bottom Banner - .bottom_con

 * 5) Recruit - #recruit
 * 6) Bottom Banner - .bottom_rec

 * 8) Background IMG - .bg_main
*/


/*------ BOX MARGIN ------*/

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
     

#contact {  padding: 40px 0 0; }
#location {  padding: 40px 0 80px; }

#recruit {  padding: 40px 0 710px; }
#contentskorea {  padding: 40px 0 710px; }

/*------ Field Setting ------*/

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    background: none;
}
legend {
    display: none;
}
input {
	
    border: 0;
    margin: 0;
    padding: 0;
}
input:focus {
    outline:none;
}
input::placeholder {
    color: var(--line-color);
}

textarea {
    border: 0;
    resize: none !important;
}
textarea::placeholder {
    color: var(--line-color);
}
select {
    width: 100%;
    border: 0;
    border-radius: 0;
}




/*------ Form ------*/

#container form {
    width: 1170px;
}
#container form fieldset .f_wrap {
    position: relative;
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
}
#container form fieldset .f_wrap.f_wrap_whole {
    width: 100%;
}
#container form fieldset .f_wrap.f_wrap_left {
    padding-right: 24px;
}
#container form fieldset .f_wrap.f_wrap_right {
    padding-left: 24px;
}

#container form fieldset .f_wrap .f_field {
    margin: 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-color);
}

#line-bottom {
    margin: 25px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line-color);
}


/*------ field title ------*/

#container form fieldset .f_wrap .f_field .f_title {}
#container form fieldset .f_wrap .f_field .f_title.required {}
#container form fieldset .f_wrap .f_field .f_title label {
    font-size: 22px;
    font-weight: 600;
    color: #3e3e3e;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap .f_field .f_title label i {
    font-size: 10px;
    color: var(--jg-blue);
    margin-left: 5px;
    /* font-family: 'Pretendard-Regular'; */
}


/*------ field body ------*/

#container form fieldset .f_wrap .f_field .f_body {
    margin: 12px 0 0;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}


/*------ f_wrap_whole ------*/

#container form fieldset .f_wrap.f_wrap_whole .f_field {
    margin: 20px 0;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#container form fieldset .f_wrap.f_wrap_whole .f_field .f_body {
    margin: 0;
}


/*------ select option ------*/

#container form fieldset .f_wrap .f_body .option {
    width: 100%;
}
#container form fieldset .f_wrap .f_body .option li {
    float: left;
}
#container form fieldset .f_wrap .f_body .option input {
    display: none;
}
#container form fieldset .f_wrap .f_body .option label {
    cursor: pointer;
}
#container form fieldset .f_wrap .f_body .option label span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
    color: var(--jg-blue);
    text-align: center;
    width: 110px;
    background: #fff;
    border: 1px solid var(--jg-blue);
    border-radius: 20px;
    padding: 7px 0;
    margin-left: 18px;
    transition: 0.3s;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap .f_body .option label span:hover {
    color: #fff;
    background: var(--jg-blue);
}
#container form fieldset .f_wrap .f_body .option input:checked + label span {
    color: #fff;
    background: var(--jg-blue);
}
#container form fieldset .f_wrap .f_body .textarea {
    width: 100%;
    height: 222px;
    outline: none;
}


/*------ file option ------*/

#container form fieldset .f_wrap .f_body.f_body_file {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0;
}
#container form fieldset .f_wrap .f_body.f_body_file p {
    font-size: 13px;
    color: #777;
    font-weight: 400;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap .f_body .file_box {
}
#container form fieldset .f_wrap .f_body .file_box label {
    display: inline-block;
    padding: 5px 48px;
    color: #666;
    font-size: 12px;
    line-height: normal;
    vertical-align: middle;
    background-color: #f8f8f8;
    cursor: pointer;
    border: 1px solid #666;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap .f_body .file_box input[type="file"] {  /* 파일 필드 숨기기 */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0;

}


/*------ submit area ------*/

#container form fieldset .f_wrap.f_wrap_submit {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
#container form fieldset .f_wrap.f_wrap_submit .f_field {
    margin: 20px 0;
    border: 0;
    display: flex;
    align-items: flex-start;
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal {
    
}
#container form fieldset .f_wrap.f_wrap_submit .agree_check {
    font-size: 13px;
    letter-spacing: -0.05em;
    font-weight: 400;
    color: #3e3e3e;
    display: flex;
    align-items: center;
    margin-right: 24px;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap.f_wrap_submit .agree_check input {
    margin-right: 5px;
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .agreeBtn {
    font-size: 13px;
    border: 0;;
	background: none;
    letter-spacing: -0.05em;
    color: #3e3e3e;
    font-weight: 400;
    padding: 0;
    text-decoration: underline;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .agreeBtn:hover {
    color: var(--jg-blue);
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal {
    
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal-dialog {
    width: 415px;
    height: 415px;
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal-dialog.modal-dialog-scrollable .modal-content {
    height: 415px;
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal-header .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--jg-blue);
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal-header .btn-close {
    border: 1px solid var(--line-color);
}
#container form fieldset .f_wrap.f_wrap_submit .agreeModal .modal-body {
    font-size: 12px;
    font-weight: 400;
    color: #3e3e3e;
    letter-spacing: -0.05em;
    text-align: left;
    font-family: 'Pretendard-Regular';
}

#container form fieldset .f_wrap.f_wrap_submit .contact_sbmBtn {
    width: 190px;
    height: 56px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 56px;
    border: 1px solid var(--jg-blue);
    background: var(--jg-blue);
    color: #fff;
    transition: 0.4s;
    font-family: 'Pretendard-Regular';
}
#container form fieldset .f_wrap.f_wrap_submit .contact_sbmBtn i {
    margin-left: 26px;
}
#container form fieldset .f_wrap.f_wrap_submit .contact_sbmBtn:hover {
    background: #fff;
    color: var(--jg-blue);
    border-radius: 28px;
}







/*------ Contact ------*/

#contact .contents_flex {
    justify-content: flex-end;
}
#contact .contents_title {
    margin-bottom: 50px;
    /* margin-bottom: 150px; */

}
#contact .contents_title p {
    margin-top: 40px;
}




/*------ Location ------*/

#location .contents_title {
    margin-bottom: 50px;
}
#location .map {
    width: 100%;
    height: 435px;
    background: var(--jg-blue);
}
#location .map .map_frame {
    border-radius: 180px 0 0 0;
}
#location .loc_add {
    font-size: 16px;
    color: var(--txt);
    font-weight: 400;
    text-align: right;
    margin-top: 50px;
    font-family: 'Pretendard-Regular';
}


/*------ Bottom Banner ------*/

.bottom_con {
    background-image: url(/img/bottom_con.jpg);
}



/*------ Recruit ------*/

#recruit .contents_title {
    margin-bottom: 50px;
    /* margin-bottom: 150px; */

}
#recruit .contents_title p {
    margin-top: 40px;
}
#recruit .contents_title p span {
    font-size: 14px;
}

#recruit .contents_flex {
    justify-content: flex-end;
}


/*------ Bottom Banner ------*/

.bottom_rec {
    background-image: url(/img/bottom_rec.jpg);
}



/*------Background IMG------*/

.bg_rec {
    
}
.bg_rec img {
    position: absolute;
}
.bg_rec img:nth-child(1) {
    top: 72rem;
    /* top: 84rem; */
    right: 0;
    width: 1280px;
}
.bg_rec img:nth-child(2) {
    top: 98rem;
    right: 21rem;
    width: 97px;
}















