:root {
  --font_45: 45px;
  --font_34: 34px;
  --font_30: 30px;
  --font_27: 27px;
  --font_24: 24px;
  --font_20: 20px;
  --font_18: 18px;
  --font_16: 16px;
}
.custom_scroll::-webkit-scrollbar {
  width: 5px;
}

.custom_scroll::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 10px;
  cursor: pointer;
}

.custom_scroll::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
body.scroll_lock {
  overflow: hidden;
}

.pop_up_wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
  background-color: #00000040;
}
.pop_up_wrap .pop_up {
  width: calc(100% - 40px);
  max-width: 1220px;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 15px;
  padding: 30px;
  max-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
}
.pop_up_wrap .tit_wrap {
  position: relative;
  border-bottom: 1px solid #6d6d6d;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.pop_up_wrap .tit_wrap .tit {
  width: calc(100% - 30px);
  font-size: var(--font_24);
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
}

.pop_up_wrap .tit_wrap .close_btn {
  position: absolute;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.pop_up_wrap .tit_wrap .close_btn img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pop_up_wrap .tit_wrap .close_btn:hover {
  filter: brightness(0.9);
  transition: 0.3s;
}
.pop_up_wrap .con_wrap {
  height: 100%;
  padding-right: 15px;
  overflow: auto;
}
.pop_up_wrap .con_wrap p {
  font-size: var(--font_18);
  line-height: 1.5;
}
.sub_page {
  margin-bottom: 90px;
}
.wrap_1220 {
  max-width: 1260px;
  padding-inline: 20px;
  margin-inline: auto;
}
.only_768 {
  display: none;
}
.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sub_top {
  padding-top: 155px;
  padding-bottom: 30px;
}
.sec_tit {
  text-align: center;
}
.sec_tit .sm_tit {
  color: var(--font_color03);
  font-size: var(--font_20);
  margin-bottom: 4px;
}
.sec_tit .big_tit {
  font-weight: 700;
  letter-spacing: -2%;
  font-size: var(--font_30);
}
.sec_tit .sec_tit_desc {
  margin-top: 30px;
  font-size: var(--font_18);
  line-height: 150%;
  letter-spacing: -2%;
  color: var(--font_color02);
  word-break: keep-all;
}

.breadcrumb {
  margin-top: 30px;
}
.breadcrumb .breadcrumb_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb .home_icon {
  display: inline-block;
  width: 16px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/sub/home_icon.png);
}
.breadcrumb_item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background-image: url(../img/common/right_gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 14px;
}
.breadcrumb_item:first-child::before {
  display: none;
}
.breadcrumb_item {
  color: var(--font_color02);
  font-size: var(--font_18);
  line-height: 100%;
}

.sub_nav {
  margin-top: 60px;
  padding: 0 20px;
}
.sub_nav > ul {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.nav_btn {
  font-size: var(--font_20);
  height: 40px;
  display: inline-flex;
  padding: 0 20px;
  border-radius: 60px;
  align-items: center;
  letter-spacing: -2%;
  color: var(--font_color02);
  border: 1px solid #d9d8d6;
}
.nav_btn.active {
  color: #fff;
  background-color: var(--point_color);
  border: 1px solid var(--point_color);
  font-weight: 700;
}
.down_btn {
  gap: 10px;
  font-size: var(--font_20);
  height: 40px;
  display: inline-flex;
  padding: 0 20px;
  border-radius: 60px;
  align-items: center;
  letter-spacing: -2%;
  color: var(--point_color);
  background-color: #fff;
  border: 1px solid var(--point_color);
}
.down_btn::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 16px;
  background-image: url(../img/sub/download_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_page .inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px;
}
.sub_desc_wrap h3 {
  font-size: 30px;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
.sub_desc_wrap .sub_desc {
  font-size: var(--font_20);
  color: #212322;
  padding: 0;
}
#center_main .sec_tit .big_tit {
  font-size: var(--font_45);
}
/* #center_main */
#center_main .sec_tit .big_tit {
  font-size: var(--font_45);
}
/* #center_main */

/* box_sec */
#box_sec {
  /* background-color: #f6f6ee; */
  background-color: #FBF8F1;
  padding: 60px 0;
}
#box_sec .sec_tit .big_tit {
  font-size: var(--font_27);
}
.sub_desc {
  text-align: center;
  line-height: 150%;
  word-break: keep-all;
  font-size: var(--font_20);
  padding: 30px 10px;
  background-color: #fafafa;
}
#box_sec .box_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background-color: #fbf8f1;
}
#box_sec .box_wrap .box {
  flex: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 27px;
  padding-top: 33px;
  padding-bottom: 40px;
}
#box_sec .box_wrap .box_desc {
  font-size: var(--font_20);
  margin-top: 20px;
  word-break: keep-all;
}
#box_sec .box_wrap .icon {
  background-repeat: no-repeat;
  width: 43px;
  margin: 0 auto 20px;
}
#box_sec .box_wrap .icon.electric_bulb {
  height: 50px;
  background-image: url(../img/sub/electric_bulb.png);
}
#box_sec .box_wrap .icon.target {
  margin-bottom: 20x;
  height: 43px;
  background-image: url(../img/sub/target_icon.png);
}
/* box_sec */

