@charset "utf-8";

:root {
  --header_color: #434EA0;
  --primary: #245199;
  --blue: #3679e5;
  --purple: #4f46e5;
  --hd_h: 70px;
  --scroll-width: 7px;
  --borderBox_top_bg: #f2f4f8;
  --borderBox_bar-barBg: #dedede;
  --text-primary : #000;
  --text-gray-900 : #111;
  --text-gray-800 : #333;
  --text-gray-600 : #666;
  --text-gray-500 : #999;
  --btn_box-shadow: 0 5px 15px rgba(100, 100, 100, 0.5);
  --light-border : #d9d9d9;
  --label-bg : #fafafa;
}
/* 스크롤 스타일 */
html {
  font-size: 10px;
}
body {
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: var(--scroll-width);
  height: 10px;
}
body::-webkit-scrollbar-thumb {
  height: 5px;
  background: #a9a9a9;
  border-radius: 10px;
}
body::-webkit-scrollbar {
  width: var(--scroll-width);
  height: 10px;
}
body::-webkit-scrollbar-thumb {
  height: 5px;
  background: #a9a9a9;
  border-radius: 10px;
}
html,
body {
  min-height: 100%;
}
input::placeholder,
input[type="text"]::placeholder {
  color: #666;
}
input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
  outline: none;
}
*:focus-visible {
  outline: 2px dashed var(--primary);
}
textarea:focus-visible {
  outline: none;
}

input.type_basic.w-300 {
  width: 300px;
  max-width: 100%;
}

/* width */
.w-full {
    width: 100%;
}

/* 영문 폰트 */
.en_r {
  font-family: "IBM-R";
}
.en_m {
  font-family: "IBM-M";
}
.en_b {
  font-family: "IBM-B";
}

.inner {
  max-width: 1352px;
  padding: 0 16px;
  margin: 0 auto;
  position: relative;
}

/* 마진 */
.mt_0{
  margin-top: 0 !important;
}
.mt-20{
  margin-top: 2rem;
}
.mt-32{
  margin-top: 3.2rem;
}
.mt-40{
  margin-top: 4rem;
}
.mb_0{
  margin-bottom: 0 !important;
}

/* 이미시 설명  */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.img_box figure{
  margin: 0;
}

/* 메일 링크 */
a[href^="mailto:"] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px; /* 5px 만큼 간격 조정 */
  text-decoration-thickness: 1px; /* 밑줄 두께를 2px로 설정 */
}

a[href^="mailto:"]:hover {
  color: #ff6600;
}

/*헤더*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 21;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0px 2px 24px 0px rgba(50, 51, 55, 0.05);
  transition: transform 0.3s ease-in-out;
}
/* .header.on{
  border-bottom-color:#fff;
} */
.header .header_in {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--hd_h);
  padding: 0 4rem;
  transition: margin 0.3s ease-in-out, border-radius 0.3s ease-in-out;
  background-color: #fff;
  color: #000;
}

.header .logo {
  width: 28.8rem;
  display: flex;
  align-items: center;
}
.sub .header {
  transition: transform 0.3s ease-in-out;
}
.sub .header.scroll_down {
  transform: translateY(-100%);
}

.header .nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 50;
}
.header .nav .mo_top,
.header .nav .mo_mypag {
  display: none;
}
.header .nav .depth1 {
  display: flex;
  align-items: center;
  height: 100%;
  pointer-events: visible;
}
.header .nav .depth1.none {
  pointer-events: none;
}
.header .nav .depth1 > li {
  position: relative;
  height: 100%;
  padding: 0 4em;
  white-space: nowrap;
  transition: padding 0.3s;
}
.header .nav .depth1 > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(18px, 3vw, 20px);
}
.header .nav .depth1 > li > a span {
  font-weight: 500;
  position: relative;
}
.header .nav .depth1 > li > a span:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--header_color);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
}
.header .nav .depth1 > li.active > a span:before {
  opacity: 1;
  bottom: -5px;
}

