@charset "UTF-8";
/* layout */
html,
body {
  width: 100%;
  height: 100%;
}

body.fixed {
  overflow-y: hidden;
}

.main {
  width: 100%;
  height: 100%;
}

#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 285px;
  overflow: hidden;
}

#wrap.layout2 {
  background-color: #F6F6F6;
  padding-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
#header {
  position: relative;
}

.top_fix {
  width: 100%;
  height: 45px;
  background-color: #FF509F;
}

.top_fix .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_fix ul.top_menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top_fix ul.top_menu li {
  color: #fff;
  padding-right: 8px;
  position: relative;
}

.top_fix ul.top_menu li:last-child {
  padding-right: 0px;
}

.top_fix ul.top_menu li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DEDEDF;
}

.top_fix ul.top_menu li:last-child::after {
  content: none;
}

.top_fix .logo {
  opacity: 0;
  transition: 0.2s linear 0.5s;
  display: inline-block;
  width: 87px;
  height: 20px;
}

.top_fix .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header.close .top_fix .logo {
  opacity: 1;
}

.header {
  background-color: #fff;
  transition: 0.35s;
  /* overflow: hidden; */
  height: auto;
  transition: height .3s ease, opacity .3s ease;
}

.header__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.header_top {
  height: 122px;
  border-bottom: 1px solid #DEDEDF;
  padding-bottom: 16px;
}

.header-top__logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}

.header_top span.date {
  font-size: 14px;
  color: #424649;
}

a.logo {
  display: inline-block;
  width: 319px;
  height: 74px;
}

a.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-top__link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top__link li {
  font-size: 14px;
}

.header-top__link li .btn_view_article span {
  padding-left: 22px;
  position: relative;
}

.header-top__link li .btn_view_article span::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_view_article.svg) no-repeat center / contain;
}

.header-mob__link {
  display: none;
}

.header_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 54px;
  border-bottom: 5px solid #000000;
}

.header_bottom .btn_category {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url(../_img/icon/icon_category.svg) no-repeat center / contain;
}

nav.gnb {
  width: 100%;
  height: 100%;
  /* overflow-x: auto; */
}

nav.gnb>ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav.gnb>ul li.gnb_li--1depth {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}

nav.gnb>ul li.gnb_li--1depth>a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  height: 100%;
}

nav.gnb>ul li.gnb_li--1depth>a:hover {
  color: #2A58A8;
}

nav.gnb>ul li.gnb_li--1depth .gnb--2depth {
  width: max-content;
  display: none;
  position: absolute;
  top: calc(100%);
  left: 0%;
  background-color: #fff;
  border: 2px solid #000;
  height: 39px;
}

nav.gnb>ul li.gnb_li--1depth.service .gnb--2depth {
  left: -80%;
}

nav.gnb>ul li.gnb_li--1depth .gnb--2depth ul {
  display: flex;
  align-items: center;
  height: 100%;
}

nav.gnb>ul li.gnb_li--1depth .gnb--2depth li {
  width: fit-content;
  height: 100%;
  flex-shrink: 0;
}

nav.gnb>ul li.gnb_li--1depth .gnb--2depth li a {
  width: fit-content;
  font-size: 15px;
  padding: 0 8px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #424649;
}

nav.gnb>ul li.gnb_li--1depth .gnb--2depth li a:hover {
  background-color: #F6F6F6;
  color: #212529;
}

.header_search {
  display: flex;
  align-items: center;
  position: relative;
}

.header_search .btn_search {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../_img/icon/icon_search.svg) no-repeat center / contain;
}

.header_search .btn_search.open {
  background-image: url(../_img/icon/icon_close_search.svg);
}

.header_search .form_header_search {
  display: none;
  position: absolute;
  right: -1px;
  top: calc(100% + 13px);
  background-color: #fff;
  border: 5px solid #000;
  height: 44px;
  padding: 0 16px;
}

.header_search .form_header_search fieldset {
  height: 100%;
}

.form_header_search .input_search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.form_header_search .input_search input {
  border: none;
  max-width: 168px;
}

#header>.container {
  position: relative;
}

.btn_handle_header {
  width: 106px;
  height: 33px;
  position: absolute;
  left: calc(100% + 20px);
  bottom: 15px;
  display: inline-block;
  border-radius: 800px;
  background-color: #fff;
  border: 1px solid #DEDEDF;
}