/* #hitory */
#hitory {
  padding: 60px 0;
}
#hitory .sec_tit .big_tit {
  font-size: var(--font_34);
}
#hitory .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#hitory .sec_tit {
  width: 6%;
}
#hitory .hitory_wrap {
  max-width: 1012px;
  width: 100%;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 60px 30px;
}
#hitory .hitory_sec {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
#hitory .hitory_sec + .hitory_sec {
  margin-top: 60px;
}
#hitory .hitory_list {
  position: relative;
}
#hitory .hitory_list::before {
  content: "";
  position: absolute;
  left: 9.5px;
  top: 5px;
  width: 1px;
  height: calc(100% - 15px);
  background-color: #d9d8d6;
}
#hitory .hitory_list li {
  position: relative;
  padding-left: 120px;
  color: var(--font_color02);
  font-size: var(--font_20);
  line-height: 140%;
  word-break: keep-all;
}
#hitory .hitory_list li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--point_color);
  border-radius: 50%;
  left: 0;
  top: 5px;
}
#hitory .hitory_list li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #ffffff; /* 안쪽 원 색상 */
  border-radius: 50%;
}
#hitory .hitory_list li + li {
  margin-top: 30px;
}
#hitory .hitory_num {
  color: var(--font_color02);
  font-weight: 700;
  font-size: var(--font_24);
}
#hitory .hitory_list .date {
  position: absolute;
  left: 30px;
  top: 0;
}
/* #hitory */
/* 센터소개 */

/* 기관 상징 체계 */
#symbol_intro {
  padding: 62px 0 72px;
}
#symbol_intro .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sec_tit.left {
  text-align: left;
}
#symbol_intro .intro_wrap {
  margin-top: 30px;
}
#symbol_intro .intro_wrap > p {
  font-size: var(--font_18);
  line-height: 150%;
  letter-spacing: -2%;
  word-break: keep-all;
}
#symbol_intro .intro_wrap > p + p {
  margin-top: 60px;
}
.ansimOn_logo {
  width: 491px;
  height: 120px;
  border: 1px solid #d9d8d6;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ansimOn_logo img {
  max-height: 100%;
}
.ansimOn_logo + .ansimOn_logo {
  margin-top: 48px;
}

#signature {
  background-color: #fafafa;
  padding: 60px 0 90px;
}
.signature_tit {
  width: 178px;
  color: var(--font_color02);
  font-weight: 700;
  font-size: var(--font_18);
  padding-left: 40px;
}
.signature_right {
  margin-top: 30px;
}
.signature_box {
  padding: 30px 0;
  display: flex;
  border-top: 1px solid #d9d8d6;
}
.signature_desc {
  text-align: center;
  display: block;
  margin-top: 10px;
  font-size: var(--font_18);
  letter-spacing: -2%;
  line-height: 150%;
  color: var(--font_color02);
  word-break: keep-all;
}
.logo_wrap {
  display: flex;
  gap: 30px;
  width: 100%;
}
.logo_wrap .logo {
  flex: 1;
}
.logo_wrap .logo_icon {
  border: 1px solid #d9d8d6;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.logo_wrap .logo_icon img {
  max-height: 100%;
}
.logo_wrap .logo_icon.black {
  background-color: var(--black_color);
}
.logo_wrap .logo_icon.gray {
  background-color: #c2c3c5;
}
.ko .logo_wrap .logo_icon {
  height: 125px;
}
.en .logo_wrap .logo_icon {
  height: 150px;
}
.col .logo_wrap .logo_icon {
  height: 110px;
}

#color {
  padding: 60px 0;
}
#color .inner {
  display: flex;
  justify-content: space-between;
}
.color_sec {
  display: flex;
  gap: 20px;
}
.color_sec + .color_sec {
  margin-top: 33px;
}
.color_sec .colors {
  display: flex;
  gap: 20px;
}
.color_sec .color_st {
  border-radius: 15px;
  width: 234px;
  height: 75px;
}
.color_sec .color_st.black {
  background-color: var(--font_color01);
}
.color_sec .color_st.orange {
  background-color: var(--point_color);
}
.color_sec .color_st.gray {
  background-color: #d9d8d6;
}
.color_sec .color_st.red {
  background-color: #ff5200;
}
.color_name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--font_color02);
  display: block;
}
.color_box ul {
  margin-top: 10px;
}
.color_box ul li {
  color: var(--font_color02);
  font-size: 15px;
}
.color_box ul li + li {
  margin-top: 4px;
}
.color_tit {
  width: 87px;
  color: var(--font_color02);
  font-size: var(--font_18);
}
.color_wrap {
  padding-top: 98px;
}
#box_sec.character {
  background-color: var(--bg_yellow);
}
.box_out {
  flex: 1;
}
#box_sec.character .box_wrap {
  margin-top: 30px;
}
#box_sec .box_tit {
  margin-bottom: 15px;
  font-size: var(--font_18);
}
#box_sec.character .box_wrap .box {
  height: 265px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#box_sec.character .box_wrap .box img {
  max-height: 100%;
}

