@charset "UTF-8";


/* ==================================================
   RESET
   ================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: #222;
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    border: 0;
    vertical-align: middle;
}

.clear {
    clear: both;
}


/* ==================================================
   공통
   ================================================== */

#wrap {
    width: 100%;
}

.container {
    width: 1280px;
    margin: 0 auto;
}


/* ==================================================
   HEADER
   ================================================== */

#header {
    width: 100%;
}


/*
 * header 전체 기준은 1280px
 *
 * 전체메뉴만 오른쪽으로 100px 빠져나간다.
 */

.header-inner {
    position: relative;

    width: 1280px;
    height: 102px;

    margin: 0 auto;

    background: #fff;

    border-bottom: 1px solid #dce7f5;
}


/* ==================================================
   HEADER - 1280 영역
   ================================================== */

.header-main {
    position: relative;

    width: 1280px;
    height: 102px;
    
    
}


/* ==================================================
   LOGO
   ================================================== */

.logo-area {
    position: absolute;

    left: 0;
    top: 0;

    width: 200px;
    height: 102px;

    display: flex;
    align-items: center;
}

/* ==================================================
   HEADER-MENU
   ================================================== */

.header-menu {
    position: absolute;

    left: 230px;
    top: 0;

    height: 102px;

    display: flex;
    align-items: center;
    
    
}

.header-menu a {
    position: relative;

    display: block;

    height: 38px;

    padding: 0 34px;

    color: #111f43;
    /*color: #222222;*/

    line-height: 38px;

    font-size: 19px;
    font-weight: bold;

    white-space: nowrap;
}

.header-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #0068d9;
    transition: width 0.2s ease;
}

.header-menu a:hover {
    color: #0068d9;
}

.header-menu a:hover::after {
    width: 100%;
}


/* 메뉴 구분선 */

.header-menu a + a:before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 1px;
    height: 28px;

    background: #d8e0ec;
}


/* ==================================================
   LOGIN페이지 링크(고객사로그인, 협력사로그인) 
   ================================================== */

.header-login-link {
    position: absolute;

    right: 10px;
    top: 0;

    height: 102px;

    display: flex;
    align-items: center;

    gap: 10px;
    
}

.header-login-link a {
    display: block;

    height: 44px;

    padding: 0 22px;

    border: 1px solid #1554c7;
    border-radius: 24px;

    color: #1554c7;

    line-height: 40px;

    font-size: 14px;
    font-weight: bold;

    white-space: nowrap;
}

.header-login-link a:first-child {
    background: #1554c7;
    color: #fff;
}





/* ==================================================
   전체메뉴
   ================================================== */

.all-menu {
    position: absolute;

    top: 0;
    right: -100px;

    width: 100px;
    height: 102px;

    background: #fff;
}

.all-menu a {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: #142443;

    text-decoration: none;
}


/* 햄버거 */

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;

    width: 27px;
}

.hamburger i {
    display: block;

    width: 27px;
    height: 3px;

    background: #142443;
}



/* 전체메뉴 글자 */

.all-menu-text {
    margin-top: 7px;

    font-size: 12px;
    color: #142443;
}

/* =========================================================
   전체메뉴 패널
   ========================================================= */

.all-menu-panel {
    display: none;

    position: absolute;

    top: 102px;
    left: 0;
    right: 0;

    z-index: 1000;

    background: #fff;
    /*border-top: 1px solid #ddd;*/
    border-bottom: 1px solid #ddd;
}


/* 전체메뉴 열림 */
.all-menu-panel.open {
    display: block;
}


/* 1280px 영역 */
.all-menu-inner {
    width: 1280px;
    margin: 0 auto;

    display: flex;

    padding: 25px 0;
    box-sizing: border-box;
}


/* 메뉴 컬럼 */
.all-menu-column {
    flex: 1;

    padding: 0 30px;

    border-right: 1px solid #eee;
    box-sizing: border-box;
}

.all-menu-column:first-child {
    padding-left: 0;
}

.all-menu-column:last-child {
    border-right: 0;
}


/* 대메뉴 */
.all-menu-column h3 {
    margin: 0 0 18px;

    color: #142443;
    font-size: 19px;
    font-weight: 600;
}


/* 하위메뉴 */
.all-menu-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.all-menu-column li {
    margin-bottom: 10px;
}

.all-menu-column li a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.all-menu-column li a:hover {
    color: #185dcc;
}


/* ==================================================
   MAIN
   ================================================== */

#main {
    padding-top: 18px;
    padding-bottom: 20px;
}

.main-layout {
    width: 1280px;
    margin: 0 auto;
}