.header .nav .depth1 > li > .depth2 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  transition-delay: -0.2s;
  padding-top: 1.9rem;
  color: #fff;
}
.header .nav .depth1 > li > .depth2 > li + li {
  margin-top: 1.1rem;
}
.header .nav .depth1 > li > .depth2 > li > a {
  font-size: 1.4rem;
  /* color: #fff; */
  opacity: 0.5;
  transition: opacity 0.3s;
}
.header .nav .depth1 > li > .depth2 > li > a[target="_blank"] {
  padding-right: 2rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><style>path{fill: %23fff;}</style><path d="M304 24c0 13.3 10.7 24 24 24l102.1 0L207 271c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l223-223L464 184c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160c0-13.3-10.7-24-24-24L328 0c-13.3 0-24 10.7-24 24zM72 32C32.2 32 0 64.2 0 104L0 440c0 39.8 32.2 72 72 72l336 0c39.8 0 72-32.2 72-72l0-128c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 128c0 13.3-10.7 24-24 24L72 464c-13.3 0-24-10.7-24-24l0-336c0-13.3 10.7-24 24-24l128 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L72 32z"/></svg>')
    no-repeat right center;
  background-size: 0.9em;
}

.header .nav .depth1 > li > .depth2 > li.active > a {
  opacity: 1;
}
/* 영문 1댑스 메뉴 제목 */  
@media (min-width: 1242px) and (max-width: 1859px) {
  
  .en .header .nav .depth1 > li {
    padding: 0 2em;
  }
  .en .header .nav .depth1 > li > a{
    font-size: 1.5rem;
  }
  .en .header.on .nav .depth1 > li{
    padding: 0 3em;
  }
}
@media (min-width: 1242px) and (max-width: 1400px) {
  .header .nav .depth1{
    padding-left: 140px;
  }
}
/* 영문 1댑스 메뉴 제목 -- end */  
@media screen and (min-width: 1241px) {
  .header.on .nav .depth1 > li {
    padding: 0 5.5em;
  }
  .header.on .nav .depth1 > li > .depth2 {
    opacity: 1;
    pointer-events: visible;
    transition-delay: 0.2s;
  }
}

.header .gnb_bg {
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 100%;
  height: 0;
  transform: translate(-50%, 100%);
  transition: all 0.3s ease-in-out;
}
.header.on .gnb_bg {
  height: 200px;
  box-shadow: rgba(149, 157, 165, 0.07) 0 8px 15px;
  background-color: var(--header_color);
}
/*.header.on .header_in {border-radius: 2rem 2rem 0 0}*/
.header.down .gnb_bg {
  width: 100%;
  border-radius: 0;
}

.header .right_wrap {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  font-size: clamp(16px, 3vw, 18px);
  gap: 0.5rem;
}
.header .right_wrap .zoom_font {
  display: flex;
  align-items: center;
}
.header .right_wrap .zoom_font .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  background-color: #fff;
  cursor: pointer;
}
.header .right_wrap .zoom_font .btn svg {
  width: 50%;
}
.header .right_wrap .zoom_font .txt {
  margin: 0 0.5em;
  font-size: 0.95em;
  font-weight: 500;
}

.header .right_wrap a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
}
.header .right_wrap .login {
  white-space: nowrap;
  min-width: 112px;
  padding: 0.8rem 1.6rem;
  text-align: center;
  background-color: var(--header_color);
  color: #fff;
  transition: opacity 0.2s;
  border: 1px solid var(--header_color);
}
.header .right_wrap .icon_m {
  display: none;
}
.header .right_wrap .login,
.header .right_wrap .sch,
.header .right_wrap .len {
  white-space: nowrap;
  padding: 0.8rem 1.6rem;
  justify-content: center;
  transition: opacity 0.2s;
  gap: 4px;
  border-radius: 2px;
}

.header .right_wrap .sch,
.header .right_wrap .len {
  border: 1px solid #999999;
}
.header .right_wrap .sch {
  background-color: #fafafa;
}
.header .right_wrap a svg {
  height: 1.6rem;
  fill: #666;
}
.header .right_wrap a .btn_nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 100;
  transform: translate(-50%, 100%);
  background-color: #fff;
  color: #000;
  border-radius: 0.2rem;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid #ccc;
  background-color: #fff;
}

