@charset "UTF-8";
/* layout */
html,
body {
  width: 100%;
  height: 100%;
}
body.fixed {
  overflow-y: hidden;
}
.main {
  width: 100%;
  height: 100%;
  padding-top: 118px;
}
#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 390px;
}
.container {
  width: 100%;
  max-width: 1314px;
  margin: 0 auto;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 118px;
  z-index: 101;
  background-color: #fff;
  transition: 0.35s;
  border-bottom: 1px solid #E5E5EC;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 32px;
}
.logo {
  width: 88px;
  height: 50px;
  background: url(../_img/common/logo_dark.png) no-repeat center / contain;
}
.header.transparent {
  background-color: transparent;
  border-bottom: none;
}
.header.transparent .logo {
  background-image: url(../_img/common/logo.png);
}
nav.gnb {
  padding: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 800px;
}
.header.transparent nav.gnb {
  background: #00000066;
}
nav.gnb ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav.gnb ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  font-weight: 500;
  color: #505050;
  border-radius: 800px;
  transition: 0.35s;
}
nav.gnb ul li a:hover,
nav.gnb ul li a.active {
  background-color: #fff;
  color: #111;;
}
.header.transparent nav.gnb ul li a  {
  color: #CCCCCC;
}
.header .btn_mo_menu {
  display: none;
}
/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -390px;
  height: 390px;
  transform: translateY(-100%);
  background-color: #111111;
}
.footer__inner {
  padding: 80px 32px 0px;
  display: flex;
  justify-content: space-between;
}
.footer--left {
  display: flex;
  gap: 40px;
  align-self: stretch;
}
.footer--left .company_info h5 {
  color: #EEEEEE;
  margin-bottom: 20px;
}
.company-info__list li {
  font-size: 14px;
  color: #AAAAAA;
  margin-bottom: 12px;
}
.company-info__list li span {
  display: inline-block;
  margin-right: 16px;
}
.footer--right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .sns_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.footer .sns_list li a {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.footer .sns_list li.blog {
  background: url(../_img/icon/icon_blog.svg) no-repeat center / contain;
}
.footer .sns_list li.insta {
  background: url(../_img/icon/icon_insta.svg) no-repeat center / contain;
}
.footer .sns_list li.facebook {
  background: url(../_img/icon/icon_facebook.svg) no-repeat center / contain;
}
.footer .sns_list li.youtube {
  background: url(../_img/icon/icon_youtube.svg) no-repeat center / contain;
}
.footer .footer_nav {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.footer .footer_nav li a {
  font-size: 14px;
  font-weight: 500;
  color: #BBB;
}
.footer--right p.copyright {
  font-size: 14px;
  color: #999;
}
aside.sidebar {
  width: 100%;
  height: 100dvh;
  background-color: rgb(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.35s;
  visibility: hidden;
}
aside.sidebar.open {
  visibility: visible;
}
.sidebar__inner {
  position: absolute;
  right: -200px;
  top: 0;
  width: 200px;
  height: 100%;
  border-radius: 20px 0 0 20px;
  background-color: #fff;
  padding: 20px;
  opacity: 0;
  transition: 0.35s;
}
aside.sidebar.open .sidebar__inner {
  right: 0;
  opacity: 1;
}
.sidebar__inner::after {
  content: '';
  display: inline-block;
  width: 84px;
  height: 48px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: url(../_img/common/sidebar_bottom_img.png) no-repeat center / contain;
}
.sidebar__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sidebar__close .btn_close_sidebar{
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_sidebar_close.svg) no-repeat center / contain;
}
.sidebar__content {
  margin-top: 24px;
}
ul.sidebar_gnb li >a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 38px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
}
/* Page */
.page {
  width: 100%;
  height: 100%;
  padding-top: 32px;
  padding-bottom: 160px;
}
.page__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
ul.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
}
ul.breadcrumb li {
  font-size: 14px;
  color: #111;
  padding-right: 22px;
  position: relative;
}
ul.breadcrumb li::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_breadcrumb_arrow.svg) no-repeat center / contain;
}
ul.breadcrumb li:last-child::after {
  content: none;
}
ul.breadcrumb li.home span {
  padding-left: 17px;
  position: relative;
}
ul.breadcrumb li.home span::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_home.svg) no-repeat center / contain;
}
.page__header .page_title {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.page__header .page_title h1 {
  font-size: 56px;
  font-weight: 700;
  color: #111;
}
.page__header .page_title p {
  font-size: 18px;
  color: #767676;
}
.page__header .page_header_img {
  margin-top: 32px;
  width: 100%;
  height: 400px;
}
.page__header .page_header_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common_tab {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common_tab ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_tab ul li {
  min-width: 180px;
  height: 56px;
  border: 1px solid #E5E5EC;
}
.common_tab ul li.active {
  background-color: #111;
  border: 1px solid #111;
}
.common_tab ul li>* {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}
.common_tab ul li.active > * { 
  color: #fff;
}
.page__content {
  margin-top: 80px;
}
.list_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_title h3 {
  font-size: 40px;
  font-weight: 500;
}
.form_search fieldset {
  display: flex;
  align-items: center;
}
.form_search .select {
  width: 120px;
}
.form_search .input_search {
  display: flex;
  align-items: center;
  position: relative;
}
.form_search .input_search .form-control {
  border-left: none;
  width: 320px;
}
.form_search .input_search .btn_search {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_search.svg) no-repeat center / contain;
}
ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 32px;
}
ul.pagination li {
  display: inline-block;
  width: 38px;
  height: 38px;
}
ul.pagination li a { 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
ul.pagination li.page {
  padding: 0;
}
ul.pagination li.page a {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
}
ul.pagination li.page.active a {
  background-color: #111;
  color: #fff;
}
ul.pagination li.prev {
  margin-right: 14px;
}
ul.pagination li.next {
  margin-left: 14px;
}
ul.pagination li.prev a {
  border: 1px solid #E5E5EC;
  background: url(../_img/icon/icon_pagination_prev.svg) no-repeat center / 18px;
}
ul.pagination li.next a {
  border: 1px solid #E5E5EC;
  background: url(../_img/icon/icon_pagination_next.svg) no-repeat center / 18px;
}
/* Table */
.tbl_list {
  margin-top: 32px;
}
.tbl_list table {
  width: 100%;
  border-top: 1px solid #111;
}
.tbl_list thead th {
  background-color: #F7F7F7;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #363636;
  height: 68px;
  padding: 0 8px;
}
.tbl_list tbody td {
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  height: 92px;
  padding: 0 16px;
}
.tbl_list a.title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word; 
  word-break: break-all;
  line-height: 1.4;
  height: auto;
  text-align: left;
}
.mo_list {
  border-top: 1px solid #111;
  margin-top: 24px;
}
.mo_list .mo_item {
  display: block;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #E5E5EC;
}
.mo_item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word; 
  word-break: break-all;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.mo_item p.date {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}
