@charset "UTF-8";
/*------------------------------------------------------------------------
File : layout.css
Author : SA
Create date : 2025-09-22
Version : 1.0
Editable : O
※ 플랫폼 별 공통으로 사용 되는 레이아웃 스타일 정의
------------------------------------------------------------------------*/
body {
  font-family: var(--k-ff1), "Poppins", san-serif;
  transform-origin: top left;
  min-width: 32rem;
  transition: transform 0.3s ease; /* 확대시 페이지 왼쪽 상단 기준 */
}

.container {
  max-width: calc(150rem + 6rem);
  margin: 0 auto;
  padding: 0 3rem;
}
.tb_show{display:none !important}
.tb_hide{display:block !important}
.m_show{display:none !important}
.m_hide{display:block !important}
@media all and (max-width: 1024px){
  .tb_show{display:block !important}
  .tb_hide{display:none !important}
}
@media all and (max-width: 768px){
  .m_show{display:block !important}
  .m_hide{display:none !important}
}


/* width(데스크탑 1600px 기준) => xxxl */
@media (max-width: 1600px) {
  /*.container {
    width: 120rem;
  }

  .container.sub__con {
    width: 120rem !important;
  }
*/


}
/* width(PC 1400px 기준) => xxl */
@media (max-width: 1400px) {
  .container {
  }
  .container.sub__con {
  }

}
/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .container.sub__con {
    width: 100% !important;
  }
}
/* 영어 폰트 - Montserrat */
.e-ff1 {
  font-family: var(--e-ff1);
}

/* 한글 폰트 - pretendard */
.k-ff1 {
  font-family: var(--k-ff1);
}

/* 핑크 캐릭터 */
.pink-chr__img {
  width: 9.2rem;
  height: 10rem;
  background: url("../images/common/pink-chr_img.png") center/contain no-repeat;
}

/*
 * 스크롤 커스텀
 */
.cst-scroll {
  overflow-y: auto;
}
.cst-scroll::-webkit-scrollbar {
  width: 0.8rem;
  border-radius: 0.8rem; /* 스크롤바 둥근 테두리 */
}
.cst-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.8rem; /* 스크롤바 둥근 테두리 */
  background: #111; /* 스크롤바 색상 */
}
.cst-scroll::-webkit-scrollbar-track {
  border-radius: 0.8rem; /* 스크롤바 둥근 테두리 */
  background: #f0f0f0; /*스크롤바 뒷 배경 색상*/
}
.cst-scroll > .inner {
  padding-right: 2rem;
}

/*
 * 스크롤 플러그인 커스텀
 */
body {
  -ms-overflow-style: none;
}

/*특정 부분 스크롤바 없애기*/
.scroll {
  -ms-overflow-style: none;
}

.scroll::-webkit-scrollbar {
  display: none;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent !important;
}

#mCSB_1_scrollbar_vertical,
.mCSB_scrollTools .mCSB_draggerContainer,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 0.8rem;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #111 !important;
}

.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #f0f0f0 !important;
}

.health-map .content__area .loca-result__list ul {
  border-radius: 0;
}

.mCSB_container {
  overflow: visible !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
  display: none;
}

/* 가로 스크롤 */
.scroll-x .mCSB_draggerContainer {
  width: auto !important;
}
.scroll-x .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 100%;
  margin: auto;
}
.scroll-x .mCSB_scrollTools .mCSB_draggerContainer {
  height: 0.8rem !important;
}

/* font-style : date */
.txt--date {
  font-family: "Poppins";
  font-weight: 300;
  letter-spacing: 0.025rem;
}

.info__txt {
  display: flex;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--basic);
}

.fs--ss {
  font-size: 1.5rem;
}

.fs--sm {
  font-size: var(--fs-m);
}

.fs--sm {
  font-size: var(--fs-sm);
}

.fc--gray {
  color: var(--basic);
}

.fc--main {
  color: var(--main);
}

/*
 * 말줄임(... 처리)
 */
.txt-overflow {
  display: inline-block;
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.txt-clamp {
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/*
 * 구분바 있을 경우
 */
.divide-bar__list {
  display: flex;
  flex-wrap: wrap;
  /*gap: 1rem;*/
}
.divide-bar__list > li {
  position: relative;
  font-size: 1.5rem;
  color: var(--basic);
}
.divide-bar__list > li:not(:last-child) {
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
.divide-bar__list > li:not(:last-child):after {
  /*display: inline-block;*/
  display: none;
  position: absolute;
  right: 0;
  height: 1.5rem;
  border-right: 2px solid var(--bd-divide);
  content: "";
}
.divide-bar__list .tit {
  font-weight: 700;
}

.sm__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sm__info p {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sm__info .tit {
  font-size: 1.5rem;
  font-weight: 500;
}
.sm__info .txt {
  font-size: 1.5rem;
  font-weight: 400;
}

.bd-top--dashed {
  border-top: 1px dashed var(--bd-dashed);
}

.bd-top--basic {
  border-top: 1px solid var(--bd-basic);
}

.bd--basic {
  border: 1px solid var(--bd-basic) !important;
  background-color: #fff !important;
}

/*
 * 정보제공 박스(type-01)
 */
.info-box__wrap.type-01 {
  padding: 3rem;
  border-radius: 2rem;
  color: var(--fc-main);
  background-color: var(--bg-box);
}
.info-box__wrap.type-01 .box__tit {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: var(--fs-lg);
  font-weight: 700;
}
.info-box__wrap.type-01 .txt__info {
  font-size: var(--fs-sm);
}

/*
 * 정보제공 박스(type-02)
 */
.info-box__wrap.type-02 {
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.12) 0 0.1rem 1rem;
  background-color: #fff;
}
.info-box__wrap.type-02 .box__tit,

  /*
  h2.con__tit {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--fc-main);
  }
  */
h3.con__tit {
  display: inline-block;
  margin:3rem 0 2rem 0;
  font-size: var(--fc-h3);
  font-weight: 700;
  color: var(--fc-main);
  position: relative;
  padding-left: 3.5rem;
}

h3.con__tit:before {
  content:"";
  display:block;
  position:absolute;
  left:0; top:0; margin-top:0;
  width:3rem; height:3rem;
  background:url(../images/content/cont_tit_h3.svg) no-repeat 50% 50% / contain;

}

h4.con__tit {
  margin:3rem 0 2rem 0;
  font-size: var(--fc-h4);
  font-weight: 700;
  color: var(--point1);
  position: relative;
  padding-left:3.5rem;

}

h4.con__tit:before {
  content:"";
  display:block;
  position:absolute;
  left:0; top:0; margin-top:-.5rem;
  width:3rem; height:3rem;
  background:url(../images/content/cont_tit_h4.svg) no-repeat 50% 50% / contain;

}
h5.con__tit {
  margin-bottom: 1rem;
  font-size:var(--fc-h5);
  font-weight: 600;
  color: var(--fc-main);
  position: relative;
  padding-left:2.5rem;
}
h5.con__tit:before {
  content:"";
  display:block;
  position:absolute;
  left:0; top:0;;
  width:2rem; height:2rem;
  background:url(../images/content/cont_tit_h5.svg) no-repeat 50% 50% / contain;

}
.con__tit_wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.con__tit_wrap h3.con__tit {
  /*margin-bottom:0;*/
}
/*
 * 정보제공 박스(type-03)
 */
.info-box__wrap.type-03 {
  padding: 2rem 2rem;
  border-radius: 1.2rem;
  font-size: var(--fs-sm);
  color: var(--fc-main);
  background-color: var(--bg-box);
}

.info-box__wrap.type-03--V2 {
  padding: 2rem 2rem;
  border-radius: 0.8rem;
  font-size: var(--fs-sm);
  color: var(--fc-main);
  border: 1px solid #cccccc;
}

.info-box__wrap.type-03.type-03--V2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms__list .info-box__wrap.type-03 {
  padding: 2rem;
  margin-bottom: 1rem;
  border: none;
}

/*
 * 정보제공 박스(type-04)
 */
.info-box__wrap.type-04 {
  display: grid;
  padding: 2rem;
  border-radius: 0.8rem;
  background-color: #f7f9fe;
  grid-template-columns: repeat(2, 1fr);
}
.info-box__wrap.type-04.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.info-box__wrap.type-04 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0.5rem;
}
.info-box__wrap.type-04 li:not(:last-child):after {
  position: absolute;
  right: 0;
  width: 0.1rem;
  height: 100%;
  border: 1px dashed var(--bd-dashed);
  content: "";
}
.info-box__wrap.type-04 li b {
  display: flex;
  align-items: center;
  font-size: var(--fs-m);
  font-weight: 600;
  line-height: 1;
  color: #535a79;
  gap: 0.6rem;
}
.info-box__wrap.type-04 li span {
  font-size: var(--fs-sm);
  color: #707793;
}

/* 전화번호, 이메일 */
.info-box__wrap.type-04.contact li.item i {
  display: flex;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.info-box__wrap.type-04.contact li.item.tel i {
  background-image: url("../images/common/tel_i.svg");
}
.info-box__wrap.type-04.contact li.item.email i {
  height: 1.3rem;
  background-image: url("../images/common/email_i.svg");
}
.info-box__wrap.type-04.contact li.item.career i {
  background-image: url("../images/common/time_i.svg");
}

/*
 * 정보제공 박스(type-05)
 */
.info-box__wrap.type-05 {
  display: flex;
  align-items: center;
  padding: 3rem;
  border-radius: 2rem;
  font-size: 2rem;
  color: var(--basic);
  background-color: var(--bg-box);
  gap: 2rem;
}
.info-box__wrap.type-05 p {
  font-size: 2rem;
  color: var(--basic);
}
.info-box__wrap.type-05 p b,
.info-box__wrap.type-05 p strong {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--fc-main);
}

/*
 * 숫자 리스트(공통)
 */
.num__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.num__list li {
  display: flex;
  gap: 1rem;
}
.num__list li span {
  line-height: 1.2;
}
.num__list .num--i {
  font-weight: 600;
  text-align: center;
}

/*
 * 숫자 리스트 - type-01
 */
.num__list.type-01 .num--i {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  background-color: var(--point2);
}

/*
 * 숫자 리스트 - type-02
 */
.num__list.type-02 .num--i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--fc-main);
  background-color: var(--bg-basic);
}

/*
 * dot__list - type-01
 */
.dot__list.type-01 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dot__list.type-01 > li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--fs-sm);
  color: var(--fc-main);
  font-weight: 400;
}
.dot__list.type-01 > li:before {
  display: inline-block;
  position: absolute;
  top: 12px;
  transform: translateY(-50%);
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  content: "";
  background-color: var(--main);
}
.dot__list.type-01 > li > .tit {
  margin-right: 1rem;
  font-weight: 600;
}

/*
 * 탭메뉴(공통)
 */
.tab__area .tab__menu__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.tab__area .tab__menu__list > li {
  flex: 1;
}
.tab__area .tab__menu__list > li button,
.tab__area .tab__menu__list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab__area .tab__con {
  /*padding-top:4rem;*/
}
.tab__area .tab__con__item {
  display: none !important;
}
.tab__area .tab__con__item.active {
  display: block !important;
}

/*
 * 탭메뉴(type-01)
 */
.tab__menu__list.type-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 1.2rem;
}
.tab__menu__list.type-01 li button,
.tab__menu__list.type-01 li a {
  white-space: nowrap;
}
.tab__menu__list.type-01 li.active button {
  box-shadow: initial;
  color: var(--main);
  background-color: #fff;
  border: 2px solid var(--main);
}
.tab__menu__list.type-01 li button,
.tab__menu__list.type-01 li a {
  width: 100%;
  height: 5rem;
  padding: 0 1.2rem;
  border-radius: 2.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0.8px 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--basic);
  background: #fff;
  border: 1px solid #e0e0e0;
}

/*
 * 탭메뉴(type-02)
 */
.tab__menu__list.type-02,
.tab__menu__list.type-02 li button,
.tab__menu__list.type-02 li a {
  border-radius: 2.5rem;
}

.tab__menu__list.type-02 {
  background-color: var(--bg-basic);
}
.tab__menu__list.type-02 li.active button,
.tab__menu__list.type-02 li.active a {
  color: #fff;
  background-color: var(--point1);
}
.tab__menu__list.type-02 li button,
.tab__menu__list.type-02 li a {
  width: 100%;
  height: 5rem;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--basic);
}

/*
 * 탭메뉴(type-03)
 */
.tab__menu__list.type-03 {
  gap: 2rem;
}
.tab__menu__list.type-03 > li {
  flex: initial;
}
.tab__menu__list.type-03 .btn__tab-menu.active button,
.tab__menu__list.type-03 .btn__tab-menu.active a {
  padding-bottom: 0.1rem;
  font-weight: 600;
  color: var(--fc-main);
}
.tab__menu__list.type-03 .btn__tab-menu.active button:before,
.tab__menu__list.type-03 .btn__tab-menu.active a:before {
  background-color: var(--main);
}
.tab__menu__list.type-03 .btn__tab-menu.active button:after,
.tab__menu__list.type-03 .btn__tab-menu.active a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 1.2rem - 1rem);
  height: 0.2rem;
  background-color: var(--fc-main);
}
.tab__menu__list.type-03 .btn__tab-menu button,
.tab__menu__list.type-03 .btn__tab-menu a {
  display: flex;
  position: relative;
  font-size: var(--fs-m);
  color: var(--basic);
}
.tab__menu__list.type-03 .btn__tab-menu button:before, .tab__menu__list.type-03 .btn__tab-menu button:after,
.tab__menu__list.type-03 .btn__tab-menu a:before,
.tab__menu__list.type-03 .btn__tab-menu a:after {
  content: "";
}
.tab__menu__list.type-03 .btn__tab-menu button:before,
.tab__menu__list.type-03 .btn__tab-menu a:before {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: var(--bd-basic);
}

/*
 * 콘텐츠 제목
 */
.con__tit__wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}
.con__tit__wrap.fx-row {
  flex-direction: row;
}
.con__tit__wrap .con__tit {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fc-main);
  margin-bottom: 0;
}
.con__tit__wrap .con__txt {
  font-size: 2rem;
  color: var(--basic);
}

/* 콘텐츠 제목 */
h3.con__tit {
  font-weight: 700;
}

h4.con__tit {
  font-weight: 700;
}

h4.con__tit--sm {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fc-main);
  margin-bottom: 2rem;
}

.con__tit {
  display: block;
  font-size: var(--fs-lg);
  line-height: 1;
  color: var(--fc-main);
}
.con__tit p {
  font-weight: 300;
}

p.con__sub__tit {
  font-size: 2rem;
  font-weight: 400;
  color: var(--basic);
}

/* 말풍선 형태 */
.con__tit.type-02 {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.con__tit.type-02 strong {
  position: relative;
  padding: 2rem 0;
  border-radius: 0.8rem;
  font-size: var(--fs-lg);
  font-weight: 600;
  text-align: center;
  color: #fff;
  min-width: 30rem;
  background-color: var(--point2);
}
.con__tit.type-02 strong:after {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translateX(-50%);
  border-style: solid;
  border-width: 1rem 1rem 0 1rem;
  border-color: var(--point2) transparent transparent transparent;
}

/*
 * form(신청) - 강사신청, 회원정보 수정
 */
.form__wrap.type-01 .info-box__wrap > .item input[type=text],
.form__wrap.type-01 .info-box__wrap > .item input[type=tel] {
  width: 100%;
}
.form__wrap.type-01 .info-box__wrap > .item:not(:first-child) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--bd-basic);
}
.form__wrap.type-01 .info-box__wrap > .item.form-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.form__wrap.type-01 .info-box__wrap > .item.form-col-2 > div {
  width: 100%;
}
.form__wrap.type-01 .info-box__wrap .cate__tit {
  display: block;
  margin-bottom: 2rem;
  font-size: var(--fs-m);
  font-weight: 600;
  line-height: 1;
  color: var(--fc-main);
}

i.tit--point {
  color: var(--main) !important;
}

/*
 * 첨부파일(다운로드)
 */
.file-download__wrap .file__box__tit {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  color: var(--fc-main);
  gap: 1rem;
  margin-top: 2rem;
}
.file-download__wrap .file__box__tit .file--i {
  margin-top: -0.1rem;
}
.file-download__wrap .file__box__list {
  font-size: 1.7rem;
  color: var(--basic);
}
.file-download__wrap .file__box__list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.file-download__wrap .file__box__list li a {
  display: flex;
  word-break: break-all;
  gap: 1rem;
}
.file-download__wrap .file__box__list li a span {
  max-width: calc(100% - 1.2rem - 1rem);
}

/*
 * 첨부파일(업로드)
 */