#donwload {
  padding: 60px 0;
}
.donwload_desc {
  color: var(--point_color);
  font-size: var(--font_20);
  letter-spacing: -2%;
  text-align: center;
  line-height: 150%;
}
.donwload_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
/* 기관 상징 체계 */
.center3 .sub_desc_wrap {
  padding: 30px 20px;
  background-color: #fafafa;
}
.center3 .location_info_wrap {
  margin-top: 30px;
}
.center3 .map_wrap .map {
  width: 100%;
  height: 400px;
  border-radius: 27px;
}
.center3 .location_info_wrap .info_wrap {
  padding: 30px 40px;
  border-radius: 20px;
  margin-top: 30px;
  background-color: #fbf8f1;
}
.center3 .location_info_wrap .info_wrap .con_tit {
  font-size: var(--font_20);
  color: #5c5c5c;
  font-weight: 700;
  margin-bottom: 15px;
}
.center3 .location_info_wrap .info_wrap ul {
  display: flex;
  gap: 30px;
}
.center3 .location_info_wrap .info_wrap ul li {
  flex: 1;
  padding: 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
}

.center3 .location_info_wrap .info_wrap ul li :where(p, span, div) {
  color: #5c5c5c;
  font-size: var(--font_18);
  line-height: 1.5;
  letter-spacing: -1px;
  word-break: keep-all;
}
.center3 .location_info_wrap .info_wrap ul li :where(p, span, div).info_dark {
  color: #343a40;
}
.center3 .location_info_wrap .info_wrap ul li :where(p, span, div).light_font {
  color: #7d7976;
}
.center3 .location_info_wrap .info_wrap ul li .info_tit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
  color: var(--point_color);
}
.center3 .location_info_wrap .info_wrap ul li .info_tit img {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.center3 .location_info_wrap .info_wrap ul li .park_icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 3px;
  filter: grayscale(1) brightness(0.6);
  margin-top: -2px;
}

.center3 .location_info_wrap .info_wrap ul li .subway_icon {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  width: 84px;
  text-align: center;
  border: 1px solid #23ad2c;
  color: #23ad2c;
  font-size: var(--font_18);
  border-radius: 30px;
  margin-right: 8px;
}

.center3 .location_info_wrap .info_wrap ul li p:last-child .subway_icon {
  border: 1px solid #cd7d31;
  color: #cd7d31;
}
.center3 .location_info_wrap .info_wrap ul li .bus_icon {
  display: inline-block;
  text-align: center;
  color: #1565ce;
  font-size: var(--font_18);
  margin-right: 8px;
  font-weight: 700;
}
.center3 .location_info_wrap .info_wrap ul li .info_tit + p + p .bus_icon {
  color: #23ad2c;
}
.center3 .call_font a {
  font-weight: 700;
  font-size: 32px;
  margin-top: 15px;
  display: inline-block;
}
.center3 .info_wrap .copy_btn {
  margin-left: 3px;
}
.center3 .info_wrap .copy_btn img {
  display: inline-block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-top: -2px;
}
.center4 .search_form {
  background-color: #fafafa;
  padding-block: 30px;
  text-align: center;
}
.center4 .sch_form_wrap {
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}
.center4 .search_form select {
  width: 180px;
  height: 53px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: #fff;
  color: #7a7a7a;
  /* font-size: 20px; */
  font-size: var(--font_18);
  font-family: "pretentdard";
  padding-inline: 10px;
}

.center4 .search_form input {
  width: 400px;
  height: 53px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: #fff;
  color: #7a7a7a;
  /* font-size: 20px; */
  font-size: var(--font_18);
  font-family: "pretentdard";
  padding-inline: 10px;
}
.center4 .search_form .sch_btn {
  width: 95px;
  height: 52px;
  background: #5c5c5c;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: var(--font_20);
  font-family: "pretentdard";
}
.center4 .org_wrap {
  margin-top: 30px;
}
.center4 .map_wrap .map {
  width: 100%;
  height: 256px;
  border-radius: 27px;
}
.center4 .map_wrap .map_info {
  margin-top: 25px;
}
.center4 .map_wrap .map_info .org_name {
  font-size: var(--font_20);
  color: #212322;
  margin-bottom: 12px;
}

.center4 .map_wrap .map_info .info_wrap {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: #5c5c5c;
  flex-wrap: wrap;
}
.center4 .map_wrap .map_info .info_wrap > div > img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
}
.center4 .map_wrap .map_info .info_wrap .call img {
  margin-right: 5px;
}
.center4 .map_wrap .map_info .info_wrap .copy_btn {
  margin-left: 7px;
  width: 16px;
  height: 16px;
}
.center4 .map_wrap .map_info .info_wrap .copy_btn img {
  width: 100%;
  height: 100%;
  margin-top: -2px;
  display: inline-block;
}
.center4 .map_wrap .map_info .info_wrap > div + div::before {
  content: "｜";
  color: #d9d8d6;
  margin-right: 10px;
}
.center4 .map_wrap .map_info .info_wrap > div + div:has(span.no_data)::before {
  display: none;
}

