#main-header {
    position: fixed;
    top: 30px;
    z-index: 999;
    background-color: #fff;
    display: flex;
    width: 1280px;
    left: 50%;
    margin-left: -640px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 104px;
    overflow: hidden;
}
#main-header .logo-area img {
	height: 36px;
}
#main-header.attach-top {
    top: 0;
    border-radius: 0;
    width: 100vw;
    left: 0;
    margin-left: 0;
}

.logo-area a {
    display: block;
    padding: 25px 30px;
    position: relative;
    top: 4px;
}
#main-header.attach-top .logo-area {
    position: absolute;
    left: 0px;
    top: 0px;
}
#main-header.attach-top .gnb-area {
    display: block;
    margin: 0 auto;
}
.gnb-area nav {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    color: #171f26;
}

.gnb-area nav div p {
    padding: 40px 30px;
    position: relative;
    user-select: none;
}

.gnb-area nav div p:after {
    content:'';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    border-radius: 99px;
    background-color: #1d2088;
    transition: 0.2s;
}
.gnb-area nav div:hover p {
    color: #1d2088;
}
.gnb-area nav div:hover p:after {
    width: 40%;
}

/*.depth-1-menu {display: none;}*/

.user-menu-area {
    position: absolute;
    right: 30px;
    height: 104px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.user-menu-area #user-info:hover {
    text-decoration: underline;
}
.user-menu-area .login-out {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    border-radius: 5px;
    gap: 2px;
    border: 1px solid #1d2088;
    transition: 0.2s;
}
.user-menu-area .login-out img {
    width: 16px;
    margin-top: -2px;
    transition: 0.2s;
}
.user-menu-area .login-out:hover {
    background-color: #1d2088;
    color: #fff;
}
.user-menu-area .login-out:hover img {
    filter: invert(1) brightness(2);
}
.depth-1-menu {
    opacity: 0;
    transition: 0.2s 0.1s;
    height: 100%;
}

.depth-1-menu a {
    display: block;
    text-align: center;
    padding: 15px 0;
    font-weight: 400;
    border-radius: 10px;
	cursor: pointer;
}
.depth-1-menu li:first-child {
    padding-top: 10px;
}
.depth-1-menu:nth-child(2) li:last-child {
    padding-bottom: 10px;
}

.depth-1-menu li:hover a {
    background-color: #f5f5f5;
    color: #1d2088;
    font-weight: 700;
}

.nav-sep-line {
    width: 0%;
    height: 1px;
    background-color: #e5e5ed;
    position: absolute;
    opacity: 0;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.2s 0.3s;
}
.nav-sep-line.show {
    width: 95%;
    opacity: 1;
}
#main-header.sub-open {
    height: 290px;
}
#main-header.sub-open .depth-1-menu {
    opacity: 1;
}

.mobile-menu-area {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 67px);
    top: 67px;
    background-color: #fff;
    display: none;
    border-top: 1px solid #e5e5ed;
    overflow-y: auto;
    overflow-x: hidden;
}
.mobile-menu-area.open {
    display: block;
}
.mobile-menu-ul input {
    display: none;
}
.mobile-menu-ul label {
    font-size: 24px;
    font-weight: 800;
    color: #1d2088;
    flex: 1;
    padding: 20px;
}
.mobile-menu-ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5ed;
    cursor: pointer;
    user-select: none;
}
.mobile-menu-ul > ul {
    display: none;
}
.mobile-menu-ul > ul li {
    font-size: 16px;
    color: #333d45;
    font-weight: 700;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5ed;
}
.mobile-menu-ul > ul li a {
    padding: 15px 40px;
    display: block;
}
.mobile-menu-ul li img {
    transition: 0.3s;
    opacity: 0.8;
    width: 50px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(85%) saturate(5000%) hue-rotate(230deg) brightness(60%);
}
.mobile-menu-ul > input:checked+li > img {
    transform: rotate(90deg);
}
.mobile-menu-ul > input:checked+li+ul {
    display: block;
}

.mobile-menu-btn {
    width: 25px;
    position: absolute;
    right: 20px;
    top: 23px;
    display: none;
}

.mobile-menu-btn .line {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 99px;
    transition: 0.3s;
}
.mobile-menu-btn .line:nth-child(1) {
    margin-bottom: 6px;
}
.mobile-menu-btn .line:nth-child(2) {
    margin-bottom: 6px;
}
.mobile-menu-btn.open .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.open .line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.map-search {
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    margin-left: 10px;
}

.map-search input {
    font-size: 16px;
    border: 0;
    font-family: 'SUITE', sans-serif;
    padding: 0;
    width: 100px;
    outline: none;
}
.map-search button {
    padding: 0;
    font-size: 0;
}
.map-search img {
    width: 20px;
}
.pklt-map-search-mobile {
    padding: 10px;
    border-bottom: 1px solid #e5e5ed;
}
.map-search-mobile {
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
}
.map-search-mobile input {
    font-size: 20px;
    border: 0;
    font-family: 'SUITE', sans-serif;
    padding: 0;
    outline: none;
    flex:1;
}
.map-search-mobile button {
    padding: 0;
    font-size: 0;
}
.map-search-mobile img {
    width: 30px;
}
.pklt-map-search {
    padding-top: 33px;
    margin-left: 20px;
}

@media screen and (max-width: 1280px) {
    #main-header {
        width: 100%;
        left: 0;
        margin-left: 0;
        border-radius: 0;
        top: 0;
        height: 67px;
        transition: 0s;
    }
    .gnb-area {
        flex: 1;
        padding-right: 130px;
    }
    .gnb-area nav {
        width: 100%;
        font-size: 16px;
    }
    .logo-area a {
        padding: 15px;
    }
    .logo-area a img {
        width: 150px;
    }
    .gnb-area nav div {
        flex: 1;
    }
    .gnb-area nav div p {
        padding: 22px 0;
        text-align: center;
    }
    .gnb-area nav div p:after {
        bottom: 15px;
    }
    .nav-sep-line {
        top: 75px;
    }
    .user-menu-area {
        right: 20px;
        height: 67px;
    }
    .logo-area a {
        top: 0px;
    }

    .depth-1-menu a {
        display: block;
        text-align: center;
        padding: 10px 0;
        font-weight: 400;
        border-radius: 10px;
    }
    .depth-1-menu li:first-child {
        padding-top: 8px;
    }
    .depth-1-menu:nth-child(2) li:last-child {
        padding-bottom: 8px;
    }
    #main-header.sub-open {
        height: 348px;
    }
    #main-header.attach-top .logo-area {
        position: static;
    }
    .pklt-map-search {
        padding-top: 17px;
        margin-left: 10px;
    }
    .map-search {
        width: 130px;
        padding: 7px;
    }
    .map-search input {
        font-size: 14px;
        width: 80px;
    }
}

@media screen and (max-width: 1100px) {
    .gnb-area nav .gnb-menu {
        display: none;
    }
    .nav-sep-line {
        display: none;
    }
    #main-header.sub-open {
        height: 67px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .user-menu-area {
        right: 60px;
    }
}