@charset "UTF-8";
.transition--popup {
  -webkit-box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 300ms cubic-bezier(0.425, -0.47, 0.735, 0.045);
  -o-transition: all 300ms cubic-bezier(0.425, -0.47, 0.735, 0.045);
  -moz-transition: all 300ms cubic-bezier(0.425, -0.47, 0.735, 0.045);
  transition: all 300ms cubic-bezier(0.425, -0.47, 0.735, 0.045);
}

.transition--popup.on {
  -webkit-box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.67, 1.535);
  -o-transition: all 300ms cubic-bezier(0.175, 0.885, 0.67, 1.535);
  -moz-transition: all 300ms cubic-bezier(0.175, 0.885, 0.67, 1.535);
  transition: all 300ms cubic-bezier(0.175, 0.885, 0.67, 1.535);
}

.thumb_fig {
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.thumb_fig img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -moz-transition: 0.5s opacity ease-in-out;
  -o-transition: 0.5s opacity ease-in-out;
  -webkit-transition: 0.5s opacity ease-in-out;
  transition: 0.5s opacity ease-in-out;
}

.thumb_fig.on img {
  opacity: 1;
}

ul.flex_box--fc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -1.875rem;
}

ul.flex_box--fc.a_c {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul.flex_box--fc.j_c {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

ul.flex_box--fc.j_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.flex_box--fc > li {
  margin-top: 1.875rem;
}

ul.flex_box--fc.space-4 {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}

ul.flex_box--fc.space-4 > li {
  padding: 0 0.25rem;
}

ul.flex_box--fc.space-5 {
  margin-right: -0.3125rem;
  margin-left: -0.3125rem;
}

ul.flex_box--fc.space-5 > li {
  padding: 0 0.3125rem;
}

ul.flex_box--fc.space-8 {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

ul.flex_box--fc.space-8 > li {
  padding: 0 0.5rem;
}

ul.flex_box--fc.space-10 {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

ul.flex_box--fc.space-10 > li {
  padding: 0 0.625rem;
}

ul.flex_box--fc.space-20 {
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}

ul.flex_box--fc.space-20 > li {
  padding: 0 1.25rem;
}

ul.flex_box--fc.space-30 {
  margin-right: -1.875rem;
  margin-left: -1.875rem;
}

ul.flex_box--fc.space-30 > li {
  padding: 0 1.875rem;
}

ul.flex_box--fc.ea-1 > li {
  width: 100%;
}

ul.flex_box--fc.ea-2 > li {
  width: 50%;
}

ul.flex_box--fc.ea-3 > li {
  width: 33.333333%;
}

ul.flex_box--fc.ea-4 > li {
  width: 25%;
}

ul.flex_box--fc.ea-5 > li {
  width: 20%;
}

ul.flex_box--fc.ea-6 > li {
  width: 16.666666%;
}

ul.flex_box--fc.ea-7 > li {
  width: 14.285%;
}

ul.flex_box--fc.ea-8 > li {
  width: 12.5%;
}

ul.flex_box--fc.ea-9 > li {
  width: 11.111111%;
}

ul.flex_box--fc.ea-10 > li {
  width: 10%;
}

.container__body > article {
  padding: 50px 0;
}

.container__body > article:first-child {
  padding-top: 0;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #E4E4E4;
}

.form + .form {
  margin-top: 10px;
}

.form > * + * {
  margin-left: 30px;
}

.form > * + button {
  margin-left: 8px;
}

.form input {
  height: 30px;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  border: 0;
  border-radius: 0;
  -moz-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.form input:focus {
  background-color: #e8f5ff;
  padding: 0 10px;
}

.form textarea {
  padding-right: 0;
  padding-left: 0;
  -moz-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.form textarea:focus {
  background-color: #e8f5ff;
  padding-right: 10px;
  padding-left: 10px;
}

.form button {
  width: 87px;
  height: 30px;
  border-radius: 2px;
  background: #3C3F44;
  border: 1px solid #3C3F44;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.form button.type_white {
  background: #fff;
  color: #3C3F44;
}

.form button.type_detail_ico {
  padding: 0px;
  width: 26px;
  height: 26px;
  background-color: #064E90;
  border: 1px solid #064E90;
}

.bor_b_222 {
  border-bottom-color: #222 !important;
}

.btn_lg a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 48px;
  padding: 5px 10px;
  border-radius: 24px;
  background-color: #064E90;
  border: 1px solid #064E90;
}

.btn_lg a.type_white {
  background-color: #fff;
  color: #064E90;
}

.btn_lg a.type_white span:before {
  color: #064E90;
}

.active_el.active.bg_color {
  background-color: #1470cb !important;
}

.active_el.active.font_color {
  color: #1470cb !important;
}

.active_el.active.ico_color span:before {
  color: #1470cb !important;
}

.tab_conts_box > ul > li {
  display: block;
}

.tab_conts_box > ul > li:not(:first-child) {
  display: none;
}

.btn_main_login {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  color: #737373;
  width: 74px;
  height: 74px;
}

.btn_main_login span {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
}

.search_form_wrap .search_form__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 4px 20px;
  border-radius: 24px;
  background-color: rgba(16, 81, 145, 0.1);
}

.search_form_wrap .search_form__inner .search_form__inner__select {
  position: relative;
  height: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.search_form_wrap .search_form__inner .search_form__inner__select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -9px;
  width: 1px;
  height: 18px;
  background-color: #D1DCE8;
}

.search_form_wrap .search_form__inner .search_form__inner__select select {
  padding: 0 36px 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #064E90;
  width: auto;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: 0;
}

.search_form_wrap .search_form__inner .search_form__inner__select.active select {
  color: #1470cb;
}

.search_form_wrap .search_form__inner .search_form__inner__input {
  width: 100%;
  height: 100%;
}

.search_form_wrap .search_form__inner .search_form__inner__input.after_range {
  position: relative;
}

.search_form_wrap .search_form__inner .search_form__inner__input.after_range:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  margin-top: -9px;
  background-color: rgba(162, 183, 204, 0.3);
}

.search_form_wrap .search_form__inner .search_form__inner__input input {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  color: #064E90;
}

.search_form_wrap .search_form__inner .search_form__inner__input.active input {
  color: #1470cb;
}

.search_form_wrap .search_form__inner .search_form__inner__input input::placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea::placeholder {
  color: rgba(6, 59, 111, 0.5);
}

.search_form_wrap .search_form__inner .search_form__inner__input input::-webkit-input-placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea::-webkit-input-placeholder {
  color: rgba(6, 59, 111, 0.5);
}

.search_form_wrap .search_form__inner .search_form__inner__input input:-moz-placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea:-moz-placeholder {
  color: rgba(6, 59, 111, 0.5);
}

.search_form_wrap .search_form__inner .search_form__inner__input input::-moz-placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea::-moz-placeholder {
  color: rgba(6, 59, 111, 0.5);
}

.search_form_wrap .search_form__inner .search_form__inner__input input:-ms-input-placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea:-ms-input-placeholder {
  color: rgba(6, 59, 111, 0.5);
}

.search_form_wrap .search_form__inner .search_form__inner__input input:focus,
.search_form_wrap .search_form__inner .search_form__inner__input textarea:focus {
  /* background-color: #f9f9f9; */
}

.search_form_wrap .search_form__inner .search_form__inner__input input:focus::placeholder,
.search_form_wrap .search_form__inner .search_form__inner__input textarea:focus::placeholder {
  color: transparent;
}

.search_form_wrap .search_form__inner button {
  width: 40px;
  height: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
  background: none;
  outline: none;
  border: 0;
}

.search_form_wrap .search_form__inner button .icon-ico_search:before {
  font-size: 20px;
}

.search_form__inner__tag {
  margin-top: 10px;
  font-size: 0;
  text-align: center;
}

.search_form__inner__tag span {
  display: inline-block;
  vertical-align: top;
  padding: 2px;
}

.search_form__inner__tag span a {
  font-size: 14px;
  font-weight: 400;
  color: #8F949A;
}

.img_taekwondo_article {
  position: relative;
}

.img_taekwondo_article img {
  width: 100%;
}

.img_taekwondo_article .img_taekwondo_article__inner {
  position: absolute;
  top: 70px;
  left: 25px;
  line-height: 1.3;
  color: #fff;
  top: 19.4444vw;
  left: 6.9444vw;
}

.img_taekwondo_article .img_taekwondo_article__inner h3 {
  font-size: 23px;
  font-weight: 500;
  font-size: 6.3888vw;
}

.img_taekwondo_article .img_taekwondo_article__inner h2 {
  margin-top: 15px;
  font-size: 37px;
  font-weight: 700;
  margin-top: 4.1666vw;
  font-size: 10.2777vw;
}

.img_taekwondo_article .img_taekwondo_article__inner p {
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 4.1666vw;
  margin-top: 5.5555vw;
}

.img_taekwondo_article .img_taekwondo_article__inner p + p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.4);
}

/* 서비스 안내 */
.main_article_tit {
  font-size: 25px;
  font-weight: 700;
  color: #063B6F;
  margin-bottom: 25px;
  letter-spacing: -.5px;
}

.ctn {
  overflow: visible !important;
}

.ctn > ul {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  font-size: 0;
}

.ctn > ul li {
  display: inline-block;
  vertical-align: top;
}

.ctn > ul li + li {
  margin-left: 16px;
}

.ctn > ul li .service_guide__slider__inner {
  position: relative;
  background: url("/assets/images/main/bg_service_guide_menu.png") no-repeat center/cover;
  width: 110px;
  height: 120px;
  padding: 20px 10px 15px 15px;
  border-radius: 3px;
  overflow: hidden;
}

.ctn > ul li .service_guide__slider__inner figure {
  height: 41px;
  text-align: right;
}

.ctn > ul li .service_guide__slider__inner p {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #063B6F;
}

.ctn > ul li .service_guide__slider__inner a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.scrollbar {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 5px;
  background: #D6DADD;
  line-height: 0;
  margin-top: 20px;
  border-radius: 2.5px;
}

.scrollbar .handle {
  width: 60px;
  height: 100%;
  background: none;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.scrollbar .handle .mousearea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #084C8F;
  border-radius: 2.5px;
}

/* 통계 */
.main_holder_status_box {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

.main_holder_status_box .main_holder_status_box__inner {
  padding: 0 20px;
}

.main_holder_status_box .main_holder_status_box__inner table {
  width: 100%;
}

.main_holder_status_box .main_holder_status_box__inner table tr th,
.main_holder_status_box .main_holder_status_box__inner table tr td {
  font-weight: 700;
  padding: 15px 0;
  vertical-align: middle;
}

.main_holder_status_box .main_holder_status_box__inner table tr th {
  white-space: nowrap;
  font-size: 15px;
}

.main_holder_status_box .main_holder_status_box__inner table tr td {
  padding-left: 15px;
}

.main_holder_status_box .main_holder_status_box__inner table tr td span {
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
}

.main_holder_status_box .main_holder_status_box__inner table tr + tr th,
.main_holder_status_box .main_holder_status_box__inner table tr + tr td {
  border-top: 1px dashed #C9D4E1;
}

.main_holder_status_box > a {
  display: block;
  padding: 15px 10px;
  text-align: center;
  font-size: 0;
  border-top: 1px solid #DCE6F2;
}

.main_holder_status_box > a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  font-weight: 300;
}

.main_holder_status_box > a img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

/* 태권도장 홍보 */
.main_tab_swiper {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.main_tab_swiper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15px;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}

.main_tab_swiper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), white);
  z-index: 2;
  pointer-events: none;
}

