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

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

li {
    list-style: none;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

body {
    min-width: 360px;
}

.mobile-br {
    display: none;
}

.pc-br {
    display: block;
}

/* 이너랩설정 */

.inner_wrap {
    padding: 150px 0;
    margin: 0 auto;
}

.content-size {
    max-width: 1400px;
}

.font-en {
    font-family: 'Poppins' !important;
}

.font-kr {
    font-family: 'NanumSquare', sans-serif !important;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
}

.section-sub {
    font-size: 20px;
    font-weight: 400;
    margin-top: 24px;
}

header {
    display: block;
    position: fixed;
    width: 100%;
    height: 115px;
    /* max-width: 1660px;
    margin: 0 auto; */
    top: 0;
    left:0;
    z-index: 999;

    transition: background-color .35s;
}

header:hover {
    background-color: #fff;
}

#hd_top {
    width: 100%;
    height: 30px;
    background-color: rgba(244,244,245,1);
}

header:hover #hd_top {
    background-color: rgba(244,244,245,1);
}

#hd_top, #hd_btm {
    padding: 0 138px 0 122px;
}

#hd_top > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

#hd_top > ul > li {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 600;
    font-size: 13px;

    transition: color .35s;
	line-height: 14px;
}

header:hover #hd_top > ul > li {
    color: #555;
}

#hd_top > ul > li:first-child {
	margin-right:15px;
}

#hd_top > ul > li:last-child {
    margin-left: 37px;
}

#hd_btm {
    width: 100%;
    height: 85px;
    margin: 0 auto;
    background:#fff;
    transition: border .35s;
}

#hd_btm > ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd_nav > nav > ul {
    display: flex;
    justify-content: center;
    align-items: center;

    /* gap: 0 80px; */
}

.hd_nav > nav > ul > li {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 600;
    font-size: 19px;
    text-align: center;
    transition: color .35s;
    position: relative;
}

.hd_nav > nav > ul > li > a::after {
    content: '';
    display: block;
    max-width: 94px;
    width: 100%;
    height: 3px;
    background-color: #254AAF;

    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);

    transition: all .3s;

    opacity: 0;
}

.hd_nav > nav > ul > li:hover > a::after {
    opacity: 1;
}

.hd_nav > nav > ul > li > a {
    display: block;
    padding: 0 42px;
}

header:hover .hd_nav > nav > ul > li {
    color: #333;
}

.hd_etc > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hd_etc > ul > li {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: color .35s;
}

header:hover .hd_etc > ul > li {
    color: #333;
}

.hd_etc > ul > li:last-child {
    margin-left: 13px;
}

.hd_mobile {
    display: none;
}

#head-loca {
    vertical-align: middle;
    padding-right: 4px;
}

.hd_hr {
    width: 100%;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.1);
    transform: scale(0);
    transition: transform .35s;
}


.hd_bg {
    width: 100%;
    height: 0;
    background-color: rgba(255,255,255,0);
	
	border-top: 1px solid #ddd;
    transition: all .35s;
}

header:hover .hd_bg {
    height: 265px;
    background-color: rgba(255,255,255,1);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}

.hd_sub {
    position: absolute;
    width: 100%;

    transform: translateY(-20%);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
}

header:hover .hd_sub {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hd_sub > li {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.hd_sub > li:hover {
    color: #254AAF;
}

.hd_sub > li:first-child {
    padding-top: 60px;
}

.hd_sub > li:not(:first-child) {
    padding-top: 20px;
}

.border-on {
    transform: scale(1);
}

header.sub_page {
    background-color: #fff;
    position: fixed;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}

#hd_top.sub_page {
    background-color: rgba(244,244,245,1);
}

.hd_nav > nav > ul > li.sub_page,
.hd_etc > ul > li.sub_page {
    color: #333;
}

#hd_top > ul > li.sub_page {
    color: #555;
}

/* 모바일 네비게이션 */

.m-nav-wrap {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    background-color: #F6F6F6;
}

