@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: "WantedSansM";
    src: url("../font/WantedSans-Medium.ttf");
}

@font-face {
    font-family: "WantedSansR";
    src: url("../font/WantedSans-Regular.ttf");
}

@font-face {
    font-family: "WantedSansS";
    src: url("../font/WantedSans-SemiBold.ttf");
}

body {
    font-family: "WantedSansM";
}

li {
    list-style: none;
}

a {
    color: #333333;
    text-decoration: none;
}

.layout {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    height: auto;
}


/* 중복 클래스 영역 */

#container {
    font-family: "WantedSansS";
    margin-top: 150px;
}

.main_title {
    margin-top: 60px;
    padding: 10px;
    transition: all .5s;
}

.main_title ul {
    display: flex;
    justify-content: space-between;
}

.main_title li {
    padding: 0 4px;
}

.main_title li strong {
    font-family: 'WantedSansM';
    color: #0f9246;
}

.main_con {
    padding: 20px;
    width: 100%;
}

.main_con div {
    padding: 20px;
}

.main_con p {
    display: block;
    width: 100%;
}

.content {
    padding-top: 30px;
}

.content .main_title{
    width: 100%;
    text-align: center;
}

.content .main_title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #0f9246;
    margin: 15px auto;
    border-radius: 3px;
}

.call_box {
    width: 200px;
    height: 100px;
}

.fYellow {
    color: #fff000;
}

.fRed {
    color: #ff0000;
}

.nb {
    display: block;
}

/* top 버튼 영역 */

.top_btn {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;

    transition: opacity 0.35s ease, transform 0.35s ease;

    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.top_btn:hover {
    cursor: pointer;
}

.top_btn img {
    margin: auto;
    width: 80%;
    filter: brightness(100%) invert(100%);
    display: block;
}

.top_btn.show {
    opacity: 0.6;
    transform: translateY(0);
    pointer-events: auto;
}

.top_btn:active {
    transform: scale(0.94);
}


/* 모바일메뉴 백그라운드 영역 */

.bg {
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    display: none;
}

/*모바일 메뉴 영역*/

.mobile_menu {
    transition: all 0.3s;
}

.mobile_menu .header_menu_btn {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 20px;
    background-color: #333;
    cursor: pointer;
    text-align: center;
    display: none;
    transition: all 0.3s;
    z-index: 101;
}

.mobile_menu .header_menu_btn .burgur {
    left: 15px;
    top: 23px;
    position: absolute;
    width: 20px;
    height: 2px;
    background: #f3f3f3;
}

.mobile_menu .header_menu_btn .top-line, .mobile_menu .header_menu_btn .bot-line {
    width: 20px;
    height: 2px;
    background-color: #f3f3f3;
    bottom: -5px;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
    content: "";
}

.mobile_menu .header_menu_btn .top-line {
    top: -5px;
}

.mobile_menu .header_menu_btn .burgur.btn_on {
    width: 0;
}

.mobile_menu .header_menu_btn .burgur.btn_on .bot-line {
    transform: translateY(-5px) rotate(135deg);
}

.mobile_menu .header_menu_btn .burgur.btn_on .top-line {
    transform: translateY(5px) rotate(-135deg);
}

.mobile_menu ul {
    position: fixed;
    top: 0;
    margin-left: -70%;
    height: 100vh;
    width: 70%;
    background: #333;
    z-index: 101;
    display: none;
    text-align: center;
}

.mobile_menu li {
    line-height: 100px;
}

.mobile_menu li a {
    color: #f3f3f3;
}

.menu_move {
    margin-left: 70%;
    top: 0;
}

/*헤더 영역*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #333333;
    z-index: 30;
    height: 150px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

header li > a {
    padding: 20px;
    color: #f3f3f3;
}

header li > a:hover {
    color: #239450;
}

header img {
    max-width: 100%;
    max-height: 100%;
}

header .call_box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}

.call_box a {
    line-height: 100px;
    font-size: 1.4rem;
    color: #e3e3e3;
}

.call_box img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    background: url("/src/image/call.png");
    filter: invert(100%);
}

/* 슬라이드 영역 */
#slider #slide_list {
    position: relative;
    overflow: hidden;
    font-size: 0;
    background: #020617;
}

