<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("../font/AritaDotum/aritaDotum.css");

.mobile-view{
    display: flex;
}
.mobile-view img{
    max-height: 300px;
    margin: 0 auto;
    text-align: center;
}
.screen-view{
    display: none;
}
.desc-box br {
    display: none;
}
input,
textarea{
    height: auto;
    padding: .5rem .5rem;
    border: 1px solid #a9a9aa; 
    border-radius: 0;
    font-family: inherit; 
    font-size: 13px;
    line-height: normal;
    color: #535353;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;
    z-index: 9999;
}

/* Centered texts in each section
* --------------------------------------- */
.section{
    position: relative;
    font-family: 'arita-light';
    text-align: center;
}
.intro{
    position: relative;
    height: 100%;
    padding: 60px 0;
}

/* Fixed header
* --------------------------------------- */
#header{
    position: fixed;
    top: 0px;
    height: 60px;
    display: block;
    width: 100%;
    background: transparent;
    z-index: 9;
    color: #000;
}
.nav-colored{
    background-color: rgba(255, 255, 255, .9) !important;
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
}
.nav-transparent{
    background-color: transparent;
}
.brand{
    position: absolute;
    left: 20px;
    bottom: 16px;
}
.brand a{
    display: inline-block;
}
.brand img{
    width: 60px;
    height: auto;
}
.cs-menu{
    position: absolute;
    right: 20px;
    bottom: 18px;
}
.cs-menu li{
    display: inline-block;  
}
.cs-menu a{
    display: inline-block;
    padding: 0px 4px;
    margin: 0px 2px;
    color: inherit;
}
.cs-menu a {
    position: relative;
    display: block;
    cursor: pointer;
}
.cs-menu a:before, 
.cs-menu a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    /* top: 50%; */
    bottom: 10%;
    margin-top: -4px;
    background: #1636C2;
}
.cs-menu a:before {
    left: -2.5px;
}
.cs-menu a:after {
    right: 2.5px;
    background: #1636C2;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cs-menu a:hover:before {
    background: #1636C2;
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cs-menu a:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

/* Fixed footer
* --------------------------------------- */
#footer-gnb{
    display: none;
}
.gnb{
    position: absolute;
    left: 50px;
    bottom: 70px;
}
.gnb li{
    display: table;  
}
.gnb a{
    display: inline-block;
    padding: 10px 4px;
    margin: 0px 6px;
    color: inherit;
}
.gnb a {
    position: relative;
    display: block;
    cursor: pointer;
}
.gnb a:before, 
.gnb a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    /* top: 50%; */
    bottom: 10%;
    margin-top: -4px;
    background: #1636C2;
}
.gnb a:before {
    left: -2.5px;
}
.gnb a:after {
    right: 2.5px;
    background: #1636C2;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gnb a:hover:before {
    background: #1636C2;
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gnb a:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}
#company{
    display: none;
}
#company img{
    display: none;
}

/* .section#gate-page
* --------------------------------------- */
.section#gate-page{
    height: 100vh;
    background-image: url(../images/n-01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* .representative-img
* --------------------------------------- */
.section .representative-img{
    width: auto;
    /* height: 100vh; */
    object-fit: contain;
}
#video-bg{
    display: none;
}

/* gate-page
* --------------------------------------- */
.gate-page{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    margin: 0 auto;
}
.gate-page .box-left{
    float: none;
    align-self: flex-start;
    margin: 0 10px;
    text-align: left;
}
.gate-page .desc{
    width: 260px;
}
.gate-page .box-right{
    width: 280px;
    float: none;
    align-self: flex-end;
    margin: 0 10px;
    text-align: right;
}
.gate-page .text-box span{
    font-size: 34px;
    color: #fff;
    background-color: #1636C2;
}
.gate-page .page-title{
    position: relative;
    bottom: 0px;
    left: 0%;
    transform: translateX(-0%);
    text-align: center;
    padding-bottom: 20px;
}
.gate-page .page-title img{
    max-width: 260px;
    height: auto;
}
.gate-page .box-left{
    animation: nudge 5s linear alternate;
}
.gate-page .box-left span{
    animation: show 5s linear infinite;
}
.gate-page .box-left span:nth-child(even){
    animation-name: smoky-mirror;
}
.gate-page .box-right span{
    animation: pulse 2.5s ease alternate;
    animation-iteration-count: 2;
}

