/*===========================================================================
	웹폰트
============================================================================*/

/* 폰트 */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-style: normal;
    src: url('../fonts/Pretendard-Thin.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-style: normal;
    src: url('../fonts/Pretendard-ExtraLight.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/Pretendard-Light.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Pretendard-Regular.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Pretendard-Medium.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Pretendard-SemiBold.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Pretendard-Bold.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    src: url('../fonts/Pretendard-ExtraBold.otf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/Pretendard-Black.otf') format("truetype");
    font-display: swap;
}

/*===========================================================================
	CSS 초기화
============================================================================*/
* { font-family: "Pretendard", sans-serif; box-sizing:border-box; margin:0; padding:0; word-break: keep-all; line-height: 1.5;}
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, em, img, b, dl, dt, dd, ol, ul, li, form, label, legend, caption, article, aside, footer, header, menu, nav, section, video {border:0; outline:0; font-size: 16px; color:#202020; }
html { scroll-behavior: smooth; }
body { line-height:1; -ms-overflow-style: none; width: 100%; }
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
ul, ol, li {list-style:none;}
a {margin:0; padding:0; font-size:100%; line-height: 100%; display: block; text-decoration: none; color:#202020; }
pre { font-family: "Pretendard", sans-serif; white-space: pre-line; line-height: 1.5; }
img {width: 100%;}
input, select {vertical-align:middle; outline:0; border: 0; background: none; font-family: "Pretendard", sans-serif;}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="file"], input[type="checkbox"], input[type="radio"] { display: none; }
input[type="date"] { appearance: none; -webkit-appearance: none; -moz-appearance: none; text-align: left; } 
input::-webkit-date-and-time-value { text-align: left; }
select { appearance: none; background-image: url(../images/icon_arrow_down.png); background-repeat: no-repeat; background-position: right 8px center; background-size: 18px; width: 100%; min-width: 100%; }
select option { width: 100%; }
select option[value="disabled"][disabled] {display: none;}
label { cursor: pointer; }
button {cursor:pointer; border: 0; outline: 0; background: none; color:#202020; }
textarea { border: 0; outline: 0; resize: none; font-family: "Pretendard", sans-serif;}
i { font-family: 'xeicon'; font-style: normal; color: inherit; line-height: inherit; }

/* 콘텐츠 공통 */
#wrap { position: relative; }
.col-group {display:flex;}
.row-group {display:flex; flex-flow: column;}
.wrap-group {display:flex; flex-flow: wrap;}
.container { width: 100%; margin: 0 auto; max-width: 1472px; padding-left: 16px; padding-right: 16px; }
.container.w1280 { max-width: 1312px; }
.container.w1080 { max-width: 1112px; }
.img-container { width: 100%; position: relative; }
.img-container img, .img-container video { position: absolute; width: 100%; height: 100%; object-fit: cover; left: 0; top: 0; right: 0; bottom: 0; object-position: center; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #a8a8a8; }
::-webkit-scrollbar-thumb { background: #f7b52d; border-radius: 4px;}

.pc { display: initial; }
.mb { display: none; }

@media screen and (max-width:1280px) {
    .pc:not(img) { display: none; }
    .mb:not(img) { display: initial; }
}
@media screen and (max-width:640px) {
    img.pc { display: none; }
    img.mb { display: initial; }
}

/* header */
#header { width: 100%; position: fixed; top: 0; z-index: 99999; transition: .3s; }
.header-wrap { height: 80px; width: 100%; background-color: #fff; }
.header-wrap .container { height: 100%; display: flex; align-items: center; justify-content: space-between; max-width: unset; padding: 0 80px; }
.header-wrap .logo a { width: 254px; height: 42px; background-image: url(../images/logo.png); background-repeat: no-repeat; background-size: contain; background-position: center; }
.gnb-wrap { display: flex; justify-content: center; align-items: center; gap: 32px; }
.gnb-item { position: relative; cursor: pointer; }
.gnb-title { padding: 0 24px; font-size: 17px; font-weight: 500; line-height: 80px; text-align: center; }

.toggle-btn { display: none; }

.side_menu { position: fixed; right: 0; top: 50%; transform: translateY(-50%); transition: .2s; }
.side_menu.hide { transform: translateY(-50%) translateX(100%); }
.side-menu-wrap { display: flex; flex-flow: column; gap: 16px; padding: 16px; background-color: #fff; border-top-left-radius: 16px; border-bottom-left-radius: 16px; border: 1px solid #e4e4e4; border-right: 0; }
.side-menu-item { display: flex; flex-flow: column; gap: 4px; align-items: center; text-align: center; }
.side-menu-item .item-img { display: block; width: 56px; }
.side-menu-item .item-title { font-size: 14px; font-weight: bold; color: #707070; }
.side-menu-btn { position: absolute; width: 24px; height: 40px; background-color: #e4e4e4; border-top-left-radius: 8px; border-bottom-left-radius: 8px; cursor: pointer; left: -24px; top: 50%; transform: translateY(-50%); }
.side-menu-btn i { line-height: 40px; text-align: center; font-size: 14px; }
.side_menu.hide .side-menu-btn i { transform: rotate(180deg); }

@media screen and (max-width:1280px) {
    .header-wrap { height: 60px; background-color: #fff; }
    .header-wrap .container { padding: 0 20px; }
    .header-wrap .logo a { width: 142px; height: 24px; }
    .header-wrap .gnb-wrap { display: none; }

    .toggle-btn { display: block; font-size: 20px; }

    .side-menu-wrap { gap: 8px; padding: 8px; border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
    .side-menu-item .item-img { width: 40px; }
    .side-menu-item .item-title { font-size: 10px; }
}

/* site map */
#site_map { position: fixed; width: 100%; height: 100svh; background-color: rgba(0, 0, 0, 0.44); z-index: 999999; top: 0; left: 0; bottom: 0; right: 0; display: none; transform: translateX(100%); transition: .3s; }
#site_map.active { transform: translateX(0); }
.sitemap-wrap { min-width: 355px; width: 80vw; background-color: #fff; position: absolute; right: 0; height: 100svh; top: 0; padding-bottom: 56px; display: flex; flex-flow: column; overflow: auto; }
.sitemap-top-wrap { background-color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; height: 60px; position: sticky; top: 0; z-index: 1; flex-shrink: 0; }
.sitemap-top-wrap .logo { width: 142px; }
.sitemap-wrap .inquiry-wrap { display: flex; justify-content: space-between; align-items: center; padding: 0 16px; padding-left: 30px; background-color: #cba856; height: 60px; position: sticky; top: 60px; z-index: 1; flex-shrink: 0; }
.sitemap-wrap .inquiry-wrap .title { display: flex; gap: 4px; align-items: center; font-size: 14px; font-weight: 500; color: #fff; }
.sitemap-wrap .inquiry-wrap .title .icon { width: 32px; }
.sitemap-wrap .inquiry-wrap .num { display: flex; height: 36px; border-radius: 18px; background-color: #fff; padding: 0 24px; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; color: #cba856; }

@media screen and (max-width:1280px) {
    #site_map { display: block; }

    .gnb-wrap { flex-flow: column; align-items: flex-start; gap: 0; width: 100%;  padding-left: 30px; padding-right: 16px;}
    .gnb-item {  width: 100%; border-bottom: 1px solid #e4e4e4; }
    .gnb-title {  padding: 24px 0; font-size: 20px; font-weight: 600; line-height: 1; text-align: left; display: flex; align-items: center; gap: 10px; }
    .sub-gnb-wrap { display: flex; flex-flow: wrap; padding-bottom: 16px; gap: 16px 0; }
    .sub-gnb-item { width: 50%; padding-left: 16px; position: relative; display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500}
    .sub-gnb-item i { font-size: 12px; }
    .sub-gnb-item::after { content: ''; display: block; position: absolute; width: 4px; height: 4px; border-radius: 50%; background-color: #e4e4e4; left: 0; top: 50%; transform: translateY(-50%); }

    #site_map .index-intro-main { margin-top: auto; }
    #site_map .index-intro-main .btm-txt-wrap { margin-top: 40px; border-top: 0; padding-top: 0; padding: 0 30px; }
    #site_map .index-intro-main .tel,
    #site_map .index-intro-main .sub-txt,
    #site_map .index-intro-main .txt { color: #000; }
}

/* footer */
#footer { padding: 80px; background-color: #00142b; }
.footer-wrap { display: flex; gap: 143px; }
.footer-logo { width: 210px; }
.footer-txt-wrap { display: flex; flex-flow: column; gap: 24px; }
.footer-txt { color: #fff; opacity: .8; }

@media screen and (max-width:1280px) {
    #footer { padding: 40px 16px; }
    .footer-wrap { flex-flow: column; align-items: center; text-align: center; gap: 40px; }
    .footer-logo { width: 162px; }
    .footer-txt { font-size: 14px; }
}

/* pagination */
.pagination { justify-content: center; margin-top: 80px; align-items: center; }
.pagination .page-nav-btn { width: 40px; height: 40px; line-height: 40px; text-align: center; font-size: 20px; }
.pagination .page-nav-btn img { width: 24px; margin: 8px auto; display: block; }
.pagination .page-btn { width: 40px; height: 40px; line-height: 36px; text-align: center; font-size: 16px; transition: .2s; border-radius: 8px; background-color: #fff; color: #002551; font-weight: 300; border: 2px solid #fff; }
.pagination .page-btn.active { font-weight: bold; border-color: #002551; }

@media screen and (max-width: 1280px) {
    .pagination { margin-top: 40px; }
    .pagination .page-nav-btn { width: 32px; height: 32px; line-height: 32px; font-size: 15px; }
    .pagination .page-btn { width: 32px; height: 32px; line-height: 32px; font-size: 13px; }
}

/* top btn */
#top_menu { position: fixed; right: 32px; bottom: 140px; z-index: 99999; }
.top-btn { width: 56px; height: 56px; border-radius: 50%; text-align: center; line-height: 56px; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16); background-color: #707070; font-size: 24px; color: #fff; }

@media screen and (max-width:1280px) {
    #top_menu { right: 16px; bottom: 64px; }
    .top-btn { width: 40px; height: 40px; line-height: 40px; font-size: 16px; }
}