.file-upload__wrap .file__box__list {
  font-size: 1.7rem;
  color: var(--basic);
}
.file-upload__wrap .file__box__list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.file-upload__wrap .file__box__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-all;
}
.file-upload__wrap .file__box__list li a span {
  width: calc(100% - 1.2rem - 1rem);
}
.file-upload__wrap .input--file-upload {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}
.file-upload__wrap .file-upload__list {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  font-size: var(--fs-sm);
  color: var(--basic);
  gap: 1rem;
}
.file-upload__wrap .file-upload__list li {
  display: flex;
  justify-content: space-between;
}
.file-upload__wrap .file-upload__list li:before {
  display: inline-block;
  align-items: center;
  width: 1.2rem;
  height: 2rem;
  background: url("../images/common/file_i.svg") center/contain no-repeat;
  content: "";
}
.file-upload__wrap .file-upload__list li > span {
  display: -webkit-box;
  overflow: hidden;
  width: calc(100% - 10rem);
  line-height: 1.4;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.file-upload__wrap .btn--delete {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.7rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--point2);
}
.file-upload__wrap p.fs--sm.fc--gray {
  margin-top: 1rem;
}

.file-upload.type-02 .file-upload__list li {
  align-items: center;
  width: 100%;
  padding: 2rem;
  border-radius: 0.8rem;
  background-color: var(--bg-sub);
}
.file-upload.type-02 .file-upload__list li:before {
  display: none;
}
.file-upload.type-02 .file-upload__list li button.btn--delete {
  display: flex;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  background-color: initial;
}
.file-upload.type-02 .file-upload__list li button.btn--delete:before {
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  content: "";
  background-color: var(--basic);
}
.file-upload.type-02 .file-upload__list li button.btn--delete span {
  display: none;
}

/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  .tab__menu__list.type-01 {
    gap: 1rem;
  }
  .tab__menu__list.type-01 li button,
  .tab__menu__list.type-01 li a, .tab__menu__list.type-02 li button,
  .tab__menu__list.type-02 li a {
    font-size: 1.8rem;
  }
  .tab__menu__list.type-02 li button li,
  .tab__menu__list.type-02 li a .dot__list.type-01 li {
    padding-left: 1.5rem;
  }
  .tab__menu__list.type-02 li button li:before,
  .tab__menu__list.type-02 li a .dot__list.type-01 li:before {
    top: 0.7rem;
    width: 0.3em;
    height: 0.3em;
  }
  .info-box__wrap.type-02 {
    padding: 3rem 2rem;
  }
  .form__wrap.type-01 .info-box__wrap > .item.form-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/**=====================================================================
 *!                                input
 *======================================================================**/
input,
select,
textarea {
  padding: 1.2rem;
  border: 1px solid var(--bd-basic);
  border-radius: 0.6rem;
  font-family: var(--k-ff1);
  font-size: var(--fs-sm);
  color: var(--basic);
}
input.bg--w,
select.bg--w,
textarea.bg--w {
  border: 0;
  background-color: #fff;
}

input[type=radio],
input[type=checkbox] {
  padding: 0;
}

input,
select {
  height: 4.3rem;
  line-height: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 파이어폭스에서의 초기화 방법 */
input[type=number] {
  -moz-appearance: textfield;
}

select {
  padding-right: 3.5rem;
  background: #fff url("../images/common/arrow_i.png") no-repeat right 1.2rem center;
  min-width: 8rem;
  background-size: 1.2rem 0.7rem;
}

input:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
}

/*
    * 달력 커스텀
    */
input[type=date] {
  position: relative;
  z-index: 1;
  height: 5.7rem;
  padding: 0 1.5rem 0 2rem;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--basic);
  cursor: pointer;
  min-width: 20rem;
  background-color: var(--bg-sub);
  appearance: none;
  -webkit-appearance: none; /* For Chrome/Safari */
  -moz-appearance: none; /* For Firefox */
}
input[type=date]:hover {
  cursor: initial;
}

input[type=date]::-webkit-calendar-picker-indicator:hover,
select:hover {
  cursor: pointer;
}

/* 기본 달력 아이콘 숨기기 -  Chrome, Safari, and Edge */
input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
}

/* 커스텀 달력 아이콘 */
input[type=date]:after {
  position: absolute;
  top: 50%;
  right: 1.5rem; /* Position of the custom icon */
  width: 15px; /* Custom icon size */
  height: 15px; /* Custom icon size */
  background: url(../images/common/calendar_i.svg) no-repeat center center; /* Custom icon */
  content: "";
  transform: translateY(-50%);
  background-size: 15px; /* Adjust size */
  pointer-events: none; /* Prevent clicks on this element */
}

/* readonly */
input[readonly=readonly],
textarea[readonly=readonly] {
  color: #a8adbb;
  cursor: not-allowed;
  background-color: var(--bg-sub);
}

/*
 * form 태그 input 스타일
 */
.form__wrap input,
.form__wrap select {
  padding: 2rem;
  border-radius: 0.8rem;
  height: 5.7rem;
  background-color: var(--bg-sub);
  width:100%;
}

textarea {
  width: 100%;
  border: 1px solid var(--bd-basic);
}

#searchForm select {
  background-color: #fff;
  border: 1px solid var(--btn-basic);
}


#searchForm input,
#searchForm textarea {
  padding: 1.2rem !important;
  background-color: #fff;
  font-size: var(--fs-xsm);
  border : 1px solid var(--btn-basic);
}
#searchForm .sct__box select {
  border: 1px solid var(--bd-basic) !important;
  min-width: 9rem !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--bg-sub) inset;
  box-shadow: 0 0 0 1000px var(--bg-sub) inset;
}

/*
 * 생년월일, 이메일(공통)
 */
[class^=form-][class$=__box] {
  display: grid;
  gap: 1rem;
}

/* form - 생년월일 */
.form-birth__box {
  grid-template-columns: repeat(3, 1fr);
}

/* form - 생년월일 */
.form-email__box {
  grid-template-columns: repeat(2, 1fr);
}
.form-email__box > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-email__box > div select {
  width: 100%;
}

/* form - 전화번호 */
.form-phone__wrap {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.form-phone__wrap .form-phone__box {
  width: calc(100% - 10rem);
  grid-template-columns: repeat(3, 1fr);
}
.form-phone__wrap .form-phone__box > div {
  display: flex;
  align-items: center;
}
.form-phone__wrap .form-phone__box > div:not(:last-child):after {
  padding-left: 1rem;
  font-size: var(--fs-sm);
  color: var(--fc-main);
  content: "-";
}
.form-phone__wrap .form-phone__box select {
  width: 100%;
}
.form-phone__wrap button {
  width: 10rem;
  height: 5.7rem;
  border-radius: 0.8rem;
  font-size: var(--fs-sm);
  font-weight: 400;
}

/* form - 전화번호 중복확인 버튼 없을 경우 */
.form-phone__wrap .form-phone__box.btn--no {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.form-phone__wrap .form-phone__box.btn--no > div {
  flex-basis: 0;
  flex-grow: 1;
}

/* form - 활동기간 */
.form-date__box {
  display: flex !important;
  align-items: center;
  gap: 2rem;
}
.form-date__box > div {
  width: 50%;
}
.form-date__box > span {
  display: inline-block;
  width: 1rem;
}
.form-date__box .inner__box {
  display: flex;
  flex-grow: 1;
  gap: 1rem;
}
.form-date__box .inner__box select {
  width: 50%;
}

/* form - 주소 */
.form-addr__box > div.dp_flex {
  gap: 1rem;
}
.form-addr__box > div.dp_flex input {
  width: calc(100% - 13rem) !important;
}
.form-addr__box > div.dp_flex button.btn--basic-w {
  width: 13rem;
  height: 100%;
}

.from__wrap .input--checkbox__wrap.fx-col {
  gap: 3rem;
}

.msg--val.fail {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--main);
}

.msg--sm {
  font-size: 1.5rem;
  color: var(--basic);
}

.form__wrap .sm__tit {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  input[type=date] {
    padding-left: 1rem;
  }
}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  input[type=date] {
    width: 14rem;
    font-size: 1.5rem;
  }
  input[type=date]:after {
    right: 1rem;
  }
  .form-phone__wrap {
    flex-direction: column;
  }
  .form-phone__wrap .form-phone__box {
    width: 100%;
  }
  .form-phone__wrap button {
    width: 100%;
  }
  .form-date__box {
    flex-direction: column;
  }
  .form-date__box > div {
    width: 100%;
  }
  .form-birth__box,
  .form-email__box {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*============================ END OF input ============================*/
/**========================================================================
 *!                         checkbox, radio 공통
 *========================================================================**/
.input--checkbox__wrap,
.input--radio__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
}
.input--checkbox__wrap label,
.input--radio__wrap label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--fc-main);
}
.input--checkbox__wrap label:hover,
.input--radio__wrap label:hover {
  cursor: pointer;
}
.input--checkbox__wrap .item,
.input--radio__wrap .item {
  display: flex;
  gap: 1rem;
}

/*====================== END OF checkbox, radio 공통 =======================*/
/**========================================================================
 *!                                checkbox
 *========================================================================**/
.chkbox-type-01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
  font-size: 1.7rem;
  color: #424756;
}
.chkbox-type-01 label:hover {
  cursor: pointer;
}

.chkbox-type-01 input[type=checkbox] {
  visibility: visible; /* 기본적으로 보이도록 설정 */
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1rem;
  padding: 0;
  border: 1px solid var(--bd-basic);
  border-radius: 0.3rem !important;
  cursor: pointer;
  opacity: 1; /* 기본적으로 보이도록 설정 */
  min-width: 1.8rem;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.chkbox-type-01.hidden input[type=checkbox] {
  visibility: hidden; /* 체크박스를 시각적으로 숨김 */
  position: absolute; /* 레이아웃에서 제거 */
  opacity: 0; /* 체크박스를 시각적으로 숨김 */
  pointer-events: none; /* 클릭 불가 */
}

.chkbox-type-01 input[type=checkbox]::before {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  content: "✓"; /* 체크 표시 */
  transform: scale(0) translate(-50%, -50%);
}

.chkbox-type-01 input[type=checkbox]:checked {
  color: white;
  background-color: var(--point2) !important;
  border-color: var(--point2) !important;
}

.chkbox-type-01 input[type=checkbox]:checked::before {
  border-radius: 4px;
  transform: scale(1) translate(-50%, -50%);
}

/*
 * 약관동의
 */
.agree__chkbox {
  padding: 2.5rem 3rem;
  border-radius: 0.8rem;
}
.agree__chkbox label {
  width: calc(100% - 2rem);
  font-size: 1.6rem;
  font-weight: 500;
}

/*============================ END OF checkbox ============================*/
/**=======================================================================
  *!                                radio
  *=======================================================================**/
.radio-type-01 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
  font-family: var(--k-ff1);
  font-size: 1.7rem;
  color: #424756;
}
.radio-type-01 label:hover {
  cursor: pointer;
}

.radio-type-01 input[type=radio] {
  visibility: visible;
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  padding: 0;
  border: 1px solid var(--bd-basic);
  border-radius: 50% !important; /* 원형 */
  cursor: pointer;
  opacity: 1;
  min-width: 1.8rem;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.radio-type-01.hidden input[type=radio] {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-type-01 input[type=radio]::before {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background-color: white;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%);
}

.radio-type-01 input[type=radio]:checked {
  background-color: var(--point2) !important;
  border-color: var(--point2) !important;
}

.radio-type-01 input[type=radio]:checked::before {
  transform: scale(1) translate(-50%, -50%);
}

/*============================ END OF radio-type-01 ============================*/

.input--radio__wrap .item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  line-height: 1;
}
.input--radio__wrap label {
  display: flex;
  align-items: center;
}

[type=radio],
[type=radio]:checked:before {
  border-radius: 50% !important;
}

[type=radio] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border: 1px solid var(--bd-basic);
  line-height: 1;
  vertical-align: middle;
  appearance: none;
}
[type=radio]:hover {
  cursor: pointer;
}

[type=radio]:checked {
  position: relative;
  background-color: var(--point2);
  border-color: var(--point2);
}
[type=radio]:checked:before {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background-color: var(--point2);
  background-color: #fff;
}

[type=radio] + span,
[type=radio] + label {
  margin-left: 1rem;
  font-family: var(--k-ff1);
  font-size: var(--fs-sm);
  color: var(--fc-main);
}

/*============================ END OF radio ============================*/
/**========================================================================
 *!                                아이콘
 *========================================================================**/
/* icon(공통) */
.icon {
  display: inline-block;
  position: relative;
}
.icon:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon.type-02 {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.arrow--i {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transition: 0.5s;
  transform: translateY(-50%) rotate(135deg);
}

.arrow--i.active {
  transform: rotate(315deg);
}

.plus--i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.plus--i:before, .plus--i:after {
  position: absolute;
  width: 1.2rem;
  height: .2rem;
  content: "";
  background-color: var(--basic);
}
.plus--i:after {
  transform: rotate(90deg);
}

.minus--i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.minus--i:before, .minus--i:after {
  position: absolute;
  width: 1.2rem;
  height: 0.2rem;
  content: "";
  background-color: var(--basic);
}
.minus--i:after {

}
.minus--i:before {
  transform: rotate(180deg);
}

.date--i {
  width: 2rem;
  height: 2rem;
  background: url("../images/common/date_i.svg") no-repeat center/contain;
}

/* 새로고침 - icon */

.reset--i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 1.4rem;
}
.reset--i:before, .reset--i:after {
  position: absolute;
  width: 1.4rem;
  height: 1.5rem;
  content: "";
  background: url(../images/common/reset_i.svg) 0 0 no-repeat;
  background-size: cover;
}

/* 검색 - icon */
.sch--i {
  width: 1.8rem;
  height: 1.8rem;
}
.sch--i:before {
  background-image: url("../images/common/sch_i.svg");
}

/*  */
.info--i {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("../images/common/info--i.svg") center/contain no-repeat;
  min-width: 1.5rem;
}

/* 첨부파일 - icon */
.file--i {
  width: 1.2rem;
  height: 1rem;
}
.file--i:before {
  background-image: url("../images/common/file_i.svg");
}

/* 다운로드 - icon */
.download--i {
  width: 1.5rem;
  height: 1.6rem;
}
.download--i:before {
  background-image: url("../images/common/download_i.svg");
}

/* X(닫기 버튼) - icon */
.close--i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.close--i:before, .close--i:after {
  display: inline-block;
  position: absolute;
  width: 2px;
  height: 12px;
  content: "";
  background-color: #fff;
}
.close--i:before {
  transform: rotate(45deg);
}
.close--i:after {
  transform: rotate(-45deg);
}

.cap--i:before {
  width: 2.4rem;
  background-image: url("../images/common/cap_i.svg");
}

.bag--i:before {
  width: 2rem;
  background-image: url("../images/common/bag_i.svg");
}

.computer--i:before {
  width: 2.2rem;
  background-image: url("../images/common/computer_i.svg");
}

.folder--i:before {
  width: 2rem;
  background-image: url("../images/common/folder_i.svg");
}

/* 프로필 이미지 */
.profile__img {
  border-radius: 50%;
  background-color: var(--bg-basic);
}
.profile__img:before {
  background-image: url("../images/common/profile_i.svg ");
}

/*
 * badge 스타일
 */
[class*=badge-0] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-01,
.badge-02 {
  line-height: 1;
}

.badge-01 {
  padding: .6rem .8rem;
  border-radius: .6rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.badge-02 {
  padding: .6rem .8rem;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.badge-02 span.no-txt {
  display: none;
}

.badge-03 {
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  line-height: 1;
}

.badge-03.badge--primary {
  border: 1px solid var(--point2);
  color: var(--point2);
}

/* 공지(badge) */
.badge-01.type-noti {
  padding-left: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--main);
}
.badge-01.type-noti .noti--i {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  background-image: url("../images/common/noti_i.svg");
  display: none;
}

/* 공지 tab cate(badge) */
.badge-01.type-cate01 {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--point1);
  color: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}

.badge-01.type-cate02 {
  font-size: 1.5rem;
  font-weight: 700;
  background: #ef4222;
  color: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}

.badge--pp {
  color: #fff !important;
  background-color: var(--point1);
  flex-shrink: 0;
}

.badge--text {
  font-size: var(--fs-m);
  font-weight: 600;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge--pp-l {
  color: var(--point1);
  background-color: var(--bg-point1);
  flex-shrink: 0;
}

.badge--pp-dl {
  color: #fff;
  background-color: #7c72fe;
}

.badge--gray-l {
  color: var(--fc-main);
  background-color: var(--bg-box);
}

.badge--org-l {
  color: var(--main);
  background-color: #ffe3de;
}

.type--deadline {
  display: flex;
  align-items: center;
  position: relative;
  color: #FFE6E6;
  background-color: var(--main);
  white-space: nowrap;
}

.badge-01.type--deadline {
  color: var(--main);
  background-color: #FFE6E6;
}

.type--finish {
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
  background-color: #666666;
}

.type--prepar {
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background-color: #18204E;
  white-space: nowrap;
}
.badge-01.type--prepar {
  color: #18204E;
  background-color: #F0F2F6;
}


.type--deadline:before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background: url("../images/main/cls-info_icon.svg") center/contain no-repeat;
  content: "";
}

