@charset "utf-8";
/*------------------------------------- Reset -------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body,div,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
pre,abbr,address,cite,code,del,dfn,img,ins,kbd,q,samp,small,var,
i,dl,dt,dd,ol,ul,li,fieldset,form,legend,table,caption,tbody,tfoot,thead,tr,
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,audio,video {
    font-family: "Roboto", sans-serif;
    word-break: keep-all;
    -webkit-text-size-adjust: none;
    word-wrap: break-word;
    box-sizing: border-box;
    color: var(--font1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
}

html, body {
    height: 100%;
    /* min-height: 100%; */
}

body {
    position: relative;
    width: 100%;
    overflow: overlay;
}
body.on {
    height: auto;
}
body.scroll {
    overflow: overlay;
    overflow: -webkit-overlay;
}

ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    box-sizing: border-box;
    color: inherit;
    transform : rotate(0.04deg); 
}
a:focus {
    outline: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6,p {
    /* display: flex;
    align-items: center; */
    transform : rotate(0.04deg); 
    -webkit-font-smoothing: antialiased;
}
p {
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    transform : rotate(0.04deg); 
}

textarea {
    width: 100%;
    resize: none;
    padding: 10px;
    border: 1px solid var(--line1);
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    transform : rotate(0.04deg);
}
textarea:focus {
    border-color: var(--point8);
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto;
    height: auto;
    border: none;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    transform : rotate(0.04deg);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=number] {
    -moz-appearance: textfield;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
	display:none;
}
input::placeholder {
    font-size: 16px;
    color: var(--font7);
}
input::file-selector-button { 
    display: none; 
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {

    input[type=checkbox],
    input[type=radio] {
        --active: #ff7311;
        --active-inner: #fff;
        --focus: 1px rgb(255, 117, 18, 0.5);
        --border: #e8e8e8;
        --border-hover: #ff7311;
        --background: #fff;
        --disabled: #f6f8ff;
        --disabled-inner: #e1e6f9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b);
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    input[type=checkbox]:after,
    input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    input[type=checkbox]:checked,
    input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: 0.3s;
        --d-t: 0.6s;
        --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
    }

    input[type=checkbox]:disabled,
    input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    input[type=checkbox]:disabled:checked,
    input[type=radio]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    input[type=checkbox]:disabled+label,
    input[type=radio]:disabled+label {
        cursor: not-allowed;
    }

    input[type=checkbox]:hover:not(:checked):not(:disabled),
    input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    input[type=checkbox]:focus,
    input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    input[type=checkbox]:not(.switch),
    input[type=radio]:not(.switch) {
        width: 21px;
    }

    input[type=checkbox]:not(.switch):after,
    input[type=radio]:not(.switch):after {
        opacity: var(--o, 0);
    }

    input[type=checkbox]:not(.switch):checked,
    input[type=radio]:not(.switch):checked {
        --o: 1;
    }

    input[type=checkbox]+label,
    input[type=radio]+label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        /* margin-left: 4px; */
    }

    input[type=checkbox]:not(.switch) {
        border-radius: 6px;
    }

    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 6px;
        top: 2px;
        transform: rotate(var(--r, 20deg));
    }

    input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }

    input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }

    input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }

    input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }

    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }

    input[type=radio] {
        border-radius: 50%;
    }

    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }

    input[type=radio]:checked {
        --s: 0.5;
    }
}
:focus {
    outline: none;
    filter: none;
}
::placeholder {
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
}

button {
    cursor: pointer;
    height: auto;
    max-height: 34px;
    box-sizing: border-box;
    padding: 10px 20px;
    line-height: 19px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--font1);
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    background-color: var(--point3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    transform : rotate(0.04deg);
}

/* img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
} */
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-thumb {
    height: 5%;
    border: 3px solid transparent;
    background-clip: padding-box;
    background-color: var(--point7);
}
::-webkit-scrollbar-track {
    border: none;
    background-color: none;
}
table {
    border: none;
    border-collapse: collapse;
    border-spacing: unset;
}
/*------------------------------------- //Reset -------------------------------------*/

/*------------------------------------- common css -------------------------------------*/
:root {
    --font1: #333333;
    --font2: #909090;
    --font3: #595959;
    --font4: #033333;
    --font5: #444444;
    --font6: #bfbfbf;
    --font7: #aaaaaa;
    --font8: #ababab;
    --font9: #1d1d1d;
    --font10: #acacac;
    --font11: #404040;

    --point1: #f96822;
    --point2: #ff9c00;
    --point3: #ffffff; 
    --point4: #e70000;
    --point5: #3a424d;
    --point6: #fcfcfc;
    --point7: #e0e0e0;
    --point8: #fea328;
    --point9: #ff6900;
    --point10: #ff8b24;

    --bg1: rgba(0, 0, 0, 0.5);
    --bg2: rgba(254, 163, 40, 0.1);
    --bg3: #f9f9f9;

    --hover: #f3f3f3;

    --line1: #d6d6d6;
    --line2: #e8e8e8;
}
.center_box {
    width: 100%;
    max-width: 1216px;
    height: auto;
    margin: 0 auto;
}
.center_box2 {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}
.softwiz_color {
    color: var(--point1);
}
.intro_color {
    color: var(--point3);
}
.point_color1 {
    color: var(--point2);
}
.text_center {
    text-align: center;
}
.defalut_input {
    width: 100%;
    height: 100%;
}
.point_text {
    color: var(--font3);
}
.none_btn {
    display: none;
}
.input_box {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line1);
    border-radius: 9px;
    overflow: hidden;
}
.input_box.on {
    border-color: var(--point8);
    /* filter: drop-shadow(0 0 0.08rem var(--point8)); */
}
.input_box.warring {
    border-color: var(--point4);
}
.input_box2 {
    position: relative;
    width: 100%;
    height: 48px;
    border: 1px solid #5d5d5d;
    border-radius: 9px;
    overflow: hidden;
    background-color: #3b3b3b;
}
.input_box2.on {
    border-color: var(--point8);
}
.input_box2.warring {
    border-color: var(--point4);
}
.input_box2 input {
    padding: 0 20px;
    color: #ffffff;
}
.file_input {
    padding: 13px 0;
}
/*------------------------------------- //common css -------------------------------------*/

