#hd_pop { position: fixed; left: 0; top: 0; z-index: 99999; width: 0; height: 0; }
#hd_pop h2 { overflow: hidden; position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0,0,0,0); }
#hd_pop .hd_pops { position: absolute; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22); }
#hd_pop .hd_pops .hd_pops_con { overflow: hidden; background: #fff; }
#hd_pop .hd_pops .hd_pops_con p { margin: 0; }
#hd_pop .hd_pops .hd_pops_con img { display: block; width: 100%; height: 100%; object-fit: cover; }
#hd_pop .hd_pops .hd_pops_con br { display: none; }
#hd_pop .hd_pops .hd_pops_footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; background: #fff; border-top: 1px solid #eee; }
#hd_pop .hd_pops .hd_pops_footer button { border: 0; background: none; cursor: pointer; font-weight: 700; font-size: 14px; color: var(--colorMain); line-height: 1.4; }
#hd_pop .hd_pops .hd_pops_footer .hd_pops_reject { text-align: left; }
#hd_pop .hd_pops .hd_pops_footer .hd_pops_reject strong { font-weight: 700; color: var(--colorMain); }
#hd_pop .hd_pops .hd_pops_footer .hd_pops_close { flex-shrink: 0; padding: 8px 14px; border-radius: 999px; background: var(--colorMain); color: #fff; }
#hd_pop .hd_pops .hd_pops_footer .hd_pops_close i { display: none; }

@media (max-width: 768px) {
    #hd_pop { width: 100%; height: 100%; pointer-events: none; }
    #hd_pop .hd_pops { left: 50% !important; top: 50% !important; width: 70%; transform: translate(-50%, -50%); pointer-events: auto; }
    #hd_pop .hd_pops .hd_pops_con { width: 100% !important; height: auto !important; max-height: 70vh; }
    #hd_pop .hd_pops .hd_pops_con img { height: auto; object-fit: contain; }
    #hd_pop .hd_pops .hd_pops_footer { padding: 12px; }
    #hd_pop .hd_pops .hd_pops_footer button { font-size: 13px; }
}