.badge-01.type--deadline:before {
  background: url("../images/main/cls-info_c_icon.svg") center/contain no-repeat;
}

.type--finish:before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background: url("../images/main/finish_ic.svg") center/contain no-repeat;
  content: "";
}

.type--prepar:before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  background: url("../images/main/prepar_ic.svg") center/contain no-repeat;
  content: "";
}

.badge-01.type--prepar:before {
  background: url("../images/main/prepar_c_ic.svg") center/contain no-repeat;
}

.badge__box {
  display: flex;
  gap: 1rem;
}
.badge__box .badge {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border-radius: 0.8rem;
  font-size: var(--fs-m);
  font-weight: 500;
  color: #ffffff;
}
.badge__box.btm .type-01 {
  background-color: var(--point1-l);
  color: var(--point1);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge__box.btm .type-02 {
  color: var(--fc-main);
  background-color: var(--point4);
}

.sm__info-deadline {
  background: #F7F9FE;
  padding: 2rem;
  border-radius: .8rem;
}

.sm__info-deadline .state {
  color: #535A79;
  font-size: 19px;
  font-weight: 600;
  position: relative;
  padding-left: 3rem;
}

.sm__info-deadline .state::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../images/main/deadline-state--i.svg) center / contain no-repeat;
}

/* 새로운 게시물(icon) */
.new--i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--main);
  flex-shrink: 0;
}

.ri-attachment-line {
  width: 2rem;
  height: 2rem;
  border-radius: .4rem;
  background-color: #667085;
  flex-shrink: 0;
}

.ri-attachment-line:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 12px;
  background: url("/build/site/www/images/common/attachment-line.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.new--i:before {
  left: 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  content: "N";
}

.lock--i {
  position: relative;
}
.lock--i:before {
  content: url('../images/common/lock--i.svg');
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
}

/*============================ END OF 아이콘 ============================*/
/**========================================================================
 *!                                btn
 *========================================================================**/
[class*=btn] {
  transition: 0.3s;
}
[class*=btn]:hover {
  cursor: pointer;
}

/* 영역에 hover 시 cursor 기본으로 */
.cursor-basic:hover {
  cursor: initial;
}

/* btn(기본 스타일) */

.sct__box .btn--basic-w,
.sct__box .btn--basic-c {
  min-width: auto;
}

.btn--basic-w,
.btn--basic-c {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  height: 4.5rem;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  gap:1rem;
  text-align: center;
  box-sizing: border-box;
}

.btn--basic-w.type-02,
.btn--basic-c.type-02 {
  display: inline-flex;
}

.btn--basic-w.h50,
.btn--basic-c.h50 {
  height: 5rem;
}
.btn--basic-w.h57,
.btn--basic-c.h57 {
  height: 5.7rem;
}

.btn--basic-w {
  border: 1px solid var(--bd-basic);
  color: var(--basic);
  background-color: #fff;
}
.btn--basic-w.type-02 {
  border: 2px solid var(--bd-basic);
}

.btn--basic-c {
  color: #fff;
}

/* 버튼 비활성화 */
.btn--basic-w.btn--disable {
  color: rgba(var(--basic), 0.5);
}

.btn--basic-c.btn--disable {
  opacity: 0.5;
}

.btn--basic {
  background-color: var(--btn-basic);
}

.btn--basic-w.btn--primary {
  color: var(--point2);
  border-color: var(--point2);
}

.btn--basic-c.btn--primary {
  background-color: var(--point2);
}

.btn--basic-w.btn--main {
  color: var(--main);
  border-color: var(--main);
}

.btn--basic-c.btn--main {
  background-color: var(--main);
}

.btn--basic-c.btn--simple {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: var(--fc-main);
}


/* btn-new(기본 스타일) */

.sct__box .btn--basic-w-new,
.sct__box .btn--basic-c-new {
  min-width: auto;
}

.btn--basic-w-new,
.btn--basic-c-new {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  height: 7.5rem;
  padding: 0 2.4rem;
  FONT-WEIGHT: 200;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  gap: 1rem;
  text-align: center;
  box-sizing: border-box;
  border-radius: 12px;
}

.btn--basic-c-new {
  color: #fff;
}

.btn--basic-w-new.btn--primary {
  color: var(--point2);
  border-color: var(--point2);
}

.btn--basic-c-new.btn--primary {
  background-color: var(--point2);
}

.btn--basic-w-new {
  border: 1px solid var(--bd-basic);
  color: var(--basic);
  background-color: #fff;
}

/*
 * 버튼 정렬(가운데, 왼쪽, 오른쪽)
 */
.btn__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}
.btn__list.right {
  justify-content: flex-end;
}
.btn__list.left {
  justify-content: flex-start;
}

/* 테이블 안의 버튼 */
.td-btn__list {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 0.5rem;
}

.td-btn__list [class*=btn] {
  flex-grow: 1;
  align-items: center;
  width: 7rem;
  height: auto;
  padding: 1rem 0;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
}

.td-btn__list .btn--basic-w {
  border: 1px solid var(--bd-basic);
}

.td-btn {
  width: 7rem;
  height: 2.5rem;
  font-size: 1.4rem;
}

.td-btn-one {
  display: flex;
  justify-content: center;
}

.btn--basic-c.disable {
  color: rgba(255, 255, 255, 0.4);
}
.btn--basic-c.disable:hover {
  cursor: not-allowed;
}

/* icon, text 모두 있는 검색버튼 */
.btn--basic-c.btn--sch i.sch--i:before {
  left: 0;
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .td-btn__list {
    width: 50%;
    margin-bottom: 0.5rem;
  }
  .td-btn-one {
    justify-content: flex-start;
  }
}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  .td-btn__list {
    width: auto;
  }
  /*
  * 버튼 정렬(가운데, 왼쪽, 오른쪽)
  */
  .btn__list.right {
    justify-content: center;
  }
}
/*============================ END OF btn ============================*/
/*
 * 애니메이션(scroll-spy)
 */
.back-to-position {
  opacity: 0;
  transition: 1s;
}

.back-to-position.to-right {
  transform: translateX(-150px);
}

.back-to-position.to-right-little {
  transform: translateX(-30px);
}

.back-to-position.to-left {
  transform: translateX(150px);
}

.back-to-position.to-left-little {
  transform: translateX(30px);
}

.back-to-position.to-top {
  transform: translateY(150px);
}

.back-to-position.to-top-md {
  transform: translateY(75px);
}

.back-to-position.to-top-little {
  transform: translateY(30px);
}

.back-to-position.to-btm {
  transform: translateY(-150px);
}

.back-to-position.to-btm-little {
  transform: translateY(-30px);
}

.back-to-position.rotate {
  transform: rotate(270deg);
}

.show .back-to-position {
  opacity: 1;
  transform: translateX(-150px);
}

.show .back-to-position {
  opacity: 1;
  transform: translateY(0);
}

.show .back-to-position.delay-0 {
  transition-delay: 0s;
}

.show .back-to-position.delay-1 {
  transition-delay: 0.2s;
}

.show .back-to-position.delay-2 {
  transition-delay: 0.4s;
}

.show .back-to-position.delay-3 {
  transition-delay: 0.6s;

}

.show .back-to-position.delay-4 {
  transition-delay: 0.7s;
}

.show .back-to-position.delay-5 {
  transition-delay: 0.8s;
}

.show .back-to-position.delay-6 {
  transition-delay: 1s;
}

.show .back-to-position.delay-7 {
  transition-delay: 1.2s;
}

.show .back-to-position.delay-8 {
  transition-delay: 1.4s;
}

.show .back-to-position.delay-9 {
  transition-delay: 1.6s;
}

.show .back-to-position.delay-10 {
  transition-delay: 1.8s;
}

.show .back-to-position.delay-11 {
  transition-delay: 2s;
}

.show .back-to-position.delay-12 {
  transition-delay: 2.2s;
}

.show .back-to-position.delay-13 {
  transition-delay: 2.4s;
}

.show .back-to-position.delay-14 {
  transition-delay: 2.6s;
}

.show .back-to-position.delay-15 {
  transition-delay: 2.8s;
}

.show .back-to-position.delay-16 {
  transition-delay: 3s;
}

.show .back-to-position.delay-17 {
  transition-delay: 3.2s;
}

.show .back-to-position.delay-18 {
  transition-delay: 3.4s;
}

/**============================================
 *!               표, 게시판(공통)
 *=============================================**/
/* safari 상단 border 보이게 */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    table {
      border-collapse: separate;
    }
  }
}
/*
 * 표 - 스크린리더기
 */
.table-common caption {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

table {
  word-break: break-all;
}

table td .td__inner {
  display: flex;
  align-items: center;
}
table td a.page__link {
  font-weight: 700;
  text-decoration: underline;
  color: var(--point2);
}
table td .depth__list {
  display: flex;
  gap: 0.5rem;
}
table td .depth__list li {
  position: relative;
}
table td .depth__list li:not(:last-child):after {
  margin-left: 0.5rem;
  content: ">";
}

/*
 * 테이블(공통)
 */
.table-common {
  width: 100%;
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--bd-basic);
  font-size: var(--fs-sm);
  text-align: center;
  word-break: break-all;
  table-layout: fixed;
}
.table-common tr {
  padding: 1rem 2.5rem;
}

.table-common.basic-02 tbody th[rowspan="3"] {
  border-right: 1px solid #ddd;
}


.table-common th,
.table-common td {
  padding: 3rem 1.5rem;
  overflow-wrap: break-word;
  vertical-align: middle;
}
.table-common th {
  border-top: 1px solid var(--bd-basic);
  font-weight: bold;
  color: var(--fc-main);
  background-color: var(--bg-basic);
}
.table-common td {
  border: 1px solid var(--bd-basic);
  font-weight: 500;
  line-height: 1.4;
  /*word-break: keep-all;*/
  white-space: normal;
  word-break: break-word;
  color: #424756;
}
.table-common td:first-child {
  border-left: 1px solid var(--bd-basic);
  /*border-left: 0;*/
}
.table-common td:last-child {
  border-right:0;
}
.table-common td.no-data {
  padding-left: 0 !important;
  text-align: center !important;
}

/* 테이블 텍스트 정렬 */
table.th-tl th, table.td-tl td {
  text-align: left;
}
table.th-tc th, table.td-tc td {
  text-align: center;
}
table.th-tr th, table.td-tr td {
  text-align: right;
}

s .table-common td.text-muted.text-center {
  padding-left: 0;
  text-align: center;
}

/* width(PC 1400px 기준) => xxl */
@media (max-width: 1400px) {
  .table-common th,
  .table-common td {
    vertical-align: middle;
    border:0;
  }
}
/*=============== END OF 표(공통) ==============*/
/**==============================================
 *!       게시판 - table basic-01 : 기본
 *===============================================**/
.table-common.basic-01 {
  border-top: 0;
}
.table-common.basic-01 thead tr:nth-child(1) {
  border-top: 2px solid var(--point2);
}
.table-common.basic-01 thead tr:nth-child(1) td {
  border-top: none;
}
.table-common.basic-01 tr:nth-child(1) {
  border-top: 2px solid var(--point2);
}
.table-common.basic-01 tr:nth-child(1) td {
  border-top: none;
}
.table-common.basic-01 tr:not(:last-child) {
  border-bottom: 1px solid var(--bd-basic);
}
.table-common.basic-01 td {
  padding: 0.7rem 1.5rem;
  text-align: left;
}
.table-common.basic-01 td span {
  display: inline-block;
}


@media screen and (max-width: 1400px) {
  .table-common.basic-01 colgroup {
    display: none;
  }
  .table-common.basic-01 tr:not(:last-child) {
    border-bottom: 1px solid var(--bd-basic);
  }
  .table-common.basic-01 th,
  .table-common.basic-01 td {
    display: block;
    width: 100%;
    border-top: none;
    text-align: left;
  }
}
/*==== END OF 게시판 -table basic-01 : 기본 ====*/
/**==============================================
 *!               table basic-02
 *===============================================**/
.table-common.basic-02 {
  width: 100%;
  text-align: center;
  word-break: break-all;
  table-layout: fixed;
}
.table-common.basic-02 .badge {
  width: auto;
  max-width: 20rem;
}

/* width(노트북 1200px 기준) => xl */
@media (max-width: 1400px) {
  .table-common.basic-02 .board_list br {
    display: none;
  }
  .table-common.basic-02 colgroup {
    display: none;
  }
  .table-common.basic-02 thead {
    display: none;
  }
  .table-common.basic-02 tbody tr {
    display: block;
    width: 100%;
    padding-left:0;
    padding-right:0;

  }
  .table-common.basic-02 tbody th,
  .table-common.basic-02 tbody td {
    display: block;
    width: 100%;
    min-height: 2.8rem;
    padding-bottom: 1rem;
  }
  .table-common.basic-02 tbody th {
    margin-bottom:1rem;
    text-align:center;
    padding-bottom:0;
  }
  .table-common.basic-02 tbody td:last-child {
    padding-bottom: 0;
  }

  .table-common.basic-02 tr {
    text-align: left;
    vertical-align: middle;
  }
  .table-common.basic-02 tr:not(:first-child) {
    border-top: 1px solid var(--bd-basic);
  }
  .table-common.basic-02 th,
  .table-common.basic-02 td {
    width: 100%;
    padding: 0;
    border: none;
    line-height: 1.7;
    text-align: left;
  }
  .table-common.basic-02 td {
    position: relative;
    padding-left: 13rem;
  }

  .table-common.type-02 td {
    padding-left: 17rem !important;
  }


  .table-common.basic-02 td:before {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    content: attr(data-title);
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .table-common .txt-overflow {
    width: 100%;
  }
  .table-common tr {
    padding: 1.5rem 0;
  }
}

/*============ END OF table basic-02 ===========*/
/**===============================================
 *!             table 콘텐츠 : type-01
 *==============================================**/
.table-common.con-01 td:not(:last-child),
.table-common.con-01 th:not(:last-child) {
  border-right: 1px solid var(--bd-basic);
}

/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .table-common.con-01 thead {
    border-bottom: 1px solid var(--bd-basic);
  }
}
/*======== END OF table 콘텐츠 : type-01 ========*/
/**============================================
 *!         표 : 스크롤 처리(th - 고정X)
 *=============================================**/
.table-common.scroll-x-01 {
  min-width: 700px;
}
.table-common.scroll-x-01 tr:not(:last-child) th {
  border-bottom: 1px solid var(--bd-basic);
}

@media screen and (max-width: 768px) {
  .table-scroll {
    overflow-x: auto;
  }
  .table-common.scroll-x-01 tr {
    position: relative;
  }
}
/*====== END OF 표 : 스크롤 처리(th - 고정X) =====*/
/**============================================
 *!         표 : 스크롤 처리(th - 고정O)
 *=============================================**/
/* 세로 th 고정 */
.tb-th-fixed {
  overflow: auto;
  border-top: 2px solid var(--main) !important;
}
.tb-th-fixed .table-common {
  border-top: initial !important;
  border-collapse: collapse;
}
.tb-th-fixed .table-common.basic-02 {
  margin-top: 0;
}
.tb-th-fixed thead {
  position: sticky;
  top: 0;
}

/* 가로 th 고정 */
.tb-th-fixed.hori {
  overflow: auto; /* 가로 + 세로 스크롤 허용 */
  position: relative;
  width: 100%;
  max-height: 300px; /* 세로 스크롤 발생 */
}
.tb-th-fixed.hori .table-common {
  width: max-content; /* 내용에 따라 가로 스크롤 */
  min-width: 100%;
  border-collapse: collapse;
}
.tb-th-fixed.hori .table-common th,
.tb-th-fixed.hori .table-common td {
  white-space: nowrap; /* 줄바꿈 방지 → 가로 너비 증가 */
}
.tb-th-fixed.hori .table-common thead th {
  position: sticky;
  top: 0;
  z-index: 3;
}
.tb-th-fixed.hori .table-common tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}

/* 가로, 세로 모두 스크롤 - 가로는 고정 */
.tb-th-scroll.fixed-hori {
  overflow: auto; /* 가로 + 세로 스크롤 모두 가능 */
  position: relative;
  width: 100%;
  border-top: 2px solid var(--main);
  max-height: 300px; /* 세로 스크롤 */
}
.tb-th-scroll.fixed-hori .table-common {
  width: 200rem; /* 표 너비 자동 확장 */
  border-top: 0;
  min-width: 100%; /* 최소 너비 확보 */
  border-collapse: collapse;
}
.tb-th-scroll.fixed-hori .table-common th,
.tb-th-scroll.fixed-hori .table-common td {
  background: #fff;
  white-space: nowrap; /* 줄바꿈 방지 → 가로 길어짐 */
}
.tb-th-scroll.fixed-hori .table-common tbody th,
.tb-th-scroll.fixed-hori .table-common tbody td {
  border-top: 0;
  border-bottom: 1px solid var(--bd-basic);
}
.tb-th-scroll.fixed-hori .table-common thead th {
  position: relative;
  position: sticky;
  top: 0;
  z-index: 3;
  border-top: 0;
  border-bottom: 0;
  background-color: var(--box-basic) !important;
  /* 교차 셀 (좌측+상단 모두 고정된 셀) */
}
.tb-th-scroll.fixed-hori .table-common thead th:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--bd-basic);
}
.tb-th-scroll.fixed-hori .table-common thead th:first-child {
  left: 0;
  z-index: 4;
}
.tb-th-scroll.fixed-hori .table-common tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}
.tb-th-scroll.fixed-hori .table-common tbody td:nth-child(2) {
  position: sticky;
  left: 20rem;
  z-index: 2;
  border-bottom: 1px solid var(--bd-basic);
}

