@charset "UTF-8";
/* ELLIPSIS */
/* / */
/************** board (게시판, 문의하기 등) **************/
#wrap.board {
  /* board 속 button, input 등 공통 디자인 요소 */
}
#wrap.board input[type=text], #wrap.board input[type=email], #wrap.board input[type=number], #wrap.board input[type=tel], #wrap.board input[type=password], #wrap.board input[type=text], #wrap.board textarea, #wrap.board select {
  border: 1px solid #ccc;
  width: 100%;
  height: 60rem;
  border-radius: 0;
  padding: 0 20rem;
  font-size: 20rem;
  cursor: auto;
  box-sizing: border-box;
}
#wrap.board textarea {
  padding: 20rem;
  height: 300rem;
}
#wrap.board {
  /* 스크롤 디자인 */
}
#wrap.board .scroll {
  height: 100%;
  overflow-y: auto;
}
#wrap.board .scroll::-webkit-scrollbar {
  display: block;
  width: 5rem;
}
#wrap.board .scroll::-webkit-scrollbar-thumb {
  background: #059FD2;
}
#wrap.board .scroll::-webkit-scrollbar-track {
  background: #ccc;
}
#wrap.board .board_toolbar {
  margin-top: 48rem;
  padding-bottom: 24rem;
  border-bottom: 1rem solid var(--cccccc, #CCC);
  display: flex;
  justify-content: space-between;
}
#wrap.board .board_toolbar .board_tap {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  min-width: 0;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#wrap.board .board_toolbar .board_tap::-webkit-scrollbar {
  display: none;
}
#wrap.board .board_toolbar .board_tap a.on {
  color: #FFF;
  font-weight: 600;
  background: #059FD2;
}
#wrap.board .board_toolbar .board_tap a {
  color: #555;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 18rem;
  font-weight: 400;
  line-height: 28rem;
  letter-spacing: -0.36rem;
  border-radius: 24rem;
  padding: 10rem 20rem;
  transition: all 0.3s ease;
  align-self: center;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: pan-x;
  -webkit-user-drag: none;
  user-drag: none;
}
#wrap.board .board_toolbar {
  /* 검색영역 */
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch select {
  margin-right: 10rem;
  width: 150rem;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch {
  display: flex;
  position: relative;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input[type=text] {
  background-color: #f5f6fa;
  border-radius: 24rem;
  width: 342rem;
  height: 48rem;
  padding: 0 64rem 0 20rem;
  font-size: 20rem;
  border: none;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input::-moz-placeholder {
  font-size: 20rem;
  color: #777;
  font-weight: 500;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input::placeholder {
  font-size: 20rem;
  color: #777;
  font-weight: 500;
}
#wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input[type=submit] {
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  height: 20rem;
  font-size: 0;
  color: #fff;
  background: url("/images/common/icon_search.svg") center center/16rem auto no-repeat;
}
#wrap.board {
  /* 리스트 형 */
}
#wrap.board .listTypeBoard {
  border-top: 2px solid #000;
}
#wrap.board .listTypeBoard table {
  width: 100%;
  table-layout: fixed;
}
#wrap.board .listTypeBoard table thead tr {
  border-bottom: 1px solid #000;
}
#wrap.board .listTypeBoard table thead tr th {
  height: 80rem;
  font-size: 22rem;
  line-height: 30rem;
  color: #2A2A2A;
  font-weight: 400;
}
#wrap.board .listTypeBoard table tbody tr {
  border-bottom: 1px solid #000;
}
#wrap.board .listTypeBoard table tbody tr td {
  padding: 10rem;
  height: 78rem;
  font-size: 20rem;
  line-height: 28rem;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}