.m-nav-top {
    width: 100%;
    height: 60px;
    background-color: #242B3E;

    padding: 0 16px;
}

.m-nav-top > ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-nav-login-wrap > * {
    font-family: "Noto Sans KR";
    font-weight: 400;
    font-size: 14px;
    color: #fff;    
}

.no-login {
    display: none;
}

.m-nav-exit-btn {
    cursor: pointer;
}

.m-nav-mid {
    background-color: #fff;
    height: 76px;
}

.m-nav-mid > ul {
    width: 100%;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-nav-mid > ul > li {
    width: 25%;
    height: 100%;
}

.m-nav-mid > ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 0;
    width: 100%;
    height: 100%;
    padding-bottom: 14px;

    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #222;
}

.m-nav-ul {
    margin-top: 6px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    background-color: #fff;
}

.m-nav-ul > li {
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
}

.m-nav-ul > li > p {
    font-weight: 800;
    font-size: 18px;
    color: #222;
    /* line-height: 60px; */

    padding: 20px 16px;
    max-height: 60px;

    background-image: url('../img/head/m-nav-close.svg');
    background-position: right 16px center;
    background-repeat: no-repeat;
}

.m-nav-ul > li > p.open {
    background-image: url('../img/head/m-nav-open.svg');
}

.m-nav-ul-sub {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    background-color: #F6F6F6;
}

.m-nav-ul-sub.open {
    display: flex;
}

.m-nav-ul-sub > li {
    width: 100%;
    height: auto;
}

.m-nav-ul-sub > li > a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #333;

    padding: 20px 16px 0;
}

.m-nav-ul-sub > li:last-child > a {
    padding-bottom: 20px;
}

.m-nav-btn-wrap {
    height: 100%;
    padding-top: 24px;
    background-color: #fff;
}

.m-nav-btn-wrap > ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0 14px;

    padding: 0 16px;
}

.m-nav-btn-wrap > ul > li {
    width: 50%;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
}

.m-nav-btn-wrap > ul > li > a {
    display: block;
    width: 100%;
    line-height: 42px;

    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #222;
}

/* 퀵메뉴 */

#quickmenu {
    position: fixed;
    right: 0;
    top: 47%;
    z-index: 999;
    width: 50px;

    transform: translateY(-50%);
    transition: width .2s ease-in-out;
}

#quickmenu > ul > li {
    padding-left: 12px;

    width: 160px;
    height: 50px;

    background-color: rgba(0,0,0,0.9);

    transition: all .2s ease-in-out;
}

#quickmenu > ul > li:not(:last-child) {
    border: 1px solid #dddddd20;
}

#quickmenu > ul > li:nth-child(2) {
    border-top: none;
    border-bottom: none;
}

#quickmenu > ul > li:last-child {
    background-color: rgba(37,74,175,0.9);
}

#quickmenu > ul > li > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.quickmenu-text {
    font-weight: 800;
    font-size: 14px;
    text-align: left;
    color: #fff;
    
    margin-left: 16px;
}

.quickmenu-img {
    width: 24px;
    height: 24px;
}

.quickmenu-img > img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /* filter: brightness(0) invert(1); */

    transition: all .35s;

    opacity: 1;
    visibility: visible;
}

.quickmenu-bg.color {
    background-color: rgba(255,255,255,0.9) !important;
    border: 1px solid #dddddd90 !important;
}

.quickmenu-bg.color:nth-child(2) {
    border-top: none !important;
    border-bottom: none !important;
}

.quickmenu-text.color {
    color: #333333 !important;
}

.quickmenu-icon-white.gone,
.quickmenu-icon-black.gone {
    opacity: 0;
    visibility: hidden;
    display: none;
}

#to_top {
    display: none;
}

.to_top_inner {
    float: right;

    width: 50px;
    /* background-color: rgba(255,255,255,0.9); */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: all .2s ease-in-out;

    padding-top: 12.5px;

    cursor: pointer;
}