.center4 .map_wrap .info_wrap .map_link {
  border: 1px solid #d9d8d6;
  padding: 5px 25px;
  border-radius: 30px;
  color: #5c5c5c;
}
.center4 .map_wrap .info_wrap .map_link img {
  width: 18px;
  height: 20px;
  margin-right: 5px;
  vertical-align: text-top;
}
.center4 .org_list_wrap {
  margin-top: 30px;
}
.center4 .org_list_wrap .org_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.center4 .org_list_wrap .org_wrap li {
  flex: 1 1 25%;
  max-width: calc((100% - 60px) / 4);
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  overflow: hidden;
}
.center4 .org_list_wrap .org_wrap li button {
  display: inline-flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  width: 100%;
  align-items: flex-start;
}

.center4 .org_list_wrap .org_wrap .type_tag {
  display: inline;
  padding: 3px 12px;
  font-size: var(--font_16);
  font-weight: 700;
  border-radius: 30px;
}
.center4 .org_list_wrap .org_wrap .org_name {
  font-size: 18px;
  font-weight: 400;
  color: #212322;
  line-height: 1.4;
  /* word-break: keep-all; */
}
.center4 .org_list_wrap .org_wrap li.active {
  border: 2px solid var(--point_color);
  background-color: #fff2e6;
}
.center4 .org_list_wrap .org_wrap li.active .type_tag {
  background-color: var(--point_color) !important;
  color: #fff !important;
}
.list_table {
  table-layout: fixed;
  width: 100%;
}
.list_table thead tr {
  border-block: 1px solid var(--main_color);
}
.list_table tbody tr {
  border-block: 1px solid #d5d5d5;
}
.list_table th {
  height: 50px;
  vertical-align: middle;
  padding: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--main_color);
}
.list_table th + td {
  border-left: 1px solid #d5d5d5;
}
.list_table td:first-child {
  padding-left: 20px;
}
.list_table td:last-child {
  padding-right: 20px;
}
.list_table td {
  height: 60px;
  padding: 5px;
  vertical-align: middle;
  font-size: var(--font_18);
  
}
.list_table td.no_data {
  text-align: center;
}
.list_table tr.job :where(th, td).col_type {
  color: var(--point_color);
}
.news_list .list_table :where(th, td).col_num {
  width: 50px;
  text-align: center;
}

.news_list .list_table :where(th, td).col_type {
  width: 100px;
  text-align: center;
}
.news_list .list_table :where(th, td).col_status {
  width: 120px;
}
.news_list .list_table :where(th, td).col_file {
  width: 50px;
  text-align: center;
}
.news_list .list_table :where(th, td).col_view {
  width: 60px;
  /* text-align: center; */
}
.news_list .list_table :where(th, td).col_date {
  width: 120px;
}

.news_list .list_table td.col_subject {
  text-align: left;
}
.news_list .list_table td a {
  font-size: var(--font_18);
  display: block;
  position: relative;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-height: calc(1.3em * 1);
  line-height: 2.5;
  text-align: left;
}
.news_list .list_table td a:hover {
  text-decoration: underline;
}
.con_tag {
  display: inline-block;
  font-size: var(--font_16);
  color: var(--point_color);
  text-align: center;
  padding: 4px 10px 3px;
  background-color: #fff;
  border-radius: 30px;
  font-weight: 500;
  min-width: 80px;
  border: 1px solid var(--point_color);
}
.con_ready .con_tag {
  color: var(--point_color);
  background-color: #fff;
  border: 1px solid var(--point_color);
}
.con_finish .con_tag {
  color: #fff;
  background-color: #b4b4b4;
  border: 1px solid #b4b4b4;
}