@keyframes show {
    0% {margin-top:-270px;}
    5% {margin-top:-180px;}
    33% {margin-top:-180px;}
    38% {margin-top:-90px;}
    66% {margin-top:-90px;}
    71% {margin-top:0px;}
    99.99% {margin-top:0px;}
    100% {margin-top:-270px;}
}
@keyframes pulse {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: #1636C2;
    }
}
@keyframes nudge {
    0%, 100% {
        transform: translate(0, 0);
    }
    
    50% {
        transform: translate(150px, 0);
    }
    
    80% {
        transform: translate(-150px, 0);
    }
}
@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* define-page
* --------------------------------------- */
.define-page .img-box{
    position: relative;
    left: -10;
}
.define-page img{
    width: calc(100% - 40px);
}
.section h2.title{
    display: inline-block;
    margin: 0 20px;
    line-height: 1.1;
    font-family: 'arita-bold';
    font-size: 34px;
    color: #fff;
    background-color: #1636C2;
}
.section h2.title.bg-danger{
    background-color: #c27316;
}
.section .desc-box{
    margin: 40px 20px 0;
}
.section .img-box{
    margin: 40px 0px 0;
}
.section p{
    color: inherit;
}
.section p:lang(en){
    font-family: 'arita-medium';
    font-size: 20px;
    text-transform: uppercase;
}
.section p:lang(ko){
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
}
.section p.text-small{
    font-size: 80%;
}

/* function-page / consulting-page
* --------------------------------------- */
.consulting-page::after{
    content: '';
    display: block;
    clear: both;
}
.function-box::after{
    content: '';
    display: block;
    clear: both;
}
.function-box .img-box{ 
    float: none;
    width: 100%;
}
.function-box .caption-box{
    text-align: left;
}
.function-box .caption-box.function-caption{
    display: flex;
    margin: 30px 20px 0;
}
.function-box .caption-box dd + dt{
    margin-top: 20px;
}
.consulting-page img{
    max-height: 300px;
}
.consulting-page .consulting-box::after{
    content: '';
    display: block;
    clear: both;
}
.consulting-page .consulting-box .img-box{ 
    display: block;
    width: auto;
    position: relative;
    left: -12%;
}
.consulting-page .consulting-box .consulting-caption{
    display: block;
    width: auto;
    position: relative;
    top: 0%;
    transform: translateY(0%);
    margin: 30px 20px 0;
    text-align: left;
}
.caption-box .number{
    display: inline-block;
    padding: 6px 10px;
    font-family: 'arita-semibold';
    font-size: 16px;
    color: #fff;
    background-color: transparent;
}
.caption-box .function-basic .number{
    background-color: #1636C2;
}
.caption-box .function-add .number{
    background-color: #16c293;
}
.caption-box .function-consulting .number{
    background-color: #c27316;
}
.caption-box ul{
    margin: 10px 0px 0 35px;
}
.caption-box ul li{
    margin: 5px 0;
    color: inherit;
}
.caption-box .title{
    display: inline-block;
    margin-left: 5px;
    font-size: 20px;
    letter-spacing: -0.1px;
    color: inherit;
}
.caption-box.consulting-caption dd + dt{
    margin-top: 20px;
}

/* contact-page
* --------------------------------------- */
#contact-page{
    background-color: #f2f1f3;
}
.contact-page{
    max-width: 1366px;
    padding: 0 0px;
    /* margin: 0 auto; */
    margin: 30px 20px 0;
    font-family: 'arita-medium';
}
.contact-page h3.title{
    display: flex;
    flex-wrap: wrap;
    margin: 40px 20px 20px;
    font-size: 22px;
    text-align: left;
    color: #7a7a7a;
}
.contact-page h3.title::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background-color: #7a7a7a;
}
.contact-page ul {
    text-align: left;
    padding-left: 30px;
}
.contact-page ul dt {
    display: inline-flex;
    flex-wrap: wrap;
}
.contact-page dt::after{
    content: '';
    display: inline-flex;
    width: 100%;
    height: 2px;
    margin: 8px 0 4px;
    background-color: #7a7a7a;
}
.contact-page dd{
    margin: 15px 0;
}
.contact-page dd span{
    display: block;
}
.contact-page a{
    color: inherit;
    transition: all 5s;
}

/* client-box
* --------------------------------------- */
.reference--page .client-box{
    display: grid;
    max-width: 1920px;
    justify-content: center;
}
.reference--page .client-box &gt; li{
    margin: 10px 0;
}
.reference--page .client-box .client__title{
    text-align: left;
    font-size: 18px;
    font-weight: lighter;
    color: #7a7a7a;
}
.reference--page .client-box .client__title::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background-color: #7a7a7a;
}
.reference--page .client-box .client__list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin: 8px 0 0;
}
.reference--page .client-box .client__list li{
    line-height: 1;
}
.reference--page .client-box .client__list li img{
    width: 110px;
    height: auto;
    display: inline-flex;
    border: 1px solid #C5C8CE;
    padding: 4px 10px;
}
.reference--page .client-box .client__list li img ~ .desc{
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 4px;
    text-align: center;
    font-size: 9.5px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.04rem;
    background-color: #C5C8CE;
}