#container { margin-top: 80px; }
#header { position: fixed; top: 0; z-index: 100; width: 100%; background: var(--colorWhite); padding: 1px 40px; }
#header .headerInner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 80px; }
#header .headerInner .logo a { display: inline-block; width: 220px; }
#header .headerInner .logo a img { width: 100%; }
#header .headerInner .gnb { position: absolute; top: 50%; left: 50%; width: fit-content; transform: translate(-50%, -50%); height: 100%; }
#header .headerInner .gnb .gnbList { display: grid; grid-template-columns: 90px 100px 150px 130px 130px 90px 90px; align-items: center; justify-content: center; column-gap: 50px; height: 100%; }
#header .headerInner .gnb .gnbList li { text-align: center; white-space: nowrap; height: 100%; }
#header .headerInner .gnb .gnbList li a { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; font-family: 'Freesentation', 'Presentation' !important;  transition: color 0.8s ease-out; font-size: 20px; font-weight: 500; letter-spacing: -0.2px; }
#header .headerInner .gnb .gnbList li a::after { content: ""; position: absolute; left: 50%; bottom: 1px; width: 0; height: 2px; background: var(--colorMain); transform: translateX(-50%); transition: width 0.8s ease; }
#header .headerInner .gnb .gnbList li.active a, #header .headerInner .gnb .gnbList li:hover a { color: var(--colorMain);  }
#header .headerInner .gnb .gnbList li.active a::after, #header .headerInner .gnb .gnbList li:hover a::after { width: 100%; }
#header .headerInner .headerUtil { display: flex; align-items: center; gap: 16px; }
#header .headerInner .headerUtil .languageWrap { position: relative; }
#header .headerInner .headerUtil .languageWrap.forMob { display: none; }
#header .headerInner .headerUtil .languageWrap .languageBtn { display: flex; align-items: center; gap: 6px; border: 0; background: transparent; color: var(--colorBlack); font-size: 13px; font-weight: 600; cursor: pointer; }
#header .headerInner .headerUtil .languageWrap .languageBtn img { width: 15px; }
#header .headerInner .headerUtil .languageWrap .languageList { position: absolute; top: calc(100% + 10px); right: 0; display: flex; flex-direction: column; min-width: 80px; padding: 8px 0; border: 1px solid rgb(42 55 103 / 8%); border-radius: 12px; background: var(--colorWhite); opacity: 0; visibility: hidden; transition: all 0.4s ease; }
#header .headerInner .headerUtil .languageWrap:hover .languageList { opacity: 1; visibility: visible; }
#header .headerInner .headerUtil .languageWrap .languageList li a { display: flex; align-items: center; width: 100%; height: 38px; padding: 0 16px; border: 0; background: transparent; color: var(--colorBlack); font-size: 14px; font-weight: 500; text-align: left; cursor: pointer; transition: all 0.2s ease; }
#header .headerInner .headerUtil .languageWrap .languageList li a:hover { color: var(--colorMain); font-weight: 600; }
#header .headerInner .headerUtil a { width: 20px; height: 20px; }
#header .headerInner .headerUtil a img { width: 100%; height: 100%; }
#header .headerInner .headerUtil .mobileMenuBtn { display: none; }
#header .allMenu { position: absolute; top: 80px; left: 0; width: 100%; background: var(--colorWhite); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.4s ease; }
#header:has(.gnb:hover) .allMenu, #header .allMenu:hover { opacity: 1; visibility: visible; transform: translateY(0); }#header .allMenu .allMenuInner { display: grid; grid-template-columns: repeat(7, 110px); justify-content: center; gap: 50px; width: fit-content; margin: 0 auto; padding: 35px 0; }
#header .allMenu .allMenuInner { display: grid; grid-template-columns: 90px 100px 150px 130px 130px 90px 90px; justify-content: center; column-gap: 50px; width: fit-content; margin: 0 auto; padding: 20px 0; }
#header .allMenu .allMenuInner .allMenuGroup { display: flex; flex-direction: column; align-items: center; gap: 20px; min-width: 0; text-align: center; white-space: nowrap; }
#header .allMenu .allMenuInner .allMenuGroup a { font-size: 17px; font-family: 'Freesentation', 'Presentation' !important; font-weight: 400; color: #444; transition: color 0.8s ease-out; }
#header .allMenu .allMenuInner .allMenuGroup a:hover { color: var(--colorMain); }

html.mobileMenuOpen,
body.mobileMenuOpen { overflow: hidden; }

#header .mobileMenu { display: block; position: fixed; top: 0; right: -100%; z-index: 9999; width: 70%; height: 100dvh; background: var(--colorMain); transition: right 0.35s ease; overflow: hidden; }
#header .mobileMenu.active { right: 0; }
#header .mobileMenu .mobileMenuScroll { height: 100vh; padding: 20px 30px 200px; box-sizing: border-box; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }

#header .mobileMenu .mobileMenuTop { display: flex; align-items: center; justify-content: end; gap: 10px; margin-bottom: 50px; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap { position: relative; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap .mobileLanguageBtn { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; width: 70px; height: 32px; border: 0; border-radius: 999px; background: var(--colorWhite); color: var(--colorMain); font-size: 12px; font-weight: 700; cursor: pointer; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap .mobileLanguageBtn::after { content: ""; width: 6px; height: 6px; margin-top: -3px; border-right: 1px solid var(--colorMain); border-bottom: 1px solid var(--colorMain); transform: rotate(45deg); transition: transform 0.4s ease; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap.active .mobileLanguageBtn::after { margin-top: 3px; transform: rotate(225deg); }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap .mobileLanguageList { position: absolute; top: calc(100% + 8px); right: 0; width: 76px; padding: 6px 0; border-radius: 12px; background: var(--colorWhite); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.4s ease; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap.active .mobileLanguageList { opacity: 1; visibility: visible; transform: translateY(0); }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap .mobileLanguageList li a {display: flex; align-items: center;  justify-content: center; width: 100%; height: 30px; border: 0; background: transparent; color: var(--colorMain); font-size: 12px; font-weight: 600; cursor: pointer; }
#header .mobileMenu .mobileMenuTop .mobileLanguageWrap .mobileLanguageList li a:hover { background: rgb(42 55 103 / 8%); }
#header .mobileMenu .mobileMenuTop .mobileCloseBtn { position: relative; display: flex; align-items: center; justify-content: center; width: 43px; height: 43px; border: 0; border-radius: 50%; background: var(--colorMain); box-shadow: 0 10px 30px rgb(0 0 0 / 18%); backdrop-filter: blur(10px); cursor: pointer; transition: all 0.3s ease; }