/* width(PC 1400px 기준) => xxl */
@media (max-width: 1400px) {
  .tb-th-fixed {
    height: auto !important;
    border-top: 0;
  }
  .tb-th-fixed .table-common {
    border-top: initial !important;
    border-collapse: inherit;
  }
  .tb-th-fixed .table-common.basic-02 {
    margin-top: 0;
  }
  .tb-th-fixed .mCSB_inside > .mCSB_container {
    margin-right: 0 !important;
  }
  .tb-th-fixed thead {
    position: static;
    top: auto;
  }
  .tb-th-fixed.hori {
    position: relative;
    width: auto;
    max-height: initial; /* 세로 스크롤 발생 */
  }
  .tb-th-fixed.hori .table-common {
    width: auto; /* 내용에 따라 가로 스크롤 */
    border-collapse: inherit;
  }
  .tb-th-fixed.hori .table-common th,
  .tb-th-fixed.hori .table-common td {
    white-space: initial; /* 줄바꿈 방지 → 가로 너비 증가 */
  }
  .tb-th-fixed.hori .table-common thead th {
    position: static;
    top: auto;
    z-index: auto;
  }
  .tb-th-fixed.hori .table-common tbody th {
    position: static;
    left: auto;
    z-index: auto;
  }
}
/*===== END OF 표 : 스크롤 처리(th - 고정O) =====*/
/**========================================================================
 *!                           table-common type-02
 *========================================================================**/
.table-common.type-02 th,
.table-common.type-02 td {
  border: 1px solid var(--bd-basic);
}
.table-common.type-02 th {
  color: #333;
  background-color: var(--bg-basic);
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .table-common.type-02 {
    border-top: 1px solid var(--bd-basic);
    border-right: 0;
    border-bottom: 1px solid var(--bd-basic);
    border-left: 0;
  }
  .table-common.type-02 th,
  .table-common.type-02 td {
    border: 0;
  }
  .table-common.type-02 th {
    color: #333;
    background-color: var(--bg-basic);
  }
}
/*====================== END OF table-common type-02 ======================*/
/**========================================================================
 *!                          SKIP(건너뛰기 - btn)
 *========================================================================**/
#skip {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -4rem;
  z-index: 9999;
  width: 100%;
  height: 4rem;
  background-color: #ededed;
}
#skip ul {
  display: flex;
  align-items: center;
  gap: 4rem;
}
#skip li:not(:last-child) {
  position: relative;
}
#skip li:not(:last-child):after {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 1px;
  height: calc(100% - 0.5rem);
  margin-left: 2rem;
  content: "";
  transform: translateY(-50%);
  background-color: var(--bd-basic2);
}
#skip li a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fc-main);
}
#skip li a:hover {
  color: var(--main);
}

/*======================= END OF SKIP(건너뛰기 - btn) ======================*/
/**========================================================================
 *!                                 HEADER
 *========================================================================**/
header {
  background-color: #fff;
  border-bottom: 1px solid var(--bd-basic);
}
header > div > .inner {
  margin: 0 10rem;
}
header .header__util .header__util__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
header .header__util .header__util__wrap  > div,
header .header__util .header__util__wrap ul,
header .header__util .header__util__wrap li {
  display: flex;
  align-items: center;
  position: relative;
}
.header__util__wrap > div a,
.header__util__wrap ul a,
header .header__util .header__util__wrap ul span {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--basic);
}
.header__util__select {
  display:none;
}
.header__util__l {
  gap: 2rem;
}
.header__util__l > div  a {
  position: relative;
  padding-right: 1rem;
}
.header__util__l > div a:after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  content: "";
  background-color: var(--basic);
}
.header__util__l > div.on a {
  font-weight: 600;
  color: #333;
}
.header__util__l > div.on a:after {
  background-color: var(--main);
}
header .header__util .header__util__r {
  gap: 1rem;
}

header .header__util .header__util__r a {
  padding: .6rem;
  background: #f8f8f8;
  border-radius: .4rem;
}

header .header__util .header__util__r button {
  position: relative;
}
header .header__util .header__util__r button {
  background: var(--bg-sub);
  border-radius: .4rem;
}
header .header__util .header__util__r .btn--zoom-in,
header .header__util .header__util__r .btn--zoom-out,
header .header__util .header__util__r .btn--reset {
  width: 3rem;
  height: 3rem;
  font-size: 1.7rem;
}

header h1 a {
  display: inline-block;
}
header h1 a img {
  height: 4rem;
}
header .header__gnb {
  display: flex;
  align-items: center;
  height: 10rem;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header__gnb__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
header .header__gnb__menu > .item {

}
header .header__gnb__menu > .item.active h2.depth1 {
  border-radius: 2rem;
  background-color: #fff;
}
header .header__gnb__menu > .item.active h2.depth1 > a {
  position: relative;
}
header .header__gnb__menu > .item.active h2.depth1 > a:before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  content: "";
  background-color: var(--main);
}
header .header__gnb__menu > .item.active .depth2__box {
  display: flex;

}
header .header__gnb__menu > .item.active .depth2__box > .inner {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 0.4rem 1.2rem;
}
header .header__gnb__menu > .item.active .detph3__box h4 > a {
  font-size: 1.6rem;
}
header .header__gnb__menu h2.depth1 > a {
  display: flex;
  align-items: center;
  height: 4rem;
  padding: 0 3rem;
  border-radius: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: #111;
}
header .header__gnb__menu .depth2__box {
  display: none;
  position: absolute;
  top: 14rem; /* util + gnb 높이에 맞게 조정 */
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 42rem;
  padding: 6rem 10rem;
  background: #fff url(../images/common/img_depth2.png) no-repeat left bottom;
  box-shadow: 0 1.2rem 2rem rgba(0, 0, 0, 0.08);
}
/* 좌측 대메뉴 안내 */
.gnb-depth2-info {
  flex: 0 0 28rem;
  padding: 0 4rem 0 0;
  background: transparent;
}

.gnb-depth2-info strong {
  display: block;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.gnb-depth2-info p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444;
}




header .header__gnb__menu .depth2__box::before {

}
header .header__gnb__menu .depth2__box > .inner {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  box-shadow: none !important;
}

/* 2차 메뉴 박스 */
header .header__gnb__menu .depth2__box > .inner > li {
  min-height: 7.6rem;
}

header .header__gnb__menu h3.depth2 > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 6rem;
  padding: 0 3rem;
  border-radius: 1rem;
  background: #f1f3f7;
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
}

/* hover / active */
header .header__gnb__menu .depth2__box > .inner > li:hover h3.depth2 > a {
  background: #151c55;
  color: #fff;
}


/* 3차 메뉴 */
header .header__gnb__menu .depth3__box {
  margin-top: 2rem;
  padding-left: 1.2rem;
}

header .header__gnb__menu .depth3__box li + li {
  margin-top: 1rem;
}

header .header__gnb__menu .depth3__box a {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.8rem;
  color: #333;
  display: flex;
  align-items: center;
  gap:5px;
}
header .header__gnb__menu .depth3__box a[target="_blank"]::after {
  content:"";
  display: block;
  width:1.6rem;
  height:1.6rem;
  background:url(../images/common/icn_go_new.svg) no-repeat center center / contain;
}

header .header__gnb__menu .depth3__box a::before {
  content: "";
  background: #18204E;
  transform: rotate(45deg);
  display:inline-block;
  width:0.6rem;
  height:0.6rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
header .header__gnb__menu .depth3__box a:hover{
  color:#3A2DB3;
  font-weight:bold;
  text-decoration:underline;
}
/*
header .header__gnb__menu .depth3__box h4 a:before {
  content: "";
  background: #18204E;
  transform: rotate(45deg);
  display:inline-block;
  width:0.6rem;
  height:0.6rem;
}*/
header .header__gnb__r {
  display: flex;
  gap: 1rem;
}
header .header__gnb__r li a {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  border-radius: 2.2rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 4.4rem;
  /*gap: 0.6rem;*/
}
header .header__gnb__r li a i {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

header .header__gnb__r .mypage__link,
header .header__gnb__r .join__link,
header .header__gnb__r .popup__link,
header .header__gnb__r .sitemap__link,
header .header__gnb__r .help_center__link {
  color: #fff;
}
/*header .header__gnb__r .login__link i {
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../images/common/login_i.svg);
}*/
header .header__gnb__r .login__link a {
  background-color: #fdc00f;
}

/*header .header__gnb__r .mypage__link i {
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../images/common/mypage_i.svg);
}*/
header .header__gnb__r .mypage__link a {
  background-color: #ef4222;
}

/*header .header__gnb__r .logout__link i {
    width: 1.3rem;
    height: 1.5rem;
    background-image: url(../images/common/logout_i.svg);
}*/

header .header__gnb__r .logout__link a {
  background-color: #fdc00f;
}
/*header .header__gnb__r .join__link i {
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../images/common/join_i.svg);
}*/
header .header__gnb__r .join__link a {
  background-color: var(--main);
}

/*header .header__gnb__r .popup__link i {
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../images/common/popup_i.svg);
}*/
header .header__gnb__r .popup__link a {
  background-color: #1E2939;
}

/*header .header__gnb__r .sitemap__link i {
  width: 1.3rem;
  height: 1.5rem;
  background-image: url(../images/common/sitemap_i.svg);
}*/
header .header__gnb__r .sitemap__link a {
  background-color: var(--btn-basic);
}

header .header__gnb__r .help_center__link a {
  border: 2px solid var(--btn-basic);
  color: var(--btn-basic);
}

#btnMoMenu,
.btn--close-menu {
  display: none;
}

header .btn--close-menu {
  position: absolute;
  right: 5rem;
}
header .btn--close-menu button {
  display: block;
}

#btnMoMenu,
.btn--close-menu button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--btn-basic);
}

#btnMoMenu:before {
  position: static;
  width: 1.4rem;
  height: 1.2rem;
  background-image: url("../images/common/sitemap_i.svg");
}
@media (max-width: 1920px) {
  header .header__gnb__menu {
    gap: 1rem;
  }
  header .header__gnb__menu h2.depth1 > a {
    padding:0 1.5rem;
  }
  header .header__gnb__menu .depth2__box > .inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* width(데스크탑 1600px 기준) => xxxl */
@media (max-width: 1600px) {
  header > div > .inner {
    margin: 0 5rem;
  }


}
/* width(PC 1400px 기준) => xxl */
@media (max-width: 1400px) {
  header > div > .inner {
    margin: 0 3rem;
  }
  header .header__gnb {
    height: 8rem;
  }
  header .header__gnb__menu h2.depth1 a {
    font-size: 1.7rem;
  }
  header .header__gnb__r li a {
    font-size: 1.5rem;
  }
  header .header__gnb__r li a i {
    display: none;
  }
}

/* width(노트북 1200px 기준) => xl */
@media (max-width: 1400px) {

  #btnMoMenu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header__gnb .header__gnb__menu,
  header .header__gnb .header__gnb__r,
  header .header__util .header__util__wrap .header__util__r {
    display: none;
  }

  .header__gnb.active .header__util__l {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    margin-top: 0;
    background-color: #ededed;
    z-index: 1000;
  }

  .header__util__l li::after {
    content: "";
    position: absolute;
    right: 2rem;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url('../images/common/external-link--i.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .header__gnb.active ul.header__util__l  {
    align-items: flex-start;
  }

  .header__util__l li a {
    font-size: 1.7rem;
    line-height: 1;
    color: var(--basic);
  }

  .header__util__l.mo-hide {
    display:none;
  }

  header .header__gnb__menu > .item {
    position: static;
  }
  header .header__gnb__menu > .item .depth3__box {
    display: none;
  }
  header .header__gnb.active .btn--close-menu {
    display: block;
  }
  header .header__gnb.active .header__gnb__r {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 5rem;
    background: var(--bg-sub);
    height: 8rem;
    align-items: center;
  }
  header .header__gnb.active .header__gnb__r li.login__link i {
    margin-top: -0.4rem;
  }
  header .header__gnb.active .header__gnb__r li.join__link {
    display: none;
  }

  header .header__gnb.active .header__gnb__r li.popup__link {
    display: none;
  }

  /*header .header__gnb.active .header__gnb__r li.popup__link {*/
  /*  padding: 0;*/
  /*  background: none;*/

  /*}*/

  header .header__gnb.active .header__gnb__r li.sitemap__link i {
    width: 1.4rem;
    height: 1.2rem;
    margin-top: -0.2rem;
    background-image: url("../images/common/sitemap_i.png");
  }
  header .header__gnb.active .header__gnb__r li a {
    line-height: 4rem;
  }
  header .header__gnb.active .header__gnb__r li a i {
    display: block;
  }
  header .header__gnb.active .header__gnb__r li:not(:last-child) a {
    font-size: 1.7rem;
    color: var(--fc-main);
    background-color: initial;
  }
  header .header__gnb.active .header__gnb .depth2__box {
    left: auto;
    width: 100%;
    margin-top: auto;
    background-color: #fff;
  }
  header .header__gnb.active .header__gnb__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
    height: 100%;
    padding: 10rem 0 0 0;
    border-radius: 0;
    background-color: var(--bg-sub);
  }



  header .header__gnb.active .header__gnb__menu > .item.active h2.depth1 {
    position: absolute;
    width: 100%;
    background-color: var(--main);
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
  }
  header .header__gnb.active .header__gnb__menu > .item.active h2.depth1 > a {
    color: #fff;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box {
    position: absolute;
    top: 8rem;
    right: 0;
    left: auto;
    z-index: -1;
    width: 60%;
    height: calc(100% - 16px);
    margin-top: 0;
    padding: 3rem;
    box-shadow: none;
    border-top-left-radius: 3rem;
    background: #fff;
    overflow-y: auto;
    padding-right: 1rem;
  }



  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box > .inner {
    padding: 0;
    box-shadow: initial;
    background: transparent;
    gap: 2rem;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box > .inner > li h3 {
    text-align: left;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box > .inner > li:not(:first-child) {
    padding-top: 0;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box h3.depth2 a {
    font-size: var(--fs-sm);
    padding: 0 1.2rem;
  }
  /* 우측 아이콘 느낌 */
  header .header__gnb__menu .depth2__box > .inner > li:has(.depth3__box)  h3.depth2 > a::after {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: .4rem;
    background: #fff url(../images/common/icn_depth2_arr.svg) no-repeat center center / 8px;
    color: #999;
    font-size: 1.4rem;
  }

  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box h3.depth2.have-depth3 {
    position: relative;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box h3.depth2.have-depth3:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1rem;
    height: 1rem;
    background: url("../images/common/arrow_b_icon.png") center/contain no-repeat;
    content: "";
    transform: translateY(-50%) rotate(0);
    display:none;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth2__box h3.depth2.have-depth3.active:after {
    transform: translateY(-50%) rotate(180deg);
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth3__box {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 0.8rem;
    background-color: var(--bg-sub);
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth3__box.active {
    display: block;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth3__box > .inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth3__box > .inner h4 a {
    display: flex;
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--basic);
    gap: 1rem;
  }
  header .header__gnb.active .header__gnb__menu > .item.active .depth3__box > .inner h4 a:before {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    content: "";
    background-color: var(--main);
  }
  header .header__gnb.active .header__gnb__menu h2.depth1 {
    z-index: 999;
    height: auto;
    font-size: 2.4rem;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  header .header__gnb.active .header__gnb__menu h2.depth1 a {
    height: 6.7rem;
    padding: 1.2rem 5rem;
    font-size: 2.4rem;
  }
  header .header__gnb.active .header__gnb__menu h2.depth1 a:before {
    display: none;
  }
  header .header__gnb.active nav > ul {
    align-items: initial;
    position: fixed;
    z-index: 9999;
  }
  header .header__gnb .header__gnb__menu h2.depth1 a {
    border-top: 0;
    border-bottom: 0;
  }
  header .header__gnb .header__gnb__menu .item.active h2.depth1 a {
    border-top: 0;
  }
  header .header__gnb .header__gnb__menu .item:last-child h2.depth1 a {
    border-bottom: 0;
  }
  header .header__gnb.active .header__gnb__menu > .item.active h2.depth1 {
    position: static;
  }
  header .header__gnb__menu > .item {
    width: calc(40% + 1rem);
  }


  /* PC 링크 메뉴 숨김 */
  .header__gnb.active .header__util__l > div:not(.header__util__select) {
    display:none;
  }

  /* 모바일 셀렉트 표시 */
  .header__util__select {
    position: relative;
    display: block;
    width: 100%;
  }
  .header__util__select select {
    width: 100%;
    height: 4.4rem;
    padding: 0 4.5rem 0 1.6rem;
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .header__util__select select:focus-visible {
    border-color: var(--main);
    outline: 2px solid var(--main);
    outline-offset: 2px;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  header .header__gnb.active .header__gnb__r {
    padding: 0 3rem;
  }
  header .btn--close-menu {
    right: 3rem;
  }
  header .header__gnb.active .header__gnb__menu h2.depth1 a {
    padding: 1.2rem 3rem;
  }
  header .header__util .header__util__wrap {
    display: none;
  }
}

@media (max-width: 1400px) and (orientation: landscape) {
  header .header__gnb__menu > .item.active .depth2__box {
    flex-direction: column;
  }

  header .header__gnb.active .header__gnb__menu {
    overflow-y: auto;
  }
}
/*============================ END OF HEADER ============================*/
/**========================================================================
 *!                              Quick Menu
 *========================================================================**/


#quickMenu {
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 7.7rem;
  transform: translateY(-50%);
}

#quickMenu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#quickMenu .top__btn,
#quickMenu button,
#quickMenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;

}
#quickMenu .top__btn {
}
#quickMenu li:first-child a {
  color:#fff;
  background:#343639;
}
#quickMenu li:nth-child(2) a {
  background:#f8f8f8;
}



#quickMenu li a .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

#quickMenu li a i,.quickMenu_inner button i {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}

#quickMenu li a span {
  font-size: 1.5rem;
  font-weight: 600;
}

.quickMenu_inner .quickList {
  padding-bottom: 2rem;
}

/* 스크롤 위치에 해당하는 퀵메뉴 항목 강조: active=어두운색, 비active=밝은색 (서로 색 전환) */
#quickMenu .quickList li a {
  background: #f8f8f8;
  color: #111;
}
#quickMenu .quickList li.on a {
  background: #343639;
  color: #fff;
}

#quickMenu ul.off {
  display: none;
}

.quickMenu_inner .quick-btn-more {
  border:1px solid #EAEAEA;
  background: #fff;
}

.quickMenu_inner {
  margin: 0 auto 1rem auto;
}

.quickMenu_inner .quick-btn-more i {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../images/common/close-large-line.svg");
}

.quickMenu_inner .quick-btn-more.close i {
  width: 2.4rem;
  height: 2.1rem;
  background-image: url("../images/common/quick-btn-off--i.svg");
}

#quickMenu .top__btn {
  position: relative;
  display: flex;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto;
}

