@charset "utf-8";

img {
    vertical-align: middle;
    max-width: 100%;
    transition: all 0.3s;
}
a {
    transition: all 0.3s;
    cursor: pointer;
}
tag {
    transition: all 0.3s;
    cursor: pointer;
}
button {
    border:none;
    transition: all 0.3s;
    cursor: pointer;
}
p, ul, li, div, section, header, footer, aside, article, h1, h2, h3, h4, h5, h6 {
    position: relative;
}
input[type="text"] {
    padding:8px 20px;
    width:240px;
    height:40px;
    border:1px solid #ababab;
    border-radius: 4px;
    font-size:16px;
    box-sizing: border-box;
}

/* 포지션 */
.absol {
    position: absolute;
}

/* 불투명도 */
.op100 {
    opacity: 1.0 !important;
}
.op50 {
    opacity: 0.5 !important;
}

/* pc mobile show */
.pc-show {
    display: block;
}
.mb-show {
    display: none;
}

/* 텍스트 숨김 */
.txt-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

/* 폰트 컬러 */
.fc-blue {
    color:#3B68D7;
}
.fc-red {
    color:#FF4848;
}

/* 폰트 굵기 */
.fw-bold {
    font-weight: bold;
}
.fw-nm {
    font-weight: normal;
}

/* 무조건 안보이게 */
.invisible {
    display: none !important;
}

/* 그냥 안보이게 */
.none {
    display: none;
}

/* 텍스트 정렬 */
.tac {
    text-align: center;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}

/* block 요소 가운데 정렬 */
.mlr-auto {
    margin-left:auto;
    margin-right:auto;
}

/* flex css */
.flex {
    display: flex;
}
.flex-ac {
    align-items: center;
}
.flex-afs {
    align-items: flex-start;
}
.flex-afe {
    align-items: flex-end;
}
.flex-as {
    align-items: stretch;
}
.flex-jsb {
    justify-content: space-between;
}
.flex-jfs {
    justify-content: flex-start;
}
.flex-jc {
    justify-content: center;
}
.flex-jl {
    justify-content: left;
}
.flex-jr {
    justify-content: right;
}
.flex-dc {
    flex-direction: column;
}

/* overflow */
.of-y-h {
    overflow-y: hidden;
}
.of-w-h {
    overflow-w: hidden;
}
.of-h {
    overflow: hidden;
}

/* header */
header {
    position: fixed;
    top:0;
    width:100%;
    height: 64px;
    z-index: 999;
}
header.top {
    background: none;
}
header.scroll {
    background: #fff;
    box-shadow: 0px 0px 4px rgba(100,100,100,0.1);
}
.app-gray header {
    position: sticky;
}
.app-gray header.top {
    background: #fff;
}
header .header-inner {
    padding:0 20px;
    margin:0 auto;
    width:100%;
    max-width: 1280px;
    height: inherit;
}
header.top .logo-img {

}
.header-menu-btns {
}
.header-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
.header-menu-btn a {
    font-size:16px;
}
.header-menu-btn a {
    position: relative;
    font-weight: bold;
    color:#fff;
}
.header-menu-btn.dotted a:before {
    content:'';
    position: absolute;
    top:-6px;
    left:-10px;
    width:10px;
    height:10px;
    border-radius: 10px;
    background: #FF4848;
}
header.top .header-menu-btn a {
    color:#fff;
}
header.scroll .header-menu-btn a {
    color:#1E1E1E;
}
.app-gray header.top .header-menu-btn a {
    color:#1E1E1E;
}
.header-menu-btn a:hover {
    text-decoration: underline;
    text-underline-offset:4px;
}
.header-user .inner {

}
.header-user .inner a {
    position: relative;
    padding:0 8px;
    font-size:20px;
    color: #1E1E1EB2;
}
.header-user .inner a:hover {
    color:#1e1e1e;
}
.header-user .inner a:first-child {
    gap:4px;
}
.header-user .inner a:first-child:after {
    content:'';
    position: absolute;
    top:52%;
    right:0;
    transform: translateY(-50%);
    width:1px;
    height:18px;
    background: #1E1E1E;
}
.mobile-header-nav-btn.mb-show {
    display: none;
    position: relative;
    width: 22px;
    height: 14px;
    z-index: 101;
    background: none;
}
.mobile-header-nav-btn,
.mobile-header-nav-btn span {
    position:relative;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.mobile-header-nav-btn span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius:4px;
}
header.top .mobile-header-nav-btn span {
    background-color: #fff;
}
header.scroll .mobile-header-nav-btn span {
    background-color: #1E1E1E;
}
.app-gray header.top .mobile-header-nav-btn span {
    background-color: #1E1E1E;
}
.mobile-header-nav-btn span:nth-of-type(1) {
    top: 0;
}
.mobile-header-nav-btn span:nth-of-type(2) {
    top: calc(50% - 1px);
}
.mobile-header-nav-btn span:nth-of-type(3) {
    bottom: 0;
}
.mobile-header-nav-btn.active {
}
.mobile-header-nav-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
}
.mobile-header-nav-btn.active span:nth-of-type(2) {
    opacity: 0;
}
.mobile-header-nav-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}