.main_tab_swiper > ul {
  font-size: 0;
}

.main_tab_swiper > ul > li {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

.main_tab_swiper > ul > li + li {
  margin-left: 3px;
}

.main_tab_swiper > ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #9CB2CC;
  padding: 8px 14px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  line-height: 1;
}

.main_tab_swiper > ul > li.active a {
  background-color: #064E90;
  border-color: #064E90;
  color: #fff;
}

/* Tcon 알림 */
.article_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}

.article_head .main_article_tit {
  margin-bottom: 0;
}

.article_head h2 {
  width: 100%;
  padding-right: 20px;
}

.article_head > *:last-child {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.article_head a.active {
  color: #1470cb !important;
}

.article_head a.active span:before {
  color: #1470cb;
}

.board_main__latest {
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 3px;
}

.board_main__latest ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 0;
}

.board_main__latest ul li a .notice_label {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #064E90;
  padding: 6px 8px;
  margin-right: 10px;
  border-radius: 12px;
}

.board_main__latest ul li a .notice_subject {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #064E90;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.board_main__latest ul li a.active .notice_label {
  background-color: #1470cb;
}

.board_main__latest ul li a.active .notice_subject {
  color: #1470cb;
}

.board_main__latest ul li + li {
  margin-top: 10px;
}