#header .mobileMenu .mobileMenuTop .mobileCloseBtn::before,
#header .mobileMenu .mobileMenuTop .mobileCloseBtn::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; border-radius: 999px; background: var(--colorWhite); }

#header .mobileMenu .mobileMenuTop .mobileCloseBtn::before { transform: translate(-50%, -50%) rotate(45deg); }

#header .mobileMenu .mobileMenuTop .mobileCloseBtn::after { transform: translate(-50%, -50%) rotate(-45deg); }

#header .mobileMenu .mobileMenuTop .mobileCloseBtn:hover { transform: rotate(90deg); background: rgb(255 255 255 / 16%); }
#header .mobileMenu .mobileMenuList { display: flex; flex-direction: column; gap: 0; }
#header .mobileMenu .mobileMenuList > li { border-bottom: 1px solid rgb(255 255 255 / 12%); padding-bottom: 20px; border-bottom: 0; }
#header .mobileMenu .mobileMenuList > li > button { position: relative; width: 100%; margin-bottom: 8px; padding: 0; border: 0; background: transparent; color: var(--colorWhite); font-size: 23px; font-weight: 600; line-height: 45px; letter-spacing: 1.15px; text-align: left; cursor: pointer; transition: color 0.4s ease; }
/* #header .mobileMenu .mobileMenuList > li > button::after { content: ""; position: absolute; top: 50%; right: 2px; width: 8px; height: 8px; border-right: 2px solid var(--colorWhite); border-bottom: 2px solid var(--colorWhite); transform: translateY(-50%) rotate(45deg); transition: transform 0.4s ease; }
#header .mobileMenu .mobileMenuList > li.active > button::after { transform: translateY(-50%) rotate(225deg); }
#header .mobileMenu .mobileMenuList > li > ul { max-height: 0; padding-left: 10px; overflow: hidden; transition: max-height 0.35s ease, padding-bottom 0.35s ease; }
#header .mobileMenu .mobileMenuList > li.active > ul { max-height: 420px; padding-bottom: 22px; }
#header .mobileMenu .mobileMenuList > li > ul li { transform: translateY(-4px); opacity: 0; transition: all 0.4s ease; }
#header .mobileMenu .mobileMenuList > li.active > ul li { transform: translateY(0); opacity: 1; } */
#header .mobileMenu .mobileMenuList > li > button::after { display: none; }
#header .mobileMenu .mobileMenuList > li > ul { max-height: none; padding-left: 0; overflow: visible; }
#header .mobileMenu .mobileMenuList > li > ul li { opacity: 1; transform: none; margin-bottom: 5px; }
#header .mobileMenu .mobileMenuList > li > ul li a { color:#FFFFFF66; font-size: 17px; font-weight: 400; line-height: 27px; letter-spacing: 0.85px; }
#header .mobileMenu .mobileMenuList > li > ul li a:hover { color: var(--colorWhite); padding-left: 4px; }
#header .mobileMenu .mobileLoginBtn { position: absolute; right: 18px; bottom: 24px; display: flex; align-items: center; justify-content: center; width: 64px; height: 30px; border: 1px solid var(--colorWhite); border-radius: 4px; color: var(--colorWhite); font-size: 12px; font-weight: 600; }