/* Form Input */
.input--typeA {
  margin-bottom: 24px;
}
.input--typeA .input_label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}
.input--typeA .input_content {
  width: 100%;
}
@media screen and (max-width:768px) { 
  .main {
    padding-top: 52px;
  }
  #wrap {
    padding-bottom: 453px;
  }
  .header {
    height: 52px;
  }
  .header__inner {
    padding: 0 20px;
  }
  .logo {
    width: 50px;
    height: 28px;
  }
  nav.gnb {
    display: none;
  }
  .header .btn_mo_menu {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../_img/icon/icon_mo_menu.svg) no-repeat center / contain;
  }
  .header.transparent .btn_mo_menu {
    background-image: url(../_img/icon/icon_mo_menu_white.svg);
  }
  .footer {
    bottom: -453px;
    height: 453px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px 0;
    gap: 24px;
  }
  .footer--left {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer--left .company_info h5 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .company-info__list li {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .footer--right {
    align-items: flex-start;
  }
  .footer .sns_list {
    justify-content: flex-start;
  }
  .footer .footer_nav {
    margin-top: 24px;
    gap: 12px;
  }
  .footer .footer_nav li a {
    font-size: 12px;
  }
  .footer--right p.copyright {
    font-size: 11px;
    margin-top: 24px;
  }
  .page {
    padding-top: 20px;
    padding-bottom: 64px;
  }
  ul.breadcrumb {
    gap: 4px;
  }
  ul.breadcrumb li {
    font-size: 12px;
    padding-right: 18px;
  }
  ul.breadcrumb li::after {
    width: 14px;
    height: 14px;
  }
  .page__header .page_title {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .page__header .page_title h1 {
    font-size: 24px;
  }
  .page__header .page_title p {
    font-size: 14px;
  }
  .page__header .page_header_img {
    margin-top: 12px;
    height: auto;
    aspect-ratio: 32 / 12;
  }
  .common_tab {
    margin-top: 24px;
  }
  .common_tab ul {
    width: 100%;
  }
  .common_tab ul li {
    min-width: auto;
    flex: 1;
    width: 100%;
    height: 44px;
  }
  .common_tab ul li>* {
    font-size: 14px;
  }
  .page__content {
    margin-top: 24px;
  }
  .list_title {
    flex-direction: column;
    align-items: flex-start;
  }
  .list_title h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .form_search {
    width: 100%;
  }
  .form_search .select {
    width: 100px;
  }
  .form_search .input_search {
    width: 100%;
  }
  .form_search .input_search .form-control {
    width: 100%;
  }
  .form_search .input_search .btn_search {
    background-size: 16px;
  }
  ul.pagination {
    margin-top: 24px;
  }
  .input--typeA {
    margin-bottom: 12px;
  }
  .input--typeA .input_label {
    font-size: 16px;
    margin-bottom: 8px;
  }
} 