/* main banner */
.main_banner_wrap ul li a {
  display: block;
  font-size: 0;
}

.main_banner_wrap ul li a img {
  width: 100%;
  height: 400px;
}

.main_banner_wrap .slick-prev,
.main_banner_wrap .slick-next {
  width: auto;
  height: auto;
  z-index: 1;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main_banner_wrap .slick-prev:before,
.main_banner_wrap .slick-next:before {
  font-family: inherit;
  font-size: 33px;
  opacity: 1;
}

.main_banner_wrap .slick-prev.active:before,
.main_banner_wrap .slick-next.active:before {
  color: #9acdff;
}

.main_banner_wrap .slick-prev {
  left: 15px;
}

.main_banner_wrap .slick-prev:before {
  content: "\e90c";
}

.main_banner_wrap .slick-next {
  right: 15px;
}

.main_banner_wrap .slick-next:before {
  content: "\e90b";
}

.slick-dots {
  position: relative;
  bottom: auto;
  margin: 0 -5px;
  white-space: nowrap;
  font-size: 0;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  vertical-align: top;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 0;
  background: rgba(6, 59, 111, 0.2);
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  background: #063b6f;
}

/* 로그인 */
.container__inner.container__inner--login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.container__inner.container__inner--login .container__body {
  width: 100%;
  padding: 50px 0;
}

.inner--login {
  padding: 0 50px;
}

.login_util {
  font-size: 0;
  text-align: center;
  margin: 0 -15px;
}

.login_util li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 2px 12px;
}

.login_util li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  margin-top: -6px;
  background-color: #E6E6E6;
}

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

