/***************** 공통 스타일 *****************/
:root {
  /* color */
  --base-color-orange: #ef5713;
  --base-color-blue: #1088d2;
  --base-color-darkblue: #1d51a4;
  --base-color-red: #ff0000;
  --base-color-green: #22b945;
  --base-color-darkgreen: #0f912d;
  --base-color-grey: #ccc;
  --base-color-darkgrey: #999;
  --base-color-black: #333;
}

/* 입력창 */
.ipt_txt {
  height: 34px;
  padding: 0em 0.8em;
  font-size: 1.3rem;
  color: var(--base-color-black);
  border: 1px solid #ddd;
  border-radius: 0.4em;
  box-sizing: border-box;
  vertical-align: middle;
}
.ipt_txt:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border: 1px solid #f46f21;
}
.ipt_txt:disabled {
  color: #888;
}
.ipt_slct {
  height: 34px;
  padding: 0em 0.8em;
  font-size: 1.3rem;
  color: var(--base-color-black);
  border: 1px solid #ddd;
  border-radius: 0.4em;
  box-sizing: border-box;
  vertical-align: middle;
}
.ipt_slct:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border: 1px solid #f46f21;
}
.ipt_txa {
  width: 100%;
  padding: 0.8em 1em;
  font-size: 1.3rem;
  font-family: inherit;
  color: var(--base-color-black);
  border: 1px solid #ddd;
  border-radius: 0.4em;
  box-sizing: border-box;
}
.ipt_txa:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border: 1px solid #f46f21;
}
.ipt_chk {
  width: 18px;
  height: 18px;
}
.ipt_file_area {
  margin-bottom: 5px;
}
.ipt_file_area .file_alt {
  color: var(--base-color-blue);
}
.ipt_file_area .ipt_file_label {
  display: inline-block;
  cursor: pointer;
}
.ipt_file_area .btn_file_delete {
  display: none;
}
.ipt_file_area.selected .ipt_file_label {
  display: none;
}
.ipt_file_area.selected .btn_file_delete {
  display: inline-block;
}
.ipt_file_area .ipt_file {
  display: none;
}
.ipt_file_area .ipt_file.show {
  display: block;
}
.ipt_file_area .ipt_file + label.ipt_file_label {
  line-height: normal;
  cursor: pointer;
}
.ipt_label {
  cursor: pointer;
  vertical-align: middle;
}

/* 라디오, 체크박스 디자인 re */
.label_design {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}
.label_design_icon {
  display: inline-block;
  vertical-align: middle;
}
.label_design_txt {
  display: inline-block;
  vertical-align: middle;
}
.label_design .ipt_radio {
  display: none;
}
.label_design .ipt_chk {
  display: none;
}
.label_radio .label_design_icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-color-grey);
  background-color: #fff;
  border-radius: 100%;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
.label_radio .label_design_icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2px;
  height: 2px;
  background-color: var(--base-color-blue);
  transform: translate(-50%, -50%);
  border-radius: 100%;
  transition: all 0.2s;
  opacity: 0;
}
.label_radio .ipt_radio:checked + .label_design_icon .icon {
  width: 8px;
  height: 8px;
  opacity: 1;
}
.label_radio .ipt_radio:disabled + .label_design_icon {
  background-color: #eeeeee;
  cursor: default;
}
.label_radio .ipt_radio.disabled + .label_design_icon {
  background-color: #eeeeee;
  cursor: default;
}
.label_chk .label_design_icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-color-grey);
  background-color: #fff;
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
.label_chk .label_design_icon .icon {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #888;
  line-height: 16px;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}
.label_chk .ipt_chk:checked + .label_design_icon .icon {
  display: block;
  color: #fff;
  background: var(--base-color-blue);
}
.label_chk .ipt_chk:disabled + .label_design_icon {
  background-color: #eeeeee;
  cursor: default;
}
.label_chk .ipt_chk.disabled + .label_design_icon {
  background-color: #eeeeee;
  cursor: default;
}