/*------------------------------------- style css -------------------------------------*/
.Container {
    position: relative;
    width: 100%;
    height: 100%;
}
.intro_box {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--point1);
    z-index: 3;
}
.title_hidden .intro_title {
    animation: fadeInLeft 1s;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--point6);
    z-index: 2;
}
.header_box {
    background-color: #f9f9f9;
}
nav {
    width: 100%;
    height: auto;
    padding: 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_box {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}
.logo_box span {
    margin-left: 8px;
    font-size: 1.125rem;
    font-weight: 400;
}
.gnb_box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 56px;
}
.gnb_item {
    width: auto;
    height: auto;
}
.m_headBox {
    display: none;
}
.m_menuBtn {
    display: none;
}
.gnb_item a {
    cursor: pointer;
    display: block;
}
.gnb_item a p {
    font-size: 1rem;
    font-weight: 600;
}
.gnb_item.active a p {
    color: var(--point1);
}
.side_gnb {
    display: flex;
    align-items: center;
    grid-gap: 18px;
}
.gnb_menu {
    display: flex;
    align-items: center;
    grid-gap: 21px;
}
.gnb_menu a p {
    color: var(--point1);
}
.gnb_menu::before {
    content: '';
    width: 1px;
    height: 16px;
    display: inline-block;
    background-color: var(--point7);
}
.careers_gnb {
    position: relative;
}
.careers_gnb::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -26px;
    width: 1px;
    height: 16px;
    display: inline-block;
    background-color: var(--point7);
}
.selectbox {
    cursor: pointer;
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 18px;
}
.normal_select {
    position: relative;
    /* width: 150px; */
    width: auto;
    height: 48px;
}
.contact_select {
    cursor: pointer;
    width: 150px;
    height: 48px;
    /* padding: 0 90px 0 20px; */
    padding: 0 25px 0 20px;
    border: 1px solid #5d5d5d;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 400;
    color: #acacac;
    background-color: #3b3b3b;
    background-image: url('/pc/image/icon_2.png');
    background-repeat: no-repeat;
    background-position: 90% 52%;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
.job_select.on {
    border-color: var(--point8);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.apply_select {
    cursor: pointer;
    width: 150px;
    height: 48px;
    padding: 0 25px 0 20px;
    border: 1px solid var(--line1);
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 400;
    color: #acacac;
    background-image: url('/pc/image/icon_2.png');
    background-repeat: no-repeat;
    background-position: 90% 52%;
    background-color: var(--point3);
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
.select_value_box {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.select_value_box::after {
    content: '';
    cursor: pointer;
    width: 10px;
    height: 5px;
    min-width: 10px;
    background-image: url('../image/icon_2.png');
    background-repeat: no-repeat;
}
.select_value_box.on {
    border-color: var(--point8);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.select_value {
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
}
.select_value img {
    vertical-align: middle;
    width: 28px;
    height: auto;
}
.select_list {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow-y: overlay;
    border: 1px solid var(--line1);
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    /* box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.1); */
    background-color: var(--point3);
    z-index: 3;
}
.select_item {
    cursor: pointer;
    border-top: 1px solid var(--line1);
}
.select_item input {
    width: 100%;
    height: 100%;
    padding: 18px 20px;
    background: none;
}
.select_item:hover {
    background-color: var(--hover);
}
.select_item:first-child {
    border-top: none;
}
.select_item:last-child:hover {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
}
.select_item p {
    color: var(--font2);
}
.main_container {
    width: 100%;
    height: 100%;
}
.one_container {
    width: 100%;
    height: auto;
    min-height: 100%;
}
.content_box {
    width: 100%;
    height: auto;
    min-height: 1057px;
}
#sec1 {
    height: 100%;
    background-image: url('../image/bg.png');
    background-repeat: no-repeat;
    background-position: center;
}
.sec_2 {
    /* padding: 270px 0 0; */
    padding: 120px 0 0;
    overflow: hidden;
}
.sec2_event {
    opacity: 0;
    margin-top: 100px;
}
.sec_3 {
    /* height: 1080px; */
    /* padding: 204px 0 0; */
    padding: 120px 0 0;
    background-color: var(--bg3);
}
.sec3_event {
    opacity: 0;
    margin-top: 100px;
}
.sec_4 {
    height: auto;
    padding: 120px 0 0;
}
.sec4_event {
    /* opacity: 0; */
    /* margin-top: 100px; */
}
.sec_5 {
    /* height: 1080px; */
    padding: 120px 0;
    background-color: #fbfbfb;
}
.sec_6 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 854px;
    display: flex;
    background-image: url('/pc/image/bg7.png');
    background-repeat: no-repeat;
}

.middle_box {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.main_title {
    padding-top: 120px;
    font-size: 3.75rem;
    font-weight: 500;
    color: var(--point3);
}
.main_title span {
    font-weight: 700;
}
.sec_title {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
}
.sec_title::before {
    content: '';
    position: absolute;
    bottom: 7px;
    left: -55px;
    width: 38px;
    height: 4px;
    display: inline-block;
    background-color: var(--point1);
}

/* vision */
.sec2_contentBox {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 70px;
}
.content_infoBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: auto;
    min-height: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}
.sec_infoTitle {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--font9);
}
.sec_subtext {
    white-space: pre-line;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--font2);
}
.sec2_slideBox {
    width: 100%;
    height: auto;
    margin-top: 120px;
    margin-left: 120px;
    /* width: 100%;
    height: auto;
    margin-top: 120px;
    padding-left: 210px; */
    /* display: flex;
    justify-content: flex-end;
    align-items: center; */
}
/* .slick-slider {
    margin-left: -150px;
} */
.content_listBox {
    width: auto;
    height: auto;
    min-height: 480px;
}
.flex_box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 30px;
}
.content_item {
    position: relative;
    /* width: 33.333%; */
    width: 345px;
    height: auto;
}
.slick-list {
    height: 100% !important;
    /* margin-left: -120px !important; */
}
.end_box {
    display: none !important;
}
.slide_btnBox {
    position: absolute;
    /* top: 0; */
    bottom: -100px;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
}
.slick-slide {
    /* width: 410px !important; */
    margin-left: -150px !important;
}
.slide_prev {
    cursor: pointer;
    width: 14px;
    height: 24px;
    border: none;
    background: none;
    background-image: url('/pc/image/prev.png');
    background-repeat: no-repeat;
}
.slide_prev.on {
    background-image: url('/pc/image/prev_on.png');
}
.slide_prev:hover {
    background-image: url('/pc/image/prev_on.png');
}
.slide_next {
    cursor: pointer;
    width: 14px;
    height: 24px;
    border: none;
    background: none;
    background-image: url('/pc/image/next.png');
    background-repeat: no-repeat;
}
.slide_next.on {
    background-image: url('/pc/image/next_on.png');
}
.slide_next:hover {
    background-image: url('/pc/image/next_on.png');
}
.slide_count {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 42px;
}
.slide_count::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 22px;
    display: inline-block;
    background-color: var(--point7);
}
.slide_count > p {
    font-size: 1.125rem;
    font-weight: 500;
}
.now_slide {
    color: var(--font1);
}
.all_slide {
    color: var(--font10);
}
.m_contentBox {
    display: none;
}
.vision_midBox {
    width: 345px;
    /* height: 416px; */
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vision_box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 72px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.vision_count {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.vision_content {
    visibility: hidden;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 42px;
    z-index: 1;
}
.vision_content > p {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    color: var(--point3);
}
.vision_plus {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vision_title {
    margin-top: 30px;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--point1);
}
.slick-current .vision_box.on::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 72px;
    overflow: hidden;
    background-color: rgba(255, 139, 36, 0.7);
    backdrop-filter: blur(1px);
    background-size: 100%;
    animation: fadeinUp 1.2s;
}
.slick-current .vision_box.on .vision_plus {
    display: none;
}
/* .vision_box:hover .item_title {
    animation: fadeinDown 1s;
    color: var(--font4);
} */
.slick-current .vision_box.on .vision_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: auto;
    margin-right: auto;
    visibility: visible;
    animation: fadeinUp 1.2s;
    color: var(--font5);
}
.content_bg1 {
    /* padding: 30px; */
    /* border-radius: 15px; */
    background-image: url('/pc/image/bg2.png');
    background-repeat: no-repeat;
}
.content_bg2 {
    /* padding: 30px; */
    /* border-radius: 15px; */
    background-image: url('/pc/image/bg3.png');
    background-repeat: no-repeat;
}
.content_bg3 {
    /* padding: 30px; */
    /* border-radius: 15px; */
    background-image: url('/pc/image/bg4.png');
    background-repeat: no-repeat;
}