#footer { background: var(--colorFooter); padding: 70px 0 90px; }
#footer .footerInner { display: flex; align-items: center; justify-content: space-between; gap: 60px; width: min(1400px, calc(100% - 40px)); margin: 0 auto; }
#footer .footerLogo { flex-shrink: 0; width: 130px; }
#footer .footerLogo img { display: block; width: 100%; }
#footer .footerInfo { flex: 1; color: var(--colorWhite); }
#footer .footerInfo .footerLink { display: flex; align-items: baseline; gap: 28px; margin-bottom: 28px; }
#footer .footerInfo .footerLink button { font-size: 16px; background: inherit ; border:none; box-shadow:none; border-radius:0; padding:0; overflow:visible; cursor:pointer; color: var(--colorWhite); }
#footer .footerInfo .footerLink a { font-size: 16px; background: inherit ; border:none; box-shadow:none; border-radius:0; padding:0; overflow:visible; cursor:pointer; color: var(--colorWhite); }

#footer .footerInfo .footerText p { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 8px; font-size: 16px; font-weight: 400; color: rgba(255, 255, 255, 0.9); line-height: 1.5; }
#footer .footerInfo .footerText p:last-child { margin-bottom: 0; font-size: 12px; letter-spacing: 0.3px; }
#footer .footerSns { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-bottom: 50px; }
#footer .footerSns a { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 60px;height: 60px; border: 0; border-radius: 50%; background: var(--colorMain); }
#footer .footerSns a:nth-child(1) img { filter: brightness(0) invert(1); }
#footer .footerSns a:nth-child(2) img { filter: brightness(0) invert(1);}
#footer .footerSns a:nth-child(3) img { filter: invert(1); }
#footer .footerSns button { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); font-size: 18px; font-weight: 700; color: var(--colorWhite); transition: all 0.4s ease; }
#footer .footerSns button:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-4px); }

