@charset "utf-8";
/* ========================================
    main - 공통
========================================= */
#wrap {
    width: 100vw;
    overflow: hidden;
}
.m-section {
    padding: 5rem 0;
    box-sizing: border-box;
    position: relative;
}
.m-title {
    text-align: center;
    margin-bottom: 3rem;
}
.m-title p {
    font-size: 1.8rem;
    word-break: keep-all;
}
.m-title span {
    display: block;
    width: 2rem;
    height: 4px;
    background: var(--point-color);
    margin: 10px auto;
}
.hover110 {
    overflow: hidden;
}
.hover110 img {
    transform: scale(1);
    transition: 0.4s;
}
.hover110:hover img{
    transform: scale(1.1);
}

.btxt {
    font-size: 2.3rem;
}
.mtxt {
    font-size: 1.2rem;
}
.stxt, .desc {
    font-size: 1rem;
}
.point {
    background: rgb(255 207 80 / 80%);
    font-weight: bold;
    padding: 0.2rem;
}
.btn-link {
    display: inline-block;
    padding: 3px 20px;
    border: 2px solid var(--main-color);
    box-sizing: border-box;
    transition: 0.2s;
}

/* ========================================
    main - m-visual
========================================= */
.m-visual {
    width: 100vw;
    height: 80vh;
    background-color: rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.m-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.m-slide .img {
    width: 100%;
    height: 100%;
    background-size: cover;
}
.m-slide.swiper-slide-active .img {
    animation: visual-zoom 5.5s infinite linear forwards;
}
.m-slide-01 .img {
    background: url("../_images/m-visual-01.png") no-repeat center center;
    background-size: cover;
}
.m-slide-02 .img {
    background: url("../_images/m-visual-02.png") no-repeat left center;
    background-size: cover;
}
.m-slide-02 .div-cont {
    justify-content: flex-end;
}
.m-slide-02 .txt-wrap {
    text-align: right;
}
.m-slide-03 .img {
    background: url("../_images/m-visual-03.png") no-repeat center center;
    background-size: cover;
}
.m-slide .img:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
.m-slide .div-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.m-slide .txt-wrap {
    position :relative;
}
.m-slide.swiper-slide-active .txt-wrap {
    animation: fade-up 1s linear forwards;
}
.m-slide .txt-wrap p {
    color: #fff;
}
.m-slide .txt-wrap .btxt {
    font-size: 3.25rem;
    font-weight: 700;
}
.m-slide .txt-wrap .mtxt {
    font-size: 2.2rem;
}
.m-slide .txt-wrap .desc {
    font-size: 1.2rem;
}
.main-contents .m-visual .visual-pagination {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
}
.m-visual .visual-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: var(--gray-02);
    cursor: pointer;
}
.m-visual .visual-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color);
}
.m-visual .visual-btn-prev {
    width: 2rem;
    height: 2rem;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    position: absolute;
    top: 50%; left: 2rem;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
    cursor: pointer;
}
.m-visual .visual-btn-next {
    width: 2rem;
    height: 2rem;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%; right: 2rem;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 1;
    cursor: pointer;
}

@keyframes visual-zoom {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
}
@keyframes fade-up {
    0% {opacity: 0; bottom: -2rem;}
    100% {opacity: 1; bottom: 0;}
}


@media (max-width:1024px) {}
@media (max-width:768px) {}
@media (max-width:480px) {
    .m-slide .div-cont {
        width: 90%;
        margin: auto;
    }
    .m-slide .txt-wrap .btxt {
        font-size: 2.7rem;
    }
    .m-slide .txt-wrap .mtxt {
        font-size: 1.8rem;
    }
    .m-visual .visual-btn-prev, .m-visual .visual-btn-next {
        display: none;
    }
}
    


