* {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.highlight {
    background-color: yellow;
}

body {
    overflow-x: hidden;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

button {
    border: 0;
    background: unset;
}

ul li {
    list-style: none;
}

@media screen and (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }
}

.inner {
    /*max-width: 1440px;!* 컨텐츠 영역 1400px *!*/
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

header {
    width: 100%;
    height: 148px;
    background-color: white;
}

header .inner {
    position: relative;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    float: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo p {
    font-size: 18px;
    font-weight: 600;
}

.header-logo a img {
    max-height: 54px;
    margin-right: 15px;
}

.header-logo a + a {
    margin-left: 35px;
}

.header-logo a + a img {
    max-height: 60px;
}

.header-menu {
    /*float: right;*/
    /*width: calc(100% - 145px);*/

    margin-left: auto;
    margin-right: 100px;
    line-height: 148px;
}

.header-menu .search {
    display: flex;
    line-height: 1.0;
    position: relative;
}

.header-menu .search input {
    width: 200px;
    height: 36px;
    padding: 6px 6px 6px 40px;
    border: 2px solid #373737;
    letter-spacing: 3px;
    color: #373737;
    box-sizing: border-box;
}

.header-menu .search .sub-search-icon {
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 24px;
    transform: translateY(-50%);
}

.header-menu .search .sub-search-icon label {
    margin: 0;
}

.header-menu ul {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu ul li {
    display: inline-block;
    margin-left: 55px;
}

.header-menu ul li:first-child {
    margin-left: 0;
}

.header-menu ul li a {
    font-family: 'NEXON Lv1 Gothic OTF';
    font-size: 20px;
    color: #333;
    padding-bottom: 5px;
}

.header-menu ul li a:hover,
.header-menu ul li a:active,
.header-menu ul li.active a {
    font-family: 'NEXON Lv1 Gothic OTF Bold';
    color: #2B4A52;
}

footer {
    width: 100%;
    height: 455px;
    background-color: #2B4A52;
    background-image: url(../images/common/footer_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
}

footer .inner {
    text-align: left;
}

.footer-logo {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding: 40px 0;
}

.footer-logo img {
    width: 145px;
}

.footer-sns {
    position: absolute;
    top: 60px;
    right: 0;
}

.footer-sns ul li {
    display: inline-block;
    margin-left: 20px;
}

.footer-sns ul li a img {
    width: 40px;
}

.footer-info {
    font-size: 16px;
    color: white;
    margin-top: 40px;
}

.footer-policy {
    margin-bottom: 30px;
}

.footer-policy p span {
    position: relative;
    font-size: 14px;
    padding-right: 12px;
}

.footer-policy p span:not(:last-child)::after {
    position: absolute;
    content: '';
    top: 6px;
    right: 6px;
    width: 1px;
    height: 14px;
    background-color: white;
}

.footer-txt {
    margin-bottom: 30px;
}

.footer-txt p {
    font-weight: 200;
    line-height: 30px;
}

.footer-txt p span {
    position: relative;
    margin-right: 30px;
}

.footer-txt p span::after {
    position: absolute;
    content: '';
    top: 3px;
    right: -16px;
    width: 1px;
    height: 14px;
    background-color: #cccccc;
}

.footer-copyright p {
    font-weight: 200;
    color: #fff;
}

div.footer-copyright > p > a {
    color: #fff !important;
}

/* S:1400px */
@media screen and (max-width: 1400px) {

}

/* S:1024px */
@media screen and (max-width: 1024px) {
    header {
        height: 100px;
    }

    .header-logo img {
    }

    .header-menu {
        line-height: 100px;
    }

    footer {
        height: auto;
        background-size: 50%;
        padding-bottom: 40px;
    }

    .footer-logo {
        padding: 20px 0;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-sns {
        top: 40px;
        right: 20px;
    }

    .footer-info {
        font-size: 14px;
        margin-top: 20px;
    }

    .footer-policy {
        margin-bottom: 10px;
    }

    .footer-policy p span:not(:last-child)::after {
        height: 10px;
    }

    .footer-txt {
        margin-bottom: 10px;
    }

    .footer-txt p {
        line-height: 22px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .footer-left a {
        color: #fff;
    }

}

.header-hamburger,
.hamburger-close {
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 58px;
    height: 58px;
    z-index: 102;
    transform: translateY(-50%);
}

.hamburger-btn,
.close-btn {
    position: relative;
    width: 58px;
    height: 58px;
}

.hamburger-btn .hamburger-line,
.hamburger-close .hamburger-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    display: block;
}

.hamburger-btn .hamburger-line:nth-child(1) {
    margin-top: -14px;
}

.hamburger-btn .hamburger-line:nth-child(3) {
    margin-top: 14px;
}

.hamburger-close {
    position: fixed;
    top: 60px;
    left: auto;
    right: 30px;
    display: none;
    content: '';
    width: 58px;
    height: 58px;
}

.close-btn {
    width: 58px;
    height: 58px;
    transform: rotateZ(45deg);
}

.close-btn .hamburger-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 101;
}

.close-btn .hamburger-line:nth-child(1) {
    height: 2px;
    width: 30px;
}

.close-btn .hamburger-line:nth-child(2) {
    height: 30px;
    width: 2px;
}


.header-mm {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
}

.header-mm.show {
    display: block;
}

.header-mm  ul {
    transform: translateX(100%);
    transition: 0.3s;
}

.header-mm.show ul {
    transform: translateX(0);
}

.header-mm .header-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.3s;
    background-color: rgba(0,0,0, 0.75);
}

.header-mm .header-bg.show {
    display: block;
    opacity: 1;
}

.header-mm ul {
    position: relative;
    padding: 40px;
    padding-top: 150px;
    text-align: right;
    width: 440px;
    height: 100vh;
    background: linear-gradient(180deg, #000 0%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 100;
}

.header-mm ul li {
    list-style: none;
}

.header-mm ul li a {
    height: 50px;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    padding: 0 0 65px;
    display: block;
    box-sizing: content-box;
}

.header-mm ul .mm-active {
    background-color: #2B4A52;
}

.header-mm ul .mm-active a {
    color: white;
}


/* S:768px */
@media screen and (max-width: 768px) {
    .footer-right {
        margin-top: 15px;
        float: none !important;
    }

    .inner {
        padding: 0 20px;
    }

    .header-logo {
        width: auto;
        height: 60px;
    }

    .header-menu {
        width: calc(100% - 100px);
        line-height: 60px;
    }

    .header-mm ul li a {
        font-size: 25px;
        line-height: 25px;
        height: 25px;
    }

    footer {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .footer-logo {
        padding: 10px 0;
    }

    .footer-logo-2 {
        margin: 0 auto 15px;
        text-align: center;
    }

    .footer-logo img {
        width: 70px;
    }

    .footer-sns {
        position: static;
        text-align: center;
        /*top: 14px;*/
        /*right: 0;*/
    }

    .footer-sns ul li {
        margin-left: 5px;
    }

    .footer-sns ul li a img {
        width: 30px;
    }

    .footer-txt {
        margin-top: 10px;
    }

    .footer-txt p {
        font-size: 12px;
        line-height: 20px;
    }

    .footer-txt p span {
        display: block;
        color: #666;
        margin-right: 0;
    }

    .footer-txt p span b {
        color: #444;
    }

    .footer-txt p span::after {
        display: none;
    }

    .footer-txt .copyright {
        font-size: 12px;
        margin-top: 10px;
    }
}

/*E:768*/