.login_util li a {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

.login_util li a.active {
  color: #333;
}

.d--i_b {
  display: inline-block !important;
}

.term_popup_conts {
  background-color: #F7F8F9;
  border: 1px solid #D4DAE1;
  margin-top: 10px;
}

.term_popup_inner {
  height: 50vh;
  overflow-y: auto;
  padding: 10px 20px;
}

.terms_wrap > *:first-child {
  margin-top: 0 !important;
}

p.tit01 {
  font-weight: 500;
  color: #064E8F;
  margin-top: 20px;
}

p.tit02 {
  font-weight: 500;
  color: #111;
  margin-top: 10px;
}

.tit02_txt,
.h5_txt {
  font-size: 12px;
  margin-top: 5px;
}

.terms_wrap ul {
  margin-top: 5px;
}

.terms_wrap ul li {
  padding-left: 16px;
  font-size: 12px;
}

.terms_wrap ul li span.num {
  display: inline-block;
  width: 16px;
  margin-left: -16px;
}

/* 약관동의 */
.terms_wrap .terms_header label.type_check {
  position: relative;
  display: block;
  height: 50px;
  text-align: center;
  padding: 13px;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"] + span.label {
  position: static;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-left: 0;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"] + span.label:before {
  content: "\f00c";
  position: relative;
  top: -2px;
  vertical-align: middle;
  margin-right: 10px;
  border: 2px solid #DFDFDF;
  width: 24px;
  height: 24px;
  color: #DFDFDF;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"] + span.label:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #D4DAE1;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"]:checked + span.label {
  color: #064E90;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"]:checked + span.label:before {
  width: 24px;
  height: 24px;
  background: none;
  border-color: #DFDFDF;
  color: #064E90;
}

.terms_wrap .terms_header label.type_check input[type="checkbox"]:checked + span.label:after {
  border-color: #064E90;
}

.terms_wrap label.term_agree input[type="checkbox"] + span.label {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-left: 28px;
}

.terms_wrap label.term_agree input[type="checkbox"] + span.label:before {
  content: "\f00c";
  position: absolute;
  top: 1px;
  left: 7px;
  color: #DFDFDF;
  font-size: 14px;
  font-weight: 300;
  font-family: 'FontAwesome';
}

.terms_wrap label.term_agree input[type="checkbox"]:checked + span.label:before {
  color: #064E90;
}

.terms_pre {
  height: 161px;
  background-color: #F7F8F9;
  border: 1px solid #D4DAE1;
  border-radius: 10px;
  padding: 15px 0;
}

.terms_pre pre {
  white-space: pre-wrap;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: 100%;
  padding: 0 15px;
  overflow-y: auto;
}

.terms_wrap .tbl_wrap {
  border-top: 1px solid #064E90;
  margin-top: 10px;
  margin-left: -16px;
  overflow-x: auto;
}

.terms_wrap .tbl_wrap table {
  width: 100%;
  border-top: 2px solid #505c78;
  border-bottom: 1px solid #dcdee2;
}

.terms_wrap .tbl_wrap table caption {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}

.terms_wrap .tbl_wrap table tr th,
.terms_wrap .tbl_wrap table tr td {
  font-size: 12px;
  padding: 10px;
  border-right: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  text-align: left;
  vertical-align: middle;
}

.terms_wrap .tbl_wrap table tr th:last-child,
.terms_wrap .tbl_wrap table tr td:last-child {
  border-right: 0;
}

.terms_wrap .tbl_wrap table tr th {
  font-weight: 500;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.terms_wrap .tbl_wrap table tr td {
  font-weight: 300;
  background-color: #fff;
}

/* 추가정보입력 */
.filebox_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 0;
}

.filebox_img label {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.filebox_img figure {
  position: relative;
  border-radius: 50%;
  background-color: #F0F0F0;
  overflow: hidden;
  height: 100%;
  font-size: 0;
}

.filebox_img figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
}

.photo_registration_box {
  position: absolute;
  right: -37px;
  bottom: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0;
}

.photo_registration_box__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #006FD5;
  margin-right: 5px;
  text-align: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.photo_registration_box__txt {
  font-size: 14px;
  font-weight: 300;
  color: #064E90;
}

.filebox_img input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.preview_img_wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
  -webkit-align-items: self-start;
  -moz-box-align: self-start;
  -ms-flex-align: self-start;
  align-items: self-start;
  margin: 0 auto;
}

.preview_img_wrap.hide {
  display: none;
}

.filebox_img .swipe_gallery {
  width: 120px;
  height: 120px;
  /*	display: none; */
}

.filebox_img .clear_file {
  position: absolute;
  top: 0;
  right: -24px;
  background: none;
  border: 0;
  outline: none;
  font-size: 0;
  display: none;
}

.pswp {
  z-index: 15000;
}

.photo_regist_ex {
  display: inline-block;
  text-align: left;
}

.photo_regist_ex li {
  font-size: 14px;
  font-weight: 300;
  color: #064E90;
  line-height: 1.8;
}

/* 아이디 찾기 */
.counselor_wrap .counselor__img {
  position: relative;
  text-align: center;
}

.counselor_wrap .counselor__box {
  border-radius: 10px;
  background-color: #E7EDF4;
  padding: 30px;
  margin-top: -15px;
}

