@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 ------*/

#contact {  padding: 30px 8% 0; }
#location {  padding: 30px 8%; 50px;}

#recruit {  padding: 30px 8% 450px; }
#contentskorea {  padding: 30px 8% 450px; }


/*------ 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: 100%;
}
#container form fieldset .f_wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

#container form fieldset .f_wrap .f_field {
    margin: 25px 0;
    padding-bottom: 15px;
    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: 18px;
    font-weight: 600;
    color: #3e3e3e;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}
#container form fieldset .f_wrap .f_field .f_title label i {
    font-size: 8px;
    color: var(--jg-blue);
    margin-left: 5px;
}


/*------ field body ------*/

#container form fieldset .f_wrap .f_field .f_body {
    margin: 12px 0 0;
    font-size: 14px;
}


/*------ select option ------*/

#container form fieldset .f_wrap .f_body .option {
    display: flex;
}
#container form fieldset .f_wrap .f_body .option li {
    width: 100%;
}
#container form fieldset .f_wrap .f_body .option input {
    display: none;
}
#container form fieldset .f_wrap .f_body .option label {
    cursor: pointer;
    width: 100%;
}
#container form fieldset .f_wrap .f_body .option label span {
    display: inline-block;
    width: 100%;
    height: 45px;
    font-size: 12px;
    font-weight: 700;
    color: var(--mo-txt);
    text-align: center;
    background: #fff;
    border: 1px solid var(--line-color);
    line-height: 45px;
    transition: 0.4s;
}
#container form fieldset .f_wrap .f_body .option input:checked + label span {
    color: #fff;
    background: var(--jg-blue);
    border: 1px solid 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: 12px;
    font-weight: 400;
}
#container form fieldset .f_wrap .f_body .file_box {
}
#container form fieldset .f_wrap .f_body .file_box label {
    display: inline-block;
    padding: 5px 20px;
    color: #666;
    font-size: 12px;
    line-height: normal;
    vertical-align: middle;
    background-color: #f8f8f8;
    cursor: pointer;
    border: 1px solid #666;
}
#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%;
}
#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;
    float: right;
    line-height:26px;
}
#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;
}
#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);
}
#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;
}

#container form fieldset .f_wrap.f_wrap_submit .contact_sbmBtn {
    display: inherit;
    padding: 20px;
    margin: 20px 0 0;
    background: #fff;
    font-size: 16px;
    color: var(--jg-blue);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--jg-blue);
    float: right;
}
#container form fieldset .f_wrap.f_wrap_submit .contact_sbmBtn i {
    margin-left: 60px;
}






/*------ Contact ------*/

#contact .contents_flex {
    justify-content: flex-end;
}
#contact .contents_title {
}
#contact .contents_title p {
}




/*------ Location ------*/

#location .contents_title {
}
#location .contents_flex {
    justify-content: center;
}
#location .map {
    width: 320px;
    height: 300px;
    background: var(--jg-blue);
}
#location .map .map_frame {
    border-radius: 120px 0 0 0;
}
#location .loc_add {
    font-size: 15px;
    color: var(--jg-navy);
    font-weight: 400;
    text-align: right;
    margin-top: 50px;
}


/*------ Bottom Banner ------*/

.bottom_con {
    background-image: url(/mobile/img/bottom_con.jpg);
}



/*------ Recruit ------*/

#recruit .contents_title {
}
#recruit .contents_title p {
}
#recruit .contents_title p span {
    font-size: 14px;
}


/*------ Bottom Banner ------*/

.bottom_rec {
    background-image: url(/mobile/img/bottom_rec.jpg);
}



/*------Background IMG------*/

.bg_rec {
    
}
.bg_rec img {
    position: absolute;
}
.bg_rec img:nth-child(1) {
    top: 91rem;
    right: 0;
    width: 80%;
}
.bg_rec img:nth-child(2) {
    top: 102rem;
    right: 75%;
    width: 20%;
}















