 @charset "UTF-8";
/* layout */
html,
body {
  width: 100%;
  height: 100%;
  background-color: #F9F8EE;
}
body.fixed {
  overflow-y: hidden;
}
.main {
  width: 100%;
  height: 100%;
  padding: 40px;
  padding-top: 178px;
}
#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 269px;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 138px;
  z-index: 101;
  transition: 0.35s;
  background-color: #F9F8EE;
}
.header .top_fix {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 42px;
  background-color: #249C4A;
}
.header .top_fix>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header .top_fix>a p {
  text-align: center;
  color: #fff;
}
.header_contents {
  width: 100%;
  height: 96px;
}
.header_contents .header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  padding: 0 40px;
}
.logo {
  display: inline-block;
  flex-shrink: 0;
  width: 120px;
  height: 48px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__gnb ul {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header__gnb ul li {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.header__gnb ul li:hover,
.header__gnb ul li.active {
  color: var(--color-primary);
}
/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -269px;
  height: 269px;
  transform: translateY(-100%);
  background-color: #249C4A;
  color: #fff;
}
.footer__inner {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer--left {
  display: flex;
  gap: 32px;
}
.footer_info .company_tel {
  margin-bottom: 32px;
}
.footer_info .company_tel h2.tel {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.footer_info .company_tel span {
  display: block;
  margin-top: 4px;
}
.footer_info p.copyright {
  font-size: 14px;
  color: #91CEA4;
}
.footer_info .company_info li {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}
.footer_sns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.footer_sns li {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.footer_sns li.blog {
  background: url(../_img/icon/icon_blog.svg) no-repeat center / contain;
}
.footer_sns li.insta {
  background: url(../_img/icon/icon_insta.svg) no-repeat center / contain;
}
.footer_sns li.youtube {
  background: url(../_img/icon/icon_youtube.svg) no-repeat center / contain;
}
.footer_sns li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.footer__gnb li  {
  font-size: 14px;
  text-align: right;
  display: block;
  margin-bottom: 17px;
}
.footer__gnb li:last-child {
  margin-bottom: 0px;
}
aside.sidebar {
  display: none;
}
/* 공통 요소 */
.main_title {
  position: relative;
  padding-top: 18px;
}
.main_title::before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 6px;
  background-color: var(--color-sub);
  position: absolute;
  top: 0px;
  left: 0;
}
.main_title h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}
.main_title p {
  margin-top: 12px;
  color: #505050;
}
.page_title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 285px;
  border-radius: 8px;
  overflow: hidden;
  background: url(../_img/common/page_title_bg.png) no-repeat center / cover;
}
.page_title h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.form_search {
  display: flex;
  justify-content: center;
  align-items: center;  
  margin-top: 40px;
}
.form_search .input_search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.form_search .input_search input {
  flex: 1;
}
.form_search .input_search .btn {
  font-weight: 700;
}
/* Table */
.tbl_list {
  margin-top: 24px;
}
.tbl_list table {
  width: 100%;
  table-layout: fixed;
}
.tbl_list thead th {
  height: 54px;
  border-bottom: 1px solid #DDDDDD;
  color: var(--color-primary);
}
.tbl_list tbody td {
  border-bottom: 1px solid #DDDDDD;
  color: #333;
  padding: 0 12px;
}
span.important {
  display: inline-block;
  width: auto;
  padding: 0 12px;
  height: 32px;
  line-height: 32px;
  border-radius: 50px;
  background-color: #fff;
  text-align: center;
  color: var(--color-primary);
  font-size: 14px;
}
.tbl_list span.date {
  font-size: 16px;
  color: #505050;
}
.tbl_list .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 22px;
  height: 22px;
  color: #333;
  text-align: left;
  padding: 0 12px;
}
.tbl_list .title.lock span {
  position: relative;
  padding-right: 24px;
}
.tbl_list .title.lock span::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_lock.svg) no-repeat center / contain;
}
ul.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
ul.pagination li {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
ul.pagination li.page {
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 38px;
  color: #505050;
}
ul.pagination li.page.active {
  color: var(--color-primary);
  font-weight: 700;
}
ul.pagination li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
ul.pagination li.prev {
  margin-right: 8px;
  background: url(../_img/icon/icon_pagination_prev.svg) no-repeat center / contain;
}
ul.pagination li.prev.disabled {
  background-image: url(../_img/icon/icon_pagination_prev_disabled.svg);
}
ul.pagination li.next {
  margin-left: 8px;
  background: url(../_img/icon/icon_pagination_next.svg) no-repeat center / contain;
}
ul.pagination li.next.disabled {
  background-image: url(../_img/icon/icon_pagination_next_disabled.svg);
}
.input--typeA {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 12px;
}
.input--typeA label.input_label {
  font-size: 16px;
  color: #333;
  display: inline-block;
  width: 140px;
  flex-shrink: 0;
  margin-top: 9px;
}
.input--typeA .input_content {
  flex: 1;
  height: 100%;
}
.input_flex_box {
  display: flex;
  gap: 64px;
}
.input_flex_box>* {
  flex: 1;
}

@media screen and (min-width: 768px) and (max-width:1200px) {
  .main {
    padding: 20px;
    padding-top: 148px;
  }
  .header_contents .header__inner {
    padding: 0 20px;
  }
  .header__gnb ul {
    gap: 24px;
  }
  .input_flex_box {
    gap: 12px;
  }
}
@media screen and (max-width:767px) {
  .main {
    padding: 20px;
    padding-top: 108px;
  }
  #wrap {
    padding-bottom: 420px;
  }
  .header {
    height: 108px;
  }
  .header .top_fix {
    height: 60px;
    padding: 0 20px;
  }
  .header .top_fix>a p {
    font-size: 13px;
    text-align: left;
  }
  .header_contents {
    height: 48px;
  }
  .header_contents .header__inner {
    padding: 0 20px;
    justify-content: space-between;
  }
  .logo {
    width: 60px;
    height: 24px;
  }
  .header__gnb {
    display: none;
  }
  .btn_mo_menu {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../_img/icon/icon_mo_menu.svg) no-repeat center / contain;
  }
  .footer {
    bottom: -420px;
    height: 420px;
  }
  .footer__inner {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer--left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer_info .company_tel {
    margin-bottom: 20px;
  }
  .footer_info .company_tel h2.tel {
    font-size: 24px;
  }
  .footer_info .company_tel span {
    font-size: 14px;
  }
  .footer_info p.copyright {
    font-size: 13px;
  }
  .footer_info .company_info li {
    margin-top: 0px;
    font-size: 13px;
  }
  .footer_sns {
    margin-bottom: 20px;
  }
  .footer__gnb li {
    text-align: left;
    margin-bottom: 4px;
  }
  aside.sidebar {
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgb(0, 0, 0, 0.4);
    transition: 0.35s;
  }
  aside.sidebar.open {
    visibility: visible;
  }
  .sidebar__inner {
    position: absolute;
    width: 189px;
    height: 100%;
    background-color: #F9F8EE;
    right: -189px;
    top: 0px;
    border-radius: 12px 0 0 12px;
    padding: 0 24px;
    transition: 0.35s;
  }
  aside.sidebar.open .sidebar__inner {
    right: 0;
  }
  .btn_close_sidebar {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../_img/icon/icon_close_sidebar.svg) no-repeat center / contain;
  } 
  .sidebar__contents {
    margin-top: 72px;
  }
  .sidebar__gnb ul li {
    margin-bottom: 24px;
  }
  .sidebar__gnb ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #333;
  }
  .sidebar__gnb ul li.active a {
    color: var(--color-primary);
  }
  .main_title {
    padding-top: 10px;
  }
  .main_title h3 {
    font-size: 18px;
  }
  .main_title p {
    font-size: 14px;
    margin-top: 4px;
  }
  .page_title {
    height: 188px;
  }
  .page_title h1 {
    font-size: 20px;
  }
  .form_search {
    margin-top: 20px;
  }
  .form_search .input_search {
    padding: 8px;
  }
  .form_search .input_search input {
    padding: 0;
  }
  span.important {
    height: 26px;
    line-height: 26px;
    font-size: 13px;
  }
  ul.pagination {
    gap: 2px;
  }
  ul.pagination li {
    width: 24px;
    height: 24px;
  }
  ul.pagination li.page {
    font-size: 13px;
    line-height: 26px;
  }
  ul.pagination li.prev {
    margin-right: 5px;
  }
  ul.pagination li.next {
    margin-left: 5px;
  }
  .input--typeA {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }
  .input--typeA label.input_label {
    font-size: 14px;
    width: auto;
    margin-top: 0px;
  }
  .input--typeA .input_content {
    height: auto;
    flex: none;
    width: 100%;
  }
  .input_flex_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .input_flex_box>* {
    width: 100%;
  }
}