/* 자격정보 */
.container__body > article.article_paper {
  padding: 20px 0;
  border-bottom: 12px solid #F5F5F5;
}

.container__body > article.article_paper:first-child {
  padding-top: 0;
}

.dtable {
  border-top: 1px solid #064E90;
}

.dtable table {
  width: 100%;
}

.dtable table tr th,
.dtable table tr td {
  font-size: 14px;
  padding: 10px;
  border-right: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  text-align: center;
}

.dtable table tr th:last-child,
.dtable table tr td:last-child {
  border-right: 0;
}

.dtable table thead tr th {
  font-weight: 500;
  background-color: #F4F7FB;
}

.dtable table tbody tr td {
  font-weight: 300;
  background-color: #fff;
}

.ltable {
  border-top: 1px solid #064E90;
}

.ltable table {
  width: 100%;
}

.ltable table tr th,
.ltable table tr td {
  font-size: 14px;
  padding: 10px;
  border-right: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  text-align: left;
  vertical-align: middle;
}

.ltable table tr th:last-child,
.ltable table tr td:last-child {
  border-right: 0;
}

.ltable table tr th {
  font-weight: 500;
  background-color: #F4F7FB;
  white-space: nowrap;
}

.ltable table tr td {
  font-weight: 300;
  background-color: #fff;
}

/* 심사·단증 발급 현황 */
.bullet_tit {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: #064E8F;
  padding-left: 20px;
}

.bullet_tit:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 4px solid #1876CB;
}

.img_progress_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.img_progress_wrap .img_progress__box {
  position: relative;
  width: 50%;
  padding: 20px;
}

.img_progress_wrap .img_progress__box .img_progress__box__inner {
  position: relative;
  background-color: #DFE6EE;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px 10px 15px;
  height: 100%;
  -webkit-box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
}

.img_progress_wrap .img_progress__box .img_progress__box__inner .img_progress__box__inner__num {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  width: 29px;
  height: 27px;
  background-color: #064E90;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.img_progress_wrap .img_progress__box .img_progress__box__inner .img_progress__box__inner__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 80px;
}

.img_progress_wrap .img_progress__box .img_progress__box__inner .img_progress__box__inner__img figure {
  font-size: 0;
  text-align: center;
}

.img_progress_wrap .img_progress__box .img_progress__box__inner p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.img_progress_wrap .img_progress__box:nth-child(2n):before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8.5px;
  width: 17px;
  height: 27px;
  margin-top: -13.5px;
  background: url("/assets/images/ico_progress_right.svg") no-repeat center;
}

.img_progress_wrap .img_progress__box:nth-child(2n) .img_progress__box__inner {
  background-color: #BCD4EB;
}

.img_progress_wrap .img_progress__box:nth-child(odd):before {
  content: "";
  position: absolute;
  top: -8.5px;
  left: 50%;
  width: 27px;
  height: 17px;
  margin-left: -13.5px;
  background: url("/assets/images/ico_progress_down.svg") no-repeat center;
}

.img_progress_wrap:first-child {
  margin-top: -20px;
}

.img_progress_wrap:first-child .img_progress__box:first-child:before {
  display: none;
}

.img_progress_wrap:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.img_progress_wrap:nth-child(even) .img_progress__box:nth-child(2n):before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8.5px;
  left: auto;
  width: 17px;
  height: 27px;
  margin-top: -13.5px;
  background: url("/assets/images/ico_progress_left.svg") no-repeat center;
}

/* 유품단 조회 */
.keepsake_box .keepsake_box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

.keepsake_box .keepsake_box__inner .swipe_gallery {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
}

.keepsake_box .keepsake_box__inner .swipe_gallery figure {
  width: 47px;
  height: 47px;
  font-size: 0;
  border-radius: 50%;
  border: 3px solid #ddd;
}

.keepsake_box .keepsake_box__inner .keepsake_box__inner__txt {
  width: 100%;
  padding-left: 15px;
}

.keepsake_box .keepsake_box__table {
  border-top: 1px solid #E4E4E4;
  padding: 10px 5px;
}

.keepsake_box .keepsake_box__table table {
  width: 100%;
}

.keepsake_box .keepsake_box__table table tbody tr th,
.keepsake_box .keepsake_box__table table tbody tr td {
  font-size: 14px;
  padding: 3px 10px;
}

.keepsake_box .keepsake_box__table table tbody tr th {
  text-align: left;
  font-weight: 500;
}

.keepsake_box .keepsake_box__table table tbody tr td {
  text-align: right;
  font-weight: 300;
}

/* 서브 네비게이션 */
.sub_nav_wrap {
  position: relative;
}

.sub_nav_wrap:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 15px;
  height: 1px;
  background-color: #E4E4E4;
}

.sub_nav_swiper {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.sub_nav_swiper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 4px;
  width: 15px;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}

.sub_nav_swiper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  width: 15px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), white);
  z-index: 2;
  pointer-events: none;
}

.sub_nav_swiper ul {
  font-size: 0;
}

.sub_nav_swiper ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  padding: 0 5px 10px;
}