/* service */
.sec3_contentBox {
    width: 100%;
    height: auto;
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    object-fit: contain;
}
.sec3_bgBox {
    width: auto;
    height: auto;
}
.sec3_bgBox video {
    margin-left: -350px;
    outline: none;
    border: 0;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.sec3_title {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 500;
    color: var(--font9);
}
.sec3_textBox {
    width: auto;
    height: auto;
    max-width: 360px;
}
.view_box {
    width: auto;
    height: auto;
    margin-top: 80px;
    margin-left: 20px;
}
.view_text {
    margin-bottom: 29px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font11);
}
.view_text::before {
    content: '';
    width: 24px;   
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--point1);
    border-radius: 50%;
    display: inline-block;
    background-image: url('/pc/image/icon_15.png');
    background-repeat: no-repeat;
    background-position: center;
}
.m_videoBox {
    display: none;
}

/* history */
.history_box {
    position: relative;
    width: 100%;
    height: auto;
    padding: 60px;
    padding-bottom: 120px;
}
.history_box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3%;
    background: linear-gradient(to bottom, rgba(255,255,255,1) ,rgba(255,255,255,0.1));
    top: 53px;
    left: 0;
    z-index: 1;
}
.history_box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3%;
    background: linear-gradient(to top, rgba(255,255,255,1) ,rgba(255,255,255,0.2));
    bottom: 120px;
    left: 0;
    z-index: 1;
}
.history_list {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 50px;
}
.history_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 2px;
    height: 100%;
    margin: 0 auto;
    background-color: #ffa261;
}
.history_item {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    opacity: 0;
    transition: all 0.5s ease;
}
.history_up {
    transform: translate(0, 100px);
}
.history_item.show {
    opacity: 1;
    transform: none;
}
.history_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.history_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.history_mid_right {
    position: relative;
    width: 50%;
    height: auto;
    padding-right: 25px;
    display: flex;
    justify-content: end;
    align-items: center;
    grid-gap: 73px;
}
.history_mid_left {
    position: relative;
    width: 50%;
    height: auto;
    padding-left: 25px;
    display: flex;
    justify-content: start;
    align-items: center;
    grid-gap: 73px;
}
.history_content {
    display: flex;
    flex-direction: column;
    grid-gap: 18px;
    z-index: 1;
}
.history_content2 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-self: flex-end;
    grid-gap: 18px;
    z-index: 1;
}
.history_icon2 {
    text-align: right;
}

.long_line {
    margin-bottom: 30px;
}
.history_num {
    font-size: 22px;
    font-weight: 500;
    color: #ff7311;
}
.history_info {
    margin-top: -20px;
    white-space: pre-line;
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}
.history_info span {
    font-weight: 500;
    color: #545454;
}
.history_num2 {
    text-align: right;
    font-size: 22px;
    font-weight: 500;
    color: #ff7311;
}
.history_info2 {
    margin-top: -20px;
    white-space: pre-line;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}
.history_info2 span {
    font-weight: 500;
    color: #545454;
}
.history_B {
    font-weight: 500;
    color: #545454;
}
.left_icon::before {
    content: '';
    /* position: absolute;
    top: 0;
    left: -7px; */
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    margin-left: -32px;
    border: 2px solid #ffa261;
    border-radius: 20px;
    display: inline-block;
    background-color: #ffffff;
}
.right_icon::after {
    content: '';
    /* position: absolute;
    top: 0;
    right: -7px; */
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    margin-right: -32px;
    border: 2px solid #ffa261;
    border-radius: 20px;
    display: inline-block;
    background-color: #ffffff;
}

/* business group */
.group_center {
    height: auto;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.group_box {
    position: relative;
    max-width: 1350px;
    color: rgb(251, 251, 251);
}
.group_box::before {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, rgba(251,251,251,1),rgba(251,251,251,0));
    top: 0;
    left: 0;
    z-index: 1;
}
.group_box::after {
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, rgba(251,251,251,1),rgba(251,251,251,0));
    top: 0;
    right: 0;
    z-index: 1;
}
.business_list {
    width: 100%;
    height: auto;
    /* height: 150px; */
}
.group_list {
    margin-bottom: 75px;
}
.group_list:last-child {
    margin-bottom: 0;
}
.business_item {
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}


/* contact us */
.contact_halfBox {
    width: 50%;
    height: 100%;
}
.contact_halfBox:last-child {
    background-color: #404040;
}
.sec6_flexBox {
    padding: 120px 0 0;
    display: flex;
    justify-content: space-between;
}
.sec6_leftBox {
    width: 100%;
    height: auto;
    padding: 120px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec6_rightBox {
    width: 100%;
    height: auto;
    min-height: 854px;
    padding: 136px 90px 0;
}
.sec6_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}
.se6_subtext {
    white-space: pre-line;
    font-size: 22px;
    font-weight: 300;
    color: #ffffff;
}
.contact_list {
    width: 582px;
    height: auto;
}
.contact_item {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.contact_item:last-child {
    margin-bottom: 0;
    /* display: flex;
    justify-content: end;
    align-items: center; */
}
.contact_title {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: #acacac
}
.contact_title::after {
    content: '*';
    font-size: 1rem;
    font-weight: 400;
    color: var(--point9);
}
.contact_title2 {
    position: absolute;
    top: 14px;
    left: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    color: #acacac;
    z-index: 1;
}
.contact_title2::before {
    content: '*';
    margin-right: 5px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--point9);
}
.company_title::before {
    display: none;
}
.contact_input {
    width: 100%;
    height: 100%;
    background: none;
}
.contact_area {
    padding: 20px;
    border-color: #5d5d5d;
    border-radius: 9px;
    font-size: 16px;
    color: #ffffff;
    background: #3b3b3b;
}
.contact_area.warring {
    border-color: var(--point4);
}
.microcopy {
    position: absolute;
    bottom: -25px;
    width: 100%;
    height: auto;
    display: none;
}
.microcopy.on {
    display: block;
}
.contact_microcopy {
    position: unset;
    margin-top: 5px;
    margin-left: 22px;
}
.chk_microcopy {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--point4);
}
.phone_box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.dial_box {
    position: relative;
}
.dial_viewBox {
    cursor: pointer;
    /* position: absolute;
    top: 15px;
    left: 20px; */
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    color: #acacac;
    background: #3b3b3b;
}
.dial_viewBox2 {
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 20px;
    width: 52px;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    color: #acacac;
    background: #ffffff;
}
.privacy_flex {
    justify-content: space-between;
}
.privacy_box {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}
.privacy_box label {
    margin-left: 10px !important;
    font-size: 1rem !important;
    font-weight: 400;
    color: var(--font1);
}
.contact_privacy label {
    margin-left: 10px !important;
    font-size: 1rem !important;
    font-weight: 400;
    color: var(--font8);
}
.contact_privacy input[type=checkbox]:not(.switch) {
    border-color: #545454 !important;
}
.submit_btn {
    max-height: unset;
    display: inline-block;
    padding: 17px 75px;
    border: none;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--point3);
    background-color: var(--point1);
}
.submit_btn2 {
    width: 100%;
    max-height: unset;
    display: inline-block;
    padding: 15px 75px;
    border: none;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--point3);
    background-color: #ff8b24;
}
.more_link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--font8);
}
.more_link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: -2px;
    background-color: var(--font8);
}