.header .right_wrap a .btn_nav li button{
  padding: 0.5em 1em;
  transition: background-color 0.3s;
}
.header .right_wrap a .btn_nav li.select button{
  background-color: #e9e9e9;
}
.header .right_wrap .my_menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 4rem;
  height: 100%;
  font-size: 4rem;
}
.header .right_wrap .my_menu span {
  display: flex;
}
.header .right_wrap .my_menu svg {
  width: 100%;
  height: 1em;
  fill: #fff;
}
.header .right_wrap .my_menu ul {
  white-space: nowrap;
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1;
  transform: translate(-50%, 100%);
  background-color: #fff;
  color: #000;
  border-radius: 0.8rem;
  font-size: 2.2rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.header .right_wrap .my_menu ul li {
  padding: 0.5em 1em;
  transition: background-color 0.3s;
}
.header .right_wrap .my_menu ul li a {
  justify-content: center;
  width: auto;
  margin-left: 0;
  font-size: 2.2rem;
}
.header .right_wrap a.ham {
  display: none;
}

/*----통합검색----*/
.all_sch {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: var(--hd_h);
  z-index: 51;
  width: 100%;
  height: 20rem;
  padding: 0 3.2rem;
  background-color: var(--blue);
  border-bottom: 1px solid var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, margin 0.3s ease-in-out,
    border-radius 0.3s ease-in-out, width 0.3s ease-in-out;
}
.all_sch.on {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.header.down .all_sch {
  margin: 0;
  width: 100%;
  border-radius: 0;
}
.sub .all_sch {
  margin: 0;
  width: 100%;
  border-radius: 0;
}

.all_sch .sch_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 54rem;
  height: 6rem;
  line-height: 9.6rem;
  padding-left: 2.4rem;
  background-color: #fff;
  border-radius: 4rem;
}
.all_sch .sch_box input {
  width: 100%;
  font-size: calc(.8rem + 10px);
  border: none;
}
.all_sch .sch_box input::placeholder {
  color: #9a9ea7;
}
.all_sch .sch_box input:focus {
  box-shadow: none;
}

.all_sch .sch_box:has(input:focus) {
  box-shadow: 0 0 10px var(--primary);
}
.all_sch .sch_box .ico {
  display: flex;
  flex-shrink: 0
}
.all_sch .sch_box .ico button {
  font-size: 2.4rem;
  padding: 1.8rem;
}
.all_sch .sch_box .ico svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: fill 0.25s;
}