#quickmenu:hover .to_top_inner {
    width: 50px;
}

.to_top_text {
    font-weight: 800;
    font-size: 15px;
    color: #a2a2a2;
    text-align: center;

    margin-top: 10px;
}

/* 헤드랑 간격 */

.sub_head_padding {
    padding-top: 115px;
}

/* 모바일 상단버튼 */

#m-to-top {
    display: none;

    position: fixed;
    bottom: 5.997vh;
    right: 16px;
    z-index: 998;
}

#m-to-top > img {
    display: block;
}

/* 정비내역 모달 */

.log_modal {
    position: absolute;
    top: 200px;
    left: 200px;

    z-index: 999;
    background-color: #fff;

    width: 600px;
}

.log_modal.hide {
    display: none !important;
}

.log_modal_top {
    line-height: 56px;
    background-color: #254AAF;
    padding: 0 30px;

    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.log_modal_notice {
    padding: 20px 30px;

    border-bottom: 1px solid #ddd;

    font-family: 'Noto Sans KR',sans-serif;
}

.log_modal_welcome {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
}

.log_modal_user_name {
    color: #254AAF;
}

.log_modal_info {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.02em;

    margin-top: 4px;
}

.log_modal_wr {
    height: 415px;
    overflow: scroll;

    background-image: url('../img/head/modal_bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
}

.log_modal_wr::-webkit-scrollbar {
    display: none;
}

.log_modal_inner {
    padding: 20px 30px;

    border-bottom: 1px solid #ddd;
}

.log_modal_inner:last-child {
    border-bottom: none;
}

.log_modal_inner_top {
    font-family: 'Noto Sans KR',sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.log_modal_inner_num {
    font-size: 18px;
    color: #254AAF;
}

.log_modal_store {
    font-size: 16px;
    color: #222;

    margin-left: 7px;
}

.log_modal_store > a i {
    font-style: normal;
}

.log_modal_inner_mid {
    margin-top: 8px;
}

.log_modal_inner_text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.02em;
    line-height: 20px;
}

.log_modal_btm {
    height: 32px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background-color: #ddd;
}

.log_modal_btm_checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 0 6px;
}

.log_modal_close_checkbox {
    appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;

    width: 20px;
    height: 20px;

    border: 1px solid #242B3E;
    background-color: #fff;
}

.log_modal_close_checkbox:checked {
    background-image: url('../img/head/chk-icon.svg');
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;

    background-color: #254AAF;
    border-color: #254AAF;
}

label[for="log_modal_close_checkbox"],
.log_modal_close {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: #242b3e;

    cursor: pointer;
}

@media all and (max-width : 1440px) {
    #hd_top,
    #hd_btm {
        padding: 0 32px;
    }

    .hd_nav > nav > ul > li > a {
        padding: 0 2.91666vw;
    }
}

@media all and (max-width:1024px) {

    header.none:hover {
        background-color: transparent;
    }

    header:hover .hd_bg {
        height: auto;
    }

    header {
        height: 60px;
    }

    #hd_btm {
        height: 100%;
        padding: 0 16px;
    }

    #hd_top {
        display: none;
    }

    .hd_nav,
    .hd_pc {
        display: none;
    }

    .hd_logo > a {
        display: block;
    }

    .hd_logo > a > img {
        display: block;
        width: 91.95px;
        height: auto;
    }

    .hd_mobile {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 0 14px;
    }

    .hd_mobile > * {
        cursor: pointer;
    }
    
    .hd_mobile > * > img {
        display: block;
    }

    #quickmenu {
        display: none;
    }

    #m-to-top.on {
        display: block;
    }
}
select {padding:10px 20px;}
@media all and (max-width:768px) {
    .inner_wrap {
        padding: 70px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-sub {
        font-size: 14px;
        margin-top: 15px;
    }

    .mobile-br {
        display: block;
    }

    .pc-br {
        display: none;
    }
	
	select {padding:0 0;}
}