/* 왼쪽 */
.left-content {
    float: left;
    width: 960px;
}


/* 오른쪽 */
.right-content {
    float: right;
    width: 300px;
}


/* ==================================================
   MAIN BANNER
   ================================================== */
.main-banner {
    width: 960px;
    height: 360px;

    background: #edf7ff;

    border-radius: 18px;

    overflow: hidden;
}



/* ==================================================
   SERVICE
   ================================================== */

.service-area {
    width: 960px;

    margin-top: 20px;

    overflow: hidden;
}

.service-card {
    position: relative;

    float: left;

    width: 306px;
    height: 270px;

    margin-right: 21px;
    /*padding: 20px;*/
    
    box-sizing: border-box;

    border-radius: 18px;
    overflow: hidden;
}

.service-card:nth-child(3) {
    margin-right: 0;
}


.service01 {
    background: #fff8ed;
}

.service02 {
    background: #fff0f2;
}

.service03 {
    background: #edf6ff;
}



/* ==================================================
   LOGIN IFRAME
   ================================================== */

.login-iframe-box {
    width: 100%;
    height: 160px;

    box-sizing: border-box;

    border: 1px solid #e4e8ef;
    border-radius: 18px;

    background: #fff;

    overflow: hidden;
}

.login-iframe-box iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}



/* ==================================================
   QUICK MENU
   ================================================== */

.quick-menu {
    width: 100%;
    margin-top: 15px;
    padding: 17px 16px;

    border: 1px solid #e4e8ef;
    border-radius: 18px;

    background: #fff;

    box-sizing: border-box;
}

.quick-title {
    margin-bottom: 7px;

    font-size: 18px;
    font-weight: bold;
}

.quick-item {
    display: flex;
    align-items: center;

    width: 100%;
    height: 43px;

    border-bottom: 1px solid #eee;

    box-sizing: border-box;

    text-decoration: none;

    transition: background-color 0.2s ease;
}

.quick-item:hover {
    background-color: #f5f8ff;
}

.quick-icon {
    width: 34px;
    height: 43px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.quick-name {
    font-size: 14px;

    white-space: nowrap;
}

.quick-item:hover .quick-name {
    color: #174ee6;
}

.quick-arrow {
    margin-left: auto;
    margin-right: 5px;

    color: #174ee6;

    font-size: 28px;
    font-weight: 900;

    line-height: 1;

    transition: transform 0.2s ease;
}

.quick-item:hover .quick-arrow {
    transform: translateX(3px);
}


/* ==================================================
   CUSTOMER CENTER
   ================================================== */

.customer-center {
    width: 300px;
    height: 177px;

    margin-top: 15px;

    padding: 23px;

    border: 1px solid #e4e8ef;
    border-radius: 18px;

    background: #fff;

    text-align: center;
}

.customer-title {
    font-size: 14px;
    font-weight: bold;
}

.customer-number {
    margin-top: 7px;

    color: #164ee8;

    font-size: 29px;
}

.customer-time {
    margin-top: 8px;

    color: #4d55c7;

    font-size: 13px;
    line-height: 1.7;
}


/* ==================================================
   RELATED
   ================================================== */

#related {
    padding-bottom: 15px;
}

.related-inner {
    width: 100%;
    height: 80px;

    border: 1px solid #e5eaf1;
    border-radius: 18px;

    display: flex;
}

.related-item {
    flex: 1;

    height: 50px;

    margin-top: 14px;

    line-height: 50px;

    text-align: center;
}

.related-item + .related-item {
    border-left: 1px solid #e5eaf1;
}


/* ==================================================
   FOOTER
   ================================================== */

#footer {
    padding: 0 0 25px;
}

.footer-inner {
	border-top: 1px solid #eee;
    padding: 15px 0 25px;
    
    position: relative;

    width: 1280px;
    min-height: 100px;

    margin: 0 auto;

    color: #555;

    font-size: 12px;
    line-height: 1.8;
    

}

.footer-address {
    padding-left: 20px;
}

.footer-tel {
    position: absolute;

    top: 55px;
    right: 450px;

    font-weight: 600;
}

.footer-logo {
    position: absolute;

    top: 55px;
    right: 20px;
}

.copyright {
    margin-top: 13px;

    padding-left: 20px;

    color: #6b8eaa;
}


/* ==================================================
   FOOTER MENU
   ================================================== */

.footer-menu {
    width: 100%;

    padding: 0 20px 18px;

    font-size: 13px;
}

.footer-menu a {
    color: #333;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-menu span {
    margin: 0 12px;
    color: #ccc;
}