.btn_handle_header span {
  font-weight: 500;
  padding-right: 16px;
  position: relative;
}

.btn_handle_header span::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_handle_header.svg) no-repeat center / contain;
}

.btn_handle_header.active {
  bottom: 7px;
}

.btn_handle_header.active span::after {
  transform: translateY(-50%) scaleY(-1);
}

/* Footer */
#footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -285px;
  height: 285px;
  transform: translateY(-100%);
}

.footer_link-mobile,
.footer_sns-mobile {
  display: none;
}

.footer_top {
  height: 62px;
  width: 100%;
  background-color: #FDFDFD;
  border-top: 1px solid #DEDEDF;
}

.footer__inner {
  height: 100%;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_top .footer_link {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.footer_top .footer_link li a {
  font-size: 15px;
  color: #424649;
}

.footer_top .footer_link li a.privacy {
  font-weight: 700;
}

.footer_bottom {
  background-color: #212529;
  padding-top: 24px;
  height: 223px;
}

.footer_logo {
  width: 170px;
  height: 39px;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_account_link,
.footer-bottom_link {
  display: none;
}

#footer .company_info {
  margin-top: 24px;
}

#footer .company_info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

#footer .company_info ul li {
  font-size: 13px;
  color: #C8C9CA;
  padding-right: 8px;
  position: relative;
}

#footer .company_info ul li:last-child {
  padding-right: 0px;
}

#footer .company_info ul li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #3C3F43;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#footer .company_info ul li:last-child:after {
  content: none;
}

#footer .copyright {
  margin-top: 16px;
  font-size: 13px;
  color: #C8C9CA;
}

.footer_powered {
  margin-top: 8px;
  display: flex;
  justify-content: end;
}

.footer_powered img {
  height: 9px;
}

.scroll_top {
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.35s;
  box-shadow: 2px 2px 2px 0px #0000001A;
  background: #FFFFFFCC url(../_img/common/scroll_top.svg) no-repeat center / 20px;
}

.scroll_top:hover {
  background: #212529 url(../_img/common/scroll_top_active.svg) no-repeat center / 20px;
}

/* 카테고리 사이드바 */
aside.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #00000066;
  z-index: 1000;
  visibility: hidden;
  transition: 0.35s;
}

aside.sidebar.mo_sidebar.open {
  visibility: hidden;
}

aside.sidebar.open {
  visibility: visible;
}

aside.sidebar .sidebar__inner {
  position: absolute;
  left: -320px;
  top: 0;
  width: 320px;
  height: 100%;
  transition: 0.35s;
  background-color: #fff;
}

aside.sidebar.open .sidebar__inner {
  left: 0;
}

.sidebar__close {
  position: absolute;
  top: 22px;
  right: 20px;
  display: inline-block;
  width: 24px;
  height: 24px;
  z-index: 10;
}

.sidebar__close .btn_close_sidebar {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../_img/icon/icon_close_search.svg) no-repeat center / contain;
}

.sidebar__header {
  height: 68px;
  padding: 20px;
}

.sidebar__header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
}

.sidebar__content {
  overflow-y: auto;
  height: calc(100dvh - 68px);
}