.footerPopup { position: fixed; left: 0; top: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100dvh; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.footerPopup.on { opacity: 1; visibility: visible; }
.footerPopup .footerPopupDim { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.55); }
.footerPopup .footerPopupBox { position: relative; display: flex; flex-direction: column; width: min(620px, calc(100% - 40px)); height: auto; max-height: 80vh; overflow: hidden; border-radius: 18px; background: var(--colorWhite); padding: 20px; z-index: 1; transform: translateY(20px); transition: all 0.4s ease; }
.footerPopup.on .footerPopupBox { transform: translateY(0); }
.footerPopup .footerPopupClose { position: absolute; right: 24px; top: 18px; border: 0; background: none; font-size: 34px; font-weight: 300; color:var(--colorMain); cursor: pointer; }
.footerPopup .footerPopupTitle { display: block; flex-shrink: 0; margin-bottom: 24px; font-size: 24px; font-weight: 700; color: var(--colorMain); }
.footerPopup .footerPopupCont { flex: 1; min-height: 0; max-height: calc(80vh - 120px); overflow-y: auto; overscroll-behavior: contain; padding-right: 10px; font-size: 15px; color: #444; line-height: 1.8; }
.footerPopup .footerPopupCont::-webkit-scrollbar { width: 8px; }
.footerPopup .footerPopupCont::-webkit-scrollbar-track { border-radius: 20px; background: var(--colorWhite); }
.footerPopup .footerPopupCont::-webkit-scrollbar-thumb { border-radius: 20px; background: var(--colorMain); }
.footerPopup .footerPopupCont::-webkit-scrollbar-thumb:hover { background: var(--colorMain); }
.footerPopup .footerPopupCont p { margin-bottom: 12px; }
.footerPopup .footerPopupCont p:last-child { margin-bottom: 0; }

.footerPopup .footerPopupCont .patientRightBox .source { margin-bottom: 8px; font-size: 13px; color: #2a3767b0; }
.footerPopup .footerPopupCont .patientRightBox > strong { display: block; margin-bottom: 24px; font-size: 22px; font-weight: 700; color: var(--colorMain); }
.footerPopup .footerPopupCont .patientRightBox div { margin-bottom: 28px; }
.footerPopup .footerPopupCont .patientRightBox div:last-child { margin-bottom: 0; }
.footerPopup .footerPopupCont .patientRightBox h4 { margin-bottom: 14px; font-size: 18px; font-weight: 700; color: var(--colorMain); }
.footerPopup .footerPopupCont .patientRightBox h5 { margin: 18px 0 6px; font-size: 15px; font-weight: 700; color: var(--colorMain); }
.footerPopup .footerPopupCont .patientRightBox p { margin-bottom: 0; font-size: 14px; color: #2a3767b0; line-height: 1.75; }

html.popupLock,
body.popupLock { overflow: hidden; }

body.popupLock { position: fixed; left: 0; width: 100%; }

/* 공통 버튼 */
.topBtn { position: fixed; right: 40px; bottom: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 90px; height: 90px; border: 0; border-radius: 50%; background: var(--colorMain); font-size: 15px; font-weight: 400; color: var(--colorWhite); cursor: pointer; z-index: 100; opacity: 1;transform: translateY(15px); }
.topBtn span { display: block; width: 12px; height: 12px; border-top: 1px solid var(--colorWhite); border-left: 1px solid var(--colorWhite); transform: rotate(45deg); }

 a.btn { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; gap: 8px; width: 200px; padding: 17px 0; color: var(--colorMain); border-radius: 999px; border: 1px solid var(--colorMain); font-size: 17px; font-weight: 600; transition: color 0.3s ease; z-index: 1; }
 a.btn::before { content: ""; position: absolute; width: 0; height: 100%; left: 0; top: 0; background: var(--colorMain); transition: width 0.4s ease; z-index: -1; }
 a.btn span { transition: transform 0.3s ease; }
 a.btn:hover { color: var(--colorWhite); }
 a.btn:hover::before { width: 100%; }
 a.btn:hover span { transform: translateX(4px); }


 .padding40 { padding: 0 40px; }


.paginationWrap { display: flex; justify-content: center; margin-top: 70px; }
.paginationWrap .pg_wrap { width: 100%; }
.paginationWrap .pg { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.paginationWrap .pg .pg_page,
.paginationWrap .pg .pg_current { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid #e5e8f0; border-radius: 12px; background: var(--colorWhite); font-size: 14px; font-weight: 500; color: #666; }
.paginationWrap .pg .pg_page:hover { border-color: var(--colorMain); color: var(--colorMain); }
.paginationWrap .pg .pg_current { border-color: var(--colorMain); background: var(--colorMain); color: var(--colorWhite); font-weight: 700; }
.paginationWrap .pg .pg_start,
.paginationWrap .pg .pg_end,
.paginationWrap .pg .pg_prev,
.paginationWrap .pg .pg_next { position: relative; font-size: 0; }
.paginationWrap .pg .pg_prev::before,
.paginationWrap .pg .pg_next::before,
.paginationWrap .pg .pg_start::before,
.paginationWrap .pg .pg_end::before { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 13px; font-weight: 700; color: #666; }
.paginationWrap .pg .pg_prev::before { content: "‹"; }
.paginationWrap .pg .pg_next::before { content: "›"; }
.paginationWrap .pg .pg_start::before { content: "«"; }
.paginationWrap .pg .pg_end::before { content: "»"; }
.paginationWrap .pg .pg_prev:hover::before,
.paginationWrap .pg .pg_next:hover::before,
.paginationWrap .pg .pg_start:hover::before,
.paginationWrap .pg .pg_end:hover::before { color: var(--colorMain); }
.paginationWrap .sound_only { display: none; }

.mobileBottomBar { display: none;   position: fixed;  bottom: 0;  left: 0;  width: 100%;  height: 80px;  background: var(--colorMain);  z-index: 900; }
.mobileBottomBar a { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1;  gap: 5px; color: var(--colorWhite); font-size: 14px; }
.mobileBottomBar a img { width: 30px; height: 30px; object-fit: contain; }
@media (max-width: 1595px) {
#header .headerInner .gnb .gnbList { column-gap: 15px; }
#header .allMenu .allMenuInner { column-gap: 15px; }
#header .headerInner .gnb .gnbList li a { font-size: 17px; }
#header .allMenu .allMenuInner .allMenuGroup a { font-size: 14px; }
#header .headerInner .logo a { width: 130px; }

}
@media (max-width: 1200px) {
    #header .headerInner .gnb .gnbList { grid-template-columns: 65px 90px 100px 100px 100px 60px 60px; column-gap: 15px; }
    #header .allMenu .allMenuInner { grid-template-columns: 65px 90px 100px 100px 100px 60px 60px; column-gap: 15px; }
    #header .headerInner .gnb .gnbList li a { font-size: 13px; }
    #header .allMenu .allMenuInner .allMenuGroup a { font-size: 12px; }
    #container { margin-top: 64px; }
    #footer .footerInner { align-items: flex-start; flex-direction: column; gap: 34px; }
    #footer .footerSns { margin-left: 0; }
}

@media (max-width: 1024px) {
    #header { padding: 0 18px; }
    #header .headerInner { height: 64px; }
    #header .headerInner .gnb { display: none; }
    #header .allMenu { display: none; }
    #header .headerInner .headerUtil .languageWrap, #header .headerInner .headerUtil .adminIcon { display: none; }
    #header .headerInner .headerUtil .languageWrap.forMob { display: flex; }
    #header .headerInner .headerUtil .languageBtn { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; cursor: pointer; }
    #header .headerInner .headerUtil .languageBtn img { display: block; width: 22px; height: 22px; }
    #header .headerInner .headerUtil .languageBtn::after { content: ""; display: block; width: 7px; height: 7px; border-right: 1.5px solid #333; border-bottom: 1.5px solid #333; transform: rotate(45deg); margin-top: -4px; }
    #header .headerInner .headerUtil .languageWrap .languageBtn img { width: 20px; }
    #header .headerInner .headerUtil .mobileMenuBtn { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 28px; border: 0; background: transparent; cursor: pointer; }
    #header .headerInner .headerUtil .mobileMenuBtn span { display: block; width: 100%; height: 2px; background: var(--colorBlack); }
    #header .headerInner .logo a { width: 135px; }
    #header .mobileMenu { display: block; }
    .paginationWrap { margin-top: 50px; }
    .paginationWrap .pg { gap: 6px; }
    .paginationWrap .pg .pg_page,
    .paginationWrap .pg .pg_current { width: 38px; height: 38px; border-radius: 10px; font-size: 13px; }
}

@media (max-width: 768px) {

    #footer { padding: 50px 0 100px ; }
    #footer .footerInner { width: calc(100% - 32px); gap: 28px; }
    #footer .footerLogo { width: 110px; }
    #footer .footerInfo .footerLink { gap: 20px; margin-bottom: 22px; }
    #footer .footerInfo .footerText p { display: block; font-size: 12px; }
    #footer .footerInfo .footerText p span { display: block; margin-bottom: 4px; }
    #footer .footerSns a { width: 42px; height: 42px; font-size: 16px; }
    .topBtn { width: 60px; height: 60px; right: 10px; bottom: 115px; font-size: 13px; }
    .paginationWrap { margin-top: 40px; }
    .paginationWrap .pg { gap: 5px; }
    .paginationWrap .pg .pg_page,
    .paginationWrap .pg .pg_current { width: 34px; height: 34px; border-radius: 9px; font-size: 12px; }
    .paginationWrap .pg .pg_prev::before,
    .paginationWrap .pg .pg_next::before,
    .paginationWrap .pg .pg_start::before,
    .paginationWrap .pg .pg_end::before { font-size: 12px; }
    .paginationWrap .pg .pg_start,
.paginationWrap .pg .pg_prev,
.paginationWrap .pg .pg_next,
.paginationWrap .pg .pg_end { position: relative; font-size: 0; color: transparent; }

    .mobileBottomBar {
        display: flex;
    }
    #footer .footerInfo .footerText p:last-child { font-size: 10px; }
}