#topBtn {
  width: 100%;
  height: 100%;
}
#topBtn:before, #topBtn:after {
  display: inline-block;
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
#topBtn:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
  background-image: url("../images/common/top_btn_txt.png");
}
#topBtn:after {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../images/common/arrow02_b_icon.png");
}

body.sub #quickMenu ul,
body.sub #quickMenu .quick-btn-more{
  display:none;
}


/* width(대형모니터 1800px 기준) */
@media (max-width: 1800px) {
  #quickMenu {
    right: 2rem;
  }
  #quickMenu li a,
  #quickMenu li button,
  #quickMenu .top__btn {
    width: 8.5rem;
    height: 8.5rem;
  }
  #quickMenu li.event__link a i {
    width: 6.4rem;
    height: 4rem;
  }
  #quickMenu li.chatbot__link a i {
    width: 4rem;
    height: 4rem;
  }
}
/* width(데스크탑 1600px 기준) => xxxl */
@media (max-width: 1600px) {
  #quickMenu {
    right: 1rem;
    bottom: -12rem;
    top: unset;
  }
  #quickMenu li a,
  #quickMenu button,
  #quickMenu .top__btn {
    width: 8.5rem;
    height: 8.5rem;
  }
  #quickMenu li a .inner {
    gap: 0.5rem;
  }
  #quickMenu li a span {
    font-size: 1.5rem;
  }
  #quickMenu li.event__link a i {
    width: 5.9rem;
    height: 3.5rem;
  }
  #quickMenu li.chatbot__link a i {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media (max-width: 1024px) {
  #quickMenu {
    right: 1rem;
    bottom: 6rem;
    top: unset;
    transform: none;
  }

  #quickMenu li a,
  #quickMenu button,
  #quickMenu .top__btn {
    width: 6rem;
    height: 6rem;
  }

}

/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  #quickMenu li.event__link {
    display: none;
  }
}
/*=========================== END OF Quick Menu ===========================*/
/**========================================================================
 *!                                 FOOTER
 *========================================================================**/
footer {
  margin-top: 6rem;
  color: var(--fc-main);
  background-color: #f8f8f8;
}
footer .footer-logo {
  font-size: 2.8rem;
  font-weight: 600;
  gap: 1rem;
}
footer .footer-logo span:nth-child(1) {
  position: relative;
  padding-right: 1rem;
}
footer .footer-logo span:nth-child(1):after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3rem;
  height: calc(100% - 0.8rem);
  content: "";
  transform: translateY(-50%);
  background-color: var(--fc-main);
}
footer .footer-logo span:nth-child(2) {
  margin-left: 1rem;
}
footer .footer__family {
  width:100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 6rem;
}
footer .footer__top {
  padding: 4rem 0 3rem;
}
footer .footer__top .container {
  display: flex;
  justify-content: space-between;
}
footer .footer__top address {
  font-size: var(--fs-sm);
  color: var(--fc-main);
}
footer .footer__top address,
footer .footer__top address a {
  margin-top: 1.5rem;
}
footer .footer__top .contact__info {
  display: flex;
  padding-top: 1.5rem;
  gap: 2rem;
}
footer .footer__top .contact__info li:not(:first-child) {
  position: relative;
  padding-left: 2rem;
}
footer .footer__top .contact__info li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 0.6rem);
  content: "";
  transform: translateY(-50%);
  background-color: var(--bd-basic);
}
footer .footer__top .contact__info li b {
  font-weight: 600;
}
footer .footer__btm {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--bd-basic);
}
footer .footer__btm a,
footer .footer__btm span {
  font-size: var(--fs-sm);
}
footer .footer__btm ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
footer .footer__btm ul li a {
  font-weight: 600;
}
footer .footer__btm ul li a strong {
  color: var(--main);
}

.footer__r__wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
}

.footer__r .walogo {
  display: block;
  width: 120px;
}
.footer__r ul  {
  display:flex;
  gap:1rem;
}
.footer__r ul li a {
  display:block;
}
.footer__r li .icn_sns{
  display:block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: url(../images/main/icn_sns_insta.png) 0 0 no-repeat;
  background-size: cover;
  transition: all .3s;
}
.footer__r ul li .icn_blog{background-image: url(../images/main/icn_sns_blog.png);}
.footer__r ul li .icn_youtube{background-image: url(../images/main/icn_sns_youtube.png);}
.footer__r ul li .icn_facebook{background-image: url(../images/main/icn_sns_facebook.png);}
.footer__r ul li .icn_kakaoch{background-image: url(../images/main/icn_sns_kakaosch.png);}






footer .footer__family .family__wrap[hidden] {
  display: none;
}

footer .footer__family .family-box.active .family__wrap {
  display: block;
  visibility: visible;
  opacity: 1;
}
footer .footer__family .family-box.active i:after {
  transform: rotate(180deg);
}
footer .footer__family .family__wrap {
  visibility: hidden;
  position: relative;
  opacity: 0;
  transition: 0.3s;
}
footer .footer__family .family__wrap .inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 6rem;
  z-index:1;
}
footer .footer__family .family__wrap .inner ul {
  padding: 1rem 0;
  border-radius: 1rem;
  background-color: #fff;
  height: 30rem;
  overflow-y: scroll;

}
footer .footer__family .family__wrap .inner ul li {

  padding: 1.2rem 3.8rem;
}
footer .footer__family .family__wrap .inner ul li + li {
  border-top:1px solid #ddd;
}
footer .footer__family .family__wrap .inner ul li a {
  font-family: var(--k-ff1);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fc-main);
  display:flex;
  align-items: center;
  gap: 5px;
}
footer .footer__family .family__wrap .inner ul li a:hover {
  color: var(--main);
}
footer .footer__family .family__wrap .inner ul li a[target="_blank"]::after {
  content:"";
  display: block;
  width:1.6rem;
  height:1.6rem;
  background:url(../images/common/icn_go_new.svg) no-repeat center center / contain;
}
footer .footer__family .btn--family {
  display: block;
  width: 100%;
  border-radius: 1rem;
  font-size: 1.7rem;
  line-height: 6rem;
  background-color: #f0f0f0;
}
footer .footer__family .btn--family p {
  display: flex;
  justify-content: space-between;
  padding: 0 3.8rem;
}
footer .footer__family .btn--family i {
  display: flex;
  align-items: center;
  position: relative;
}
footer .footer__family .btn--family i:after {
  display: inline-block;
  position: absolute;
  width: 1rem;
  height: 1.6rem;
  background: url("../images/common/family_btn_arrow.svg") center/contain no-repeat;
  content: "";
  transition: transform 0.3s;
}

/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  footer .footer__family {
    padding-top:3rem;
    grid-template-columns: repeat(1, 1fr);
    gap:10px;
  }
  footer .footer__top .container {
    flex-direction: column;
    padding: 0;
    gap: 3rem;
  }
  footer .footer-logo {
    font-size: 2.4rem;
  }
  footer .footer__r > div {
    width: auto;
  }
  footer .footer__btm {
    flex-direction: column;
    gap: 2rem;
  }
}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  footer .footer__top .contact__info {
    flex-direction: column;
    gap: 0.5rem;
  }
  footer .footer__top .contact__info li:not(:first-child) {
    padding-left: 0;
  }
  footer .footer__top .contact__info li:not(:first-child):before {
    display: none;
  }
}
/*============================ END OF FOOTER ============================*/
/*
 * 아코디언(공통)
 */
.accordion-body {
  display: none;
}

.inner-accordion-header {
  cursor: pointer;
}

.inner-accordion-body {
  display: none;
}

/**========================================================================
 *!                                LNB
 *========================================================================**/
/*
 * LNB
 */
#lnb {
  width: 100%;
  width: 26rem;
}
#lnb .lnb {
  position: relative;
}
#lnb .accordion .item.active .depth2 .inner-accordion-header a {
  height: auto;
}

.lnb__tit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18rem;
  margin-bottom: 1rem;
  border-radius: 2rem;
  background: var(--main);
}
.lnb__tit h2 {
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.2rem;
  color: #fff;
}

/* 아코디언 */
.lnb__menu__list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 1rem;
}
.lnb__menu__list li.item:hover {
  cursor: pointer;
}
.lnb__menu__list li.item.active .depth1 > a {
  color: #fff;
  background-color: var(--point2);
}
.lnb__menu__list li.item.active .depth1 > a .arrow--i::before {
  transform: rotate(180deg);
  filter: initial;
}
.lnb__menu__list li.item .depth1 > a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 6rem;
  padding: 0 6rem 0 2rem;
  border-radius: 1.2rem;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
  background-color: var(--bg-basic);
}
.lnb__menu__list li.item .depth1 > a::after{
  content: "\ea13";
  display: flex;
  width: 30px;
  height: 30px;
  position: absolute;
  right:2rem;
  top:50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.05);
  border-radius:100%;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: 'remixicon' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.lnb__menu__list li.item:has(.accordion-body)   .depth1 > a::after{
  background: rgba(255, 255, 255, 0.1);
}

.lnb__menu__list li.item .depth1 > a .arrow--i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 3rem;
  width: 2rem;
  height: 2rem;
  border-top: 0;
  border-right: 0;
  border-radius: 0.4rem;
  background-color: #fff;
  transform: rotate(0);
}
.lnb__menu__list li.item .depth1 > a .arrow--i:before {
  width: 1.2rem;
  height: 0.7rem;
  transition: 0.3s;
  background-image: url("../images/common/arrow_i.png");
  filter: invert(39%) sepia(1%) saturate(0%) hue-rotate(168deg) brightness(98%) contrast(88%);
}
.lnb__menu__list li.item .depth1 > a:hover {
  font-weight:700;
}
.lnb__menu__list li.item.active ul.depth2 {
  display: block;
  margin-top: -1px;
  padding: 2rem 1.5rem;
  border-radius: 0 0 0.7rem 0.7rem;
}
.lnb__menu__list li.item.active ul.depth2:hover {
  cursor: default;
}
.lnb__menu__list li.item.active ul.depth2 > li:not(:last-child) {
  margin-bottom: 2rem;
}
.lnb__menu__list li.item.active ul.depth2 > li.active h4 a {
  font-weight: 700;
  color: var(--main);
}
.lnb__menu__list li.item.active ul.depth2 h4 a {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.7rem;
  font-weight: 500;
}
.lnb__menu__list li.item.active ul.depth2 h4 a:hover {
  text-decoration: underline;
}
.lnb__menu__list li.item.active ul.depth2 > li.active h4 a[target="_blank"] {
  color:inherit;
  font-weight: 400;
}
.lnb__menu__list li.item.active ul.depth2 h4 a[target="_blank"]::after {
  content:"";
  display: block;
  width:1.6rem;
  height:1.6rem;
  background:url(../images/common/icn_go_new.svg) no-repeat center center / contain;
}


/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  #lnb {
    display: none;
  }

}
/*============================= END OF LNB =============================*/
/**========================================================================
 *!                          서브 페이지(공통)
 *========================================================================**/
/*
 * 서브 비주얼
 */
.sub-vi {
  position: relative;
  width: 100%;
}

.sub-vi__box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28rem;
  margin: 0;
  border-radius: 0;
  background: var(--bg-sub-vi);
}

.sub-vi__box h2.page__tit,
.sub-vi__box .navi__wrap {
  margin-left: 26rem;
}

.sub-vi__box h2.page__tit,
.contents-header h2.page__tit{
  position: relative;
  padding-right: 2.6rem;
  font-family: var(--k-ff1);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--fc-bold);
}
.contents-header h2.page__tit span {
  position: relative;
  padding-right: 2.6rem;
}
/*
.sub-vi__box h2.page__tit:after,
.contents-header h2.page__tit span:after{
  display: inline-block;
  position: absolute;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: -0.3rem;
  border-radius: 50%;
  content: "";
  background-color: var(--main);
}
*/
.sub-vi__btn {
  position: absolute;
  right: 0;
  bottom: 2rem;
  margin-top: -2rem;
  width: max-content;
  padding: 0;
}
.sub-vi__btn .inner {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.sub-vi__btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50% !important;
  box-sizing: border-box;
  background-color: #f8f8f8;
}
.sub-vi__btn button:before {
  width: 2rem;
  height: 2rem;
}
.sub-vi__btn button.btn--print:before {
  background-image: url("../images/common/print_i.svg");
}
.sub-vi__btn button.btn--share:before {
  background-image: url("../images/common/share_i.svg");
}
.conArea-wrap {
  width: calc(100% - 26rem - 6rem);
}
.contents-header {
  position: relative;
  padding-top: 1rem;border-bottom: 1px solid var(--bd-basic);padding-bottom: 3rem;}


@media (max-width: 1024px) {
  .sub-vi__btn button.btn--print {
    display:none;
  }
  .contents-header h2.page__tit span {
    font-size:2.6rem
  }
}


/*
 * 서브페이지(콘텐츠 영역)
 */
.sub__con {
  min-height: 70rem;
}

.container.sub__con {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  margin-top: 3rem;
}

.sub-con__area {
  display: flex;
  align-content: flex-end;
  width: 100%;
  margin-top: 3rem;
  flex-direction: column;
}
.sub-con__area .contents__wrap {

  height: 100%;
}
.sub-con__area .con__wrap > div:not(:first-child) {
  margin-top: 3rem;
}

.sub-vi__box {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.navi__wrap {
  position: relative;
  width: 100%;
  max-width: 134rem;
  margin-bottom: 3rem;
}
.navi__wrap .navi__inner {
  display: flex;
}
.navi__wrap .navi__inner ul.accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.navi__wrap .navi__inner ul.accordion > li {
  display: flex;
  align-items: center;
  line-height: 1;
}
.navi__wrap .navi__inner .accordion-body {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: calc(100% + 7rem);
  margin-top: 3rem;
  padding: 1rem 0;
  border-radius: 1rem;
  text-align: center;
  transform: translateX(-50%);
  background-color: #fff;
}
.navi__wrap .navi__list > li {
  position: relative;
}
.navi__wrap .navi__list > li.active > .depth1 a i.icon:before {
  transform: rotate(90deg);
}
.navi__wrap .navi__list > li > .depth1 {
  position: relative;
}
.navi__wrap .navi__list > li > .depth1:before {
  position: absolute;
  top: 50%;
  width: 0.7rem;
  height: 1.2rem;
  background: url("../images/common/arrow_i.svg") center/contain no-repeat;
  content: "";
  transform: translateY(-50%) rotate(180deg);
}
.navi__wrap .navi__list > li > .depth1 a {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  gap: 1rem;
}
.navi__wrap .navi__list > li > .depth1 a i.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f0f2f6;
}
.navi__wrap .navi__list > li > .depth1 a i.icon:before {
  width: 0.7rem;
  height: 1.2rem;
  transition: 0.3s;
  transform: rotate(270deg);
  background-image: url("../images/common/arrow_i.svg");
}
.navi__wrap .navi__list a {
  font-size: var(--fs-sm);
  color: var(--fc-main);
}
.navi__wrap .navi__list a:hover {
  text-decoration: underline;
}
.navi__wrap .navi__list .depth2.accordion-body {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.navi__wrap .navi__list .depth2.accordion-body a {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--basic);
}