footer {
    padding:48px 0;
    background: #FFF;
}
footer .cont-wrap {
    margin:0 auto;
    width:100%;
    max-width: 1280px;
}
footer .footer-logo {
    height: 50px;
}
footer .ft-value p {
    margin:20px auto 0;
}
footer .value-txt {
    color:#707070;
    font-size:14px;
}
footer .ft-info {
    text-align: right;
}
footer .ft-info .name {
    margin:0 auto 8px;
    font-size:16px;
    font-weight: bold;
}
footer .ft-info .info {
    font-size:16px;
}
footer .ft-info .info span.email {
    position: relative;
    padding-right:12px;
}
footer .ft-info .info span.email:after {
    content:'';
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    display:block;
    width:1px;
    height:12px;
    background: #707070;
}
footer .ft-info .info span.phone {
    padding-left:10px;
}
footer .ft-info .copyright {
    color:#707070;
    font-size:14px;
}

.app-gray footer {
    background: #454545;
}
.app-gray footer .value-txt {
    color:#A8A8A8;
}
.app-gray footer .ft-info .name {
    color:#f5f5f5;
}
.app-gray footer .ft-info .info {
    color:#f5f5f5;
}
.app-gray footer .ft-info .copyright {
    color:#A8A8A8;
}


/* 반응형 코드 */
@media all and (max-width: 1320px) {
    footer {
        padding-left:20px;
        padding-right:20px;
    }
}
@media all and (max-width: 1023px) {
    .pc-show {
        display: none;
    }
    .mb-show {
        display: block;
    }
    .header-user.pc-show {
        display: none;
    }
    header {
        height: 50px;
    }
    header .logo img {
        height: 24px;
    }
    .header-gnb-wrap {
        flex-direction: column;
        gap:32px;
        position: fixed;
        top:-100vh;
        right:0;
        transition: all 0.3s;
        padding:24px 20px;
        width:100vw;
        height: 100vh;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        z-index: 10;
    }
    .header-user .inner {
        justify-content: center;
    }
    .header-menu-btns {
        margin:72px auto 0;
        gap:20px;
        flex-direction: column;
        justify-content: center;
        width:100%;
    }
    .header-menu-btns .header-menu-btn {
        text-align: center;
    }
    .header-gnb-wrap.active {
        opacity: 1;
        top: 0;
        pointer-events: visible;
    }
    .mobile-header-nav-btn.mb-show {
        display: inline-block;
    }
    header.top .mobile-header-nav-btn.active span {
        background: #1E1E1E;
    }
    header.top .header-menu-btn a,
    header.scroll .header-menu-btn a {
        color:#1E1E1E;
    }
    footer {
        padding:32px 16px;
    }
    footer .ft-info {
        text-align: left;
    }
    footer .ft-info .name {
        margin:0 auto;
        font-size:14px;
        font-weight: bold;
    }
    footer .ft-info .info {
        margin:20px auto 32px;
    }
    footer .ft-info .info {
        flex-direction: column;
    }
    footer .ft-info .info span {
        display: block;
        line-height: 1.8;
    }
    footer .ft-info .info span.email {
        padding:0;
    }
    footer .ft-info .info span.email:after {
        display: none;
    }
    footer .ft-info .info span.phone {
        padding:0;
    }
}
@media all and (max-width: 767px) {

}




