/* 버튼 */
.ap_btn {
  display: inline-block;
  padding: 1em 2.5em;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  background-color: #fff;
  border: 1px solid var(--base-color-grey);
  border-radius: 4px;
  transition: 0.2s;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
}
.ap_btn:hover {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5) inset;
  color: #f46f21;
}
.ap_btn.orange {
  color: #fff;
  background-color: #f46f21;
  border: 1px solid #f46f21;
}
.ap_btn.orange:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
}
.ap_btn.blue {
  color: #fff;
  background-color: var(--base-color-darkblue);
  border: 1px solid var(--base-color-darkblue);
}
.ap_btn.blue:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.green {
  color: #fff;
  background-color: #259911;
  border: 1px solid #259911;
}
.ap_btn.green:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.purple {
  color: #fff;
  background-color: #972498;
  border: 1px solid #972498;
}
.ap_btn.purple:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.gray {
  color: #fff;
  background-color: #aaa;
  border: 1px solid #aaa;
}
.ap_btn.gray:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.gray2 {
  color: #fff;
  background-color: #666;
  border: 1px solid #666;
}
.ap_btn.gray2:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.black {
  color: #fff;
  background-color: var(--base-color-black);
  border: 1px solid var(--base-color-black);
}
.ap_btn.black:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.red {
  color: #fff;
  background-color: var(--base-color-red);
  border: 1px solid var(--base-color-red);
}
.ap_btn.red:hover {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9) inset;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.ap_btn.inactive {
  cursor: default;
}
.ap_btn.mid {
  padding: 9px 1.2em;
  font-size: 1.4rem;
} /* 중간버튼 */
.ap_btn.ipt {
  padding: 0 15px;
  height: 33px;
  font-size: 1.3rem;
  line-height: 31px;
} /* 인풋 사이즈 */
.ap_btn.small {
  padding: 0.5em 1.2em;
  font-size: 1.2rem;
} /* 작은버튼 */
.ap_btn.mini {
  position: relative;
  padding: 0.1em 0.7em;
  border-radius: 3em;
  font-size: 1.1rem;
  background-color: #888;
  color: #fff;
  vertical-align: middle;
}
.ap_btn.mini .icon {
  color: #fff;
  font-size: 1rem;
  transform: rotate(0deg);
  transition: 0.2s;
}
.ap_btn.mini.active {
  background-color: #f46f21;
}
.ap_btn.mini.active .icon {
  transform: rotate(45deg);
}
.ap_btn_submit_area {
  clear: both;
  display: flex;
  padding-bottom: 3%;
  text-align: center;
  justify-content: center;
  gap: 10px;
  word-break: keep-all;
}

/* input 입력시 capslock 체크 */
.chk_capslock_pop {
  display: none;
  padding: 0.5em 0.8em;
  margin-bottom: 10px;
  font-size: 14px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) inset;
  line-height: 1.3;
  word-break: keep-all;
  background: #db3528;
}
.chk_capslock_pop > .tit {
  color: #fff;
  font-weight: 600;
}
.chk_capslock_pop > .txt {
  display: none;
  color: #fff;
  font-size: 11px;
  opacity: 0.8;
}

/* 테이블 */
.ap_tbl {
  width: auto;
  max-width: none;
  min-width: 100%;
  table-layout: fixed;
  word-break: keep-all;
  line-height: 1.5;
}
.ap_tbl caption {
  padding: 0.5em;
  text-align: left;
}
.ap_tbl .open_pop {
  cursor: pointer;
}
.ap_tbl .open_pop:hover {
  text-decoration: underline;
  color: var(--base-color-orange);
}
.ap_tbl .disable_area {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
}
.ap_tbl .disable_area.show {
  display: block;
}
.ap_tbl .txt {
  vertical-align: middle;
}
.ap_tbl_cap {
  width: 100%;
  padding: 0.5em 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .ap_tbl_cap {
    display: block;
  }
}

/* 테이블 반응형 (테이블이 길때 세로로 형태 변환) */
.ap_tbl .m_th {
  display: none;
  width: 100px;
  font-weight: 600;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .ap_tbl.tbl_res,
  .ap_tbl.tbl_res tbody,
  .ap_tbl.tbl_res tfoot,
  .ap_tbl.tbl_res tr,
  .ap_tbl.tbl_res td {
    display: block;
  }
  .ap_tbl.tbl_res thead,
  .ap_fee_pay_tbl th {
    display: none;
  }
  .ap_tbl.tbl_res tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .ap_tbl.tbl_res tbody td {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    align-items: center;
    width: auto;
    padding: 0.8em;
  }
  .ap_tbl.tbl_res .col01 {
    flex: 0 0 100%;
    width: auto;
    font-weight: 600;
    color: var(--base-color-darkblue);
    border-bottom: 0;
  }
  .ap_tbl.tbl_res .col01 br {
    display: none;
  }
  .ap_tbl.tbl_res .col02 {
    /* border-top: 1px solid #eee; */
  }
  .ap_tbl.tbl_res .m_th {
    display: block;
    flex: 0 0 100px;
  }
  /* mini (내용물이 거의 없을 때) */
  .ap_tbl.tbl_res.mini .col01 {
    flex: 0 1 35px;
  }
  .ap_tbl.tbl_res.mini tbody td {
    flex: 0 1 calc(100% - 35px);
    padding: 0.6em 0.5em;
  }
  .ap_tbl.tbl_res.mini .m_th {
    flex: 0 0 15px;
  }
  .ap_tbl.tbl_res.mini .date {
    color: var(--base-color-darkgrey);
  }
  .ap_tbl.tbl_res.mini .col_date {
    flex: 1 1 100%;
    padding-top: 0.2em;
    margin-left: auto;
    justify-content: flex-end;
  }
  .ap_tbl.tbl_res.mini tbody td .link {
    padding: 0.3em;
  }
}