.sub_nav_swiper ul li + li {
  margin-left: 20px;
}

.sub_nav_swiper ul li a {
  font-size: 14px;
  font-weight: 300;
}

.sub_nav_swiper ul li.active:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #064E90;
  z-index: 1;
}

.sub_nav_swiper ul li.active a {
  font-weight: 500;
}

/* 아카이브 갤러리 */
.board_geallery_wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.board_geallery_wrap ul li {
  width: 50%;
  padding: 0 5px;
  margin-top: 10px;
}

.board_geallery_wrap ul li .board_geallery__inner {
  position: relative;
  height: 100%;
  background-color: #fff;
}

.board_geallery_wrap ul li .board_geallery__inner figure {
  height: 0;
  padding-bottom: 100%;
}

.board_geallery_wrap ul li .board_geallery__inner p {
  font-size: 14px;
  font-weight: 300;
  color: #064E90;
  padding: 8px 15px;
}

.board_geallery_wrap ul li .board_geallery__inner a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(6, 59, 111, 0.3);
}

/* 아카이브 상세 */
.youtube_box {
  position: relative;
  font-size: 0;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.youtube_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ico_data_box {
  font-size: 0;
}

.ico_data_box span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #AAAEB2;
}

.ico_data_box span:before {
  font-size: 11px;
  color: #AAAEB2;
}

.ico_data_box span .icon-ico_board_view:before {
  font-size: 10px;
}

.btn_sympathy.on {
  background-color: #cfe8ff !important;
}

.btn_sympathy.on span {
  color: #064E90;
}

.btn_sympathy.on span.icon-ico_heart:before {
  content: "\e910";
  font-size: 14px;
  color: #FF2929;
}

.board_conts_box {
  padding: 10px 0;
}

.board_conts__category ul {
  display: flex;
  border-radius: 10px;
  background-color: #F7F8F9;
  padding: 10px;
}

.board_conts__category ul li {
  flex: 1;
  padding: 5px 10px;
  text-align: center;
}

.board_conts__category ul li + li {
  border-left: 1px solid #D0DAE6;
}

.board_conts__category ul li h6 {
  font-size: 14px;
  font-weight: 400;
}

.board_conts__category ul li p {
  font-size: 14px;
  font-weight: 700;
  color: #064E90;
  margin-top: 5px;
}

/* 구직정보 */
.select_table {
  margin: 0 -1px;
}

.select_table table {
  width: 100%;
}

.select_table table td {
  padding: 1px;
  width: 50%;
}

.general_form_box {
  border-radius: 5px;
  overflow: hidden;
}

.simple_info_table {
  padding: 10px 15px 0;
}

.simple_info_table table {
  width: 100%;
}

.simple_info_table table th,
.simple_info_table table td {
  font-size: 14px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: left;
}

.simple_info_table table th {
  font-weight: 500;
  white-space: nowrap;
  padding-right: 10px;
}

.simple_info_table table td {
  font-weight: 300;
  width: 50%;
}

.simple_info_table table td + th {
  padding-left: 10px;
}

.simple_info_table .simple_info_table__btn {
  margin: 10px -15px 0;
}

.simple_info_table .simple_info_table__btn a {
  display: block;
  padding: 15px 10px;
  text-align: center;
  font-size: 0;
  border-top: 1px solid #EFEFEF;
}

.simple_info_table .simple_info_table__btn a span {
  font-size: 14px;
  font-weight: 300;
}

.simple_info_table .simple_info_table__btn a span[class^="icon-ico"] {
  font-size: 14px;
}

/* 저단자심사 */
.judge_step_list li {
  position: relative;
}

.judge_step_list li .judge_step_list__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 91px;
  padding: 12px 10px;
  border-radius: 46px;
  background-color: #F9FCFF;
  overflow: hidden;
  -webkit-box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
}

.judge_step_list li .judge_step_list__inner .judge_step_list__inner__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #E3EBF3;
}

.judge_step_list li .judge_step_list__inner .judge_step_list__inner__txt {
  padding-left: 15px;
}

.judge_step_list li .judge_step_list__inner .judge_step_list__inner__txt h6 {
  font-size: 17px;
  font-weight: 500;
  color: #064E90;
}

.judge_step_list li .judge_step_list__inner .judge_step_list__inner__txt p {
  font-size: 14px;
  font-weight: 400;
}

.judge_step_list li + li {
  margin-top: 34px;
}

.judge_step_list li + li:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 10px;
  background: url("/assets/images/ico_progress_down.svg") no-repeat center/20px;
}

.judge_step_list li:nth-child(even) .judge_step_list__inner {
  background-color: #BCD4EB;
}

.judge_step_list li:nth-child(even) .judge_step_list__inner .judge_step_list__inner__img {
  background-color: #fff;
}

/* 공지사항 리스트 */
.btable table {
  width: 100%;
  border-top: 1px solid #064E90;
  table-layout: fixed;
}

.btable table tbody tr td {
  border-bottom: 1px solid #EFEFEF;
  font-weight: 300;
  padding: 10px;
}