.all_sch .close_btn {
  width: 5.6rem;
  height: 5.6rem;
  margin-left: 2.4rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.all_sch .close_btn svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  fill: #fff;
}
@media screen and (max-width: 2001px) {
}
@media screen and (max-width: 1641px) {
  .header .header_in {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1399px) {
  .header .right_wrap {
    flex-direction: row-reverse;
  }
  .header .right_wrap .sch span {
    display: none;
  }
  .header .right_wrap a .btn_nav {
    width: auto;
  }
  .header .right_wrap .login,
  .header .right_wrap .sch,
  .header .right_wrap .len {
    width: 40px;
    height: 40px;
    min-width: auto;
    border-radius: 50%;
    background-color: #fff;
    border-color: #fff;
  }
  .header .right_wrap .len {
    & > span,
    & > span + svg {
      display: none;
    }
  }
  .header .right_wrap .icon_m {
    display: block;
  }
  .header .right_wrap .login .tool {
    display: none;
  }
  .header .right_wrap .login .icon_m,
  .header .right_wrap .len .icon_m {
    fill: #333;
  }
  .header .right_wrap .login .icon_m {
    width: 30px;
    height: 30px;
  }
  .header .right_wrap .len .icon_m {
    width: 32px;
    height: 32px;
  }
  .header .right_wrap .sch svg {
    width: 24px;
    height: 24px;
    fill: #333;
  }
}
@media screen and (max-width: 1241px) {
  html {
    font-size: 8.5px;
  }
  .header {
    z-index: 120;
  }
  .header .nav .mo_top {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
  .header .nav .mo_mypag {
    display: block;
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
  .header .nav .mo_mypag > * {
    display: flex;
    font-size: 2.4rem;
    padding: 1rem;
    /* border: 1px solid #fff; */
    background-color: rgba(0, 0, 0, 0.1);
    justify-content: center;
    border-radius: 20px;
  }
  .header .nav .mo_user {
    display: flex;
    align-items: center;
    font-size: 16px;
    width: calc(100% - 150px);
    max-width: 400px;
  }
  .header .nav .mo_user .user {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .header .nav .mo_user .user .icon {
    background-color: rgba(0, 0, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .header .nav .mo_user .user .icon + span {
    display: inline-block;
    max-width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header .nav .mo_user .user .icon svg {
    width: 20px;
    height: 20px;
  }
  .header .nav .mo_user .user .btn_logout,
  .header .nav .mo_user a {
    display: flex;
    padding: 0.5em 1em;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1em;
  }
  .header .nav .mo_user .user .btn_logout {
    border-radius: 20px;
    flex-shrink: 0;
  }
  .header .nav .mo_user a + a {
    margin-left: 4px;
  }
  .header .nav .mo_util {
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }
  .header .nav .mo_util .lang {
    display: flex;
    position: relative;
    z-index: 1;
  }
  .header .nav .mo_util .lang .btn {
    display: flex;
    align-items: center;
    padding: 0.6em 1.25em;
    background: #fff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2em;
    line-height: 1em;
    min-height: auto;
    transition: background 0.25s, color 0.25s;
  }
  .header .nav .mo_util .lang .btn svg {
    fill: var(--primary);
    font-size: 0.8em;
    transition: all 0.25s;
  }
  .header .nav .mo_util .lang ul {
    position: absolute;
    top: calc(100% + 0px);
    right: 0;
    opacity: 0;
    transform: translateY(0px);
    white-space: nowrap;
    width: 100%;
    padding: 8px 0;
    background: #fff;
    border-radius: 5px;
    pointer-events: none;
  }
  .header .nav .mo_util .lang ul li a {
    display: block;
    padding: 0.425em 1em;
    color: var(--blue);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 0.25s;
  }
  .header .nav .mo_util .lang.open .btn svg {
    transform: rotate(180deg);
  }
  .header .nav .mo_util .lang.open ul {
    opacity: 1;
    transform: translateY(5px);
    pointer-events: auto;
    transition: all 0.3s;
  }
  .header .nav .mo_util .close_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 3rem;
    cursor: pointer;
  }
  .header .nav .mo_util .close_btn svg {
    width: 100%;
    max-width: 4rem;
    max-height: 4rem;
    height: 100%;
    fill: #fff;
  }

  .header .nav {
    display: block;
    position: fixed;
    left: 0%;
    top: 0;
    transform: translate(100%, 0);
    width: 100%;
    height: 100vh;
    padding: 2rem 0 10rem;
    background-color: var(--blue);
    color: #fff;
    transition: left 0.5s ease;
    z-index: 100;
  }
  .header .nav.open {
    left: -100%;
    overflow-y: auto;
  }
  .header .nav .depth1 {
    display: block;
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .header .nav .depth1 > li {
    width: auto;
    height: auto;
    padding: 1.5rem 0;
  }
  .header .nav .depth1 > li.active .depth2 {
    display: block;
  }
  .header .nav .depth1 > li.logo {
    display: none;
  }
  .header .nav .depth1 > li > a {
    justify-content: flex-start;
    padding: 0 2rem;
    font-weight: 700;
  }
  .header .nav .depth1 > li.active > a {
    color: var(--yellow);
  }
  .header .nav .depth1 > li > a:not(.img) {
    font-size: 3rem;
    padding: 0 2rem;
  }
  .header .nav .depth1 > li > a span:before {
    display: none;
  }
  .header .nav .depth1 > li > a:after {
    content: "";
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    transform: translateX(0);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23fff'%3E%3Cpath d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
    margin-left: auto;
    transition: transform 0.3s;
    opacity: 1;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
  }
  .header .nav .depth1 > li > a.off:after {
    display: none;
  }
  .header .nav .depth1 > li > a.on:after {
    transform: rotate(180deg);
  }
  .header .nav .depth1 > li > a:before {
    display: none;
  }

  .header .nav .depth1 > li > .depth2 {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    padding: 0 2.1875rem;
    text-align: left;
    pointer-events: auto;
  }
  .header .nav .depth1 > li > .depth2 > li {
    padding-top: 1.8rem;
  }
  .header .nav .depth1 > li > .depth2 > li > a {
    font-size: 2rem;
    padding: 0.5rem 0;
    display: block;
  }
  .header .nav .depth1 > li > .depth2 > li > a[target="_blank"] {
    background-size: 0.8em;
  }

  .header .gnb_bg {
    display: none;
  }
  .header .right_wrap {
    flex-direction: row;
  }
  .header .right_wrap a.login,
  .header .right_wrap .my_menu,
  .header .right_wrap a.len {
    display: none;
  }
  .header .right_wrap a.ham {
    display: flex;
  }
  .header .right_wrap a.ham svg {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 769px) {
  :root {
    --hd_h: 60px;
  }
  html {
    font-size: 7px;
  }
  .all_sch {
    height: 10rem;
  }
}

/* footer */
.footer {
  background-color: #f2f4f8;
}
.footer_link {
  display: flex;
  padding: 2.4rem 0;
  border-bottom: 1px solid #ced6de;
}
.footer_link li + li {
  position: relative;
}
.footer_link li + li::after {
  --link_bl: 1.2rem;
  content: "";
  position: absolute;
  top: calc(50% - var(--link_bl) / 2);
  left: 0;
  width: 1px;
  background-color: #ced6de;
  height: var(--link_bl);
}
.footer_link a {
  color: #3f3e41;
  font-size: 1.6rem;
  padding: 0 1.6rem;
}
.footer_b {
  padding: 5.2rem 0;
  display: flex;
  align-items: center;
  gap: 5.625rem;
}
.footer_b .logo img {
  max-width: 20rem;
}
.footer_address {
  display: grid;
  gap: 0.4rem;
}
.footer_address .address div {
  --address_gap: 1.2rem;
  color: #636363;
  font-size: 1.4rem;
  display: flex;
  gap: var(--address_gap);
  line-height: 1.5;
}
.footer_address .address div span:not(span:last-child) {
  padding-right: var(--address_gap);
  position: relative;
}
.footer_address .address div span:not(span:last-child)::before {
  content: "";
  --left-bar: 10px;
  width: 1px;
  height: var(--left-bar);
  background-color: #ced6de;
  position: absolute;
  right: 0;
  top: calc(50% - var(--left-bar) / 2);
}
.footer_b .copyright {
  color: #868686;
  font-size: 1.3rem;
}
@media screen and (max-width: 769px) {
  .footer_b {
    flex-direction: column-reverse;
    gap: 2.4rem;
    padding: 2.4rem 0;
  }
  .footer_b .logo img {
    width: 110px;
  }
  .footer_address .address div {
    justify-content: center;
  }
  .footer_b .copyright {
    text-align: center;
  }
}

/* sub 페이지 상단 메뉴 */
.nice-select .tab-toggle{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fafafa;
  border-radius: 5px;

  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 3.8rem;
  line-height: 3.6rem;
  outline: none;
  padding-left: 1.8rem;
  padding-right: 3rem;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.sel_wrap .tab-toggle:hover {
  border-color: #dbdbdb;
}
.sel_wrap .tab-toggle:active,
.sel_wrap.open .tab-toggle,
.sel_wrap .tab-toggle:focus {
  border-color: #999;
}

.sel_wrap.open .tab-toggle:after {
  transform: rotate(-135deg);
}
.sel_wrap.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}
.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
}
.nice-select li {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding: 0 1.2em;
  text-align: left;
  transition: all 0.2s;
}
.nice-select li:hover, .nice-select  li.focus,
.nice-select  li.active{
  background-color: #f6f6f6;
}
.nice-select  li.active{
  font-weight: 600;
}
.nice-select li a{
  display: block;
}
.open .nice-select .tab-list{
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scaleY(1) translateY(0);
  -ms-transform: scaleY(1) translateY(0);
  transform: scaleY(1) translateY(0);
  box-shadow: 0 0 10px 0 rgba(68, 68, 68, 0.11);
}
.nice-select .tab-list {
  min-width: calc(100% + 2px);
  border-radius: 0;
  left: -1px;
}
/* 페이징 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.pagination > a {
  line-height: 1;
  display: block;
}

.pagination .num_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  gap: 4px;
}

.pagination .num_list li {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  font-size: calc(1rem + 7px);
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}

.pagination .num_list li a {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  line-height: 2.85em;
  transition: all 0.4s;
}

.pagination .num_list li a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  z-index: -1;
}

.pagination .num_list li.active a {
  color: #fff;
  font-weight: 700;
}

.pagination .num_list li.active a:before {
  background-color: var(--primary);
}

.pagination > a {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}

.pagination .next {
  margin-right: 4px;
}

.pagination .prev {
  margin-left: 4px;
}

.pagination .next,
.pagination .prev,
.pagination .first,
.pagination .last {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4rem;
  & span {
    font-size: 0;
    color: #fff;
  }
}
.pagination .next {
  background-image: url(../img/common/pg_next.svg);
}
.pagination .prev {
  background-image: url(../img/common/pg_prev.svg);
}
.pagination .first {
  background-image: url(../img/common/pg_first.svg);
}
.pagination .last {
  background-image: url(../img/common/pg_last.svg);
}

.pagination .none {
  opacity: 0.2;
  cursor: default;
}

/* 게시판 기본 */
.border_box,
.list_box {
  margin-top: 4.8rem;
  font-size: 1.6rem;
}
.total_num{
  font-size: 1.6rem;
}
.border_top,
.list_box .list_top {
  /* min-height: 4rem; */
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.border_box .border_top.flex-column{
  align-items: baseline;
  gap: 16px;
}
.border_top .view_tit{
  min-height: auto;
  margin-bottom: 0;
}
.border_list .row {
  display: flex;
  width: 100%;
  position: relative;
}
.border_list .table_header {
  background-color: var(--borderBox_top_bg);
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--borderBox_bar-barBg);
  padding: 1.6rem 2.4rem;
  font-weight: 500;
}
.border_list .row {
  border-bottom: 1px solid var(--borderBox_bar-barBg);
  padding: 1.6rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.border_list .row > div {
  text-align: center;
  flex: 1 1 auto; /* 이부분은 변동값 */
  word-break: keep-all;
  padding: 0 1rem;
}
.border_list .row > div a{
  word-break: break-all;
}
.border_list .row .num{
  flex: 0 0 10rem;
}
.border_list .row .num:not(.border_list .table_header .num) {
  color: var(--text-gray-600);
}
.border_list.notice_list .noti .num{
  color: var(--primary) !important;
  font-weight: 600;
}
.border_list a:not(.border_list .btn):not(.border_list .btn_s) {
  display: block;
  transition: 0.2s color ease-in;
}
.btn_star {
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../img/common/btn_star.svg);
  background-repeat: no-repeat;
  background-size: 3.2rem;
}
.btn_star.active {
  background-image: url(../img/common/btn_star_on.svg);
}
.notice_list .noti{
  background-color: #ffffe5;
}
.border_list .icon_file{
  display: inline-block;
  width: calc(1.6rem + 8px);
  height: calc(1.6rem + 8px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%231f1f1f'%3E%3Cpath d='M264.62-120q-27.62 0-46.12-18.5Q200-157 200-184.62v-590.76q0-27.62 18.5-46.12Q237-840 264.62-840h324.61L760-669.23v484.61q0 27.62-18.5 46.12Q723-120 695.38-120H264.62Zm0-40h430.76q9.24 0 16.93-7.69 7.69-7.69 7.69-16.93v-464.61H569.23V-800H264.62q-9.24 0-16.93 7.69-7.69 7.69-7.69 16.93v590.76q0 9.24 7.69 16.93 7.69 7.69 16.93 7.69ZM480-231.54q54.69 0 91.96-40.08 37.27-40.07 37.27-96.07v-183.08h-40v183.08q0 39.15-25.69 67.65-25.69 28.5-63.54 28.5-37.62 0-63.42-28.5-25.81-28.5-25.81-67.65v-218.46q0-15.93 9.85-27.58 9.84-11.65 24.76-11.65 15.16 0 24.89 11.65t9.73 27.58v218.46h40v-218.46q0-32-21.31-55.62-21.31-23.61-53.31-23.61t-53.3 23.61q-21.31 23.62-21.31 55.62v218.46q0 56 37.38 96.07 37.39 40.08 91.85 40.08ZM240-800v150.77V-800v640-640Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: calc(1.6rem + 8px);
}
.border_list .icon_file span{
  font-size: 0;
  color: #fff;
}
.border_list .no-data{
  color: var(--text-gray-800);
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcfcfc;
}
@media screen and (max-width: 769px) {
  .border_list .row {
    border: 1px solid var(--borderBox_bar-barBg);
    padding: 2rem;
    border-radius: 10px;
    display: grid;
    gap: 8px 4px;
  }
  .border_list.notice_list .row{
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--borderBox_bar-barBg);
    padding: 2rem 1rem;
  }
  .border_list.notice_list .row:nth-child(2){
    border-top: 1px solid #666;
  }
  .border_list .table_header,
  .border_list.notice_list .table_header {
    display: none;
  }
  .border_list .row > div {
    text-align: left;
    padding: 0;
    align-items: center;
  }
  .border_list .row .num {
    display: none;
  }
  .border_list.notice_list .row .num{
    display: flex;
  }
  .border_list .table {
    display: grid;
    gap: 8px;
    font-size: 2rem;
  }
  .border_list.notice_list .table{
    gap: 0;
  }
  .row > div {
    display: flex;
    gap: 8px;
  }
  .row > div::before {
    color: var(--text-gray-500);
    flex-shrink: 0;
  }
  .num::before {
    content: var(--num);
  }
  .cell_1::before {
    content: var(--cell_1);
  }
  .cell_2::before {
    content: var(--cell_2);
  }
  .cell_3::before {
    content: var(--cell_3);
  }
  .cell_4::before {
    content: var(--cell_4);
  }
  .cell_5::before {
    content: var(--cell_5);
  }
  .cell_6::before {
    content: var(--cell_6);
  }
  .cell_7::before {
    content: var(--cell_7);
  }
  .cell_8::before {
    content: var(--cell_8);
  }
  .cell_9::before {
    content: var(--cell_9);
  }
  .cell_10::before {
    content: var(--cell_10);
  }
  .border_list .row .cell_tit {
    display: block;
    font-size: 18px;
    text-align: left;
    padding-bottom: 1rem;
  }
  .list_box .total_num,
  .border_box .border_top .total_num {
    font-size: 2rem;
  }

  input.type_basic.w-300 {
    width: calc(100% - 1rem)
  }
}


/* 다운로드 리스트 */
.list_down{
  display: grid;
}
.list_down li:first-child{
  border-top: 1px solid #d9d9d9;
}
.list_down li{
  display: grid;
  border-bottom: 1px solid #d9d9d9;
  transition: 0.2s box-shadow ease-in;
}
.list_down li a{
  padding: 2rem;
  font-size: calc(1rem + 8px);
  transition: 0.2s box-shadow ease-in;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_down li .icon{
  background-image: url(../img/sub/icon_download.svg);
  background-repeat: no-repeat;
  font-size: 0;
  width: calc(1.6rem + 16px);
  height: calc(1.6rem + 16px);
  background-size: calc(1.6rem + 16px);
  color: #fff;
}
.list_down li .icon_file{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%231f1f1f'%3E%3Cpath d='M264.62-120q-27.62 0-46.12-18.5Q200-157 200-184.62v-590.76q0-27.62 18.5-46.12Q237-840 264.62-840h324.61L760-669.23v484.61q0 27.62-18.5 46.12Q723-120 695.38-120H264.62Zm0-40h430.76q9.24 0 16.93-7.69 7.69-7.69 7.69-16.93v-464.61H569.23V-800H264.62q-9.24 0-16.93 7.69-7.69 7.69-7.69 16.93v590.76q0 9.24 7.69 16.93 7.69 7.69 16.93 7.69ZM480-231.54q54.69 0 91.96-40.08 37.27-40.07 37.27-96.07v-183.08h-40v183.08q0 39.15-25.69 67.65-25.69 28.5-63.54 28.5-37.62 0-63.42-28.5-25.81-28.5-25.81-67.65v-218.46q0-15.93 9.85-27.58 9.84-11.65 24.76-11.65 15.16 0 24.89 11.65t9.73 27.58v218.46h40v-218.46q0-32-21.31-55.62-21.31-23.61-53.31-23.61t-53.3 23.61q-21.31 23.62-21.31 55.62v218.46q0 56 37.38 96.07 37.39 40.08 91.85 40.08ZM240-800v150.77V-800v640-640Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  font-size: 0;
  width: calc(1.6rem + 8px);
  height: calc(1.6rem + 8px);
  background-size: calc(1.6rem + 8px);
  color: #fff;
}
@media screen and (min-width: 1240px) {
  .list_down li:hover {
      box-shadow: 0 2px 14px rgba(100, 100, 100, 0.25);
      color: var(--primary);
  }
}
/* 모달 */
 /* 모달 배경 (오버레이) */
 .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 1999;
}

/* 모달 창 */
.modal {
  background: white;
  border-radius: 8px;
  max-width: 1200px;
  width: 90%;
  max-height: 94%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal .modal_body{
  flex-grow: 1;
  padding: 4rem 0;
  overflow-y: auto;
}

.modal .modal_heaeder{
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background-color: #fafafa;
  border-bottom: 1px solid #E5E7EB;
}
.modal .modal_heaeder h3{
  font-size: 2.2rem;
  font-size: clamp(18px, 1.5vw, 2.2rem);
  font-weight: 600;
}
.modal .modal_footer{
  padding: 1rem 2rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  gap: 1.6rem;
}
.modal .modal_footer .btn{
  min-width: 12rem;
}
/* 닫기 버튼 */
.modal .close-btn {
  font-size: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../img/common/btn_close.svg);
  background-size: 2.4rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* 모달 활성화 시 표시 */
.modal-overlay.active {
  display: flex;
}

/* hover 스타일 */
@media screen and (min-width: 1240px) {
  .header .nav .depth1 > li:hover > a span {
    color: var(--primary);
  }
  .header .nav .depth1 > li:hover > a span:before {
    opacity: 1;
    bottom: -5px;
  }
  .header .nav .depth1 > li > .depth2 > li > a:hover {
    opacity: 1;
  }
  .header .right_wrap a:hover .tool {
    opacity: 1;
  }
  .header .right_wrap a:hover .btn_nav {
    opacity: 1;
    pointer-events: visible;
  }
  .header .right_wrap a .btn_nav li:hover {
    background-color: #e9e9e9;
  }
  .header .right_wrap .my_menu:hover ul {
    opacity: 1;
    pointer-events: visible;
  }
  .header .right_wrap .my_menu ul li:hover {
    background-color: #e9e9e9;
  }
  .all_sch .close_btn:hover {
    transform: rotate(180deg);
    transition: transform 0.5s;
  }
  .pagination .num_list li:not(.active) a:hover:before,
  .pagination > a:hover {
    background-color: #e5e5e5;
  }
  .pagination > .none:hover {
    background-color: #fff;
  }
  .border_list a:hover:not(.border_list [class*="btn"]) {
    color: var(--primary);
  }
  #btnTop:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  }
}

/* 상단 바로가기 */
#btnTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
  display: none;
  color: #333;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  cursor: pointer;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}
#btnTop span {
  width: 0;
  height: 0;
  font-size: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  color: #fff;
}


/* ... 처리 */
.ellipsis-1,
.ellipsis-2,
.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis-1 {
  -webkit-line-clamp: 1;
}
.ellipsis-2 {
  -webkit-line-clamp: 2;
}
.ellipsis-3 {
  -webkit-line-clamp: 3;
}

.footer_address {
      width: 100%;
}
.awords {      
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  height: calc(78px + 8px);
  margin-top: -8px;
  margin-left: auto;
}
.awords img {
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .awords {
    height: calc(78px * 0.75 + 8px);
    gap: calc(16px * 0.75);
  }      
}
@media screen and (max-width: 1241px) {}
@media screen and (max-width: 769px) {
  .footer_b {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_address {
    order: -1;        
  }
  .awords {
    gap: 8px;
    height: calc(78px * 0.5 + 8px);
    margin-left: 0;
  }
}