/* ========================================
    main - m-section01 (BUSINESS)
========================================= */
.m-section01 .business-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.m-section01 .business-list li {
    width: 32%;
    padding-top: 30%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.m-section01 .business-list a {
    display: block;
    width: 100%; 
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.m-section01 .business-list .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.m-section01 .business-list .img:hover:after {
    display: none;
}
.m-section01 .business-list img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
.m-section01 .business-list .img:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
}
.m-section01 .business-list .txt {
    color: #fff;
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    transition: 0.4s;
    text-align: right;
}
.m-section01 .business-list .txt p {
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

@media (max-width:1024px) {

}
@media (max-width:768px) {
}
@media (max-width:480px) {
    .m-section01 .business-list {
        flex-direction: column;
    }
    .m-section01 .business-list li {
        width: 100%;
        padding-top: 100%;
        margin-bottom: 1rem;
    }
    .m-section01 .business-list .mtxt {
        font-size: 1.6rem
    }
    .m-section01 .business-list .desc {
        font-size: 1.3rem;
    }
}
/* ========================================
    main - m-section02 
========================================= */
.m-section02 {
    background: var(--sub-color-01);
}
.m-section02 .effect-list {
    display: flex;
    justify-content: space-between;
}
.m-section02 .effect-list > li {
    width: 24%;
    background: var(--main-color);
    border-radius: 1rem;
    padding: 1rem;
    box-sizing: border-box;
}
.m-section02 .img {
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: auto;
}
.m-section02 .mtxt {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    line-height: 120%;
    margin: 1rem 0;
}
.m-section02 .effect-list li li {
    padding-left: 1rem;
    position: relative;
}
.m-section02 .effect-list li li:before {
    content: "";
    display: block;
    width: 0.3rem;
    height: 0.3rem;
    background: var(--point-color);
    position: absolute;
    top: 0.66rem;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width:1024px) {}
@media (max-width:768px) {
    .m-section02 .effect-list {
        flex-wrap: wrap;
    }
    .m-section02 .effect-list > li {
        width: 49%;
        margin-bottom: 2%;
    }
}
@media (max-width:480px) {
    .m-section02 .effect-list > li {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .m-section02 .effect-list li ul {
        padding: 0 2rem;
    }
}

/* ========================================
    main - m-section03 (BOARD)
========================================= */


/* ========================================
    main - m-section04 (CONTACT)
========================================= */
.m-section04 {
    padding: 0;
}
.m-section04 .m-title {
    display: none;
}
.m-section04 .cont {
    position: relative;
}
.m-section04 .txt-wrap {
    width: 20rem; 
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    background: rgba(2, 157, 162, 0.8);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
.m-section04 p {
    position: relative;
    padding-left: 1rem;
}
.m-section04 .mtxt {
    margin-bottom: 0.5rem;
}
.m-section04 .mtxt:before {
    content: "";
    display: block;
    width: 0.4rem;
    height: 1.8rem;
    background: var(--point-color);
    position: absolute;
    left: 0;
    top: 0;
}
.m-section04 .desc + .mtxt {
    margin-top: 3rem;
}
.m-section04 .map-wrap {
    width:100vw;
    height: 30rem;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50vw);
}
.m-section04 #daumRoughmapContainer1703566037209 {
    width: 100vw !important;
    height: 100%;
}


/* ========================================
    main - m-section05 (PARTNERS)
========================================= */
.m-section05 {
    background: var(--gray-02);
    padding: 1.5rem 0;
}
.m-section05 .partner-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.m-section05 .partner-list li {
    height: 1.8rem;
}
.m-section05 .partner-list li + li {
    margin-left: 8rem;
}
.m-section05 .partner-list li img {
    height: 100%;
}






/* ========================================
    sub - 공통
========================================= */
.sub-title-wrap {
    width: 100vw;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sub-title-wrap .sub-title .btxt {
    color: #fff;
    margin: 0 auto;
    border: none;
}
.sub-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-nav li {
    border: 2px solid #fff;
    position: relative;
}
.sub-nav li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.3rem 1rem;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.sub-nav li + li {
    margin-left: 0.3rem;
}
.sub-nav .home a {
    padding: 1rem;
    background: url("../_images/home.png") no-repeat center center;
    background-size: 70%;
    filter: invert(1);
}

.sub-wrap .tit {
    font-size: 1.5rem;
    line-height: 120%;;
    padding-left: 1rem;
    position: relative;
    margin-bottom: 2rem;
}
.sub-wrap .tit:before {
    content: "";
    width: 0.4rem;
    height: 1.8rem;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color);
}

.sub-wrap .btxt {
    font-size: 2rem;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 1rem;
}

.board li {
    border: 0.5px solid var(--main-color);
    border-left: none;
    border-right: none;
    padding: 1rem;
}
.board li + li {
    border-top: none;
}
.board li .date {
    font-size: 0.7rem;
}


.tab-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 2rem auto;
}
.tab-wrap li {
    text-align: center;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--gray-03);
    cursor: pointer;
}
.tab-wrap li + li {
    margin-left: -1px;
}
.tab-wrap li.on {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
.tab-cont-wrap {
    width: 100%;
    text-align: center;
}
.tab-cont {
    width: 100%;
    display: none;
}
.tab-cont:first-child {
    display: block;
}
.tab-cont.img-cont img {
    width: 100%; height: 100%; object-fit: contain;
}

@media (max-width:1024px) {}
@media (max-width:768px) {}
@media (max-width:480px) {}





/* ========================================
    회사소개 - 인삿말(greeting)
========================================= */
.company-wrap .sub-title-wrap {
    background: url("../_images/m-location.png") no-repeat center center;
    background-size: cover;
}
.greeting .cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.greeting .img-wrap {
    width: 30%;
    height: 30rem;
    border-radius: 1rem;
    overflow: hidden;
}
.greeting .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.greeting .txt-wrap {
    width: 65%;
}
.greeting .txt-wrap .color {
    font-size: 1.7rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}
.greeting .txt-wrap p {
    font-size: 1.2rem;
    line-height: 200%;
    word-break: keep-all;
}
.greeting .sign-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-right: 7.5rem;
    margin-top: 4rem;
}
.greeting .sign-wrap img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 6rem;
}
@media (max-width:1024px) {}
@media (max-width:768px) {
    .greeting .cont {
        flex-direction: column;
        align-items: center;
    }
    .greeting .img-wrap {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 450px;
        height: auto
    }
    .greeting .txt-wrap {width: 100%;}
    .greeting .txt-wrap p {
        line-height: 150%;
    }
}
@media (max-width:480px) {}