#wrap.board .listTypeBoard table tbody tr td.tit {
  padding: 0 4%;
  text-align: left;
}
#wrap.board .listTypeBoard table tbody tr td.tit a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#wrap.board .listTypeBoard table tbody tr td.tit a:hover {
  text-decoration: underline;
}
#wrap.board .listTypeBoard table tbody tr td.noList {
  height: 200rem;
  font-size: 25rem;
  line-height: 100%;
  color: #7c7b7b;
}
#wrap.board {
  /* 갤러리 형 */
}
#wrap.board .galleryTypeBoard ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#wrap.board .galleryTypeBoard ul::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  background: #ccc;
  pointer-events: none;
  transform: translateX(-50%);
  width: 100%;
}
#wrap.board .galleryTypeBoard ul li {
  width: 50%;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 1;
}
#wrap.board .galleryTypeBoard ul li:nth-of-type(2n+1) {
  border-right: 1px solid #ccc;
}
#wrap.board .galleryTypeBoard ul li:nth-of-type(2n) {
  border-right: none;
}
#wrap.board .galleryTypeBoard ul li:nth-of-type(1), #wrap.board .galleryTypeBoard ul li:nth-of-type(2) {
  border-top: none;
}
#wrap.board .galleryTypeBoard ul li a {
  position: relative;
  display: flex;
  padding: 30rem;
  border-radius: 25rem;
  background-color: transparent;
  transition: background-color 0.25s ease;
  margin: 12rem;
}
#wrap.board .galleryTypeBoard ul li a .img_bx {
  position: relative;
  width: 342rem;
  height: 234rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease;
  background: url("/images/common/dummy_logo.png") no-repeat center/auto 49rem, url("/images/common/dummy_bg.png") no-repeat center/100% 100%, #f3f3f3;
  border-radius: 10rem;
}
#wrap.board .galleryTypeBoard ul li a .img_bx img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.25s ease;
}
#wrap.board .galleryTypeBoard ul li a .btm_btnS01 button {
  position: absolute;
  bottom: 40rem;
  left: 412rem;
}
#wrap.board .galleryTypeBoard ul li a:hover {
  background-color: #386EF9;
}
#wrap.board .galleryTypeBoard ul li a:hover .txt_bx .tit, #wrap.board .galleryTypeBoard ul li a:hover .txt_bx .date {
  color: #fff;
}
#wrap.board .galleryTypeBoard ul li a:hover .img_bx {
  box-shadow: 0 4rem 20rem 0 rgba(0, 0, 0, 0.3);
}
#wrap.board .galleryTypeBoard ul li a:hover .img_bx img {
  transform: scale(1.1);
}
#wrap.board .galleryTypeBoard ul li a:hover .view_btn {
  opacity: 1;
}
#wrap.board .galleryTypeBoard ul li a:hover .view_btn::after {
  animation: underlineSlide 0.5s ease forwards;
}
#wrap.board .galleryTypeBoard ul li a .txt_bx {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 10rem 0 10rem;
  margin-left: 40rem;
  box-sizing: border-box;
  position: relative;
}
#wrap.board .galleryTypeBoard ul li a .txt_bx .tit {
  display: block;
  width: 100%;
  margin-bottom: 12rem;
  font-size: 20rem;
  line-height: 24rem;
  color: #000;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
#wrap.board .galleryTypeBoard ul li a .txt_bx .date {
  display: block;
  width: 100%;
  font-size: 16rem;
  color: #333;
  transition: color 0.25s;
  font-weight: 300;
}
#wrap.board .galleryTypeBoard ul li a .view_btn {
  position: absolute;
  bottom: 10rem;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s;
  color: #fff;
  padding: 10rem 35rem 10rem 0;
  background: url("/images/common/btn_go_white.svg") no-repeat right 1rem center;
}
#wrap.board .galleryTypeBoard ul li a .view_btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1rem;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}
#wrap.board .galleryTypeBoard ul li.noList {
  margin: 0;
  width: 100%;
  padding: 100rem 0;
  font-size: 26rem;
  color: #7c7b7b;
  text-align: center;
  border: none;
}
#wrap.board {
  /* 뷰페이지 */
}
#wrap.board .boardViewWrap .bvTop {
  display: block;
  padding: 12rem 0 60rem;
}
#wrap.board .boardViewWrap .bvTop .subject {
  font-size: 48rem;
  font-weight: 500;
  line-height: 130%;
  color: #111;
  text-align: center;
  letter-spacing: -0.96rem;
}
#wrap.board .boardViewWrap .bvTop .info {
  display: none;
}
#wrap.board .boardViewWrap .bvCont {
  padding: 60rem 0;
  border-bottom: 1rem solid #ccc;
  border-top: 1rem solid #ccc;
  color: #333;
}
#wrap.board .boardViewWrap .bvCont b, #wrap.board .boardViewWrap .bvCont strong {
  font-weight: 600;
}
#wrap.board .boardViewWrap .bvCont em, #wrap.board .boardViewWrap .bvCont i {
  font-style: italic;
}
#wrap.board .boardViewWrap .bvCont img {
  max-width: 100%;
  width: auto;
}
#wrap.board .boardViewWrap .bvCont ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  list-style-position: outside;
}
#wrap.board .boardViewWrap .bvCont ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  list-style-position: outside;
}
#wrap.board .boardViewWrap .bvBottom {
  position: relative;
  min-height: 79rem;
}
#wrap.board .boardViewWrap .bvBottom .btm_btnS01 {
  display: inline-block;
}
#wrap.board .boardViewWrap .bvBottom .btm_btnS01 a {
  position: absolute;
  top: 34rem;
  right: 0;
  width: 220rem;
  right: 0;
}
#wrap.board .boardViewWrap .bvFileWrap {
  padding-top: 30rem;
}
#wrap.board .boardViewWrap .bvFileWrap .bvFile {
  margin-bottom: 12rem;
}
#wrap.board .boardViewWrap .bvFileWrap .bvFile strong {
  font-size: 16rem;
  font-weight: 300;
  line-height: 140%;
  color: #333;
  letter-spacing: -0.32rem;
}
#wrap.board .boardViewWrap .bvFileWrap .bvFile a {
  width: 652rem;
  display: inline-block;
  padding-left: 32rem;
  position: relative;
  background-image: url("/images/common/icon_file.svg");
  background-position: left center;
  background-size: 24rem;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 18rem;
  font-weight: 500;
  line-height: 140%;
  color: #111;
  letter-spacing: -0.36rem;
  margin-top: 8rem;
}
#wrap.board {
  /* 페이지 */
}
#wrap.board .pager_wrap {
  font-family: "Poppins", sans-serif;
  margin-top: 100rem;
}
#wrap.board .pager_wrap .pager {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 32rem;
  gap: 8.5rem;
}
#wrap.board .pager_wrap .pager * {
  width: 32rem;
  height: 32rem;
  font-weight: 400;
  font-size: 20rem;
}
#wrap.board .pager_wrap .pager .current_page {
  border-radius: 18rem;
  color: #fff;
  background: var(--point, #059FD2);
  font-weight: 500;
}
#wrap.board .pager_wrap .pager .pager_btn {
  width: 32rem;
  height: 32rem;
  text-indent: -9999999%;
  background-size: 13rem;
  background-position: center;
  background-repeat: no-repeat;
}
#wrap.board .pager_wrap .pager .pager_btn.next {
  background-image: url("/images/common/btn_next.svg");
  margin-left: 67rem;
}
#wrap.board .pager_wrap .pager .pager_btn.prev {
  background-image: url("/images/common/btn_prev.svg");
  margin-right: 67rem;
}
#wrap.board .pager_wrap .pager .pager_btn.first {
  background-image: url("/images/common/btn_prev.svg");
  margin-right: 67rem;
}
#wrap.board .pager_wrap .pager .pager_btn.last {
  background-image: url("/images/common/btn_next.svg");
  margin-left: 67rem;
}
#wrap.board {
  /* faq 리스트 */
}
#wrap.board .faqListS01 > li.on .a_bx {
  max-height: 500rem;
  border-top-color: gray;
}
#wrap.board .faqListS01 > li .q_bx {
  position: relative;
  padding: 32rem 130rem 32rem 96rem;
  font-size: 22rem;
  line-height: 140%;
  color: #000;
  font-weight: 400;
  cursor: pointer;
}
#wrap.board .faqListS01 > li .q_bx::before {
  content: "Q";
  position: absolute;
  left: 30rem;
  top: 30rem;
  width: 36rem;
  height: 36rem;
  font-size: 20rem;
  line-height: 36rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: #262626;
  border-radius: 50%;
  font-family: var(--eng);
}
#wrap.board .faqListS01 > li .q_bx::after {
  content: "";
  position: absolute;
  right: 30rem;
  top: 41rem;
  width: 22rem;
  height: 13rem;
  background: url("/images/contents/faq_ar.svg") no-repeat center;
  background-size: cover;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