footer {
    width: 100%;
    height: auto;
    background-color: var(--point6);
}
.half_box {
    width: 100%;
    height: auto;
    padding: 90px 0;
    display: flex;
    justify-content: space-between;
    grid-gap: 20px;
}
.footer_info {
    width: auto;
    height: auto;
}
.footer_info:last-child {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}
.footer_logo {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 30px;
}
.company_info {
    width: auto;
    height: auto;
}
.company_item {
    width: auto;
    height: auto;
}
.company_info_text {
    margin-bottom: 4px;
    line-height: 20px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--font2);
}
.company_info_text span::before {
    content: '';
    width: 1px;
    height: 9px;
    display: inline-block;
    margin: 0 7px 0 4px;
    background-color: var(--point7);
}
.company_copyright {
    display: flex;
    align-items: center;
    line-height: 20px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--font2);
}
.privacy_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: var(--font1);
}
.privacy_link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--font1);
}
.company_copyright span::before {
    content: '';
    width: 1px;
    height: 9px;
    display: inline-block;
    margin: 0 12px 0 9px;
    background-color: var(--point7);
}
.careers_box {
    position: fixed;
    bottom: 70px;
    right: 133px;
    z-index: 1;
}
.careers_btn {
    display: block;
}
.careers_btn.on {
    display: none;
}
.join_moveBox.on {
    position: absolute;
    bottom: 315px;
}
.careers_box a {
    cursor: pointer;
    width: 300px;
    height: 64px;
    padding: 7px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    box-shadow: 4px 0 13px rgba(249, 104, 34, 0.48);
    background-color: var(--point1);
    font-size: 22px;
    font-weight: 500;
    color: var(--point3);
}

/* careers */
.sub_header {
    width: 100%;
    height: 240px;
    margin-top: 93px;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}
.culture_head {
    position: relative;
}
.culture_head::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 237px;
    height: 232px;
    background-image: url('/pc/image/bg6.png');
    background-repeat: no-repeat;
}
.sub_page_title {
    margin-bottom: 10px;
    font-size: 3.75rem;
    font-weight: 700;
}
.sub_page_text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--font2);
}
.culture_listBox {
    width: 100%;
    height: auto;
    padding: 127px 0 108px;
    display: flex;
    /* align-items: center; */
    grid-gap: 32px;
}
.carees_content {
    width: 33%;
    height: auto;
}
.carees_1 {
    margin-top: 120px;
}
.carees_2 {
    margin-top: 60px;
}
.culture_titleBox {
    width: 100%;
    height: auto;
    padding: 23px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    object-fit: contain;
}
.culture_titleBox > p {
    font-size: 30px;
    font-weight: 700;
    color: #404040;
}
.culture_textBox {
    position: relative;
    width: 100%;
    height: auto;
    padding: 47px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    grid-gap: 38px;
}
.culture_textBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 63px;
    background-image: url('/pc/image/bg18.png');
    background-repeat: no-repeat;
}
.culture_textBox > p {
    font-size: 14px;
    font-weight: 300;
    color: #404040;
}
.culture_textBox > p:nth-child(1) {
    font-size: 16px;
    font-weight: 400;
    color: var(--point1);
}

.culture_box {
    width: 100%;
    height: auto;
    padding: 0;
}
.culture_list {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.culture_item {
    width: 100%;
    height: auto;
}
.culture_bg1 {
    background-color: #f9f9f9;
}
.culture_bg2 {
    background-color: #404040;
}
.culture_bg3 {
    background-color: #febf28;
}
.culture_center {
    display: flex;
    align-items: center;
}
.culture_itemBox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.culture_img_box {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.culture_item:nth-child(1) .culture_center .culture_itemBox .culture_img_box::before {
    content: '';
    width: 313px;
    height: 263px;
    display: block;
    background-image: url("/pc/image/bg8.png");
    background-repeat: no-repeat;
}
.culture_item:nth-child(2) .culture_center .culture_itemBox .culture_img_box::before {
    content: '';
    width: 310px;
    height: 299px;
    display: block;
    background-image: url("/pc/image/bg9.png");
    background-repeat: no-repeat;
}
.culture_item:nth-child(3) .culture_center .culture_itemBox .culture_img_box::before {
    content: '';
    width: 301px;
    height: 278px;
    display: block;
    background-image: url("/pc/image/bg10.png");
    background-repeat: no-repeat;
}
.culture_item:nth-child(4) .culture_center .culture_itemBox .culture_img_box::before {
    content: '';
    width: 290px;
    height: 265px;
    display: block;
    background-image: url("/pc/image/bg11.png");
    background-repeat: no-repeat;
}
.culture_item:nth-child(5) .culture_center .culture_itemBox .culture_img_box::before {
    content: '';
    width: 289px;
    height: 256px;
    display: block;
    background-image: url("/pc/image/bg12.png");
    background-repeat: no-repeat;
}
.culture_info_box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.culture_mid {
    width: auto;
    height: auto;
    padding: 117px 97px;
    display: flex;
    flex-direction: column;
    grid-gap: 38px;
}
.culture_mid > img {
    width: 64px;
    height: 64px;
}
.culture_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--point1);
}
.culture_text {
    margin-top: -20px;
    line-height: 25px;
    font-size: 1rem;
    font-weight: 300;
    color: #404040;
    white-space: pre-line;
}
.culture_item:nth-child(even) .culture_info_box .culture_text {
    color: var(--point3);
}
.culture_item:nth-child(4) .culture_info_box .culture_title {
    color: #1d1d1d;
}
.culture_item:nth-child(4) .culture_info_box .culture_text {
    color: #404040;
}
.culture_paging {
    width: auto;
    height: auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.culture_page {
    width: 3px;
    height: 3px;
    margin-bottom: 17px;
    background-color: #404040;
}
.culture_page.active {
    width: 9px;
    height: 9px;
    margin-bottom: 14px;
    border: 3px solid var(--point1);
    background-color: #ffffff;
}
.culture_page:last-child {
    margin-bottom: 0;
}
.culture_item:nth-child(even) .culture_page {
    background-color: var(--point3);
}
.culture_item:nth-child(4) .culture_page {
    background-color: #404040;
}
.culture_item:nth-child(4) .culture_page.active {
    background-color: var(--point3);
}

.culture_footer {
    width: 100%;
    height: auto;
    min-height: 643px;
    background-image: url('/pc/image/bg13.png');
    background-repeat: no-repeat;
    background-position: center;
}
.accent_list {
    width: 100%;
    height: auto;
    padding: 90px 0;
    display: flex;
    align-items: center;
    grid-gap: 32px;
}
.accent_item {
    width: 33.333%;
    height: 463px;
    padding-top: 20px;
}
.accent_box {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255, 0.14);
    border-radius: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 41px;
    overflow: hidden;
}
.accent_count {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.accent_content {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    grid-gap: 8px;
    z-index: 1;
}
.accent_title {
    margin-top: -20px;
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.14);
    white-space: pre-line;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: var(--point3);
}
.accent_text {
    display: flex;
    grid-gap: 13px;
    line-height: 22px;
    font-size: 1rem;
    font-weight: 300;
    color: var(--point3);
}
.accent_text::before {
    content: '';
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--point3);
}