.btable table tbody tr td:first-child {
  width: 66px;
  text-align: center;
}

.btable table tbody tr td:last-child {
  padding-left: 0;
}

.btable table tbody tr td a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btable table tbody tr td a p {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btable table tbody tr td a span[class^="icon-ico"] {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 5px;
}

.btable table tbody tr td ul {
  font-size: 0;
}

.btable table tbody tr td ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  margin-right: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.btable table tbody tr td ul li:after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 11px;
  background-color: #E4E4E4;
}

.btable table tbody tr td ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.btable table tbody tr td ul li:last-child:after {
  display: none;
}

.btable table tbody tr.notice td {
  background-color: #F4F7FB;
}

.btable table tbody tr.notice td:first-child {
  font-weight: 700;
  color: #064E90;
}

.btable table tbody tr.notice td a p {
  font-weight: 500;
}

.pagination--board {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.pagination--board > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin: 0 3px;
  border: 1px solid #E4E4E4;
  font-size: 10px;
}

.pagination--board > a.active {
  border-color: #1470cb;
}

.pagination--board > a.active span:before {
  color: #1470cb;
}

.pagination--board > ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination--board > ol li {
  padding: 0 7px;
}

.pagination--board > ol li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-weight: 300;
}

.pagination--board > ol li:not(.on) a.active {
  color: #1470cb;
}

.pagination--board > ol li.on a {
  background-color: #064E90;
  color: #fff;
  font-weight: 700;
}

.pagination--board > ol li.on a.active {
  background-color: #1470cb;
}

/* 공지사항 상세 */
.btable_view .btable_view__head {
  padding-bottom: 10px;
  border-bottom: 1px solid #EFEFEF;
}

.btable_view .btable_view__head ul {
  font-size: 0;
}

.btable_view .btable_view__head ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  margin-right: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.btable_view .btable_view__head ul li:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 11px;
  background-color: #E4E4E4;
}

.btable_view .btable_view__head ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.btable_view .btable_view__head ul li:last-child:after {
  display: none;
}

.btable_view .btable_view__body {
  padding: 20px 15px 30px;
}

.btable_view__file {
  padding: 13px 15px;
  border-top: 1px solid #EFEFEF;
}

.btable_view__file ul li {
  position: relative;
  padding-left: 20px;
}

.btable_view__file ul li:before {
  content: "\e902";
  position: absolute;
  top: 4px;
  left: 0;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.quick_page {
  border-top: 1px solid #111;
  border-bottom: 1px solid #EFEFEF;
}

.quick_page ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.quick_page ul li {
  position: relative;
  padding: 13px 25px;
  width: 50%;
}

.quick_page ul li:before {
  position: absolute;
  top: 50%;
  font-size: 14px;
  color: #C2C2C2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.quick_page ul li.quick_page__prev {
  text-align: left;
  padding-right: 15px;
}

.quick_page ul li.quick_page__prev:before {
  content: "\e914";
  left: 8px;
}

.quick_page ul li.quick_page__next {
  text-align: right;
  padding-left: 15px;
}

.quick_page ul li.quick_page__next:before {
  content: "\e913";
  right: 8px;
}

.quick_page ul li p {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick_page ul li a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.quick_page ul li.active:before,
.quick_page ul li.active * {
  color: #1470cb !important;
}

/* 품단전환신청 */
.apply_step {
  text-align: center;
  font-size: 0;
}

.apply_step ul {
  position: relative;
  display: inline-block;
}

.apply_step ul:before {
  content: "";
  position: absolute;
  top: 16.5px;
  right: 25px;
  left: 25px;
  height: 1px;
  background-color: #ddd;
}

.apply_step ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
  text-align: center;
}

.apply_step ul li .apply_step__num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  width: 34px;
  height: 34px;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}

.apply_step ul li p {
  font-size: 14px;
  font-weight: 400;
  color: #C8C8C8;
  margin-top: 10px;
}

.apply_step ul li.on .apply_step__num {
  border-color: #064E90;
  color: #064E90;
}

.apply_step ul li.on p {
  color: #064E90;
  font-weight: 700;
}

.apply_step ul li.complete .apply_step__num {
  background-color: #064E90;
  border-color: #064E90;
  font-size: 14px;
}

.bullet_ul {
  color: #999;
}

.bullet_ul > li {
  position: relative;
  padding-left: 0.8333em;
  font-size: 14px;
  font-weight: 300;
}

.bullet_ul > li:before {
  content: "";
  position: absolute;
  top: 0.583em;
  left: 0;
  width: 0.3333em;
  height: 0.3333em;
  border-radius: 50%;
  background-color: #064E90;
}