/* 구분선 */
hr.con-hr {
  margin-bottom: 2rem;
  border: none;
  border-top: 1px solid #343639;
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {

  .container.sub__con {
    width: 100%;
  }

  .sub__con {
    min-height: auto;
    width: 100%;
  }
  .conArea-wrap {
    width:100%;
  }
  .sub-con__area .contents__wrap {
    width: 100%;
  }
  .sub-vi__box h2.page__tit,
  .sub-vi__box .navi__wrap {
    margin-left: 0;
  }
  .sub-vi__btn .inner {
    right: 3rem;
  }
  .sub-vi__btn .inner {
  }
  .sub-vi__box {
    height: auto;
    padding: 6rem 0 14rem;
    gap: 3rem;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .sub-vi__box h2.page__tit {
    font-size: 3.5rem;
  }
  .sub-vi__box h2.page__tit:after {
    width: 1.4rem;
    height: 1.4rem;
  }

  .navi__wrap .navi__inner ul.accordion {
    width:100%;
  }
  .navi__wrap .navi__inner ul.accordion > li:not(:last-child) {
    display: none;
  }
  .navi__wrap .navi__inner ul.accordion > li {
    width:100%;
  }
  .navi__wrap .navi__list > li > .depth1 {
    width:100%;
  }
  .navi__wrap .navi__list > li > .depth1 a {
    width: 100%;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 1rem;
    padding:2rem;
    margin-left:0;
  }
  .navi__wrap .navi__list > li > .depth1:before {
    display:none;
  }
  .navi__wrap .navi__inner .accordion-body {
    width:100%;
    margin-top:6rem;
  }
}
/* width(모바일 375px 기준) => xs */
@media (max-width: 375px) {
  .sub-vi h2 {
    font-size: 3rem;
  }
}
/*========================= END OF 서브 페이지(공통) =========================*/
/**===========================================================================
 *!                               검색박스
 *==========================================================================**/
/*
  * 검색박스(공통)
  */
.board-sch {
  display: flex;
  width: 100%;
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.7rem;
  background-color: var(--bg-box);
  gap: 3rem;
}

.board-sch .board-sch__box {
  display: flex;
  gap: 1rem;
}
.board-sch .board-sch__box .sct-fs-m {
  font-size: var(--fs-xm);
  line-height: 1;
}
.board-sch .board-sch__box .item {
  /*height: 4.3rem;*/
}
.board-sch .board-sch__box .item select,
.board-sch .board-sch__box .item input {
  height: 100%;
  border: 0;
}
.board-sch .board-sch__box button.btn--sch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 4.3rem;
  height: 100%;
  border-radius: 0.6rem;
  background-color: var(--btn-basic);
}
.board-sch .board-sch__box button.btn--sch:before {
  width: 1.8rem;
  height: 1.8rem;
}

/*
 * 검색박스(type-01)
 */
.board-sch.type-01 {
  justify-content: center;
}
.board-sch.type-01 .board-sch__wrap.short .sch__input {
  min-width: 31.2rem;
}
.board-sch.type-01 .board-sch__wrap.short .sch__input input[type=text] {
  width: calc(100% - 4.3rem - 1rem);
}
.board-sch.type-01 .board-sch__wrap.long .board-sch__box .item select {
  width: 100%;
}
.board-sch.type-01 .board-sch__wrap.long .sch__input input[type=text] {
  min-width: 30rem;
}
.board-sch .sch__input {
  position: relative;
}
.board-sch .sch__input .btn--sch {
  top: 0;
  right: 0;
}

/*
 * 체크 박스 포함
 */
.board-sch.type-02 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.board-sch.type-02 .item {
  align-items: center;
}
.board-sch.type-02 .item fieldset {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.board-sch.type-02 .cate--tit {
  display: block;
  position: relative;
  width: 10rem;
  font-weight: 600;
  line-height: 1;
  color: var(--fc-main);
}
.board-sch.type-02 .schbox__wrap {
  display: flex;
  align-items: center;
}
.board-sch.type-02 .board-sch__box .sch__sct {
  display: flex;
  gap: 1rem;
}
.board-sch.type-02 .board-sch__box input[type=text],
.board-sch.type-02 .board-sch__box select {
  border-color: var(--point2);
}
.board-sch.type-02 .board-sch__box select {
  color: var(--point2);
  background-image: url("../images/common/arrow_b_icon.png");
}
.board-sch.type-02 .btn__list {
  margin-top: 0;
  padding-top: 3rem;
  border-top: 1px solid var(--bd-basic);
}
.board-sch.type-02 .btn__list button {
  width: auto;
  gap: 1rem;
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .board-sch.type-02 .item fieldset {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .board-sch.type-02 .board-sch__inner {
    width: 100%;
  }
  .board-sch.type-02 .board-sch__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 두 칸(50% + 50%) */
  }
  .board-sch.type-02 .board-sch__box .sch-item03 {
    grid-column: 1/-1; /* 전체(100%) 차지 */
  }
  .board-sch.type-02 .board-sch__box .sch-item03 input {
    width: 100%;
  }
  .board-sch.type-02 .board-sch__box select,
  .board-sch.type-02 .board-sch__box input {
    width: 100%;
  }
}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  .board-sch.type-02 .board-sch__box {
    display: flex;
    flex-direction: column;
  }
}
/*============================= END OF 검색박스 =============================*/
/**==========================================================================
 *!                                게시판(list)
 *==========================================================================**/
/*
 * list-type01(공통)
 */
.board-list .list-type01__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.board-list .list-type01__wrap li.item > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 1.2rem;
  border: 2px solid #efefef;
  gap: 0;
}

/*
 * page01-01 list-type01__wrap(공지사항)
 */
.page01-01.board-list .list-type01__wrap .badge-01.type-cate01 {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
  min-width:7rem;
}

.badge-01.type-cate01.type-02 {
  display: inline-flex;
}


.page01-01.board-list .list-type01__wrap li.item .item__tit {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.board-list .list-type01__wrap li.item .item__tit .i--box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}


.page01-01.board-list .list-type01__wrap li.item .item__tit .badge-01.badge-01.type-noti {
  display: flex;
  justify-content: center;
  padding: 0.6rem 0.8rem;
  /*min-width: 6rem;*/
  flex-shrink: 0;
  width: 100%;
  max-width: 7rem;
}

.page01-01.board-list .list-type01__wrap li.item .item__tit .page--num {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--basic);
  /*min-width: 6rem;*/
  background: #f0f0f0;
  padding: 0.6rem 0.8rem;
  border-radius: .6rem;
  line-height: 1;
  flex: 0 0 7rem;
  max-width: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page01-01.board-list .list-type01__wrap li.item .item__tit .tit {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: var(--fs-m);
  font-weight: 600;
  word-break: break-all;
  color: var(--fc-bold);
  gap: 2rem;
  padding-right: 2rem;
}
.page01-01.board-list .list-type01__wrap li.item .item__tit .tit .txt-clamp {
  font-size: var(--fs-sm);
  width: 100%;
  min-width: 0;
}
.page01-01.board-list .list-type01__wrap li.item .item__info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  flex: 0 0 20rem;
  min-width: 25rem;
  margin: 0;
  white-space: nowrap;
  font-size: var(--fs-sm);
  color: var(--basic);
}

/*
 * gall__type00__list(갤러리 리스트 공통)
 */
.board-list [class*=gall-type][class*=__list] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.board-list [class*=gall-type][class*=__list].grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.board-list [class*=gall-type][class*=__list] a {
  display: flex;
  border-radius: 2rem;
}

/*
 * gall__type01__list(갤러리 리스트)
 */
.board-list .gall-type01__list a {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.board-list .gall-type01__list a .thum__wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
.board-list .gall-type01__list a .thum__wrap .badge__box {
  position: absolute;
}

/* 메인, 이벤트(공통) */
.gall-type01__list .swiper-slide, .gall-type01__list > .item {
  flex-shrink: 0;
  overflow: hidden;
  height: 50rem;
  border-radius: 2rem;
}
.gall-type01__list .swiper-slide a, .gall-type01__list > .item a {
  display: inline-block;
  overflow: hidden;
  border-radius: 2rem;
}
.gall-type01__list .swiper-slide a img, .gall-type01__list > .item a img {
  transition: transform 0.5s ease;
}
.gall-type01__list .swiper-slide a:hover img, .gall-type01__list > .item a:hover img {
  transform: scale(1.1);
}
.gall-type01__list .swiper-slide a img, .gall-type01__list > .item a img {
  width: 100%;
  object-fit: cover;
}
.gall-type01__list .swiper-slide a .d-day__txt, .gall-type01__list > .item a .d-day__txt {
  display: none;
}
.gall-type01__list .txt__wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.gall-type01__list .txt__wrap > .inner {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.gall-type01__list .txt__wrap > .inner > div,
.gall-type01__list .txt__wrap > .inner .d-day__txt {
  position: absolute;
}
.gall-type01__list .txt__wrap .txt__box {
  bottom: 0rem;
  width: 100%;
  color: var(--fc-main);
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.gall-type01__list .txt__wrap .txt__box > .inner {
  display: flex;
  flex-direction: column;
  margin: 3rem;
  gap: 2rem;
}
.gall-type01__list .txt__wrap .txt__box > .inner .txt__info .tit {
  font-size: 2.4rem;
  font-weight: 700;
}
.gall-type01__list .txt__wrap .txt__box > .inner .txt__info .txt {
  margin-top: 1rem;
  font-size: 2rem;
}
.gall-type01__list .txt__wrap .badge__box.top {
  right: 0;
  margin: 3rem 3rem 0 0;
}
.gall-type01__list .txt__wrap .d-day__txt {
  right: 3rem;
  bottom: 3rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--point4);
}

/*
 * gall-type02__list(갤러리 리스트) - 02-02-02강사조회
 */
.board-list .gall-type02__list a {
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.board-list .gall-type02__list a > div {
  padding: 3rem;
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .gall-type01__list .txt__wrap .d-day__txt {
    font-size: 2rem;
    right: 2rem;
    bottom: 2rem;
  }
  .gall-type01__list .badge__box .badge {
    padding: 0.5rem 1rem;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  /* gall__type00__list(갤러리 리스트 공통) */
  .board-list [class*=gall-type][class*=__list] {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .board-list [class*=gall-type][class*=__list] li {
    padding: 0;
  }

  .board-list [class*=gall-type][class*=__list] {
    grid-template-columns: repeat(2, 1fr);
  }



}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  /* gall__type00__list(갤러리 리스트 공통) */
  .board-list [class*=gall-type][class*=__list] {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*
 * 검색결과(게시물 개수)
 */
.board-list .sct-rst__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  font-size: var(--fs-m);
}
.board-list .sct-rst__wrap .total__txt {
  position: inherit;
  position: relative;
  padding-left: 2.8rem;
  color: var(--fc-bold);
  flex-shrink: 0;
  font-size: var(--fs-sm);
  /*width: 100%;*/
}
.board-list .sct-rst__wrap .total__txt:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 2rem;
  background: url("../images/common/sch-rst_i.svg") center/contain no-repeat;
  content: "";
  transform: translateY(-50%);
}
.board-list .sct-rst__wrap .total__txt .total--num {
  position: relative;
  font-weight: 600;
  color: var(--main);
}
.board-list .sct-rst__wrap .total__txt .total--num:after {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  content: "";
  background-color: var(--main);
}
.board-list .sct-rst__wrap .sct__box {
  display: flex;
  gap: 1rem;
  width: auto;
  justify-content: flex-end;
}
.board-list .sct-rst__wrap .sct__box select,
.board-list .sct-rst__wrap .sct__box button {
  height: 4.5rem;
}

/*
 * 페이징 처리(list)
 */
.pagination {
  margin-top: 3rem;
}
.pagination ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination ol .btn--page-num a {
  font-size: var(--fs-sm);
}
.pagination ol li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  line-height: 3rem;
  text-align: center;
  color: #666;
  box-sizing: border-box;
}
.pagination ol li a:hover {
  background: none rgba(255, 255, 255, 0) !important; /* opera */
}
.pagination ol li a.active {
  color: var(--main);
}
.pagination ol li a.active:before {
  position: absolute;
  bottom: 0;
  width: calc(100% - 1rem);
  height: 0.2rem;
  margin-bottom: 0.2rem;
  content: "";
  background-color: var(--main);
}
.pagination ol li.btn a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.pagination ol li.btn a:before {
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.pagination ol li.btn a:hover {
  background-color: rgba(201, 209, 223, 0.2);
}
.pagination ol li.prev a:before, .pagination ol li.next a:before {
  filter: grayscale(100%) brightness(0);
}
.pagination ol li.first a:before {
  background-image: url("../images/common/arrow2_i.png");
}
.pagination ol li.prev {
  margin-right: 0.5rem;
}
.pagination ol li.prev a:before {
  transform: rotate(90deg);
  background-image: url("../images/common/arrow_i.png");
}
.pagination ol li.next {
  margin-left: 0.5rem;
}
.pagination ol li.next a:before {
  transform: rotate(270deg);
  background-image: url("../images/common/arrow_i.png");
}
.pagination ol li.last a:before {
  transform: rotate(180deg);
  background-image: url("../images/common/arrow2_i.png");
}
.pagination ol li.btn--page-num a {
  padding: 0 1rem;
}

/*
 * 데이터 없을 경우
 */
.data--no__box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--bd-basic);
  border-bottom: 1px solid var(--bd-basic);
  font-size: var(--fs-m);
  font-weight: 500;
  color: var(--basic);
  min-height: 45rem;
}
.data--no__box p {
  text-align: center;
}

/*
  * 게시판 - 자주 묻는 질문
  */
.page01-03.board-list .list-type01__wrap.accordion .item.active .arrow--i {
  transform: rotate(315deg);
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-header a {
  display: flex;
  align-items: center;
  position: relative;
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-header a p {
  width: calc(100% - 15rem);
  margin-left: 2rem;
  font-size: var(--fs-m);
  color: var(--fc-bold);
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-header a .arrow--i {
  right: 2rem;
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-body {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: left;
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-body:hover {
  cursor: initial;
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-body:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  content: "";
  background-color: var(--bd-basic);
}
.page01-03.board-list .list-type01__wrap.accordion .accordion-body p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--basic);
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .page01-03.board-list .list-type01__wrap.accordion .accordion-header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .page01-03.board-list .list-type01__wrap.accordion .accordion-header p {
    margin-left: 0;
  }
}

/* width(모바일 1600px 기준) => */
@media (max-width: 1600px) {
  .page01-01.board-list .list-type01__wrap li.item > .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .page01-01.board-list .list-type01__wrap li.item .item__tit,
  .page01-01.board-list .list-type01__wrap li.item .item__info {
    width: 100%;
  }
  .page01-01.board-list .list-type01__wrap li.item .item__tit {
    /*flex-direction: column;*/
    align-items: flex-start;
  }
  .page01-01.board-list .list-type01__wrap li.item .item__tit .page--num {
    min-width: auto;
  }
  .page01-01.board-list .list-type01__wrap li.item .item__info {
    display: flex;
    justify-content: flex-start;
    flex: auto;
    min-width: auto;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .board-list .sct-rst__wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .board-list .sct-rst__wrap button.btn--basic-c {
    width: auto;
    padding: 0 1.2rem;
  }
}
/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  /* 리스트 페이지 공통 */
  .board-list .list-type01__wrap li.item .item__info {
    justify-content: flex-start;
  }
  .board-sch .board-sch__box {
    flex-direction: column;
  }
  /* 공지사항(list) */
  .page01-01.board-list .tab__area .tab__menu__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page01-01.board-list .list-type01__wrap li.item .item__info {
    justify-content: flex-start;
  }
}
/* width(모바일 375px 기준) => xs */
@media (max-width: 375px) {
  .board-sch.type-01 .board-sch__wrap.short .sch__input {
    min-width: auto;
  }
}
/*============================ END OF 게시판(list) ===========================*/
/**==========================================================================
 *!                                게시판(view)
 *==========================================================================**/
/* btn(목록으로) */
.board-view > a.btn--basic-w.btn--primary {
  gap: 1rem;
}
.board-view > a.btn--basic-w.btn--primary i.more--i {
  width: 1.6rem;
  height: 1.6rem;
  background: url("../images/common/arrow02_b_icon.png") center/contain no-repeat;
  transform: rotate(270deg);
  filter: invert(9%) sepia(40%) saturate(3250%) hue-rotate(217deg) brightness(96%) contrast(94%);
}

/*
 * 게시판(view) - 공통
 */
.board-view .badge__list {
  display: flex;
  gap: 1rem;
}
.board-view .page__box {
  margin-top: 3rem;
  font-size: var(--fs-sm);
}
.board-view .page__box ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.board-view .page__box ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5.7rem;
  padding: 0 2rem;
  gap: 2rem;
}
.board-view .page__box ul li a > span {
  display: flex;
  align-items: center;
  font-weight: 600;
  word-break: keep-all;
  color: var(--main);
  gap: 1rem;
}
.board-view .page__box ul li a > span:before {
  display: inline-block;
  width: 1.2rem;
  height: 0.7rem;
  background: url("../images/common/arrow_i.png") center/contain no-repeat;
  content: "";
  filter: invert(37%) sepia(75%) saturate(2894%) hue-rotate(345deg) brightness(92%) contrast(103%);
}
.board-view .page__box ul li a .tit {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 6.5rem);
  font-weight: 400;
  text-align: left;
  color: var(--basic);
  gap: 3rem;
}
.board-view .page__box ul li a .tit .txt-clamp {
  width: calc(100% - 5rem);
}

/*
 * 게시판(view) - type-01(공지사항, 이벤트)
 */
.board-view .board-view__wrap.type-01 .tit__box .item__tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.board-view .board-view__wrap.type-01 .tit__box .item__tit .tit {
  font-size: var(--fs-lg);
  font-weight: 600;
  word-break: break-all;
  color: var(--fc-main);
  max-width: 70%;
}
.board-view .board-view__wrap.type-01 .tit__box .item__info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-sub);
  gap: 0.5rem 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 1.2rem;
}
.board-view .board-view__wrap.type-01 .tit__box .item__info > li {
  padding-right: 2rem;
  font-size: var(--fs-xsm);
  color: var(--basic);
}
.board-view .board-view__wrap.type-01 .tit__box .item__info > li span {
  padding-right: 1rem;
  font-weight: 600;
  color: var(--fc-main);
}
.board-view .board-view__wrap.type-01 .cont-image__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  clear: both;
  margin-top: 3rem;
}
.board-view .board-view__wrap.type-01 .cont-image__wrap .cont-image__item {
  width: 100%;
}
.board-view .board-view__wrap.type-01 .cont-image__wrap .cont-image__item img {
  display: block;
  width: 100%;
  height: auto;
}
.board-view .board-view__wrap.type-01 .txt__box {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--bd-basic);
  border-bottom: 1px solid var(--bd-basic);
  font-size: var(--fs-sm);
  line-height: 1.4;
  word-break: keep-all;
  color: var(--basic);
}