/* .form-box */
.form-box{
    padding: 10px 0;
    margin: 20px 0;
}
.form-box::after{
    content: '';
    display: block;
    clear: both;
}
.form-box{
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.form-box li.form-group{
    display: block;
    width: 100%;
}
.form-box li.form-group:nth-child(odd){
    padding-right: 0px;
}
.form-box li.form-group:nth-child(evevn){
    padding-left: 0px;
}
li.form-group{
    position: relative;
    width: 100%;
    padding: 0px 0;
    margin: 10px 0;
}
li.form-group::after{
    content: '';
    display: block;
    clear: both;
}
label{
    padding: .5rem 0rem;
    cursor: text;
}
.form-group .label{
    display: block;
    width: 100%;
}
.form-group input.form-control{
    display: block;
    width: 100%;
}
.form-box li.form-group.textarea-box{
    float: none;
    width: 100%;
}
.form-box li.form-group.textarea-box textarea{
    margin: 0 0rem;
}
.contact-box .link-agree{
    float: right;
    display: inline-block;
    position: relative;
    top: -5px;
    padding: 6px 14px 5px;
    border: 1px solid #a9a9aa;
    margin-top: 5px;
    font-size: 60%;
    text-align: right;
    color: #000;
    background-color: transparent;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.contact-box .link-agree:hover,
.contact-box .link-agree:focus,
.contact-box .link-agree:active{
    border-color: #1636C2;
    text-decoration: none;
    color: #fff;
    background-color: #1636C2;
}
.contact-box .sub-heading{
    margin: 0 0 20px;
    color: #1636C2;
}
.form-group{
    position: relative;
}
.form-group input.form-control.is-invalid{
    border: 2px solid #c27316;
}
.form-group input.form-control.is-invalid:hover,
.form-group input.form-control.is-invalid:focus{
    outline-color: #c27316 !important;  
}
.form-box li.form-group .invalid-feedback {
    display: none;
    position: absolute;
    top: 70px;
    left: 0px;
    width: 100%;
    font-size: 70%;
    color: #c27316;
}
.form-group .invalid-feedback {
    display: none;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    font-size: 70%;
    color: #c27316;
}

/* styled-checkbox
* --------------------------------------- */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}
.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.styled-checkbox + label:before {
    content: '';
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #a9a9aa;
}
.styled-checkbox:hover + label:before {
    background: #1636C2;
}
.styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
    background: #1636C2;
}
.styled-checkbox:disabled + label {
    color: #a9a9aa;
    cursor: auto;
}
.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #a9a9aa;
}
.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
} 
@media (max-width: 320px){
    .user-agree{
        font-size: 80% !important;
    }
}

/* user-agree__terms-arget
* --------------------------------------- */
.user-agree__terms-arget {
    display: block;
    height: 180px;
    padding: 10px;
    border: 1px solid #a9a9aa;
    margin: 18px auto 0;
    font-size: 12px;
    background-color: #f2f1f3;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/* .user-agree__terms-arget {
    white-space: pre-wrap;
    *white-space: pre;
    word-break: break-all;
    word-wrap: break-word
} */
.user-agree__terms-arget p,
.user-agree__terms-arget dt,
.user-agree__terms-arget dd,
.user-agree__terms-arget li{
    margin-top: 0;
    margin: 0 0;
}
.user-agree__terms-arget dl{
    margin-top: 10px;
}
.user-agree__terms-arget dl &gt; dd + dt{
    margin-top: 10px;
}
.user-agree__terms-arget dl &gt; dd{
    margin-left: 10px;
}
.user-agree__terms-arget dl dd ul{
    margin: 5px 0 10px 10px;
}
.user-agree__terms-arget p{
    font-size: 13px !important;
}
.user-agree__terms-arget li{
    list-style: square;
}

/* Bottom menu
* --------------------------------------- */
.button-box{
    margin: 20px auto;
    text-align: center;
}
.button{
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border: 2px solid #000;
    border-radius: 0;
    text-align: center;
    vertical-align: middle;
    font-family: 'arita-medium';
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    color: #fff;
    background-color: #000;
    transition: all 0.3s;
}
.button:hover,
.button:focus,
.button:active{
    border: 2px solid #000;
    letter-spacing: 1.05px;
    color: #000;
    background-color: #fff;
    transform: scale(1.01, 1)
}
.button.disabled{
    opacity: .6;
    cursor: not-allowed;
}

/* Bottom menu
* --------------------------------------- */
#infoMenu {
    bottom: 80px;
}
#infoMenu li a {
    color: #fff;
    z-index: 999;
}

/* footer
* --------------------------------------- */
.footer{
    width: 100vw;
    height: auto;
    position: relative;
    bottom: 0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 0 0 0px 60px;
    margin-top: 0px;
    font-size: 13px;
    text-align: left;
    color: #535353;
    background-color: #f2f1f3;
}
.footer .copyright{
    position: relative;
    left: 0%;
    transform: translateX(0%);
    padding-bottom: 60px;
    margin-top: 10px;
}
.footer .info-protection{
    position: relative;
    left: 0;
}</pre></body></html>