#wrap.board .faqListS01 > li .q_bx.on::after {
  transform: rotate(180deg);
}
#wrap.board .faqListS01 > li .a_bx {
  max-height: 0;
  overflow: hidden;
  border-top: 1rem solid transparent;
  transition: max-height 0.55s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.35s ease;
}
#wrap.board .faqListS01 > li .a_bx div {
  position: relative;
  padding: 40rem 130rem 60rem 96rem;
  font-size: 20rem;
  line-height: 140%;
  color: #000;
  font-weight: 400;
}
#wrap.board .faqListS01 > li .a_bx div::before {
  content: "A";
  position: absolute;
  left: 30rem;
  top: 40rem;
  width: 36rem;
  height: 36rem;
  font-size: 20rem;
  line-height: 36rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: var(--color-ci);
  border-radius: 50%;
  font-family: var(--eng);
}
#wrap.board {
  /* 문의하기 게시판 */
}
#wrap.board .formTypeS01 {
  position: relative;
}
#wrap.board .formTypeS01 .point_wrap {
  text-align: right;
}
#wrap.board .formTypeS01 .point_wrap .point {
  position: relative;
  padding-left: 10rem;
  display: inline-block;
}
#wrap.board .formTypeS01 .point_wrap .point::after {
  content: "*";
  position: absolute;
  left: 0;
  font-size: inherit;
  color: var(--color-ci);
}
#wrap.board .formTypeS01 .typeTable {
  display: flex;
  flex-wrap: Wrap;
  gap: 60rem 24rem;
}
#wrap.board .formTypeS01 .typeTable > li {
  display: flex;
  flex-wrap: Wrap;
  width: 100%;
}
#wrap.board .formTypeS01 .typeTable > li.half {
  width: calc(50% - 12rem);
}
#wrap.board .formTypeS01 .typeTable > li:last-child {
  border-bottom: 0;
}
#wrap.board .formTypeS01 .typeTable > li .item {
  width: 100%;
}
#wrap.board .formTypeS01 .typeTable > li .item .label_wrap {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12rem;
}
#wrap.board .formTypeS01 .typeTable > li .item .label_wrap strong {
  color: var(--333333, #333);
  font-size: 20rem;
  font-weight: 500;
  position: relative;
  line-height: 140%; /* 28rem */
  letter-spacing: -0.4rem;
}
#wrap.board .formTypeS01 .typeTable > li .item .label_wrap strong.required {
  padding-right: 10rem;
}
#wrap.board .formTypeS01 .typeTable > li .item .label_wrap strong.required::after {
  content: " *";
  font-size: inherit;
  color: #059FD2;
}
#wrap.board .formTypeS01 .typeTable > li .item input[type=text], #wrap.board .formTypeS01 .typeTable > li .item input[type=email], #wrap.board .formTypeS01 .typeTable > li .item input[type=tel] {
  height: 38rem;
  border: none;
  border-bottom: 1rem solid #ccc;
  padding: 8rem 1.2rem;
  font-size: 16rem;
  font-weight: 400;
  line-height: 140%; /* 22.4rem */
  letter-spacing: -0.32rem;
  color: #111;
}
#wrap.board .formTypeS01 .typeTable > li .item::-moz-placeholder {
  font-weight: 300;
  color: #777;
}
#wrap.board .formTypeS01 .typeTable > li .item::placeholder {
  font-weight: 300;
  color: #777;
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  padding: 0 20rem 0 0;
  /* 체크박스 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td .ck_bx {
  font-size: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .ck_bx label {
  display: inline-block;
  vertical-align: top;
  font-size: 20rem;
  line-height: normal;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .ck_bx label:last-child {
  margin-right: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .ck_bx label input {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4rem;
  width: 20rem;
  height: 20rem;
  accent-color: var(--color-ci);
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  /* 라디오박스 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td .rd_bx {
  font-size: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .rd_bx label {
  display: inline-block;
  vertical-align: top;
  margin-right: 30rem;
  font-size: 20rem;
  line-height: normal;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .rd_bx label:last-child {
  margin-right: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .rd_bx label input {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4rem;
  width: 20rem;
  height: 20rem;
  accent-color: var(--color-ci);
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  /* 인풋 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td input:focus, #wrap.board .formTypeS01 .typeTable > li .type_td textarea:focus {
  border-bottom: 1rem solid #059FD2;
}
#wrap.board .formTypeS01 .typeTable > li .type_td select {
  padding: 0 20rem;
  width: 100%;
  height: 62rem;
  font-size: 20rem;
  box-sizing: border-box;
  background: url("/images/common/policy_ar.svg") no-repeat right 29rem center;
  background-size: 14rem auto;
}
#wrap.board .formTypeS01 .typeTable > li .type_td select:invalid {
  color: gray;
}
#wrap.board .formTypeS01 .typeTable > li .type_td select:focus {
  border-color: var(--color-ci);
}
#wrap.board .formTypeS01 .typeTable > li .type_td select option {
  color: #000;
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  /* 국가코드 셀렉트형 드롭다운 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0 12rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code > .label {
  width: 147rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  height: 38rem;
  padding: 0 14rem 0 12rem;
  font-size: 16rem;
  color: #111;
  cursor: pointer;
  transition: border-color 0.2s;
  font-weight: 400;
  border-bottom: 1rem solid #ccc;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code > .label::after {
  content: "";
  position: absolute;
  right: 12rem;
  top: 50%;
  margin-top: -4.5rem;
  width: 12rem;
  height: 12rem;
  background: url("/images/common/policy_ar.svg") no-repeat center;
  background-size: 12rem auto;
  transform: rotate(0deg);
  transition: transform 0.2s;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code > .label img {
  width: 24rem;
  height: 16rem;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: middle;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code > .label:focus {
  border-bottom-color: #059FD2;
  outline: none;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code:has(.optionList_wrap.on) > .label::after {
  transform: rotate(180deg);
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  width: 100%;
  background: #fff;
  border-top: 1rem solid #ccc;
  z-index: 50;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  padding: 20rem 12rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .search_set {
  position: relative;
  width: 100%;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .search_set .input_ty1 {
  width: 100%;
  height: 48rem;
  padding: 10rem 60rem 10rem 20rem;
  box-sizing: border-box;
  font-size: 20rem;
  border-radius: 24rem;
  background: #F5F6FA;
  border: none;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .search_set .input_ty1:focus {
  border-color: #059FD2;
  outline: none;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .search_set .search_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40rem;
  height: 48rem;
  padding: 0;
  cursor: pointer;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .search_set .search_btn img {
  width: 18rem;
  height: 18rem;
  -o-object-fit: contain;
  object-fit: contain;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .optionList {
  list-style: none;
  margin: 0;
  max-height: 338rem;
  overflow-y: auto;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .optionList .optionItem {
  position: relative;
  padding: 8rem 40rem 8rem 0;
  font-size: 18rem;
  line-height: 1.4;
  color: #111;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8rem;
  font-weight: 500;
  margin-top: 16rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .optionList .optionItem img {
  width: 24rem;
  height: 16rem;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .optionList .optionItem span {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  color: #333;
  font-weight: 300;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .optionList_wrap .optionList .optionItem.selected::after {
  content: "";
  width: 12rem;
  height: 11rem;
  background: url("/images/contents/check_icon.svg") no-repeat center;
  background-size: contain;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .country_code .input_ty1 {
  width: calc(100% - 155rem);
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  /* 커스텀 셀렉트 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select {
  width: 100%;
  position: relative;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select > .label {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 38rem;
  padding: 0 36rem 0 0;
  font-size: 16rem;
  color: #777;
  cursor: pointer;
  transition: border-color 0.2s;
  font-weight: 400;
  border-bottom: 1rem solid #ccc;
  box-sizing: border-box;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select > .label::after {
  content: "";
  position: absolute;
  right: 12rem;
  top: 50%;
  margin-top: -4.5rem;
  width: 12rem;
  height: 12rem;
  background: url("/images/common/policy_ar.svg") no-repeat center;
  background-size: 12rem auto;
  transform: rotate(0deg);
  transition: transform 0.2s;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select > .label:focus {
  border-bottom-color: #059FD2;
  outline: none;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select:has(.optionList .optionItem.selected:not([data-value=""])) > .label {
  color: #111;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select:has(.optionList_wrap.on) > .label::after {
  transform: rotate(180deg);
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  width: 100%;
  background: #fff;
  border-top: 1rem solid #ccc;
  z-index: 50;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  padding: 20rem 12rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList {
  list-style: none;
  margin: 0;
  max-height: 430rem;
  overflow-y: auto;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList .optionItem {
  position: relative;
  padding: 8rem 40rem 8rem 0;
  font-size: 18rem;
  line-height: 1.4;
  color: #111;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8rem;
  font-weight: 500;
  margin-top: 16rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList .optionItem img {
  width: 24rem;
  height: 16rem;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList .optionItem span {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  color: #333;
  font-weight: 300;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList .optionItem.selected::after {
  content: "";
  width: 12rem;
  height: 11rem;
  background: url("/images/contents/check_icon.svg") no-repeat center;
  background-size: contain;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .custom_select .optionList_wrap .optionList .optionItem:first-of-type {
  margin-top: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td {
  /* 첨부파일 */
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap {
  position: relative;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox .fileNameBx {
  position: relative;
  margin-right: 12rem;
  padding: 0 16rem;
  width: calc(100% - 232rem);
  height: 54rem;
  font-size: 20rem;
  line-height: 54rem;
  color: #777;
  border: 1rem solid #ccc;
  box-sizing: border-box;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #777;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox .fileNameBx #removeFileBtn {
  visibility: hidden;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50rem;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox .fileNameBx.sel {
  color: #000;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox .fileNameBx.sel #removeFileBtn {
  visibility: visible;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileBox .fileBtn {
  width: 220rem;
  font-size: 18rem;
  line-height: 54rem;
  color: #059FD2;
  font-weight: 500;
  border: 1rem solid #059FD2;
  text-align: Center;
  cursor: pointer;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap input[type=file]#input-file {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  top: 0;
  left: 0;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileInfoBox {
  margin-top: 12rem;
}
#wrap.board .formTypeS01 .typeTable > li .type_td .fileBoxWrap .fileInfoBox p {
  color: var(--777777, #777); /* PC/body4_16_lg */
  font-size: 16rem;
  font-weight: 300;
  line-height: 140%; /* 22.4rem */
  letter-spacing: -0.32rem;
}
#wrap.board .formTypeS01 .typeTable > li {
  /* 동의약관 */
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .term_tit {
  display: block;
  margin-bottom: 12rem;
  width: 100%;
  font-size: 20rem;
  font-weight: 400;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .term_tit.required {
  padding-right: 10rem;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .term_tit.required::after {
  content: " *";
  font-size: inherit;
  color: #059FD2;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .terms {
  width: 100%;
  height: 167rem;
  border: 1rem solid #ccc;
  padding: 20rem;
  color: #777;
  font-size: 18rem;
  font-weight: 300;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .terms .sub + .tit {
  margin-top: 20rem;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree {
  margin-top: 30rem;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree label {
  position: relative;
  display: inline-block;
  font-size: 16rem;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree .ck_bx.ck_custom {
  display: block;
}
#wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree a {
  display: block;
  color: var(--MAIN, #386EF9);
  margin-top: 24rem;
  font-size: 16rem;
  font-weight: 400;
  line-height: 140%; /* 22.4rem */
  letter-spacing: -0.32rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#wrap.board .formTypeS01 label.ck_style {
  cursor: pointer;
}
#wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span {
  position: relative;
  padding-left: 30rem;
}
#wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span::before, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 22rem;
  height: 22rem;
  border: 1rem solid #059FD2;
}
#wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span::after, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span::after {
  content: "";
  position: absolute;
  left: 4rem;
  top: 4rem;
  width: 16rem;
  height: 16rem;
  opacity: 0;
}
#wrap.board .formTypeS01 label.ck_style input[type=checkbox]:checked + span::after, #wrap.board .formTypeS01 label.ck_style input[type=radio]:checked + span::after {
  opacity: 1;
}
#wrap.board .formTypeS01 label.ck_style input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#wrap.board .formTypeS01 {
  /* 체크박스 커스텀 (check_icon_white 배경 이미지) */
}
#wrap.board .formTypeS01 .ck_bx.ck_custom {
  display: flex;
  flex-wrap: wrap;
  gap: 12rem 24rem;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label input[type=checkbox] {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label input[type=checkbox]:focus-visible + span::before {
  outline: 2rem solid #059FD2;
  outline-offset: 2rem;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label span {
  position: relative;
  padding-left: 34rem;
  font-size: 16rem;
  line-height: 1.4;
  color: #575757;
  font-weight: 400;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12rem;
  width: 24rem;
  height: 24rem;
  border-radius: 24rem;
  border: 1rem solid #059FD2;
  background: no-repeat center;
  background-size: 14rem;
  transition: border-color 0.2s, background-color 0.2s;
  box-sizing: border-box;
}
#wrap.board .formTypeS01 .ck_bx.ck_custom label input[type=checkbox]:checked + span::before {
  border-color: #059FD2;
  background-color: #059FD2;
  background-image: url("/images/contents/check_icon_white.svg");
  background-size: 11rem auto;
}

@media (max-width: 1280px) {
  #wrap.board .board_toolbar {
    margin: 20rem 0 24rem;
    display: block;
  }
  #wrap.board .board_toolbar .board_tap {
    margin-bottom: 20rem;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }
  #wrap.board .board_toolbar .board_tap a {
    font-size: 18rem;
    padding: 5rem 14rem;
    white-space: nowrap;
    flex-shrink: 0;
    touch-action: pan-x;
  }
  #wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input[type=text] {
    width: 100%;
    height: 40rem;
  }
  #wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input[type=text]::-moz-placeholder {
    font-size: 16rem;
  }
  #wrap.board .board_toolbar .boardSearchWrap .boardSearch .inputSearch input[type=text]::placeholder {
    font-size: 16rem;
  }
  #wrap.board {
    /* board 속 button, input 등 공통 디자인 요소 */
  }
  #wrap.board input[type=text], #wrap.board input[type=email], #wrap.board input[type=number], #wrap.board input[type=tel], #wrap.board input[type=password], #wrap.board input[type=text], #wrap.board textarea, #wrap.board select {
    height: 40rem;
    padding: 0 10rem;
    font-size: 15rem;
  }
  #wrap.board {
    /* 버튼 */
  }
  #wrap.board .btm_btnS01 {
    float: right;
  }
  #wrap.board .btm_btnS01 .btn01 {
    padding: 0 10rem;
    min-width: 130rem;
    height: 40rem;
    line-height: 40rem;
  }
  #wrap.board {
    /* 검색영역 */
  }
  #wrap.board .boardSearchWrap .boardSearch select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10rem;
  }
  #wrap.board .boardSearchWrap .boardSearch .inputSearch {
    width: 100%;
  }
  #wrap.board .boardSearchWrap .boardSearch .inputSearch input[type=text] {
    width: calc(100% - 58rem);
  }
  #wrap.board {
    /* 리스트 형 */
  }
  #wrap.board .listTypeBoard table {
    display: block;
  }
  #wrap.board .listTypeBoard table thead {
    display: none;
  }
  #wrap.board .listTypeBoard table tbody {
    display: block;
  }
  #wrap.board .listTypeBoard table tbody tr {
    display: block;
    padding: 20rem 0;
  }
  #wrap.board .listTypeBoard table tbody tr td {
    display: block;
    padding: 0;
    height: auto;
    font-size: 15rem;
    line-height: 20rem;
    text-align: left;
  }
  #wrap.board .listTypeBoard table tbody tr td.tit {
    padding: 0;
    margin: 15rem 0 20rem;
  }
  #wrap.board .listTypeBoard table tbody tr td.tit a {
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #wrap.board .listTypeBoard table tbody tr td.noList {
    height: 100rem;
    font-size: 16rem;
  }
  #wrap.board {
    /* 갤러리 형 */
  }
  #wrap.board .galleryTypeBoard ul::after {
    display: none;
  }
  #wrap.board .galleryTypeBoard ul li {
    width: 100%;
    padding: 24rem 0;
    border: none;
    border-bottom: 1rem solid #ccc;
    border-left: 0 !important;
    border-right: 0 !important;
  }
  #wrap.board .galleryTypeBoard ul li:first-of-type {
    padding-top: 0;
  }
  #wrap.board .galleryTypeBoard ul li a {
    display: block;
    padding: 0;
  }
  #wrap.board .galleryTypeBoard ul li a .img_bx {
    width: 100%;
    height: 218rem;
  }
  #wrap.board .galleryTypeBoard ul li a .txt_bx {
    padding: 0;
    box-sizing: border-box;
    margin-left: 0;
  }
  #wrap.board .galleryTypeBoard ul li a .txt_bx .tit {
    margin-top: 24rem;
    font-size: 16rem;
    margin-bottom: 8rem;
  }
  #wrap.board .galleryTypeBoard ul li a .txt_bx .txt {
    font-size: 15rem;
    line-height: 20rem;
  }
  #wrap.board .galleryTypeBoard ul li a .txt_bx .date {
    font-size: 15rem;
  }
  #wrap.board .galleryTypeBoard ul li a .txt_bx .view_btn {
    display: none;
  }
  #wrap.board .galleryTypeBoard ul li a:hover {
    background-color: unset;
  }
  #wrap.board .galleryTypeBoard ul li a:hover .img_bx {
    box-shadow: none;
  }
  #wrap.board .galleryTypeBoard ul li a:hover .txt_bx .tit, #wrap.board .galleryTypeBoard ul li a:hover .txt_bx .date {
    color: inherit;
  }
  #wrap.board .galleryTypeBoard ul li a .btm_btnS01 button {
    display: none;
  }
  #wrap.board .galleryTypeBoard ul li.noList {
    padding: 50rem 0;
    font-size: 18rem;
  }
  #wrap.board {
    /* 뷰페이지 */
  }
  #wrap.board .boardViewWrap .bvTop {
    padding: 6rem 0 20rem;
  }
  #wrap.board .boardViewWrap .bvTop .subject {
    width: 100%;
    font-size: 28rem;
  }
  #wrap.board .boardViewWrap .bvTop .info {
    margin-top: 5rem;
    width: 100%;
    font-size: 13rem;
    text-align: left;
  }
  #wrap.board .boardViewWrap .bvCont {
    padding: 30rem 0;
  }
  #wrap.board .boardViewWrap .bvFileWrap {
    padding: 20rem 0 0;
  }
  #wrap.board .boardViewWrap .bvFileWrap .bvFile strong {
    font-size: 16rem;
    font-weight: 300;
    line-height: 140%;
    color: #111;
    letter-spacing: -0.32rem;
  }
  #wrap.board .boardViewWrap .bvFileWrap .bvFile .file_item {
    padding-left: 20rem;
    background-size: 13rem;
    font-size: 13rem;
  }
  #wrap.board .boardViewWrap .bvFileWrap .bvFile .file_item a {
    width: 100%;
    font-size: 16rem;
  }
  #wrap.board .boardViewWrap .bvBottom::after {
    content: "";
    display: block;
    clear: both;
  }
  #wrap.board .boardViewWrap .bvBottom .btm_btnS01 a {
    width: 110rem;
    position: relative;
    bottom: auto;
    top: auto;
    right: auto;
  }
  #wrap.board {
    /* 페이지 */
  }
  #wrap.board .pager_wrap {
    margin-top: 40rem;
  }
  #wrap.board .pager_wrap .pager {
    position: relative;
  }
  #wrap.board .pager_wrap .pager * {
    width: 32rem;
    height: 32rem;
  }
  #wrap.board .pager_wrap .pager .pager_btn {
    background-size: 13rem;
    width: 24rem;
    height: 24rem;
  }
  #wrap.board .pager_wrap .pager .pager_btn.next {
    position: absolute;
    right: 0;
  }
  #wrap.board .pager_wrap .pager .pager_btn.prev {
    position: absolute;
    left: 0;
  }
  #wrap.board {
    /* faq 리스트 */
  }
  #wrap.board .faqListS01 > li {
    position: relative;
  }
  #wrap.board .faqListS01 > li.on .a_bx {
    display: block;
  }
  #wrap.board .faqListS01 > li.on::before {
    display: none;
  }
  #wrap.board .faqListS01 > li .q_bx {
    padding: 27rem 20rem 24rem 66rem;
    font-size: 15rem;
  }
  #wrap.board .faqListS01 > li .q_bx::before {
    left: 20rem;
    top: 22rem;
    width: 28rem;
    height: 28rem;
    font-size: 15rem;
    line-height: 28rem;
  }
  #wrap.board .faqListS01 > li .q_bx::after {
    right: 20rem;
    top: 30rem;
    width: 12rem;
    height: 7rem;
  }
  #wrap.board .faqListS01 > li .a_bx div {
    position: relative;
    padding: 23rem 24rem 20rem 66rem;
    min-height: 73rem;
    font-size: 15rem;
  }
  #wrap.board .faqListS01 > li .a_bx div::before {
    left: 20rem;
    top: 25rem;
    width: 28rem;
    height: 28rem;
    font-size: 15rem;
    line-height: 28rem;
  }
  #wrap.board {
    /* 문의하기 게시판 */
  }
  #wrap.board .formTypeS01 .point_wrap .point {
    padding-left: 10rem;
  }
  #wrap.board .formTypeS01 .typeTable {
    gap: 30rem 0;
  }
  #wrap.board .formTypeS01 .typeTable > li.half {
    width: 100%;
  }
  #wrap.board .formTypeS01 .typeTable > li .item {
    padding: 0;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .label_wrap {
    padding: 0;
    width: 100%;
    margin-bottom: 8rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .label_wrap strong {
    font-size: 15rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td {
    padding: 0;
    /* 체크박스 */
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .ck_bx {
    gap: 19rem 24rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .ck_bx label {
    font-size: 15rem;
    display: flex;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .ck_bx label input {
    width: 24rem;
    height: 24rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td textarea {
    min-height: 312rem;
    padding: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td {
    /* 라디오박스 */
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .rd_bx label {
    margin-right: 15rem;
    margin-bottom: 2rem;
    font-size: 15rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .rd_bx label input {
    margin-top: -2rem;
    width: 15rem;
    height: 15rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td select {
    padding: 0 10rem;
    height: 40rem;
    font-size: 15rem;
    background-position: right 15rem center;
    background-size: 12rem auto;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td {
    /* 국가코드 셀렉트형 드롭다운 */
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code {
    gap: 14rem 0;
    flex-direction: column;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code > .label {
    width: 100%;
    gap: 0 6rem;
    height: 38rem;
    padding: 0 14rem 0 0;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code > .label::after {
    right: 8rem;
    top: 50%;
    margin-top: -4.5rem;
    width: 10rem;
    height: 9rem;
    background-size: 10rem auto;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code > .label img {
    width: 32rem;
    height: 22rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap {
    top: 37rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .search_set .input_ty1 {
    height: 40rem;
    padding: 10rem 60rem 10rem 14rem;
    font-size: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .search_set .search_btn {
    width: 30rem;
    height: 40rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .search_set .search_btn img {
    width: 16rem;
    height: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .optionList {
    max-height: 422rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .optionList .optionItem {
    padding: 8rem 10rem 8rem 0;
    font-size: 16rem;
    margin-top: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .optionList .optionItem img {
    width: 36rem;
    height: auto;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .optionList_wrap .optionList .optionItem.selected::after {
    width: 12rem;
    height: 8rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .country_code .input_ty1 {
    width: 100%;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td {
    /* 커스텀 셀렉트 */
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select {
    width: 100%;
    position: relative;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select > .label {
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 38rem;
    padding: 0 36rem 0 0;
    font-size: 16rem;
    color: #777;
    cursor: pointer;
    transition: border-color 0.2s;
    font-weight: 400;
    border-bottom: 1rem solid #ccc;
    box-sizing: border-box;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select > .label::after {
    content: "";
    position: absolute;
    right: 12rem;
    top: 50%;
    margin-top: -4.5rem;
    width: 12rem;
    height: 12rem;
    background: url("/images/common/policy_ar.svg") no-repeat center;
    background-size: 12rem auto;
    transform: rotate(180deg);
    transition: transform 0.2s;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select > .label:focus {
    border-bottom-color: #059FD2;
    outline: none;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select:has(.optionList .optionItem.selected:not([data-value=""])) > .label {
    color: #111;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select:has(.optionList_wrap.on) > .label::after {
    transform: rotate(0deg);
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    width: 100%;
    background: #fff;
    border-top: 1rem solid #ccc;
    z-index: 50;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
    padding: 20rem 12rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap.on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList {
    list-style: none;
    margin: 0;
    max-height: 430rem;
    overflow-y: auto;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList .optionItem {
    position: relative;
    padding: 8rem 40rem 8rem 0;
    font-size: 18rem;
    line-height: 1.4;
    color: #111;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8rem;
    font-weight: 500;
    margin-top: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList .optionItem img {
    width: 24rem;
    height: 16rem;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList .optionItem span {
    display: inline-flex;
    align-items: center;
    gap: 6rem;
    color: #333;
    font-weight: 300;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList .optionItem.selected::after {
    content: "";
    width: 12rem;
    height: 11rem;
    background: url("/images/contents/check_icon.svg") no-repeat center;
    background-size: contain;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .custom_select .optionList_wrap .optionList .optionItem:first-of-type {
    margin-top: 0;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td {
    /* 첨부파일 */
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .fileBoxWrap .fileBox .fileNameBx {
    margin-right: 6rem;
    padding: 16rem;
    width: calc(100% - 116rem);
    height: 53rem;
    font-size: 15rem;
    line-height: 140%;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .fileBoxWrap .fileBox .fileNameBx #removeFileBtn {
    width: 40rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .fileBoxWrap .fileBox .fileBtn {
    width: 110rem;
    font-size: 16rem;
    line-height: 140%;
    align-content: center;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .fileBoxWrap .fileInfoBox {
    margin-top: 8rem;
  }
  #wrap.board .formTypeS01 .typeTable > li .item .type_td .fileBoxWrap .fileInfoBox p {
    font-size: 15rem;
  }
  #wrap.board .formTypeS01 .typeTable > li {
    /* 동의약관 */
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea {
    margin-top: 30rem;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .term_tit {
    margin-bottom: 10rem;
    font-size: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .terms {
    height: 167rem;
    padding: 16rem;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .terms .sub + .tit {
    margin-top: 10rem;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree {
    margin-top: 15rem;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree label {
    font-size: 14rem;
    display: block;
  }
  #wrap.board .formTypeS01 .typeTable > li.termsArea .inquiry_agree a {
    margin-top: 12rem;
    font-size: 15rem;
  }
  #wrap.board .formTypeS01 label.ck_style {
    cursor: pointer;
  }
  #wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span {
    padding-left: 32rem;
    font-size: 15rem;
  }
  #wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span::before, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span::before {
    width: 24rem;
    height: 24rem;
    background-size: 12rem auto;
  }
  #wrap.board .formTypeS01 label.ck_style input[type=checkbox] + span::after, #wrap.board .formTypeS01 label.ck_style input[type=radio] + span::after {
    left: 6rem;
    top: 6rem;
    width: 10rem;
    height: 10rem;
  }
}
@media (max-width: 500px) {
  #wrap.board {
    /* 갤러리 형 */
  }
  #wrap.board .galleryTypeBoard ul li {
    width: 100%;
    margin-right: 0 !important;
  }
}