#slider .slider_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
}

/* 슬라이드 전체 컨테이너 */
#slider ul {
    position: relative;
    width: 100%;
    white-space: nowrap;
}

/* 슬라이드 개별 */
#slider ul > li {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    overflow: hidden;
    max-height: 460px;
}

/* 이미지 */
#slider li > img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease-out;
    filter: brightness(0.88);
}

#slider li:hover > img {
    transform: scale(1.03);
}

/* 텍스트 박스 */
#slider .slide_text_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 10;
    font-size: 1.05rem;
    line-height: 1.65rem;
    font-family: "WantedSansR";
    max-width: 680px;
    background: rgba(0, 0, 0, 0.42);
    padding: 28px 32px;
    border-radius: 22px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

/* 제목 */
#slider .slide_text_wrap h1 {
    margin: 6px 0 14px;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* 본문 텍스트 */
#slider .slide_text_wrap p {
    color: #f3f4f6;
}

/* 좌우 네비 버튼 영역 */
#slider nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 11;
}

/* 좌우 버튼 */
#slider nav > button {
    position: absolute;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}


/* 회사소개 영역 */

#about-section {
    padding: 40px 0 60px;
    text-align: center;
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #374151;
}

.about-sign {
    margin-top: 40px;
    font-size: 1.3rem;
    color: #111827;
    font-weight: 700;
}

/* 카드 3개 영역 */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    padding: 30px;
}

.about-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.about-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-title {
    padding: 20px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

/* 주요업무 영역 */

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 40px;
    padding: 30px;
}

.biz-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    position: relative;
}

.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0,0,0,0.10);
}

.biz-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.biz-card-header h3 {
    margin: 0;
}
.biz-card-header .biz-icon img {
    width: 42px;
    height: 42px;
    opacity: 0.85;
}

.biz-icon img {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    opacity: 0.85;
}

.biz-card h3 {
    display: inline-block;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #111827;
}


.biz-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.45rem;
    margin: 2px 0;
}

/* 오시는길 영역 */

.location_con {
    display: flex;
    justify-content: space-between;
}

.location_con_text_wrap {
    display: flex;
    align-items: center;
}

.location_con_title {
    font-size: 1.4rem;
}

.location_con_title:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    background: url("/src/image/map.png");
    background-size: cover;
    vertical-align: middle;
}

.location_con_text_wrap li {
    padding: 10px 0;
}

.location_con_text_wrap li p {
    padding: 10px 0;
}

/* 구인구직 신청 영역 */

#form {
    background: #f3f3f3;
}

.main_con_form {
    margin: 0 auto;
    width: 50%;
}

.main_con_form form {
    display: block;
}

.main_con select,
.main_con input,
.main_con textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.main_con select::placeholder,
.main_con input::placeholder,
.main_con textarea::placeholder {
    color: #747474;
}

.main_con select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    color: #747474;
    background: #fff;
}


.main_con_form input[type="submit"] {
    background-color: #0f9246;
    color: #fff;
    cursor: pointer;
}

.main_con_form input[type="submit"]:hover {
    background-color: #0c642c;
}

.main_con_form select,
.main_con_form input,
.main_con_form textarea {
    width: 100%;
    box-sizing: border-box;
}

.main_con_form textarea {
    width: 100%;
    height: 200px;
    resize: none;
}

.main_con_form select option[value=""][disabled] {
    display: none;
}

#footer {
    font-family: "WantedSansR";
    width: 100%;
    font-size: .8rem;
    border-top: 1px solid #333;
    color: #f3f3f3;
    background: #333;
}