/* ========================================
    회사소개 - 인증(certification)
========================================= */
.certification .board {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.certification .board li {
    width: 100%;
    height: 60rem;
}
.certification .board li img {
    width: 100%; height: 100%; object-fit: contain;
}

/* ========================================
    회사소개 - 오시는길(location)
========================================= */
.company-wrap #daumRoughmapContainer1703566037209 {
    width: 100% !important;
    height: 100%;
}
.location .txt-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.location .mtxt {
    width: 5rem;
    height: 5rem;
    background: var(--main-color);
    border-radius: 100%;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location .desc + .mtxt {
    margin-left: 8rem;
}
@media (max-width:1024px) {}
@media (max-width:768px) {
    .location .txt-wrap {
        flex-direction: column;
    }
    .location .mtxt {
        margin: auto;
        margin-bottom: 1rem;
    }
    .location .desc + .mtxt {
        margin: 4rem auto 1rem;
    }
}
@media (max-width:480px) {}

/* ========================================
    제품소개(product)
========================================= */
.product-wrap .sub-title-wrap {
    background: url("../_images/m-visual-02.png") no-repeat left 80%;
    background-size: cover;
}

.product .mtxt {
    font-size: 1.4rem;
    padding-left: 0.5rem;
    position: relative;
    margin-bottom: 1rem;
}
.product .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: var(--main-color);
    border-radius: 100%;
}
.product .desc + .mtxt {
    margin-top: 4rem;
}
.product .desc {
    font-size: 1.2rem;
    word-break: keep-all;
}
.product .process-list {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: flex-start;
}
.product .process-list li {
    width: 20%;
    position: relative;
    box-sizing: border-box;
    margin: 2.5%;
    border: 2px solid #000;
}
.product .process-list .num {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--point-color);
    width: 100%;
    height: auto;
    border-radius: 0;
}
.product .process-list .mtxt {
    text-align: center;
    margin: 1rem auto;
}
.product .img-wrap {
    display: flex; flex-wrap: wrap;
}
.product .img-wrap li {
    width: 25%;
    border: 1px solid #000;
    box-sizing: border-box;
}
.product .img-wrap li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media (max-width:1024px) {}
@media (max-width:768px) {
    .product .process-list li {
        width: 45%; 
    }
    .product .img-wrap li {
        width: 50%; 
        padding-top: 50%;
        position: relative;
    }
    .product .img-wrap li img {
        position: absolute;
        top: 0;
        left: 0;
    }
}
@media (max-width:480px) {
    .product .process-list li {
        width: 100%;
        margin: 3% 0;
    }
}