.pagination_wrap {
  margin-top: 40px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-bottom: 100px;
}
.pagination :where(button, a, strong) {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: #000;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}
.pagination button.on {
  background-color: #6b6b6b;
  border-radius: 100px;
  color: #fff;
}
.pagination button.first {
  background-image: url(../img/sub/first.png);
}
.pagination button.prev {
  margin-right: 5px;
  background-image: url(../img/sub/prev.png);
}
.pagination button.next {
  margin-left: 5px;
  background-image: url(../img/sub/next.png);
}
.pagination button.last {
  background-image: url(../img/sub/last.png);
}
.list_view {
  border-block: 1px solid #7a7a7a;
}
.list_view .con_tit_wrap {
  border-bottom: 1px solid #d9d9d9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list_view .con_tit_wrap .con_type {
  color: var(--point_color);
  font-size: var(--font_20);
  font-weight: 700;
  display: block;
}
.list_view .con_tit_wrap .con_info {
  display: flex;
  gap: 10px;
  color: #7a7a7a;
}
.list_view .con_tit_wrap .con_info div {
  color: #7a7a7a;
  font-size: var(--font_18);
}
.list_view .con_tit_wrap .con_info div span {
  color: #5c5c5c;
}
.list_view .con_tit_wrap .con_info div + div::before {
  content: "｜";
  color: #d9d8d6;
  margin-right: 10px;
}
.list_view .con_tit_wrap .con_tit {
  color: #5c5c5c;
  font-size: var(--font_20);
  font-weight: 700;
  display: block;
  word-break: keep-all;
  line-height: 1.3;
}

.list_view .con_wrap .con {
  width: 100%;
  padding: 60px;
}
.list_view .con_wrap .con :where(img, video) {
  display: block;
  max-width: 100%;
  width: max-content;
  margin-inline: auto;
}
.list_view .file_wrap {
  padding: 30px 60px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.list_view .file_wrap li {
  padding-left: 1.6em;
  position: relative;
}
.list_view .file_wrap li img {
  position: absolute;
  top: 1px;
  left: 0px;
}
.list_view .file_wrap li a {
  color: #7a7a7a;
  font-size: var(--font_18);
  line-height: 1.3;
}
.list_view .file_wrap li a:hover {
  text-decoration: underline;
}
.list_view .con_page_wrap > div {
  height: 58px;
  line-height: 58px;
  border-top: 1px solid #d9d8d6;
  display: flex;
}
.list_view .con_page_wrap > div > span {
  font-size: var(--font_20);
  color: #5c5c5c;
  width: 170px;
  text-align: center;
}
.list_view .con_page_wrap > div > a {
  font-size: 18px;
  color: #5c5c5c;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-height: calc(1.3em * 1);
  text-align: left;
  padding-right: 30px;
}
.list_view .con_page_wrap > div + div {
  border-top: 1px solid #d9d8d6;
}
.list_view + .btn_wrap {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.list_view + .btn_wrap a {
  display: inline-block;
  border-radius: 50px;
  color: var(--point_color);
  font-size: var(--font_20);
  border: 1px solid var(--point_color);
  text-align: center;
  padding: 0 60px;
  height: 50px;
  line-height: 50px;
}
@media (max-width: 1340px) {
  :root {
    --font_45: 36px;
    --font_34: 30px;
    --font_30: 26px;
    --font_27: 22px;
    --font_24: 21px;
    --font_20: 18px;
    --font_18: 16px;
  }
  .breadcrumb {
    margin-top: 23px;
  }
  .sub_nav {
    margin-top: 40px;
  }
  .sub_desc {
    padding: 20px 10px;
  }
  #box_sec .box_wrap {
    gap: 20px;
  }
  #hitory,
  #box_sec {
    padding: 40px 0;
  }
  #box_sec .box_wrap .box {
    padding-top: 23px;
    padding-bottom: 27px;
  }
  #hitory .hitory_wrap {
    max-width: none;
    padding: 40px 20px;
    width: calc(100% - 14%);
  }
  #hitory .hitory_sec {
    gap: 40px;
  }
  #hitory .hitory_list li + li {
    margin-top: 20px;
  }
  #hitory .hitory_list li {
    padding-left: 115px;
  }
  #hitory .hitory_list li::before {
    width: 16px;
    height: 16px;
  }
  #hitory .hitory_list li::after {
    top: 9px;
    left: 4px;
    width: 8px;
    height: 8px;
  }
  #hitory .hitory_list::before {
    left: 8px;
  }
  #symbol_intro {
    padding: 42px 0 52px;
  }
  .ansimOn_logo {
    width: 391px;
    height: 101px;
    padding: 10px;
  }
  #symbol_intro .intro_wrap > p + p {
    margin-top: 27px;
  }
  #symbol_intro .intro_wrap {
    margin-top: 20px;
  }
  .ansimOn_logo + .ansimOn_logo {
    margin-top: 20px;
  }
  .ansimOn_logo {
    width: 386px;
    height: 94px;
    padding: 23px;
  }
  .logo_wrap {
    gap: 10px;
  }
  .signature_box {
    padding: 24px 0;
  }
  .signature_tit {
    width: 131px;
    padding-left: 9px;
  }
  .logo_wrap .logo_icon {
    padding: 18px;
  }
  .ko .logo_wrap .logo_icon {
    height: 103px;
  }
  .en .logo_wrap .logo_icon {
    height: 109px;
  }
  .col .logo_wrap .logo_icon {
    height: 86px;
  }
  .color_sec .color_st {
    border-radius: 15px;
    width: 213px;
    height: 65px;
  }
  .color_sec .colors,
  .color_sec {
    gap: 10px;
  }
  .color_sec + .color_sec {
    margin-top: 23px;
  }
  #color {
    padding: 40px 0;
  }
  .sec_tit .sec_tit_desc {
    margin-top: 12px;
  }
  #box_sec.character .box_wrap .box {
    height: 245px;
    padding: 30px;
  }
  #donwload {
    padding: 40px 0;
  }
  .color_wrap {
    padding-top: 71px;
  }
  .sub_desc_wrap h3 {
    font-size: 26px;
  }
  /* .sub_desc_wrap .sub_desc {
    font-size: 18px;
  } */
  .center3 .location_info_wrap .info_wrap {
    padding: 20px 30px;
  }
  .center3 .location_info_wrap .info_wrap ul {
    gap: 20px;
  }
  .center3 .location_info_wrap .info_wrap ul li {
    padding: 20px;
    gap: 10px;
  }
  .center3 .info_wrap .copy_btn img {
    display: inline-block;
    width: 16px;
    height: 16px;
    object-fit: contain;
  }
  .center3 .call_font a {
    font-size: 26px;
  }
  .center3 .location_info_wrap .info_wrap ul li .subway_icon {
    height: 28px;
    line-height: 27px;
    width: 70px;
  }

  .center4 .search_form select {
    height: 45px;
    font-size: 18px;
  }
  .center4 .search_form input {
    height: 45px;
    font-size: 18px;
  }
  .center4 .search_form .sch_btn {
    height: 45px;
    font-size: 18px;
  }
  .center4 .org_list_wrap .org_wrap {
    gap: 15px;
  }
  .center4 .org_list_wrap .org_wrap li {
    max-width: calc((100% - 45px) / 4);
  }
  .center4 .org_list_wrap .org_wrap li button {
    padding: 15px;
    gap: 10px;
  }
  .center4 .org_list_wrap .org_wrap .type_tag {
    font-size: 15px;
  }

  .pagination :where(button, a, strong) {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .list_table td:first-child {
    padding-left: 10px;
  }
  .list_table td:last-child {
    padding-right: 10px;
  }
  .news_list .list_table :where(th, td).col_type {
    width: 75px;
  }
  .news_list .list_table :where(th, td).col_status {
    width: 95px;
  }
  .news_list .list_table :where(th, td).col_date {
    width: 105px;
  }
  .con_tag {
    font-size: 15px;
    padding: 4px 5px 3px;
    min-width: 73px;
  }
}
@media (max-width: 1024px) {
  :root {
    --font_45: 32px;
    --font_34: 30px;
    --font_30: 24px;
    --font_27: 20px;
    --font_24: 21px;
    --font_20: 18px;
    --font_18: 16px;
  }
  .pop_up_wrap .pop_up {
    padding: 20px 25px;
    max-height: calc(100vh - 220px);
  }
  .pop_up_wrap .tit_wrap {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .pop_up_wrap .tit_wrap .close_btn {
    width: 18px;
    height: 18px;
  }
  .sub_page {
    margin-bottom: 60px;
  }
  .breadcrumb {
    margin-top: 16px;
  }
  .nav_btn {
    height: 37px;
    padding: 0 15px;
  }
  .sub_nav {
    margin-top: 25px;
  }
  .sub_top {
    padding-top: 110px;
    padding-bottom: 20px;
  }
  .sub_nav > ul {
    gap: 10px;
  }
  #hitory,
  #box_sec {
    padding: 30px 0;
  }
  #hitory .hitory_wrap {
    padding: 20px 10px;
  }
  #hitory .sec_tit {
    width: 7%;
    min-width: 51px;
  }
  #hitory .hitory_list li + li {
    margin-top: 15px;
  }
  #hitory .hitory_sec + .hitory_sec {
    margin-top: 30px;
  }
  .logo_wrap {
    flex-wrap: wrap;
  }
  #symbol_intro .right,
  .ansimOn_logo {
    width: 100%;
  }
  #symbol_intro .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #symbol_intro .right {
    margin-top: 25px;
  }
  #color .inner {
    flex-direction: column;
    gap: 45px;
  }
  .color_wrap {
    padding-top: 0;
  }
  .color_sec .colors,
  .color_sec {
    gap: 20px;
  }
  #box_sec.character .box_wrap {
    flex-direction: column;
  }
  #box_sec .box_tit {
    margin-bottom: 9px;
  }
  .donwload_btn {
    gap: 10px;
    margin-top: 13px;
  }
  #box_sec.character .box_wrap .box {
    height: 187px;
    padding: 21px;
  }
  #symbol_intro .inner {
    gap: 5px;
  }
  .col .logo_wrap {
    justify-content: space-between;
  }
  .col .logo_wrap .logo {
    width: calc(50% - 5px);
    flex: none;
  }
  .logo_wrap .logo.short_icon {
    flex: none;
    width: 100%;
  }
  .center3 .location_info_wrap .info_wrap {
    padding: 20px;
  }

  .center3 .location_info_wrap .info_wrap ul {
    flex-wrap: wrap;
    gap: 15px;
  }
  .center3 .location_info_wrap .info_wrap .con_tit {
    font-size: 18px;
  }
  .center3 .location_info_wrap .info_wrap ul li {
    padding: 15px 20px;
    gap: 10px;
  }
  .center3 .location_info_wrap .info_wrap ul li:first-of-type {
    flex: 100%;
  }

  .center3 .location_info_wrap .info_wrap ul li .info_tit {
    margin-bottom: 0;
  }
  .center3 .call_font a {
    font-size: 20px;
    margin-top: 15px;
  }
  .center4 .sch_form_wrap {
    margin-top: 25px;
  }
  .center4 .search_form select {
    font-size: 16px;
  }
  .center4 .search_form input {
    font-size: 16px;
  }
  .center4 .search_form .sch_btn {
    font-size: 16px;
  }
  .center4 .org_list_wrap .org_wrap .org_name {
    font-size: 16px;
  }
  .center4 .map_wrap .map_info .org_name {
    font-size: 18px;
    font-weight: 700;
  }
  .center4 .map_wrap .map_info .info_wrap {
    font-size: 16px;
  }
  .center4 .map_wrap .info_wrap .map_link {
    padding: 5px 15px;
  }
  .center4 .map_wrap .map_info .info_wrap {
    gap: 5px;
  }
  .center4 .map_wrap .map_info .info_wrap img {
    margin-right: 7px;
  }
  .center4 .map_wrap .map_info .info_wrap > div + div::before {
    margin-right: 5px;
  }
  .center4 .org_list_wrap .org_wrap li {
    max-width: calc((100% - 15px) / 2);
    flex: 1 1 45%;
  }
  .center4 .map_wrap .map_info .info_wrap .addr {
    flex: 100%;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
  }
  .center4 .map_wrap .map_info .info_wrap .addr .addr_img {
    position: absolute;
    top: 1px;
    left: 0;
  }
  .center4 .map_wrap .map_info .info_wrap > div.addr + div::before {
    display: none;
  }
  .center4 .search_form input {
    width: calc(100% - 290px);
  }
  .list_view .con_tit_wrap {
    padding: 20px 25px;
  }

  .list_view .file_wrap li img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    top: 2px;
  }

  .list_view .con_wrap .con {
    width: 100%;
    padding: 35px 25px;
  }
  .list_view .file_wrap {
    padding: 20px 25px;
    gap: 15px;
  }
  .list_view .con_page_wrap > div > span {
    font-size: 18px;
    width: 120px;
  }
  /* .list_view .con_page_wrap > div > a {
    font-size: 16px;
  } */
  .list_view + .btn_wrap a {
    padding: 0 45px;
    height: 42px;
    line-height: 42px;
  }
  .list_view .con_tit_wrap .con_info {
    gap: 6px;
  }
  /* .list_view .con_tit_wrap .con_info div {
    font-size: 16px;
  } */
  .list_view .con_tit_wrap .con_info div + div::before {
    margin-right: 6px;
  }
  .pagination_wrap {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .only_768 {
    display: revert;
  }
  .sub_page {
    margin-bottom: 40px;
  }
  :root {
    --font_45: 30px;
    --font_34: 28px;
    --font_30: 22px;
    --font_27: 20px;
    --font_24: 20px;
    --font_20: 16px;
    --font_18: 16px;
  }
  .nav_btn {
    height: 36px;
    padding: 0 12px;
  }
  .sub_desc {
    padding: 30px 10px;
  }
  .sub_page .inner {
    padding: 0 20px;
  }
  #box_sec .box_wrap .icon {
    background-size: contain;
    width: 34px;
  }
  #box_sec .box_wrap .icon.electric_bulb {
    height: 39px;
    margin: 0 auto 11px;
  }
  #box_sec .box_wrap .icon.target {
    height: 33px;
  }
  #box_sec .box_wrap .box {
    padding: 15px 5px 19px;
  }
  #hitory,
  #box_sec {
    padding: 30px 0;
  }
  #hitory .inner {
    flex-direction: column;
    gap: 15px;
  }
  #hitory .hitory_sec {
    gap: 16px;
    flex-direction: column;
  }
  #hitory .hitory_wrap {
    padding: 20px 0px;
    max-width: none;
    width: 100%;
  }
  #hitory .hitory_list li::before {
    width: 12px;
    height: 12px;
    top: 4px;
  }
  #hitory .hitory_list li::after {
    top: 7px;
    left: 3px;
    width: 6px;
    height: 6px;
  }
  #hitory .hitory_list::before {
    left: 5px;
  }
  #hitory .hitory_list .date {
    position: absolute;
    left: 20px;
    top: 0;
  }
  #hitory .hitory_list li {
    padding-left: 90px;
    letter-spacing: -2%;
  }
  #signature {
    padding: 40px 0 30px;
  }
  .signature_box {
    flex-direction: column;
    gap: 12px;
  }
  .ko .logo_wrap .logo_icon {
    height: 76px;
  }
  .signature_desc {
    margin-top: 3px;
  }
  .color_sec {
    flex-direction: column;
    gap: 3px;
  }
  #color .inner {
    gap: 15px;
  }
  .color_sec .color_st {
    width: 100%;
  }
  .color_sec .colors {
    max-width: 500px;
  }
  .color_box {
    flex: 1;
  }
  #box_sec.character .box_wrap .box {
    height: 179px;
    padding: 16px;
  }
  #symbol_intro {
    padding: 20px 0;
  }
  .logo_wrap .logo {
    flex: none;
    width: 100%;
  }
  .down_btn {
    gap: 8px;
  }
  .down_btn::after {
    width: 13px;
    height: 14px;
  }
  #box_sec .box_wrap .box_desc {
    margin-top: 10px;
  }
  .down_btn {
    height: 30px;
    padding: 0 10px;
  }
  #donwload .down_btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .donwload_btn {
    flex-direction: column;
  }
  .center3 .location_info_wrap .info_wrap ul li .subway_icon {
    width: 60px;
  }
  .center4 .search_form select {
    width: 120px;
    height: 40px;
  }
  .center4 .search_form input {
    height: 40px;
  }
  .center4 .search_form .sch_btn {
    height: 40px;
    width: 65px;
  }
  .center4 .search_form input {
    width: calc(100% - 215px);
  }
  .pagination {
    gap: 5px;
  }
  .pagination :where(button, a, strong) {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
  .mo_layout_768 .list_table {
    /* display: block; */
  }
  .mo_layout_768 .list_table :where(thead, tbody) {
    /* display: block; */
  }
  .mo_layout_768 .list_table :where(tr) {
    /* display: block; */
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-bottom: 0;
    position: relative;
  }
  .mo_layout_768 .list_table :where(tr):last-of-type {
    border-bottom: 1px solid #d5d5d5;
    
  }
  .mo_layout_768 .list_table :where(th, td) {
    /* display: inline-block; */
    height: auto;
    padding: 10px 5px;
    width: 100%;
  }
  .mo_layout_768 .list_table td:first-child {
    padding-left: 5px;
  }
  .mo_layout_768 .list_table td:last-child {
    padding-right: 5px;
  }

  .news_list .list_table td a {
    /* font-weight: 700; */
    line-height: 1.6;
  }
  .news_list .list_table :where(th, td).col_num {
    text-align: left;
    width: auto;
    display: none;
  }
  .news_list .list_table :where(th, td).col_type {
    /* width: auto; */
  }
  .news_list .list_table :where(th, td).col_file {
    width: auto;
    position: absolute;
    top: 6px;
    right: 0;
  }
  .news_list .list_table :where(th, td).col_file img {
    width: 17px;
    height: 17px;
    object-fit: contain;
  }
  .news_list .list_table :where(th, td).col_view {
    width: auto;
  }
  .news_list .list_table :where(th, td).col_date {
    width: 85px;
    font-size: 14px;
  }
  .news_list .list_table :where(th, td) .only_768 {
    color: #737373;
    margin-right: 7px;
    display: none;
  }
  .list_view .con_tit_wrap {
    padding: 20px 15px;
  }
  .list_view .con_wrap .con {
    padding: 35px 15px;
  }
  .list_view .file_wrap {
    padding: 20px 15px;
  }
  .list_view .con_page_wrap > div > span {
    font-size: 16px;
    width: 80px;
  }
  .list_view .con_page_wrap > div > a {
    font-size: 16px;
    padding-right: 20px;
  }
  .center4 .sch_form_wrap {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
  }
  .center4 .search_form input {
    flex: 1;
  }
}
@media (max-width: 500px) {
  .sub_desc {
    padding: 20px 10px;
  }
  #hitory .hitory_list li {
    padding-left: 73px;
    letter-spacing: -5%;
    font-size: 14px;
  }
  #hitory .hitory_list .date {
    left: 17px;
    font-size: 14px;
  }
  .center3 .location_info_wrap .info_wrap ul li {
    flex: 100%;
    padding: 15px 15px;
  }
  .center3 .call_font a {
    margin-top: 0;
  }

  .center4 .search_form input {
    width: calc(100% - 124px);
  }
  .center4 .search_form .sch_btn {
    width: 100%;
    margin-top: 7px;
  }
  .center4 .map_wrap .map_info .info_wrap .copy_btn {
    margin-left: 4px;
  }
  .sub_nav > ul {
    gap: 5px;
  }
  .nav_btn {
    font-size: 12px;
    padding: 0px 7px;
    min-width: 50px;
    justify-content: center;
  }
  .none_500 {
    display: none;
  }
  .list_view + .btn_wrap a {
    padding: 0 35px;
    height: 36px;
    line-height: 36px;
  }
  .list_view .con_tit_wrap {
    gap: 7px;
  }
  .list_sch_box select, .list_sch_box input {
        height: 35px;
    }
    .list_sch_box button {
        height: 35px;
    }
}
@media (max-width: 450px) {
  .col .logo_wrap .logo {
    width: 100%;
  }
}
@media (max-width: 400px) {
  :root {
    --font_27: 18px;
    --font_20: 14px;
    --font_18: 14px;
    --font_16: 14px;
  }
  .pop_up_wrap .pop_up {
    padding: 20px 25px;
    max-height: calc(100vh - 120px);
  }
  #box_sec .box_wrap .box {
    flex: none;
    width: 100%;
  }
  #box_sec .box_wrap {
    gap: 14px;
    flex-direction: column;
  }
  #box_sec.character .box_wrap .box {
    height: 155px;
  }
  .color_sec .colors {
    gap: 15px;
  }
  .color_name {
    font-size: 14px;
    letter-spacing: -2%;
  }
  .list_view .file_wrap li {
    padding-left: 1.3em;
    position: relative;
  }
  .list_view .file_wrap li img {
    width: 14px;
    height: 14px;
    top: 4px;
  }
  .list_view .file_wrap {
    padding: 12px 12px;
  }
  .list_view .file_wrap li a {
    font-size: 12px;
  }
}