.flex_img_fix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_img_fix > figure {
  font-size: 0;
  padding-right: 20px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.between_table dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.between_table dl dt,
.between_table dl dd {
  font-size: 14px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.between_table dl dt {
  font-weight: 500;
  padding-right: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.between_table dl dd {
  font-weight: 300;
  width: 100%;
  text-align: right;
}

/* 입금자찾기 */
.depth_info_ul > li li {
  padding-left: 10px;
}

/* 태권도장 찾기 */
.map_box {
  width: 100%;
  height: 450px;
  border: 1px solid #D4E3EE;
}

.addr_dl dt,
.addr_dl dd {
  display: inline;
}

.addr_dl dt {
  margin-right: 5px;
}

/* 시도협회연락처 */
.contact_label {
  font-size: 0;
}

.contact_label span {
  display: inline-block;
  padding: 4px 7px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  background-color: #064E90;
}

/* FAQ */
.faq-wrap--fc {
  text-align: left;
  margin-bottom: 0;
  margin-bottom: 2rem;
  border: 1px solid #EFEFEF;
}

.faq-wrap--fc .faq-list--fc {
  border-bottom: 1px solid #EFEFEF;
}

.faq-wrap--fc .faq-list--fc:last-of-type {
  border-bottom: 0;
}

.faq-wrap--fc .f-wrap--fc a {
  position: relative;
  padding: 15px 40px 15px 70px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  background-color: #f7f7f7;
  color: #333;
}

.faq-wrap--fc .f-wrap--fc a:before {
  content: 'Q';
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 10px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: auto;
  height: auto;
  background: none;
  color: #818181;
  font-size: 1.3rem;
}

.faq-wrap--fc .f-wrap--fc a:after {
  content: '\f106';
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 1;
  color: #999;
}

.faq-wrap--fc .f-wrap--fc.on a:after {
  content: "\f107";
  color: #111;
}

.faq-wrap--fc .q-wrap--fc {
  display: none;
}

.faq-wrap--fc .q-wrap--fc p {
  position: relative;
  padding: 20px 40px 20px 70px;
  border-top: 1px solid #d7d7d7;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #444;
}

.faq-wrap--fc .q-wrap--fc p:before {
  content: 'A.';
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 30px;
  margin-right: 20px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: auto;
  height: auto;
  background: none;
  color: #ffd051;
  font-size: 1.3rem;
}

.faq-wrap--fc {
  border-top: 1px solid #064E90;
  border-right: 0;
  border-left: 0;
}

.faq-wrap--fc .f-wrap--fc a {
  display: block;
  font-size: 14px;
  background-color: #fff;
  padding: 10px 40px 10px 50px;
}

.faq-wrap--fc .f-wrap--fc a:before {
  content: 'Q';
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 10px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  width: 30px;
  height: 30px;
  background: #064E90;
  color: #fff;
  font-size: 14px;
  border: 1px solid #064E90;
}

.faq-wrap--fc .f-wrap--fc a:after {
  content: "";
  display: block;
  top: 13px;
  right: 10px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("/assets/images/ico_faq_plus.png") no-repeat center;
}

.faq-wrap--fc .f-wrap--fc.on a:after {
  background: url("/assets/images/ico_faq_minus.png") no-repeat center;
}

.faq-wrap--fc .q-wrap--fc p {
  position: relative;
  padding: 10px 10px 10px 50px;
  border-top: 1px solid #EFEFEF;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  background: #F4F7FB;
}

.faq-wrap--fc .q-wrap--fc p:before {
  content: 'A';
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 10px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 27px;
  text-align: center;
  margin-right: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #064E90;
  font-size: 14px;
  border: 1px solid #064E90;
}

/* Tcon 소개 */
.tcon_intro_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #EFEFEF;
}

.tcon_intro_list li {
  position: relative;
  width: 50%;
  padding: 24px 0 66px;
  text-align: center;
  border-bottom: 1px solid #EFEFEF;
}

.tcon_intro_list li:nth-child(even) {
  border-left: 1px solid #EFEFEF;
}

.tcon_intro_list li figure {
  height: 76px;
  font-size: 0;
}

.tcon_intro_list li h6 {
  font-size: 17px;
  font-weight: 700;
  color: #064E90;
  margin-top: 10px;
  padding: 0 15px;
}

.tcon_intro_list li p {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  margin-top: 10px;
  padding: 0 15px;
}

.tcon_intro_list li a {
  position: absolute;
  display: block;
  padding: 10px;
  font-size: 0;
  border-top: 1px solid #EFEFEF;
  right: 0;
  bottom: 0;
  left: 0;
}

.tcon_intro_list li a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 300;
}

.tcon_intro_list li a span[class^="icon-"] {
  margin-left: 10px;
  font-size: 11px;
}

/*# sourceMappingURL=contents.css.map */


.c_blue {
  color: #243dbb !important;
}

.c_000 {
  color: #000 !important;
}

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

.ico_pass {
  background-image: url(../../images/img_pass.png);
  width: 114px;
  height: 98px;
  display: inline-block;
}

img.userPhoto {
  display: block;
  width: 115px;
  height: 130px;
  margin: 0 auto;
}

figure > .preview_img {
  position: relative;
  border-radius: 50%;
  background-color: #F0F0F0;
  overflow: hidden;
  font-size: 0;
}

caption {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}