/* ========================================
    제품소개(product)-padlock
========================================= */
.padlock .tab-wrap {
    max-width: 100%;
    height: 3rem;
}

.padlock .tab-wrap li {
    height: 100%;
    display: flex;
    align-items: center;
}


/* ========================================
    solution - 웹솔루션(web)
========================================= */
.solution-wrap .sub-title-wrap {
    background: url("../_images/solution.png") no-repeat center 25%;
    background-size: cover;
}
.contents.web .mtxt {
    font-size: 1.6rem;
    padding-left: 0.5rem;
    position: relative;
}
.contents.web .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--main-color);
    border-radius: 100%;
}
.contents.web .desc + .mtxt {
    margin-top: 10rem;
}
.contents.web img {
    width: 100%;
    max-width: 50rem;
    margin: 2rem auto;
    display: block;
}
.contents.web .desc {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
}

@media (max-width:1024px) {}
@media (max-width:768px) {}
@media (max-width:480px) {}

/* ========================================
    solution - 모바일솔루션(mobile)
========================================= */
.contents.mobile .mtxt {
    font-size: 1.6rem;
    padding-left: 0.5rem;
    position: relative;
}
.contents.mobile .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--main-color);
    border-radius: 100%;
}
.contents.mobile .desc + .mtxt {
    margin-top: 10rem;
}
.contents.mobile img {
    width: 100%;
    max-width: 30rem;
    margin: 2rem auto;
    display: block;
}
.contents.mobile .desc {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
}
@media (max-width:1024px) {}
@media (max-width:768px) {}
@media (max-width:480px) {}


/* ========================================
    문의하기
========================================= */
.inquiry-wrap .sub-title-wrap {
    background: url("../_images/m-inquiry.png") no-repeat center 22%;
    background-size: cover;
}
.inquiry .table-wrap {
    width: 90vw;
    max-width: 750px;
    margin: 0 auto;
}

.inquiry th, .inquiry td {
    padding: 0.2rem;
    box-sizing: border-box;
    cursor: auto;
}
.inquiry .table-wrap td input, .inquiry .table-wrap td textarea {
    width: 100%;
    resize: none;
}
.inquiry .btn-wrap {
    width: 90vw;
    max-width: 750px;
    margin: 1rem auto;
}
.inquiry .btn-submit {
    width: 80%;
    margin-left: 20%;
    background: var(--main-color);
    color: #fff;
    border: none;
    outline: none;
    display: block;
    padding: 1rem 0;
    border-radius: 0.5rem;
    font-size: 1.2rem;
}

@media (max-width:1024px) {}
@media (max-width:768px) {
    .inquiry tr {
        width: 90vw;
        display: flex;
        flex-wrap: wrap;
    }
    .inquiry th {
        width: 25%;
    }
    .inquiry td {
        width: 75%;
    }
    .inquiry .btn-submit {
        width: 75%;
        margin-left: 25%;
    }
}
@media (max-width:480px) {}




/* ========================================
    자료실 - 사용설명서
========================================= */
.data-wrap .sub-title-wrap {
    background: url("../_images/solution.png") no-repeat center 25%;
    background-size: cover;
}




/* ========================================
    stand-alone
========================================= */
.standAlone .img-wrap {
    text-align: center;
}
.standAlone .img-wrap img {
    width: 70%;
    height: 100%;
    object-fit: contain;
}

.standAlone .img-wrap {
    margin-bottom: 15rem;
}

@media (max-width:480px) {
    .standAlone .img-wrap {
        margin-bottom: 6rem;
    }
    .standAlone .img-wrap img {
        width: 100%;
        
     }
}

/* ========================================
    solution-loto
========================================= */
.loto .img-wrap {
    text-align: center;
}
.loto .img-wrap img {
    width: 70%;
    height: 100%;
    object-fit: contain;
}

.loto .img-wrap {
    margin-bottom: 15rem;
}

@media (max-width:480px) {
    .loto .img-wrap {
        margin-bottom: 6rem;
    }
    .loto .img-wrap img {
        width: 100%;
        
     }
}






/* ========================================
========================================= */


/* ========================================
========================================= */


/* ========================================
========================================= */


/* ========================================
========================================= */


/* ========================================
========================================= */


/* ========================================
========================================= */