/* job opening */
.job_bg {
    position: relative;
}
.job_bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 237px;
    height: 232px;
    background-image: url('/pc/image/bg14.png');
    background-repeat: no-repeat;
}
.job_header {
    width: 100%;
    height: auto;
    padding: 60px 0 30px;
}
.employment_title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--font1);
}
.employment_title::after {
    content: '';
    width: 100%;
    height: 3px;
    display: block;
    background-color: var(--font1);
}
.filter_list {
    width: 100%;
    height: auto;
    padding: 30px 0 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px 10px;
}
.filter_item {
    cursor: pointer;
    width: auto;
    height: auto;
    border: 1px solid var(--point3);
    border-radius: 24px;
}
.filter_item input[type=radio] {
    display: none;
}
.filter_item label {
    width: 100%;
    padding: 8px 18px;
    border-radius: 24px;
    border: 1px solid var(--point3);
    display: block;
    margin: 0 auto;
    text-align: center;
    height: auto;
    /* line-height: 45px; */
}
/* Checked */
.filter_item input[type=radio]:checked + label {
    border-color: var(--point1) !important;
    font-weight: 500 !important;
    color: var(--point1) !important;
}

/* Hover */
.filter_item label:hover {
    color: #666 !important;
}

/* Disabled */
.filter_item input[type=radio] + label {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--font1) !important;
}
.filter_name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--font1);
}
/* .filter_item.on {
    border-color: var(--point1);
} */
/* .filter_item.on .filter_name {
    font-weight: 500;
    color: var(--point1);
} */
.job_search_box {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.search_box {
    width: 440px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.search_box::before {
    content: '';
    width: 14px;
    height: 14px;
    min-width: 14px;
    background-image: url('../image/icon_1.png');
    background-repeat: no-repeat;
}
.job_search {
    width: 100%;
    height: 100%;
    padding: 0;
    background: none;
}
.job_search:focus {
    outline: none;
    filter: none;
}
.job_select {
    cursor: pointer;
    width: 240px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line1);
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
    background-image: url('/pc/image/icon_2.png');
    background-repeat: no-repeat;
    background-position: 95% 52%;
    background-color: var(--point3);
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
.job_select.on {
    border-color: var(--point8);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.job_body {
    width: 100%;
    height: auto;
    padding: 0 0 100px;
    border-top: 1px solid var(--line1);
}
.job_table {
    width: 100%;
    height: auto;
}
.job_row {
    cursor: pointer;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job_row:hover {
    border-radius: 9px;
    background-color: var(--bg2);
}
.job_th {
    width: 40%;
    height: auto;
    padding: 30px 40px;
    /* display: table-cell; */
    vertical-align: middle;
}
.job_td {
    width: auto;
    height: auto;
    padding: 30px 40px;
    /* display: table-cell; */
    vertical-align: middle;
}
.job_td:nth-child(2) {
    width: 30%;
}
.job_td:nth-child(3) {
    width: 15%;
}
.job_td:nth-child(4) {
    width: 15%;
}
.job_title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--font1);
}
.tag_text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--font2);
}
.employ_type {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--font2);
}
.employ_term {
    text-align: right;
    font-size: 0.875rem;
    font-weight: 400;
}
.employ_term.term_ing {
    color: var(--point8);
}

.job_none_box {
    width: 100%;
    height: auto;
    padding: 120px 0;
    display: none;
}
.job_none_view {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.job_none_img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.job_none_title {
    margin: 25px 0;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--font1);
}
.job_matching {
    display: none;
}
.job_back_text {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
}

/* job Detatil */
.vacancies_view {
    min-height: 100vh;
}
.detail_hd_bg {
    background-image: url('/pc/image/detail_bg1.png');
    background-repeat: no-repeat;
    background-position: center;
}
.detail_title {
    color: var(--point3);
}
.detail_sub_title{
    color: var(--font6);
}
.detatil_half {
    width: 100%;
    height: auto;
    padding: 90px 0 120px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* grid-gap: 200px; */
}
.detail_information {
    width: 65%;
    height: auto;
    min-height: 900px;
    overflow: hidden;
}
.detail_information div {
    width: 100% !important;
}
.detail_information div table {
    width: 100% !important;
    border: 1px solid #eee;
}
.detail_information div table th {
    padding: 2%;
    border: 1px solid #eee;
}
.detail_information div table td{
    padding: 2%;
    border: 1px solid #eee;
}
.detail_information img {
    width: 100% !important;
    image-rendering: auto;
}
.detail_information table {
    width: 100%;
}
.detail_information table th, 
.detail_information table td {
    padding: 1.3%;
}
.detail_work {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}
.detail_info_title {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--point1);
}
.detail_info_text {
    margin-bottom: 7px;
    display: flex;
    grid-gap: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
}
.detail_info_text::before {
    content: '';
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--font2);
}
.hiring_process {
    width: 100%;
    height: auto;
    padding: 60px 0;
    border-top: 1px solid var(--line1);
}

.etc_box {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}
.etc_title {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--font1);
}
.etc_text {
    margin-bottom: 7px;
    display: flex;
    grid-gap: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
}
.etc_text::before {
    content: '';
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--font2);
}
.detail_application {
    width: 30%;
    height: auto;
}
.application_box {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
}
.application_list {
    width: 100%;
    height: auto;
    border-top: 1px solid var(--line1);
}
.application_list:nth-child(4), 
.application_list:nth-child(5),
.application_list:nth-child(6) {
    border-top: 0;
}
.apply_half {
    padding: 30px 0;
    display: flex;
    align-items: center;
    grid-gap: 52px;
}
.application_title {
    min-width: 125px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--font1);
}
.apply_type {
    max-width: 140px;
    min-width: 130px;
    font-size: 0.875rem;
    font-weight: 400;
}
.apply_date {
    min-width: 160px;
    font-size: 0.875rem;
    font-weight: 400;
}
.apply_group {
    min-width: 160px;
    font-size: 0.875rem;
    font-weight: 400;
}