/*
 * 게시판(view) - type-02
 */
.board-view__wrap.type-02 .top__wrap {
  display: flex;
  gap: 3rem;
}
.board-view__wrap.type-02 .top__wrap .thum__box {
  width: 49.5rem;
  height: 50rem;
}
.board-view__wrap.type-02 .top__wrap .tit__wrap {
  display: flex;
  flex-direction: column;
  width: calc(100% - 50rem);
  gap: 2rem;
}
.board-view__wrap.type-02 .top__wrap .tit__wrap .tit__box {
  color: var(--fc-main);
}
.board-view__wrap.type-02 .top__wrap .tit__wrap .tit__box b.tit {
  font-size: 2.8rem;
  font-weight: 700;
}
.board-view__wrap.type-02 .top__wrap .tit__wrap .tit__box p.txt {
  margin-top: 1rem;
  font-size: 2rem;
}
.board-view__wrap.type-02 .top__wrap .tit__wrap .sm__info {
  gap: 1rem;
}
.board-view__wrap.type-02 .top__wrap .tit__wrap .sm__info span.txt {
  color: var(--basic);
}





.tab__menu__select {
  display: none;
}


@media (max-width: 1600px) {
  .page01-04.board-list .tab__area .tab__menu__list {
    display: none;
  }

  /* 모바일 드롭다운 표시 */
  .tab__menu__select {
    position: relative;
    display: flex;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 1.2rem;
    flex-direction: column;
    gap: 1rem;
  }

  /* 드롭다운 화살표 */
  .tab__menu__select::after {
    position: absolute;
    top: calc(50% - 0.3rem);
    right: 4rem;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    content: "";
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
  }

  .tab__menu__select select {
    width: 100%;
    height: 5rem;
    padding: 0 5rem 0 2rem;
    border: 2px solid var(--main);
    border-radius: 2.5rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0 0.8rem 2rem;
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main);
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
  }

  .tab__menu__select select:focus-visible {
    outline: 3px solid rgba(0, 125, 196, 0.35);
    outline-offset: 2px;
  }
}



/* width(PC 1400px 기준) => xxl */
@media (max-width: 1400px) {
  .board-view__wrap.type-02 .top__wrap {
    flex-direction: column;
    align-items: center;
  }
  .board-view__wrap.type-02 .top__wrap .thum__box {
    width: 49.5rem;
    height: 50rem;
  }
  .board-view__wrap.type-02 .top__wrap .tit__wrap {
    flex-direction: column;
    width: 100%;
  }

}
/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .board-view .board-view__wrap.type-01 .tit__box .item__tit .tit {
    max-width: 100%;
  }
  .board-view__wrap.type-02 .top__wrap .thum__box {
    width: 100%;
    height: 100%;
  }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
  .board-view .board-view__wrap.type-01 .tit__box .item__info {
    gap: 0.5rem 1rem;
  }
  .board-view .board-view__wrap.type-01 .tit__box .item__info > li {
    margin-right: 0rem;
    padding-right: 1rem;
  }
  .board-view .page__box ul li a {
    height: 8rem;
  }
  .board-view .page__box ul li a .tit {
    flex-direction: column;
    gap: 1rem;
  }
  .board-view .page__box ul li a .tit .txt-clamp {
    width: auto;
  }
  /* gall-type01__list : 갤러리형  */
  .gall-type01__list > .item {
    height: 40rem;
  }
  .gall-type01__list > .item .badge__box .badge {
    padding: 0.7rem;
  }
  .gall-type01__list .txt__wrap .txt__box > .inner {
    margin: 2rem;
  }
  .gall-type01__list .txt__wrap .txt__box > .inner .badge-02 {
    padding: 1rem 1.2rem;
    font-size: var(--fs-sm);
  }
  .gall-type01__list .txt__wrap .badge__box.top {
    margin: 1rem 1rem 0 0;
  }
  .type--deadline:before {
    margin-right: 0.5rem;
  }
  .type--finish:before {
    margin-right: 0.5rem;
  }
  .type--prepar:before {
    margin-right: 0.5rem;
  }
  .gall-type01__list .txt__wrap .txt__box > .inner {
    gap: 1rem;
  }
  .gall-type01__list .txt__wrap .txt__box > .inner .txt__info .tit {
    font-size: 2.2rem;
  }
}




/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  /* 01알림소식_04이벤트_02view
  .page01-04.board-list .tab__area .tab__menu__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }*/






}
/*============================ END OF 게시판(view) ===========================*/
/**==========================================================================
 *!                                게시판(view)
 *==========================================================================**/
/*
 * common.css
 */
a:focus,
img:focus,
input:focus,
button:focus,
label[role=button]:focus,
textarea:focus,
select:focus,
.cst-scroll:focus,
.swiper-pagination-bullet:focus,
.map-sch__wrap svg .item:focus {
  outline: 3px solid #007bff !important; /* 파란색 테두리 */
  outline-offset: 2px;
}

#mvSvc .fixed-item, #mvSvc .swiper-slide {
  padding: 0.5rem;
}
/*============================ END OF 게시판(view) ===========================*/

/* Modal default styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal .modal-footer #drawSignFooter {
  display:flex;
  justify-content: end;
  gap: 1rem;
}

.modal .modal-footer #uploadSignFooter {
  display:flex;
  justify-content: end;
  gap: 1rem;
}


.modal .modal-body .tab__area {
  padding-bottom: 3rem;
}

.text-center {
  text-align: center !important;
}

.text-center canvas {
  width:100%;
}

.modal .modal-header {
  background:var(--point2);
  color:#fff;
  padding: 1.5rem 3rem;
  position: relative;
  height: 6rem;
}
.modal .modal-header h3{
  font-size:2.4rem;
  position: relative;
}
/* Modal content styles */
.modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius:  2rem;
  max-width: 800px;
  width: calc(100% - 3rem);
  overflow: hidden;
  height: 80%;
  max-height: 90rem;
}

/* Close button styles */
.header-close {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  width:3rem;
  height:3rem;
  background:url(../images/common/icon_modal_close.svg) no-repeat;
  transform: translateY(-50%);
}
.modal .modal-body {
  max-height: 90rem;
  overflow-y: scroll;
  padding: 3rem;
  height: calc(100% - 6rem - 6rem);
}
.modal .modal-body.has-footer {
  height: calc(100% - 6rem - 4rem - 3rem);
}
.modal .modal-footer {
  text-align: right;
  padding: 0 3rem 3rem 0;
  height:4rem;
}
.modal.alert .modal-content {
  max-width:50rem;
  height:auto;
  max-height:inherit;
}
.modal.alert .modal-footer { height:auto;}
.modal .modal-footer .btn-wrap { margin-top:0;}

@media screen and (max-width: 639px){
  input[type=text], input[type=password]{ width:100% }
  .field .label {width:100%;  height:auto;  }
  .field .insert {margin-left: 0%; margin-top:10px;  }

}

/*임시 팝업 css*/
.over-modal-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  display: none;
  background-color: rgba(255, 255, 255, .5);
}

.over-modal-wrap.on {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  z-index: 2500;
  display: flex;
}

.over-modal.popup {
  display: block;
  position: fixed;
  background-color: transparent;
}

.over-modal.popup.on {
  top: 50%;
  left: 50%;
}

.over-modal.popup {
  width: 400px;
  max-width: 100%;
}

.over-modal.popup .owl-stage-outer .owl-stage {
  display: flex;
}

.over-modal .pop-header {
  justify-content: start;
}

.over-modal .pop-header p {
  color: #ffffff;
  margin-left: 1.067rem;
  padding-right: 2rem;
}

.over-modal.popup .pop-header {
  background-color: #ffffff;
  z-index: 1;
  height: 60px;
  display: flex;
  padding: 0 20px;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}

.over-modal.popup .pop-header .btn {
  font-size: 2rem;
}

.over-modal.popup .btn-today-close::before, .over-modal.popup .btn-today-close::after {
  background-color: #000;
}

.over-modal.popup .btn-today-close:hover::before, .over-modal.popup .btn-today-close:hover::after {
  background-color: #ffffff;
}

.over-modal.popup .owl-stage-outer {
  overflow: hidden;
  height: auto !important;
}

.over-modal.popup .slick-arrow {
  width: 4.5rem;
  height: 4.5rem;
  position: absolute;
  border-radius: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  font-size: 0;
  z-index: 1;
  transform: translateY(-50%);
}

.over-modal.popup .slick-arrow:hover {
  border-color: #888;
}

.over-modal.popup .slick-arrow:before {
  font-family: "Remixicon";
  font-size: 27px;
  color: #fff;
}

.over-modal.popup .slick-arrow.slick-prev {
  left: -6rem;
}

.over-modal.popup .slick-arrow.slick-prev:before {
  content: "\ea64";
}

.over-modal.popup .slick-arrow.slick-next {
  right: -6rem;
}

.over-modal.popup .slick-arrow.slick-next:before {
  content: "\ea6e";
}

.over-modal.popup .pop-container {
  background-color: #ffffff;
  box-shadow: 0 0 80px rgba(0, 0, 0, .3);
}

.over-modal.popup .pop-footer {
  padding: 15px 20px;
  position: relative;
  text-align: left;
  background-color: #ffffff;
  border-top: none;
  color: #717171;
  font-size: 14px;
}

.over-modal.popup .pop-footer button {
  color: #717171;
}

.over-modal.popup .form-check {
  padding-left: 0;
  display: flex;
  justify-content: space-between;
}

.over-modal.popup .code-popup {
  padding: 30px 40px;
  background-color: #F8F9FB;
}

.over-modal.popup .pop-header .btn-popup-close {
  display: block;
  height: unset;
  border: solid 1px transparent;
  transition: all 0.2s;
  position: absolute;
  padding: 0;
  background: transparent;
}

/*데이터없을때*/
.no-data {
  font-size: 1.7rem;
  text-align: center;
  color: var(--basic);
}

/*질문과답변 게시판*/
.reply-box {
  padding: 3rem;
  border-radius: 1.2rem;
  background: var(--bg-box);
  margin-top: 3rem;
  position: relative;
}

.reply-box .view-head {

}

.reply-box .view-head .tit_box {
  background: #ffffff;
  border-radius: .6rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
}

.reply-box .view-head .tit_box .item__tit {
  width: 100%;
  overflow: hidden;
}



.reply-box .view-head .tit_box .item__tit .tit {
  font-size: var(--fs-m);
  font-weight: 600;
  word-break: break-all;
  color: var(--fc-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  position: relative;
  padding-left: 3.4rem;
}

.reply-box .view-head .tit_box .item__tit .tit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  background-image: url('../images/common/reply--i.svg');
  background-repeat: no-repeat;
}

.reply-box .view-head .tit_box .reply-info {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.reply-box .view-head .tit_box .reply-info>li {
  font-size: var(--fs-sm);
  color: var(--basic);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.reply-box .view-head .tit_box .reply-info>li span {
  padding-right: 1rem;
  font-weight: 600;
  color: var(--fc-main);
}

.header__util__r li {
  position: relative;
  padding-right: 1rem;
}

.header__util__r li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #cccccc;
}

.header__util__r li:last-child {
  padding-right: 0;
}

.header__util__r li:last-child::after {
  display: none;
}

.header__util__r li.zoom-group {
  display: flex;
  gap: 1rem;
}

html[lang="en"] header .header__gnb__menu {
  max-width: 800px;
}

@media (max-width: 1450px) {
  html[lang="en"] header .header__gnb__r li a i {
    display: none;
  }
}

@media (max-width: 1400px) {
  html[lang="en"] header .header__gnb__menu {
    max-width: 100%;
  }
}

.table-common.basic-02 + .dot__list.type-01 {
  margin-top: 1rem;
}

/* 언어선택 */

#langSct {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#langSct > span {
  padding-bottom: 2rem;
  writing-mode: vertical-rl;
}
#langSct .sct__btn,
#langSct .sct__list {
  border-radius: 0.4rem;
  background-color: var(--bg-basic);
}
#langSct .cst-sct__wrap {
  text-align: center;
}
#langSct .cst-sct__wrap.active .sct__list {
  padding: 0.6rem 0;
  border: 1px solid var(--bd-basic);
  max-height: 200px;
}
#langSct .cst-sct__wrap.active .sct__list li {
  font-weight: 300;
}
#langSct .cst-sct__wrap.active .sct__list li:hover {
  background: #f3f3f3;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}
#langSct .sct__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 5.8rem;
  height: 2.6rem;
  padding-left: 1.2rem;
  cursor: pointer;
  background-color: var(--bg-basic);
}
#langSct .sct__btn:after {
  display: inline-block;
  position: absolute;
  right: 1.2rem;
  width: 0.4rem;
  height: 0.8rem;
  background: url("../images/common/arrow_i.png") center/contain no-repeat;
  content: "";
  transform: rotate(270deg);
}
#langSct .sct__list {
  overflow: hidden;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  margin-top: 1rem;
  background-color: var(--bg-basic);
  max-height: 0;
}

.goog-te-gadget,
.goog-te-banner-frame,
.skiptranslate,
body .skiptranslate {
  display: none !important;
}

.lang-selector {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--color-lightgray);
  background-color: transparent;
}

.gtranslate_wrapper .gt_switcher {
  width: auto !important;
  color: #666666 !important;
  overflow: visible !important;
}

.gtranslate_wrapper {
  position: relative;
}

.gtranslate_wrapper .gt_selected {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 2.6rem;
  /*padding-left: 1.2rem !important;*/
  background: var(--bg-basic) !important;
  border-radius: .4rem;
  z-index: 55 !important;
}

.gtranslate_wrapper .gt_selected a {
  width: auto !important;
  background: none !important;
  border: none !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  font-size: 1.7rem !important;
  color: var(--fc-main)!important;
  gap: 0.6rem !important;
  height: 100% !important;
  line-height: 1 !important;
  padding: 0 !important;
  font-family: var(--k-ff1);
  width: 7.2rem !important;
  padding-left: .6rem !important;
}

.gtranslate_wrapper .gt_selected img {
  display: none !important;
}

.gtranslate_wrapper .gt_selected a::after {
  display: inline-block;
  right: 1.2rem !important;
  background: url(../images/common/arrow_i.png) center / contain no-repeat !important;
  content: "";
  width: 12px !important;
}