/* 테이블 type 01 */
.ap_tbl01 {
  margin-bottom: 34px;
  font-size: 1.4rem;
  background-color: #fff;
}
.ap_tbl01 tbody tr {
  border-bottom: 1px solid #efefef;
}
.ap_tbl01 tbody tr:hover {
  background-color: #fffefa;
}
.ap_tbl01 thead th {
  padding: 1em 0;
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--base-color-grey);
}
.ap_tbl01 tbody td {
  padding: 0.8em 0;
  text-align: center;
  color: #555;
}
.ap_tbl01 tbody td .link {
  display: block;
  padding: 1.2em 0;
}
.ap_tbl01 tbody td .link:hover {
  color: var(--base-color-orange);
}

@media screen and (max-width: 768px) {
  .ap_tbl01 {
    font-size: 1.2rem;
  }
  .ap_tbl01 thead th {
    font-size: 1.2rem;
  }
  .ap_tbl01 tbody td .link {
    padding: 0.7em 0;
  }
}

/* 테이블 type 02 */
.ap_tbl02 {
  text-align: left;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
}
.ap_tbl02 .col01 {
  width: 180px;
  padding: 1em;
  font-weight: 600;
  color: var(--base-color-black);
  line-height: 1.3;
  border: 1px solid #ddd;
}
.ap_tbl02 .col01.indent {
  position: relative;
  padding-left: 2em;
}
.ap_tbl02 .col01.indent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  display: block;
  width: 6px;
  height: 2px;
  border-bottom: 1px solid var(--base-color-grey);
  transform: translateY(-50%);
}
.ap_tbl02 .col02 {
  /* width: calc(100% - 180px); */
  padding: 1em;
  border: 1px solid #ddd;
}
.ap_tbl02 .col02_item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1020px) {
  .ap_tbl02 .col01 {
    width: 150px;
    padding: 1em 1em;
  }
}
@media screen and (max-width: 768px) {
  .ap_tbl02 .col01 {
    width: 100px;
    padding: 1em;
  }
  .ap_tbl02 .col02 {
    padding: 1em;
  }
}
@media screen and (max-width: 500px) {
  .ap_tbl02 .col01 {
    font-size: 1.2rem;
  }
  .ap_tbl02 .col02 {
    font-size: 1.2rem;
  }
}

/* 테이블 type 03 */
.ap_tbl03 {
  font-size: 1.4rem;
  color: #555;
  text-align: center;
}
.ap_tbl03 thead th {
  padding: 1em;
  background-color: #f5f5f5;
  color: var(--base-color-black);
}
.ap_tbl03 tbody td {
  padding: 1em;
  border-bottom: 1px solid #eee;
}
.ap_tbl03 tbody tr:last-of-type td {
  border-bottom: 1px solid var(--base-color-grey);
}
.ap_tbl03 tfoot td {
  padding: 1.3em 2em;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  color: var(--base-color-black);
}