.apply_move {
    width: 100%;
    height: auto;
    margin: 30px 0 10px;
    padding: 20px;
    border-radius: 9px;
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--point3);
    background-color: var(--point1);
}

.job_open_move {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 9px;
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--point1);
    background-color: var(--bg2);
}
.share_half {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 127px;
}
.share_sns {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.sns_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* job application */
.apply_box {
    padding: 90px 35px 120px;
}
.apply_title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--font1);
}
.apply_list_box {
    margin-bottom: 75px;
    border-bottom: 1px solid var(--line1);
}
.apply_form {
    width: 100%;
    height: auto;
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    grid-gap: 40px;
}
.apply_list_box:nth-child(3) {
    margin-bottom: 0;
}
.apply_list_box:nth-child(2) .apply_form .apply_info_box:nth-child(2) .contact_title::after,
.apply_list_box:nth-child(2) .apply_form .apply_info_box:nth-child(3) .contact_title::after,
.apply_list_box:nth-child(3) .apply_form .apply_info_box:nth-child(1) .contact_title::after,
.apply_list_box:nth-child(3) .apply_form .apply_info_box:nth-child(2) .contact_title::after,
.apply_list_box:nth-child(3) .apply_form .apply_info_box:nth-child(3) .contact_title::after {
    content: '';
}
.apply_info_box {
    position: relative;
    width: 48%;
}
.apply_sub_text {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--font2);
}
.apply_sub_text::before {
    content: '';
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--font2);
}
.apply_sub_text:first-child {
    margin-top: 15px;
}
.apply_footer {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.file_label {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.file_label::before {
    content: '';
    width: 15px;
    height: 13px;
    min-width: 15px;
    display: inline-block;
    background-image: url('../image/icon_8.png');
    background-repeat: no-repeat;
}
.file_real {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.file_fake {
    width: 100%;
}
.file_delete {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    width: auto;
    height: auto;
    z-index: 2;
}
.file_delete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: none;
    background-image: url('/pc/image/mobile/menu_btn2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.file_delete.on::before {
    display: block;
}
.apply_ok_box {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
}

/* privacy policy css */
.policy_header {
    display: flex;
    justify-content: space-between;
}
.policy_selectbox {
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.policy_select {
    cursor: pointer;
    width: 280px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line1);
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 400;
    color: #909090;
    background-image: url('/pc/image/icon_2.png');
    background-repeat: no-repeat;
    background-position: 90% 52%;
    background-color: var(--point3);
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
.policy_box {
    padding: 90px 0 230px;
}
.policy_text_box {
    font-size: 1rem;
    font-weight: 400;
    color: var(--font1);
}
.policy_text_box p {
    line-height: 24px !important;
    font-size: 1rem;
}
.policy_text_box table {
    width: 100% !important;
}
.policy_text_box table th {
    padding: 1%;
    border: 1px solid #444 !important;
}
.policy_text_box table td {
    padding: 1%;
    border: 1px solid #444 !important;
}

.policy_change {
    margin-top: 60px;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
}
.policy_change::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background-color: var(--point1);
}
.grecaptcha-badge {
    bottom: 0 !important;
}
/*------------------------------------- //style css -------------------------------------*/

/*------------------------------------- animation css -------------------------------------*/
@keyframes fadeinDown {
    0% {
        opacity: 0;
        transform: tanslate3d(0, -100%, 0);
        margin-top: -100px;
    }
    to {
        opacity: 1;
        transform: translateZ(0);
        margin-top: -80px;
    }
}
@keyframes fadeinUp {
    0% {
        opacity: 0;
        transform: tanslate3d(0, 100%, 0);
        margin-bottom: -25px;
    }
    to {
        opacity: 1;
        transform: translateZ(0);
        margin-bottom: 0;
    }
}
/*------------------------------------- //animation css -------------------------------------*/

/*------------------------------------- popup (success, fales) css -------------------------------------*/
.popup_layout {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.popup_layout.on {
    display: block;
}
.popup_mask {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg1);
}
.popup_box {
    width: 80%;
    height: auto;
    max-width: 600px;
    padding: 30px;
    border-radius: 9px;
    background-color: var(--point3);
}
.popup_head {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup_body {
    width: 100%;
    height: auto;
    padding: 30px 10px 67px;
}
.popup_footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
}
.popup_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--font1);
}
.close_btn {
    cursor: pointer;
}
.popup_content {
    font-size: 1rem;
    font-weight: 400;
    color: var(--font2);
}
.confirm_btn {
    cursor: pointer;
    padding: 17px 74px;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--point3);
    background-color: var(--point1);
}
.success.off {
    display: none;
}
.fail {
    display: none;
}
.fail.on {
    display: block;
}
/*------------------------------------- //popup (success, fales) css -------------------------------------*/