.gtranslate_wrapper .gt_option {
  width: 100% !important;
  height: auto !important;
  position: absolute !important;
  top: 3rem;
  border-radius: 0.4rem;
  background: var(--bg-basic) !important;
  border: 1px solid var(--bd-basic);
}

.gtranslate_wrapper.active .gt_option {
  display: block;
}

.gtranslate_wrapper .gt_option a {
  font-size: 1.7rem !important;
  text-align: left;
  line-height: 150%;
  white-space: normal;
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
  box-sizing: border-box !important;
  color: #333 !important;
  font-family: var(--k-ff1);
  text-align: center !important;
}

.gtranslate_wrapper .gt_option img {
  display: none !important;
}

.gtranslate_wrapper .gt_option a:hover {
}

/*영어*/
html[lang="en"] #mvArea .slogan__wrap .mv-obj__box i:first-child {
  left: -9.5rem;
}

html[lang="en"] #mvArea .slogan__wrap .mv-obj__box i:nth-child(2) {
  right: -9.5rem;
}

html[lang="en"]  #mvArea .slogan__wrap .mv-obj__box i:nth-child(3) {
  right: -9.5rem;
}

/*기관검색*/
.map-sch__wrap {
  display: flex;
  align-items: flex-start;
  height: 818px;
  gap: 6rem;
}

.map-box__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  gap: 3rem;
}

/* 지도 svg */
#mapImg {
  width: 48rem;
}

#mapImg:hover .item {
  cursor: pointer;
}

#mapImg .st0 {
  fill: #111;
}

#mapImg .st1 {
  fill: #F0F2F6;
}

#mapImg .st1,
#mapImg .st2 {
  stroke: #333333;
  stroke-linecap: round;
  stroke-linejoin: bevel;
  stroke-width: 2px;
}

#mapImg .st3,
#mapImg .st4,
#mapImg .st5,
#mapImg .st6 {
  fill: #fff;
}

#mapImg .st7,
#mapImg .st8,
#mapImg .st9 {
  fill: #333333;
}

#mapImg .st7,
#mapImg .st9,
#mapImg .st4,
#mapImg .st6 {
  font-family: Pretendard-Bold, Pretendard;
  font-size: 30px;
  font-weight: 700;
}

#mapImg .st7,
#mapImg .st4 {
  letter-spacing: -0.01em;
}

#mapImg .st9,
#mapImg .st6 {
  letter-spacing: 0em;
}

#mapImg .st5 {
  stroke: #ccc;
}

#mapImg .st2 {
  fill: #ffffff;
}

#mapImg #shadow {
  fill: none;
}

#mapImg .cls-5,
#mapImg .cls-7,
#mapImg .cls-8 {
  fill: #fff;
}

#mapImg .cls-9,
#mapImg .cls-2 {
  fill: #f0f2f6;
}


#mapSch .map-sch__wrap {
  position: relative;
  width: 70%;
  margin: 0 auto;
  white-space: nowrap;
  vertical-align: middle;
}

#mapSch .map-sch__wrap .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mapSch .map-sch__wrap .sch__wrap {
  padding-top: 3rem;
}

.dropify-font-upload:before, .dropify-wrapper .dropify-message span.file-icon:before {
  color: #888888 !important;
}

.dropify-wrapper .dropify-message p {
  color: #888888 !important;
}

/* Dropify 파일 업로드 포커스 스타일 (웹접근성) */
.dropify-wrapper:focus-within,
.dropify-wrapper input[type="file"]:focus + .dropify-message {
  outline: 3px solid #007bff !important;
  outline-offset: 2px;
  border-color: #007bff !important;
}

/* Dropzone 파일 업로드 포커스 스타일 (웹접근성) */
.dropzone:focus-within,
.dropzone.dz-clickable:focus {
  outline: 3px solid #007bff !important;
  outline-offset: 2px;
  border-color: #007bff !important;
}

.dropzone .dz-message:focus {
  outline: 3px solid #007bff !important;
  outline-offset: 2px;
}

.sct__box ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sct__box ul.tabs li a.active {
  color: #ffffff;
  background: #18204e;
}

.sct__box ul.tabs li a {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 7px;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sct__box ul.tabs li a {
  width: 4.5rem;
  height: 4.5rem;
}

.sct__box .ri-layout-grid-fill {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sct__box .ri-list-indefinite {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sct__box ul.tabs li a.active .ri-layout-grid-fill:before {
  background-image: url(../images/common/icon-grid-white.svg);
}

.sct__box .ri-layout-grid-fill:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/common/icon-grid.svg) no-repeat center;
  background-size: contain;
}

.sct__box .ri-list-indefinite:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/common/icon-list.svg) no-repeat center;
  background-size: contain;
}

.sct__box ul.tabs li a.active .ri-list-indefinite:before {
  background-image: url(../images/common/icon-list-white.svg);
}

.sct__box ul.tabs li a.active:focus,
.sct__box ul.tabs li a:not(.active):focus{
  outline: 3px solid #007bff;
}

/*챗봇 모달*/
.chatbot-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.chatbot-modal.active {
  display: block;
}

.chatbot-modal__con {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 380px;
  height: 600px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.chatbot-btn {
  background: rgb(30 41 57);
}

.chatbot-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: #1e2939;
  color: #fff;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.chatbot-header__title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.chatbot-header__close {
  font-size: 2rem;
  cursor: pointer;
  width: 20px !important;
  height: 20px !important;
}

.chatbot-header__title::before {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1rem;
  background: url(../images/common/chatbot--i.svg) center / contain no-repeat;
  content: "";
}

.chatbot-modal__con iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding-top: 6rem;
  box-sizing: border-box;
}

.swal-button {
  background: #e0e0e0;
}

.swal-footer {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.swal-button:not([disabled]):hover {
  background:#18204E;
  color:#ffffff;
}

.swal-button--cancel:not([disabled]):hover {
  background:#666666;
  color:#ffffff;
}

td.fixed {
  display: flex;
  width: 100%;
}

/*
 * 251224 - 수정
 */
/* 한글페이지 : HEADER */
@media (max-width: 1600px) {
  header .header__gnb__menu h2.depth1>a {
    font-size: 2rem;
  }

  header .header__gnb__menu .depth2__box h3 a {
    font-size: 1.8rem;
  }

  header .header__gnb__menu .depth2__box h4 a {
    font-size: 1.5rem;
  }

  header .header__gnb__menu .depth3__box {
    margin-top: 0.5rem;
  }
}

@media (max-width: 1400px) {
  header .header__util .header__util__wrap {
    display: none;
  }
}

/* 모바일 메뉴 */
@media (max-width: 1400px) {
  header .header__gnb .header__gnb__menu .item.active h2.depth1 a {
    border-bottom: 0 !important;
  }

  header .header__gnb.active .header__gnb__menu h2.depth1 a {
    text-align: left;
  }
  .gnb-depth2-info {
    display:none;
  }
  header .header__gnb__menu .depth2__box > .inner {
    display: block;

  }
  header .header__gnb__menu .depth2__box > .inner > li {

  }
}

@media (max-width: 768px) {
  header .header__gnb.active .header__gnb__menu h2.depth1 a {
    font-size: 2rem;
    line-height: 1.2;
  }

  header .header__gnb__menu .depth3__box h4 a {
    text-align: left;
  }

  header .header__gnb.active .header__gnb__menu>.item.active .depth3__box>.inner h4 a {
    align-items: flex-start;
    position: relative;
    padding-left: 1.5rem;
  }

  header .header__gnb.active .header__gnb__menu>.item.active .depth3__box>.inner h4 a:before {
    position: absolute;
    left: 0;
    margin-top: 0;

  }
}

header .header__gnb.active .header__gnb__r li.login__link a {
  line-height: 4.4rem;
}

/* 영문페이지 : HEADER */
html[lang=en] header .header__gnb__menu {
  justify-content: center;
  max-width: auto;
  width: calc(100% - 65rem);
}

html[lang=en] header .header__gnb__menu h2.depth1>a {
  font-size: 2.2rem;
  text-align: center;
}

@media (max-width: 1600px) {

  .header__util__wrap ul a,
  header .header__util .header__util__wrap ul span {
    font-size: 1.5rem;
  }
}

/* 서브 비주얼 */
.sub-vi__box h2.page__tit {
  text-align: center;
}

@media (max-width: 1024px) {
  .sub-vi__box {
    padding: 6rem 3rem 14rem;
  }
}

/* footer */
footer .footer-logo span:first-child:after {
  top: auto;
  bottom: 0;
  height: calc(100% - 0.6rem);
  margin-bottom: 0.2rem;
  max-height: 2.8rem;
  transform: translateY(0);
}

@media (max-width: 576px) {
  footer .footer-logo span:first-child:after {
    max-height: 2.4rem;
  }
}

/* 영문페이지 : 공지사항 */
html[lang=en] .page01-01.board-list .list-type01__wrap li.item .item__tit .badge-01.badge-01.type-noti {
  min-width: auto;
  padding: 0.6rem 0.8rem;
}

html[lang=en] .page01-01.board-list .list-type01__wrap li.item .item__tit {
  width: calc(100% - 35rem);
}

@media (max-width: 1600px) {
  html[lang=en] .board-list .list-type01__wrap li.item>.inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  html[lang=en] .page01-01.board-list .list-type01__wrap li.item .item__tit {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page01-01.board-list .list-type01__wrap li.item .item__tit {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
  }

  .board-list .list-type01__wrap li.item .item__tit .txt-clamp {
    -webkit-line-clamp: 2;
  }
}

/* 한글, 영문 공통 : 학습기관 찾기 - view */
table td .td__inner,
table td .depth__list {
  flex-wrap: wrap;
}

table td .td__inner {
  gap: 1rem;
}

/* table 반응형 */
@media (max-width: 1400px) {
  .table-common.basic-02 td {
    padding-left: 12rem;
  }
  .table-common.basic-02:not(:has(thead)) td {
    padding-left:0;
  }
  .table-common.basic-02 td:before {
    max-width: 17rem;
    line-height: 1.2;
  }
}

@media (max-width: 1200px) {

  .table-common.basic-01 td,
  .table-common.basic-01 th {
    padding: 1.5rem !important;
  }
}

/* 말풍선 제목 좌우 간격 */
.con__tit.type-02 strong {
  padding: 2rem;
}

/* 탭메뉴 넘칠 경우 */
.tab__menu__list.type-02 li.active a,
.tab__menu__list.type-02 li.active button {
  line-height: 1;
}

@media (max-width: 1024px) {
  .tab__area .tab__menu__list.type-02>li {
    flex: initial;
  }

  .tab__menu__list.type-02 {
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: transparent;
    gap: 1rem;
  }

  .tab__menu__list.type-02 a,
  .tab__menu__list.type-02 button {
    padding: 0 2rem;
    border-radius: 2.5rem;
    background-color: var(--bg-basic);
  }
}

/* badge */
.badge__box {
  flex-wrap: wrap;
}

.badge__box .badge {
  display: -webkit-box;
  overflow: hidden;
  height: 5rem;
  padding: 0 1.2rem;
  line-height: 5rem;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

html[lang=en] .badge__box .badge {
  font-size: 1.7rem;
}

@media (max-width: 1024px) {
  .badge__box {
    flex-wrap: wrap;
  }

  .badge__box .badge {
    font-size: 1.8rem;
    line-height: 4rem;
  }
}

/* 글자 내려감 */
.sm__info .tit {
  word-break: keep-all;
}

/* 탭메뉴 */
@media (max-width: 1400px) {

  .tab__menu__list.type-02 li button,
  .tab__menu__list.type-02 li a {
    font-size: 1.8rem;
  }
}

/* width(태블릿 1024px 기준) => lg */
@media (max-width: 1024px) {
  .tab__area .tab__menu__list.type-02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background-color: var(--bg-basic);
  }

  .tab__menu__list.type-02 a,
  .tab__menu__list.type-02 button {
    background-color: transparent;
  }
}

@media (max-width: 768px) {
  .tab__area .tab__menu__list.type-02 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
  .tab__area .tab__menu__list.type-02 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* LNB */
html[lang=en] .lnb__tit h2 {
  line-height: 1;
}

.lnb__tit {
  height: auto;
  padding: 2rem;
  min-height: 14rem;
}

/*언어 포커스*/
/* GTranslate 드롭다운 옵션 포커스 */
.gt_option a:focus {
  outline: 3px solid #007BFF !important;
}

.gt_option a:active {
  outline: 3px solid #007BFF !important;
}

.gt_option {
  overflow: visible !important;
}

.go-site--i {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/go-link_i.png) center / contain no-repeat;
  margin-left: 1rem;
}

.link-tit {
  text-decoration-line: underline;
  text-decoration-color: var(--point2);
  text-underline-offset: 5px;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  color: var(--point2);
  font-weight: 700;
}


@media (max-width: 768px) {
  .respons-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .respons-scroll table {
    min-width: 76rem;
    width: 100%;
  }
}

.tab__menu__list.type-01.grid-4 {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 500px) {

  .tab__menu__list.type-01.grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 368px) {

  .tab__menu__list.type-01.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== 메인 통합 슬라이드 팝업(주요알림) 개선 ===== */
.over-modal-wrap.on {
  background-color: rgba(0, 0, 0, .7);
}
.over-modal.popup {
  position: relative;
  width: auto;
  max-width: 96%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.over-modal.popup .pop-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6rem;
  letter-spacing: 1px;
}
.over-modal.popup .pop-container {
  background-color: transparent;
  box-shadow: none;
  max-width: 100%;
  position: relative;
}
.over-modal.popup #over-pop-slide {
  width: 100%;
}
.over-modal.popup #over-pop-slide .item {
  padding: 0 8px;              /* 카드 간 간격 16px(좌우 8px), 트랙 넘침 방지 */
  box-sizing: border-box;
}
.over-modal.popup #over-pop-slide .item a {
  display: block;
}
.over-modal.popup #over-pop-slide .item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 595 / 842;    /* A4 비율 고정 - 원본 크기와 무관하게 동일 박스 */
  object-fit: contain;        /* 비율 다른 이미지도 잘림 없이 맞춤(여백 흰색) */
}
/* 등록 건수와 관계없이 카드 크기를 동일하게:
   컨테이너 폭 = 노출 카드 수 × 슬라이드 폭(37.6rem)
   → 슬라이드 폭 37.6rem 중 좌우 패딩 1.6rem 제외 = 이미지 폭 36rem(360px)로 항상 고정
   (기존 3건 320px 보다 조금 더 크게) */
.over-modal.popup.cnt-1 .pop-container { width: 45.6rem; }
.over-modal.popup.cnt-2 .pop-container { width: 91.2rem; }
.over-modal.popup.cnt-3 .pop-container { width: 136.8rem; }
/* 슬라이드 인디케이터(dot) - slick-theme.css 미로드 대비 자체 스타일 정의
   (theme 없으면 li 안의 숫자 1,2,3,4 가 세로로 노출되는 현상 → 가로 원형 dot으로 교체) */
.over-modal.popup #over-pop-slide .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}
.over-modal.popup #over-pop-slide .slick-dots li {
  display: inline-block;
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 .4rem;
  padding: 0;
  cursor: pointer;
}
.over-modal.popup #over-pop-slide .slick-dots li button {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0;          /* 슬라이드 번호(1,2,3,4) 텍스트 숨김 */
  color: transparent;
  line-height: 0;
  cursor: pointer;
}
.over-modal.popup #over-pop-slide .slick-dots li button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  opacity: .6;
}
.over-modal.popup #over-pop-slide .slick-dots li.slick-active button:before {
  background: #29b6f6;
  border-color: #29b6f6;
  opacity: 1;
}
.over-modal.popup .pop-footer {
  background-color: transparent;
  border-top: none;
  padding: 1.6rem 0 0;
  text-align: center;
  width: 100%;
}
.over-modal.popup .pop-footer .pop-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.over-modal.popup .pop-footer .pop-count {
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, .12);
  padding: .6rem 1.4rem;
  border-radius: 4px;
}
.over-modal.popup .pop-footer .pop-count strong {
  color: #29b6f6;
  font-weight: 700;
}
.over-modal.popup .pop-footer button {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 0;
  padding: .6rem 1.4rem;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.over-modal.popup .pop-footer button:hover {
  background: rgba(255, 255, 255, .25);
}
@media (max-width: 768px) {
  .over-modal.popup .pop-container { width: 100%; }
  .over-modal.popup .pop-title { font-size: 2rem; }
  .over-modal.popup .slick-arrow { z-index: 2; }
  .over-modal.popup .slick-arrow.slick-prev { left: .5rem; }
  .over-modal.popup .slick-arrow.slick-next { right: .5rem; }
  /* 모바일에서는 건수와 무관하게 1건씩 화면 폭에 맞춰 전체 노출 */
  .over-modal.popup.cnt-1 .pop-container,
  .over-modal.popup.cnt-2 .pop-container,
  .over-modal.popup.cnt-3 .pop-container { width: 100%; }
}