/* 테이블 type 04 */
.ap_tbl04 {
  background-color: #fff;
  border: 1px solid #ddd;
}
.ap_tbl04 .bg_ivory {
  background-color: #fff4ee;
}
.ap_tbl04 > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.ap_tbl04 > li:last-of-type {
  border-bottom: 0;
}
.ap_tbl04 .col01 {
  padding: 15px 20px;
  margin-right: auto;
  text-align: left;
}
.ap_tbl04 .tr_scd {
  display: flex;
  flex: 100%;
  border-top: 1px solid #ddd;
}
.ap_tbl04 .tr_scd .col01 {
  position: relative;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: calc(100% - 58px);
}
.ap_tbl04 .tr_scd .ipt_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  transform: translate(-50%, -50%);
}
.ap_tbl04 .tr_scd .ap_tbl_btn {
  flex: 0 0 58px;
}
.ap_tbl04 .ap_tbl_btn {
  flex: 0 0 58px;
  height: 47px;
  background: none;
  border: 0;
  border-left: 1px solid #ddd;
  font-size: 1.6rem;
  color: #777;
}
.ap_tbl04 .ap_tbl_btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.ap_tbl04 .ap_tbl_btn.disabled {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.ap_tbl04 .ap_tbl_btn.disabled:hover {
  background-color: transparent;
}
.ap_tbl04 .ap_tbl_btn:disabled {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.ap_tbl04 .ap_tbl_btn:disabled:hover {
  background-color: transparent;
}
.ap_tbl04 .ap_tbl_btn.active {
  color: #f46f21;
}
.ap_tbl04 .tr_scd .ap_tbl_btn {
  position: relative;
}
.ap_tbl04 .tr_scd .ap_tbl_btn .icon_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
}
.ap_tbl04 > li:first-of-type > .ap_tbl_btn.arw.up {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.ap_tbl04 > li:last-of-type > .ap_tbl_btn.arw.down {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}

.ap_tbl04_scd {
  flex: 0 0 100%;
  background-color: #f9f9f9;
}
.ap_tbl04_scd > li {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
}
.ap_tbl04_scd .col01 {
  position: relative;
  padding-left: 35px;
}
.ap_tbl04_scd .col01:before {
  content: "";
  position: absolute;
  top: 46%;
  left: 25px;
  width: 5px;
  height: 1px;
  background-color: #666;
}
.ap_tbl04_scd > li:first-of-type > .ap_tbl_btn.arw.up {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.ap_tbl04_scd > li:last-of-type > .ap_tbl_btn.arw.down {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}

@media screen and (max-width: 768px) {
  .ap_tbl04 .tr_scd .col01 {
    flex-basis: calc(100% - 50px);
  }
  .ap_tbl04 .tr_scd .ap_tbl_btn {
    flex: 0 0 50px;
  }
  .ap_tbl04 .ap_tbl_btn {
    width: 35px;
  }
}
@media screen and (max-width: 500px) {
  .ap_tbl04 > li {
    border-bottom: 2px solid var(--base-color-grey);
  }
  .ap_tbl04 .col01 {
    flex: 0 0 100%;
  }
  .ap_tbl04 .ap_tbl_btn {
    flex: 1 1 23%;
    height: 30px;
    border-top: 1px solid #ddd;
  }
  .ap_tbl04 .ap_tbl_btn:first-of-type {
    border-left: 0;
  }
  .ap_tbl04_scd > li {
    border-top: 1px solid var(--base-color-grey);
  }
  .ap_tbl04 .tr_scd .col01 {
    padding: 0;
  }
  .ap_tbl04 .tr_scd .btn_add_scd {
    height: 40px;
    border: 0;
  }
}

/* 타이틀 공통 */
.solution_title_comm {
}
.solution_title_comm .link {
  display: block;
  height: 80px;
  color: #333;
  line-height: 80px;
  font-size: 30px;
  font-weight: 600;
}
.solution_title_comm img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.solution_title_comm table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solution_title_comm {
    text-align: center;
    font-size: 20px;
  }
}

/* 네비게이션 */
.ap_navi {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 3%;
  box-sizing: border-box;
  text-align: center;
}
.ap_navi_all_btn {
  display: block;
  flex: 0 0 80px;
  margin: 0 5px;
  padding: 0.8em 0;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: var(--base-color-black);
  cursor: pointer;
  line-height: 1;
}
.ap_navi_all_btn:hover {
  background-color: #fff;
}
.ap_navi_all_btn.btn_drct {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(40% - 40px);
  margin: 0;
}
.ap_navi_all_btn.disabled {
  border: 1px solid #eee;
  color: var(--base-color-grey);
  cursor: auto;
}
.ap_navi_all_list {
  display: none;
  flex: 0 0 100%;
  padding-top: 3px;
  font-size: 0;
  text-align: left;
}
.ap_navi_all_list > li {
  overflow: hidden;
  display: inline-block;
  width: calc(10% - 6px);
  margin: 3px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}
.ap_navi_all_list > li:hover {
  background-color: #ea881e;
  font-weight: bold;
  border: 1px solid #ea881e;
}
.ap_navi_all_list > li:hover .all_list_btn {
  color: #fff;
}
.ap_navi_all_list_btn {
  display: block;
  width: 100%;
  padding: 6pt 0;
  color: var(--base-color-black);
  line-height: 1;
  border: 0;
  background: #fafafa;
  font-size: 1.3rem;
}
.ap_navi_all_list_btn:hover {
  background-color: #ea881e;
  color: #fff;
}
.ap_navi_all_list_btn.active {
  background-color: #ea881e;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .ap_navi_all_list > li {
    width: calc(20% - 6px);
  }
  .ap_navi_all_btn {
    font-size: 1.3rem;
  }
}

/* datepicker */
div.ui-datepicker select.ui-datepicker-year, 
div.ui-datepicker select.ui-datepicker-month {
  margin-left:10px;
  padding:3px 5px;
  border:1px solid #ccc;
  border-radius:5px;
  width:80px;
}
table.ui-datepicker-calendar > tbody td:first-child a {color:red;}
table.ui-datepicker-calendar > tbody td:last-child a {color:blue;}