.sidebar__content nav.sidebar_gnb {
  padding: 0 20px;
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth {
  width: 100%;
  border-bottom: 1px solid #F2F2F2
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth>a {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  padding: 0 12px;
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth.arrow>a {
  position: relative;
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth.arrow>a::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_sidebar_arrow.svg) no-repeat center / contain;
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth.open>a {
  color: #2A58A8;
}

nav.sidebar_gnb>ul li.sidebar-gnb__1depth.open>a::after {
  background-image: url(../_img/icon/icon_sidebar_arrow_active.svg);
}

nav.sidebar_gnb ul.sidebar-gnb__2depth {
  display: none;
  padding-left: 12px;
  padding-bottom: 12px;
}

nav.sidebar_gnb ul.sidebar-gnb__2depth li a {
  display: flex;
  width: 100%;
  height: 42px;
  align-items: center;
  font-size: 14px;
  color: #212529;
}

nav.sidebar_gnb ul.sidebar-gnb__2depth li a:hover,
nav.sidebar_gnb ul.sidebar-gnb__2depth li a.active {
  text-decoration: underline;
}

@media screen and (max-width:767px) {
  #wrap {
    padding-bottom: 687px;
  }
  .top_fix {
    height: 40px;
  }
  .top_fix ul.top_menu:last-child {
    display: none;
  }
  .top_fix ul.top_menu li {
    padding-right: 0;
  }
  .top_fix ul.top_menu li a {
    font-size: 15px;
  }
  .top_fix ul.top_menu li::after {
    content: none;
  }
  .top_fix .logo {
    display: none;
  }
  .header__inner {
    padding: 0 0;
  }
  .header_top {
    height: 56px;
    padding: 12px 20px;
  }
  .header-top__logo {
    height: auto;
    align-items: center;
  }
  .header_top span.date {
    display: none;
  }
  a.logo {
    width: 104px;
    height: 24px;
  }
  .header-top__link {
    display: none;
  }
  .header-mob__link {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header-mob__link .btn_search {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: 0.35s;
    border-radius: 50%;
    background: url(../_img/icon/icon_search.svg) no-repeat center / 20px;
  }
  .header-mob__link .btn_search.open {
    background: #000 url(../_img/icon/icon_search_open.svg) no-repeat center / 20px;
  }
  .header-mob__link .btn_category {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../_img/icon/icon_category_mo.svg) no-repeat center / contain;
  }
  nav.gnb {
    display: none;
  }
  .header_bottom {
    display: none;
    height: 40px;
    border-bottom: none;
  }
  .header_bottom .btn_category {
    display: none;
  }
  nav.gnb::-webkit-scrollbar {
    display: none;
  }
  .header_bottom .header_search {
    display: flex;
    width: 100%;
  }
  .header_search>.btn_search {
    display: none;
  }
  .header_search .form_header_search {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #000000;
    position: static;
    padding: 0 10px;
    border-width: 0px;
  }
  .form_header_search .input_search input {
    background-color: transparent;
    max-width: 100%;
    font-size: 13px;
    flex: 1;
    padding-left: 0px;
    color: #fff;
    color: #fff;
  }
  .header_search {
    display: none;
  }
  .header_search .btn_search {
    width: 20px;
    height: 20px;
    background-image: url(../_img/icon/icon_search_white.svg);
  }
  .header_search.active {
    display: inline-block;
  }
  .btn_handle_header {
    display: none;
  }
  #footer {
    bottom: -687px;
    height: 687px;
  }
  .footer_link-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 24px 20px;
  }
  .footer_link-mobile li {
    width: calc((100% / 3) - 4px);
    height: 38px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #DEDEDF;
  }
  .footer_link-mobile li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #424649;
  }
  .footer_sns-mobile {
    width: 100%;
    height: 104px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #F5F4FB;
  }
  .footer_sns-mobile li {
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .footer_sns-mobile li a {
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  .footer_sns-mobile li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .footer_top {
    display: none;
  }
  .footer_bottom {
    height: 371px;
  }
  .footer_bottom .footer_logo {
    display: none;
  }
  .footer_account_link {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
    padding: 0 20px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 800px;
  }
  .footer_account_link a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    height: 100%;
    line-height: 28px;
    position: relative;
    padding-right: 8px;
  }
  .footer_account_link a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #3C3F43;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer_account_link a:last-child {
    padding-right: 0px;
  }
  .footer_account_link a:last-child::after {
    content: none;
  }
  .footer-bottom_link {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
  }
  .footer-bottom_link li a {
    color: #fff;
    font-size: 14px;
    padding-right: 8px;
    position: relative;
  }
  .footer-bottom_link li a.privacy {
    font-weight: 700;
  }
  .footer-bottom_link li a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #3C3F43;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer-bottom_link li:last-child a {
    padding-right: 0px;
  }
  .footer-bottom_link li:last-child a::after {
    content: none;
  }
  #footer .company_info ul {
    justify-content: center;
    gap: 4px 6px;
  }
  #footer .company_info ul li {
    padding-right: 6px;
  }
  #footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
  .footer_powered {
    margin-top: 16px;
  }
  .scroll_top {
    bottom: 40px;
    right: 10px;
  }
  aside.sidebar.mo_sidebar.open {
    visibility: visible;
  }
  aside.sidebar .sidebar__inner {
    left: -300px;
    width: 300px;
    background-color: #F2F2F2;
  }
  .mo_sidebar .sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
  }
  .mo_sidebar .sidebar__header h3 img {
    width: 104px;
    height: 24px;
  }
  .mo_sidebar .sidebar__btns {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .mo_sidebar .sidebar__btns > * {
    display: inline-block;
    width: 32px;
    height: 32px;
  }
  .mo_sidebar .sidebar__btns .btn_account {
    background: url(../_img/icon/icon_account.svg) no-repeat center / contain;
  }
  .mo_sidebar .sidebar__btns .btn_close_sidebar {
    background: url(../_img/icon/icon_sidebar_close.svg) no-repeat center / contain;
  }
  .sidebar__search {
    width: 100%;
    height: 48px;
    background-color: #33363A;
  }
  .sidebar__search .form_header_search,
  .sidebar__search .form_header_search fieldset {
    height: 100%;
  }
  .sidebar__search .input_search input {
    padding: 0 8px;
  }
  .sidebar__search .input_search input::placeholder {
    color: #9B9D9F;
  }
  .sidebar__search .input_search .btn_search {
    width: 64px;
    height: 100%;
    background: #212529 url(../_img/icon/icon_search_white.svg) no-repeat center / 24px;
  }
  .mo_sidebar_gnb {
    background-color: #fff;
    padding: 16px 0;
  }
  .mo_sidebar_gnb ul {
    display: flex;
    flex-wrap: wrap;
  }
  .mo_sidebar_gnb ul li {
    width: 50%;
    height: 34px;
    display: inline-block;
  }
  .mo_sidebar_gnb ul li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: #212529;
  }
  .mo_sidebar_footer {
    padding: 20px;
    padding-top: 40px;
  }
  .mo_sidebar_footer .footer_link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #DEDEDF;
    gap: 8px;
  }
  .mo_sidebar_footer .footer_link li {
    padding-right: 8px;
    position: relative;
  }
  .mo_sidebar_footer .footer_link li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #DEDEDF;
  }
  .mo_sidebar_footer .footer_link li:last-child {
    padding-right: 0;
  }
  .mo_sidebar_footer .footer_link li:last-child::after {
    content: none;
  }
  .mo_sidebar_footer .footer_link li a {
    font-size: 13px;
    color: #9B9D9F;
  }
  .mo_sidebar_footer .company_info {
    padding-top: 16px;
  }
  .mo_sidebar_footer .company_info p {
    font-size: 12px;
    color: #9B9D9F;
    text-align: center;
  }
  .mo_sidebar_footer .company-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }
  .mo_sidebar_footer .company-tel span {
    display: inline-block;
    margin-left: 2px;
  }
}