/*------------------------------------- responsive css -------------------------------------*/
/* PC */
@media all and (max-width:1458px) {
    .center_box {
        width: 90%;
    }
    .sec2_slideBox {
        margin-left: 0;
    }
    .sec6_flexBox {
        width: 95%;
    }
    .contact_list {
        width: 100%;
    }
}
@media (max-width: 1350px) {
    .sec_6 {
        flex-wrap: wrap;
        background-image: none;
    }
    .contact_halfBox {
        width: 100%;
        height: auto;
    }
    .contact_halfBox:first-child {
        background-image: url('/pc/image/bg7.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
    }
    .sec6_leftBox {
        width: 90%;
        margin: 0 auto;
        padding: 98px 0 87px;
    }
    .sec6_rightBox {
        width: 90%;
        min-height: auto;
        margin: 0 auto;
        padding: 80px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width: 1280px) {
    .sec_3 {
        height: auto;
    }
    .sec3_contentBox {
        flex-wrap: wrap;
        justify-content: center;
    }
    .sec3_bgBox {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec3_bgBox video {
        margin-left: -265px;
    }
    .sec3_textBox {
        width: 100%;
        max-width: 100%;
    }
    .culture_textBox::before {
        width: 100%;
        background-size: 100%;
    }
    .culture_textBox {
        padding: 15% 8%;
    }
}
@media (max-width: 1200px) {
    .apply_info_box {
        width: 47%;
    }
    .apply_select {
        width: 120px;
    }
}
@media (max-width: 1140px) {
    .bx-viewport {
        height: auto !important;
    }
    .bx-wrapper .bx-pager {
        bottom: 60px !important;
    }
    .bx-wrapper .bx-pager.bx-default-pager a {
        width: 10px !important;
        height: 10px !important;
        background: #ffffff !important;
    }
    .bx-wrapper .bx-pager.bx-default-pager a:hover, 
    .bx-wrapper .bx-pager.bx-default-pager a.active, 
    .bx-wrapper .bx-pager.bx-default-pager a:focus {
        background: none !important;
        border: 1px solid #ffffff;
    }
}

@media all and (min-width:1024px) and (max-width:1220px) {
    .middle_box {
        width: 90%;
    }
    .center_box {
        width: 90%;
    }
    .center_box2 {
        width: 80%;
    }
    .main_title {
        font-size: 3rem;
    }
    .sec_title {
        font-size: 2.5rem;
    }
    .sec_subtext {
        font-size: 1.05rem;
    }
    .view_text {
        font-size: 1.2rem;
    }
    .sec6_flexBox {
        width: 95%;
    }
}
@media (max-width: 1052px) {
    .detatil_half {
        padding:  10px 0 50px;
        flex-wrap: wrap;
    }
    .detail_information {
        width: 100%;
        order: 2;
    }
    .detail_application {
        width: 100%;
        order: 1;
    }
    .apply_type {
        width: auto;
        max-width: 100%;
    }
    .apply_date {
        min-width: auto;
    }
    .apply_group {
        min-width: auto;
    }
    .job_open_move {
        display: none;
    }
    .apply_half {
        padding: 25px 0;
    }
    .share_half {
        padding: 25px 0;
        border-bottom: 1px solid var(--line1);
    }
    .application_box {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }
    .application_list:nth-child(1) {
        order: 1;
        border-top: 0;
    } 
    .application_list:nth-child(2) {
        order: 2;
    } 
    .application_list:nth-child(3) {
        order: 3;
    }
    .application_list:nth-child(4) {
        order: 5;
    }
    .application_list:nth-child(5) {
        order: 4;
        border-top: 1px solid var(--line1);
    }
}
@media (max-width: 1040px) {
    .half_box {
        flex-wrap: wrap;
    }
}
@media (max-width: 1024px) {
    .middle_box {
        width: 90%;
    }
    .center_box {
        width: 90%;
    }
    .center_box2 {
        width: 80%;
    }
    .main_title {
        font-size: 3rem;
    }
    .sec_title {
        font-size: 2.5rem;
    }
    .sec_subtext {
        font-size: 1.05rem;
    }
    .view_text {
        font-size: 1.2rem;
    }
}
@media (max-width: 890px) {
    .sub_header {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .culture_head {
        display: flex;
        /* justify-content: center; */
        flex-direction: column;
    }
    .culture_head::after {
        display: none;
    }
    .culture_head::before {
        content: '';
        display: inline-block;
        width: 237px;
        height: 232px;
        margin: 0 auto 15px;
        background-image: url('/pc/image/bg6.png');
        background-repeat: no-repeat;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .culture_listBox {
        justify-content: space-between;
        grid-gap: 0;
    }
    .carees_content {
        width: 28%;
    }
    .policy_header {
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
        grid-gap: 40px;
    }
    .job_bg {
        display: flex;
        /* justify-content: center; */
        flex-direction: column;
    }
    .job_bg::after {
        display: none;
    }
    .job_bg::before {
        content: '';
        display: inline-block;
        width: 237px;
        height: 232px;
        margin: 0 auto 15px;
        background-image: url('/pc/image/bg14.png');
        background-repeat: no-repeat;
    }
    .job_header {
        overflow: hidden;
    }
    .filter_list {
        padding: 20px 0;
        flex-wrap: nowrap;
        overflow-x: scroll;
        -ms-overflow-style: none;
    }
    .filter_list::-webkit-scrollbar {
        display: none;
    }
    .filter_item:nth-child(2) label {
        min-width: 154px;
    }
    .filter_item:nth-child(3) label {
        min-width: 170px;
    }
    .filter_item:nth-child(4) label {
        min-width: 194px;
    }
    .filter_item:nth-child(7) label {
        min-width: 99px;
    }
    .filter_item:nth-child(14) label {
        min-width: 140px;
    }
    .filter_item:nth-child(15) label {
        min-width: 166px;
    }
    .filter_item:nth-child(16) label {
        min-width: 179px;
    }
    .filter_item:nth-child(17) label {
        min-width: 148px;
    }
    .filter_item:nth-child(18) label {
        min-width: 183px;
    }
    .job_row {
        padding: 20px 0;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--line1);
    }
    .job_th {
        width: 100%;
        padding: 10px;
        order: 2;
    }
    .job_td:nth-child(2),
    .job_td:nth-child(3), 
    .job_td:nth-child(4) {   
        width: 100%;
        padding: 10px;
    }
    .job_td:nth-child(3) {
        order: 1;
    }
    .job_td:nth-child(2) {
        order: 3;
    }
    .job_td:nth-child(4) {
        order: 4;
    }
    .employ_term {
        text-align: left;
    }
}
@media (max-width: 820px) {
    .sec3_bgBox video {
        width: 100%;
    }    
    .apply_box {
        padding: 30px 20px 30px;
    }
    .apply_form {
        grid-gap: 25px;
    }
    .apply_info_box {
        width: 100%;
    }
    .submit_btn {
        width: 100%;
        margin: 0 auto;
    }
}


/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/
@media all and (min-width:768px) and (max-width:1023px) {
    
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media (max-width:768px) {
    .sub_header {
        margin-top: 65px;
    }
    nav {
        position: relative;
        padding: 21px 0;
    }
    nav.on::after {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }
    .gnb_box {
        position: fixed;
        top: 0;
        right: 0;
        /* right: -300px; */
        width: 280px;
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
        grid-gap: 0;
        background-color: #ffffff;
        z-index: 2;
        transition: all 0.5s;
    }
    .gnb_box.on {
        display: block;
        /* right: 0; */
    }
    .gnb_item {
        width: 100%;
    }
    .gnb_item a {
        width: 100%;
        padding: 20px;
    }
    .careers_gnb::before {
        display: none;
    }
    .side_gnb {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border-top: 1px solid #eeeeee;
    }
    .m_menuBtn {
        cursor: pointer;
        margin-right: 20px;
        display: flex;
        align-items: center;
    }
    .m_menuBtn::before {
        content: '';
        width: 24px;
        height: 20px;
        display: block;
        background-image: url('/pc/image/mobile/menu_btn.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
    }
    .m_headBox {
        padding: 22px 50px 22px 20px;
        border-bottom: 1px solid #eeeeee;
        display: flex;
        justify-content: end;
        align-items: center;
        grid-gap: 20px;
    }
    .m_langbox {
        display: none;
    }
    .m_closeBox {
        cursor: pointer;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
    }
    .m_closeBox::before {
        content: '';
        width: 18px;
        height: 18px;
        display: block;
        background-image: url('/pc/image/mobile/menu_btn2.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
    .gnb_menu::before {
        display: none;
    }
    #sec1 {
        background-image: url('/pc/image/mobile/m_bg1.png');
        background-size: cover;
    }
    .middle_box {
        align-items: baseline;
    }
    .main_title {
        font-weight: 300;
    }
    .sec_title {
        padding: 0 20px;
        color: #404040;
    }
    .sec_title::before {
        left: -5.5%;
    }
    .sec_infoTitle {
        padding: 0 20px;
    }
    .sec_subtext {
        padding: 0 20px;
    }
    .content_infoBox {
        padding: 60px 0;
    }
    .sec_subtext {
        white-space: unset;
        line-height: 25px;
    }
    .sec_2 {
        height: auto;
        padding: 100px 0 0;
    }
    .sec2_slideBox {
        display: none;
    }
    .slide_btnBox {
        display: none;
    }
    .content_infoBox {
        position: unset;
        width: 100%;
        min-height: auto;
    }
    .m_contentBox {
        width: 100%;
        height: auto;
        padding: 45px 0;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
    }
    .m_contentImg {
        width: 100%;
        height: auto;
    }
    .m_contentImg img {
        width: 100%;
    }
    .vision_title {
        padding: 0 20px;
        text-align: left;
        margin-bottom: 7px;
    }
    .m_contents_text p {
        padding: 0 20px;
        text-align: left;
        font-size: 1rem;
        font-weight: 300;
        color: #909090;
    }

    .sec_3 {
        padding: 100px 0 150px;
    }
    .sec3_bgBox {
        display: none;
    }
    .sec3_contentBox {
        justify-content: unset;
    }
    .sec3_title {
        padding: 0 20px;
    }
    .m_videoBox {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .m_videoBox video {
        width: 100%;
    }
    .view_box {
        margin-top: 60px;
        margin-left: 0;
        padding: 0 20px;
    }

    .sec_4 {
        padding: 100px 0 150px;
    }
    .history_box {
        padding: 60px 0 120px 20px;
    }
    .history_list::before {
        margin: 0;
    }
    .history_item {
        margin-bottom: 80px;
    }
    .history_right {
        justify-content: flex-start;
    }
    .history_mid_left {
        width: 100%;
        grid-gap: 25px;
    }
    .history_mid_right {
        width: 100%;
        padding-left: 25px;
        padding-right: 0;
        justify-content: flex-start;
        grid-gap: 25px;
    }
    .history_icon2 {
        text-align: left;
    }
    .history_num2 {
        text-align: left;
    }
    .history_info2 {
        text-align: left;
    }
    .right_icon::after {
        display: none;
    }
    .right_icon::before {
        content: '';
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        margin-left: -32px;
        border: 2px solid #ffa261;
        border-radius: 20px;
        display: inline-block;
        background-color: #ffffff;
    }
    .careers_box {
        width: 100%;
        right: 0;
    }
    .careers_box a {
        width: 90%;
        height: 70px;
        margin: 0 auto;
        border-radius: 18px;
    }
    .submit_btn2 {
        padding: 23px 0;
        background-color: #ff7311;
    }
    .sub_page_title {
        font-size: 2.8rem;
    }
    .sub_page_text {
        font-size: 1rem;
    }
    .culture_listBox {
        padding: 70px 0 0;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: baseline;
        grid-gap: 32px;
    }
    .carees_content {
        width: 100%;
    }
    .carees_1 {
        margin-top: 0;
    }
    .carees_2 {
        margin-top: 0;
    }
    .culture_head::before {
        width: 246px;
        height: 218px;
        background-image: url('/pc/image/mobile/m_bg6.png');
    }
    .job_bg::before {
        width: 252px;
        height: 246px;
        background-image: url('/pc/image/mobile/m_bg8.png');
    }
    .culture_textBox {
        padding: 8%;
    }
    .culture_itemBox {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .culture_mid {
        padding: 0 20px 80px;
    }
    .culture_paging {
        display: none;
    }
    .culture_info_box {
        justify-content: flex-start;
        order: 2;
    }
    .culture_text {
        margin-top: -40px;
    }
    .culture_img_box {
        height: auto;
        padding-top: 50px;
        order: 1;
    }
    .culture_item:nth-child(1) .culture_center .culture_itemBox .culture_img_box::before {
        width: 90%;
        height: auto;
        max-width: 470px;
        min-height: 395px;
        background-image: url("/pc/image/mobile/m_bg10.png");
        background-size: 100%;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .culture_item:nth-child(2) .culture_center .culture_itemBox .culture_img_box::before {
        width: 90%;
        max-width: 372px;
        min-height: 359px;
        background-image: url("/pc/image/mobile/m_bg11.png");
        background-size: 100%;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .culture_item:nth-child(3) .culture_center .culture_itemBox .culture_img_box::before {
        width: 90%;
        max-width: 404px;
        min-height: 375px;
        background-image: url("/pc/image/mobile/m_bg12.png");
        background-size: 100%;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .culture_item:nth-child(4) .culture_center .culture_itemBox .culture_img_box::before {
        width: 90%;
        max-width: 465px;
        min-height: 424px;
        background-image: url("/pc/image/mobile/m_bg13.png");
        background-size: 100%;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .culture_item:nth-child(5) .culture_center .culture_itemBox .culture_img_box::before {
        width: 90%;
        max-width: 391px;
        min-height: 343px;
        background-image: url("/pc/image/mobile/m_bg14.png");
        background-size: 100%;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
    }
    .popup_body {
        padding: 30px 10px;
    }
    .confirm_btn {
        width: 100%;
        padding: 17px 0;
        text-align: center;
    }


    .group_box::before {
        width: 15%;
    }
    .group_box::after {
        width: 15%;
    }
}
@media (max-width: 730px) {
    .contact_halfBox:first-child {
        background-image: url('/pc/image/mobile/m_bg5.png');
        background-size: cover;
    }
    .sec6_leftBox {
        align-items: baseline;
    }
    .sec6_title {
        position: relative;
        padding: 0 20px;
    }
    .sec6_title::before {
        content: '';
        position: absolute;
        bottom: 7px;
        left: -12.5%;
        width: 38px;
        height: 4px;
        display: inline-block;
        background-color: var(--point3);
    }
    .se6_subtext {
        padding: 0 20px;
    }
}
@media (max-width: 630px) {
    .job_search_box {
        padding-bottom: 10px;
        flex-wrap: wrap;
    }
    .search_box {
        width: 100%;
    }
    .job_select {
        width: 100%;
    }
    .policy_select {
        width: 100%;
        background-position: 95% 52%;
    }
}
@media (max-width: 485px) {
    .company_copyright {
        flex-wrap: wrap;
    }
    .privacy_link {
        margin-bottom: 10px;
        margin-right: 48px;
    }
    .company_copyright span {
        display: block;
    }
    .company_copyright span::before {
        display: none;
    }
    .sub_page_title {
        font-size: 2.5rem;
    }
}
@media (max-width: 450px) {
    .culture_item:nth-child(1) .culture_center .culture_itemBox .culture_img_box::before {
        min-height: 312px;
    }
    /* .culture_item:nth-child(2) .culture_center .culture_itemBox .culture_img_box::before {
        min-height: 325px;
    } */
    .culture_item:nth-child(3) .culture_center .culture_itemBox .culture_img_box::before {
        min-height: 346px;
    }
    .culture_item:nth-child(4) .culture_center .culture_itemBox .culture_img_box::before {
        min-height: 342px;
    }
    /* .culture_item:nth-child(5) .culture_center .culture_itemBox .culture_img_box::before {
        min-height: 343px;
    } */
}
@media (max-width: 390px) {
    .culture_title {
        font-size: 32px;
    }
}
@media (max-width: 375px) {
    .main_title {
        font-size: 2.6rem;
    }
    .sec_infoTitle {
        font-size: 1.8rem;
    }
    .sec3_title {
        font-size: 30px;
    }
}
/*------------------------------------- //responsive css -------------------------------------*/