#footer .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}

#footer .footer_logo img {
    width: 60%;
    filter: grayscale(100%);
}

#footer ul {
    display: flex;
    margin: 20px 0;
}

#footer ul li {
    padding: 0 10px;
    align-self: center;
}

#footer .footer_border_right li:not(:last-child) {
    border-right: 1px solid #333;
}

#footer a {
    color: #f3f3f3;
}

.fade-item {
    opacity: 0;
    transform: translateY(40px);
}

.fade-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.7s ease;
}

@media screen and (max-width: 719px) {
    /* 레이아웃 기본 */

    .layout {
        max-width: 100%;
        padding: 0 14px;
    }

    .db { display: block; }
    .nb { display: inline; }

    /* 모바일 메뉴 영역 */

    .mobile_menu .header_menu_btn {
        display: block;
    }

    .mobile_menu ul {
        display: block;
    }

    /* 헤더 영역 */

    header {
        height: 96px;
        z-index: 98;
        padding: 8px 16px;
    }

    header img {
        max-width: 150px;
    }

    header ul {
        display: none;
    }

    header .call_box {
        display: none;
    }

    /* 컨테이너 여백 */

    #container {
        margin-top: 80px;
    }

    .main_title {
        width: 100%;
        margin-top: 32px;
    }

    .content .main_title h1 {
        font-size: 1.4rem;
    }

    .main_con {
        display: block;
        padding: 14px 0 30px;
    }

    .main_con div {
        padding: 0;
    }

    .main_con p {
        font-size: 0.9rem;
    }

    .main_con ul {
        display: block;
    }

    /* 슬라이더 영역 */

    #slider ul > li {
        max-height: 320px;
    }

    #slider li > img {
        height: 320px;
        object-fit: cover;
        filter: brightness(0.9);
    }

    #slider .slide_text_wrap {
        font-size: 0.9rem;
        line-height: 1.4rem;
        padding: 12px 16px;
        max-width: 88%;
        border-radius: 14px;
    }

    #slider .slide_text_wrap h1 {
        font-size: 1.1rem;
        margin: 0 0 8px;
    }

    /* 회사소개 영역 (카드 느낌) */

    .about-cards {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px;;
    }

    .about-card img {
        height: 160px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* 주요업무 영역 (세로 카드 정렬) */

    .business-grid {
        grid-template-columns: 1fr 1fr;
    }

    @media(max-width: 600px) {
        .business-grid {
            grid-template-columns: 1fr;
        }
        .biz-card {
            padding: 22px;
        }
    }

    /* 오시는길 영역 */

    .location_con {
        flex-direction: column;
        gap: 16px;
    }

    #daumRoughmapContainer1702590884236 {
        width: 100% !important;
        padding: 0;
        z-index: 97 !important;
    }

    .location_con_text_wrap {
        width: 100%;
        align-items: flex-start;
    }

    .location_con_text_wrap ul {
        padding: 4px 0 0;
    }

    .location_con_text_wrap li {
        padding: 8px 0;
    }

    .location_con_text_wrap li p {
        padding: 3px 0;
        font-size: 0.9rem;
    }

    /* 구인/구직 신청 폼 */

    .main_con_form {
        margin: 0 auto;
        width: 100%;
        padding: 20px 16px 22px;
        border-radius: 16px;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    }

    .main_con_form textarea {
        height: 150px;
    }

    /* 푸터 영역 */

    #footer {
        padding: 16px 0;
    }

    #footer .layout {
        width: 100%;
        text-align: center;
        display: block;
        height: auto;
        padding: 0 16px;
    }

    #footer .footer_logo img {
        width: 40%;
        max-width: 140px;
    }

    #footer ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    #footer .footer_border_right li {
        border-right: 0 !important;
        padding: 0 6px;
        margin-bottom: 4px;
    }

    #footer .call_box {
        width: 100%;
    }
}