/* PAGE COMMON */
.page {
  margin-top: 40px;
  padding-bottom: 80px;
}
.page>.container {
  max-width: 1120px;
}
.page_title  {
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
}
.page_title h1 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.list_sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-tab {
  display: flex;
  align-items: center;
  gap: 16px;
}
.common-tab li button {
  font-size: 16px;
  font-weight: 500;
  color: #6F7174;
}
.common-tab li:hover button {
  color: #424649;
  text-decoration: underline;
}
.common-tab li.active button {
  color: var(--color-point);
  font-weight: 700;
}
.list_sort .sort {
  display: flex;
  align-items: center;
  gap: 6px;
}
.list_sort .sort li { 
  position: relative;
  padding-right: 6px;
}
.list_sort .sort li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #9B9D9F;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.list_sort .sort li:last-child {
  padding-right: 0px;
}
.list_sort .sort li:last-child::after {
  content: none;
}
.list_sort .sort li button {
  font-size: 14px;
  font-weight: 500;
  color: #6F7174;
}
.list_sort .sort li.active button {
  color: #111;
  font-weight: 700;
}
.list--typeA {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
.list--typeA .item--typeA {
  width: calc((100% / 3) - 16px);
  min-width: 340px;
}
.item--typeA .thum {
  width: 100%;
  height: 246px;
  overflow: hidden;
  position: relative;
}
.item--typeA .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.item--typeA .desc {
  margin-top: 16px;
}
.item--typeA .desc h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 56px;
}
.pagination li {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #DEDEDF;
  text-align: center;
  background-color: #fff;
}
.pagination li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 30px;
}
.pagination li a.page {
  padding: 0;
  margin: 0;
  color: #9B9D9F;
  font-size: 14px;
}
.pagination li a.page:hover {
  background-color: #F6F6F6;
  color: #212529;
}
.pagination li a.page.active {
  background-color: #3C3F43;
  color: #fff;
}
.pagination li a.first {
  background: #F6F6F6 url(../_img/icon/icon_pagination_first.svg) no-repeat center / 20px;
}
.pagination li a.prev {
  background: #F6F6F6 url(../_img/icon/icon_pagination_prev.svg) no-repeat center / 20px;
}
.pagination li a.next {
  background: #F6F6F6 url(../_img/icon/icon_pagination_next.svg) no-repeat center / 20px;
}
.pagination li a.last {
  background: #F6F6F6 url(../_img/icon/icon_pagination_last.svg) no-repeat center / 20px;
}
.no_result {
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 301px;
  width: 100%;
}
.no_result p {
  font-size: 16px;
  font-weight: 500;
  color: #6F7174;
}
.scroll::-webkit-scrollbar {
	width: 4px;
}
.scroll::-webkit-scrollbar-thumb {
	background-color: #00000033;
	border-radius: 10px;
}
.scroll::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 10px;
}
.list_bottom {
  padding-top: 30px;
  border-top: 1px solid #DEDEDF;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.list_bottom.center {
  justify-content: center;
}
.list_bottom .btn_list {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #6C757D url(../_img/icon/icon_list.svg) no-repeat center / 24px;
}
.list_bottom .closet_page {
  flex: 1;
}
.list_bottom .closet_page:hover {
  text-decoration: underline;
}
.list_bottom .closet_page p {
  color: #424649;
  font-weight: 500;
}
.list_bottom .closet_page span.type {
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-primary);
  display: inline-block;
  margin-top: 4px;
}
.list_bottom .prev {
  text-align: left;
  position: relative;
  padding-left: 32px;
}
.list_bottom .prev::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0px;
  background: url(../_img/icon/icon_list_prev.svg) no-repeat center / contain;
}
.list_bottom .next {
  text-align: right;
  position: relative;
  padding-right: 32px;
}
.list_bottom .next::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0px;
  background: url(../_img/icon/icon_list_next.svg) no-repeat center / contain;
}
@media screen and (max-width:767px) {
  .list--typeA {
    gap: 32px;
  }
  .list--typeA .item--typeA {
    width: 100%;
  }
  .item--typeA .thum {
    height: auto;
    aspect-ratio: 335 / 239;
  }
  .item--typeA .desc {
    margin-top: 12px;
  }
  .pagination li:nth-child(n+8):nth-child(-n+12) {
    display: none;
  }
  .no_result {
    height: 299px;
  }
  .list_bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    gap: 0px;
  }
  .list_bottom .btn_list {
    order: 2;
    margin-top: 24px;
  }
  .list_bottom .closet_page {
    flex: none;
    width: 100%;
    display: flex;
    align-items: center;
    height: 44px;
    border-bottom: 1px solid #DEDEDF;
  }
  .list_bottom .closet_page p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 18px;
    height: 18px;
    font-size: 14px;
  }
  .list_bottom .closet_page span.type {
    display: none;
  }
  .list_bottom .prev {
    padding-left: 28px;
    
  }
  .list_bottom .prev::before {
    width: 20px;
    height: 20px;
    background-image: url(../_img/icon/icon_list_prev_mo.svg);
    top: 50%;
    transform: translateY(-50%);
  }
  .list_bottom .prev p::before {
    content: '이전글';
    display: inline-block;
    margin-right: 24px;
  }
  .list_bottom .next {
    text-align: left;
    padding-left: 28px;
  }
  .list_bottom .next::after {
    right: auto;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../_img/icon/icon_list_next_mo.svg);
    top: 50%;
    transform: translateY(-50%);
  }
  .list_bottom .next p::before {
    content: '다음글';
    display: inline-block;
    margin-right: 24px;
  }
}