* {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

.section-wrap {
  position: relative;
  margin: 0 auto;
  height: fit-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1680px;
}

.section-wrap>div {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section-wrap {
    max-width: 720px;
  }

  .desktop {
    display: none !important;
  }
}

.board-container {
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  padding: 0 20px;
  gap: 50px;
  justify-content: center;
}


@media screen and (max-width: 767px) {
  .board-container {
    display: block;
  }
}

/* 콘텐츠 */
.content-container {
  width: 80%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .content-container {
    margin-left: unset;
  }
}

.title_box {
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 100px;
}

.content-container>.title_box>h1 {
  font-size: 48px;
  font-weight: 800;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .content-container {
    width: 100%;
  }

  .content-container>.title_box>h1 {
    font-size: 36px;
  }
}

.line_box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.line {
  width: 150px;
  height: 5px;
  display: block;
  background: linear-gradient(90deg, #2e9fa2 0%, #9b95f3 100%);
  justify-content: center;
}

.text_box {
  text-align: left;
  font-size: 23px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .text_box {
    font-size: 18px;
  }
}

/*
.image_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  margin-bottom: 50px;
  border-radius: 70%;
  
}
*/

.image_box {
  width: 250px;
  height: 250px;
  border-radius: 70%;
  overflow: hidden;
}

.profile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
}

.button_box>a {
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  width: 230px;
  height: 64px;
  line-height: 64px;
}

@media screen and (max-width: 767px) {
  .button_box>button {
    font-size: 14px;
  }
}

.color_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  margin-bottom: 150px;
  flex-wrap: wrap;
}

.color_card {
  height: 270px;
  width: 200px;
  display: flex;
  position: relative;
  box-shadow: 0px 0px 6px 0px #0505052e;
  border-radius: 30px;
  overflow: hidden;
}

.desc {
  width: 100%;
  height: 60px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  border-radius: 0 0 30px 30px;
  bottom: 0;
  padding: 18px;
  align-items: center;
}

.main-color {
  font-size: 17px;
  font-weight: 600;
}

.color-code {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .color_box {
    gap: 20px;
  }

  .color_card {
    height: 200px;
    width: 150px;
  }

  .desc {
    padding: 12px;
  }

  .main-color {
    font-size: 14px;
  }

  .color-code {
    font-size: 12px;
  }
}

/* 사업소개 */
.artistdb_intro {
  position: relative;
  z-index: 1;
}

.artistdb_intro .typo_style_subtitle {
  font-size: 120px;
  font-family: 'Pretendard-Black';
  line-height: 1.2;
  color: #F5F5F6;
  position: relative;
  z-index: -1;
  line-height: 1;
  background: linear-gradient(-45deg, #212121, #6D9886, #D9CAB3, #F6F6F6);
  background-size: 400% 400%;
  animation: gradientMove 7s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradientMove 7s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 50% 0%;
  }
}

.artistdb_intro img:first-of-type {
  position: relative;
  z-index: 1;
}

.artistdb_intro img:last-of-type {
  border-radius: 0 200px 200px 200px;
}

.artistdb_intro .text_01 {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  margin-top: 100px;
  word-break: auto-phrase;
}

.artistdb_intro .text_01 .point {
  font-family: 'Pretendard-Semi-Bold';
  color: #000;
}

.artistdb_intro .text_01 .point_bg {
  background: linear-gradient(90deg, #D9CAB3, #6D9886, #212121);
  font-family: 'Pretendard-Semi-Bold';
  color: #fff;
  padding: 3px 5px 5px;
  line-height: 1.2;
}

.artistdb_intro .text_02 {
  padding-top: 20px;
  font-size: 18px;
  margin-bottom: 100px;
  word-break: auto-phrase;
}

.artistdb_intro .typo_style_title {
  font-size: 80px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  letter-spacing: 2px;
  line-height: 1.2;
  color: #000;
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 3px;
  text-align: right;
}

.artistdb_intro .typo_style_title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, #212121, #6D9886, #D9CAB3);

}

.artistdb_intro .text_03 {
  font-size: 26px;
  font-family: 'Pretendard-Semi-Bold';
  color: #000;
  margin-bottom: 50px;
  word-break: auto-phrase;
}

@media screen and (max-width: 1320px) {
  .artistdb_intro .typo_style_subtitle {
    font-size: 80px;
  }

  .artistdb_intro .typo_style_title {
    font-size: 60px;
  }
}

@media screen and (max-width: 1000px) {
  .artistdb_intro .typo_style_subtitle {
    font-size: 50px;
  }

  .artistdb_intro .typo_style_title {
    font-size: 30px;
  }

  .artistdb_intro .text_01,
  .artistdb_intro .text_03 {
    font-size: 22px;
  }

  .artistdb_intro .text_01 {
    margin-top: 50px;
  }

  .artistdb_intro .text_02 {
    margin-bottom: 50px;
  }


}

@media screen and (max-width: 800px) {
  .artistdb_intro .typo_style_subtitle {
    font-size: 30px;
  }

  .artistdb_intro .typo_style_title {
    font-size: 30px;
  }

  .artistdb_intro .text_01,
  .artistdb_intro .text_03 {
    font-size: 16px;
  }

  .artistdb_intro .text_02,
  .artistdb_intro .typo_style_title,
  .artistdb_intro .text_03 {
    margin-bottom: 30px;
  }

  .artistdb_intro .text_01 {
    margin-top: 30px;
  }

  .artistdb_intro .typo_style_title::before {
    width: 55%;
  }
}

@media screen and (max-width: 450px) {}

/* 예술인 DB 리스트 */
.search_bar_wrapper {
  background: #EEF6F6;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.filter_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.filter_section .filter_left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter_section .filter_left .select_wrap {
  position: relative;
}

.select_box:hover,
.select_box:focus,
.search_select:hover,
.search_select:focus,
.search_input:hover,
.search_input:focus {
  border: 1px solid #238184 !important;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.filter_section .filter_left .select_box {
  width: 150px;
  padding: 0 20px 0 40px;
  /*왼쪽아이콘자리확보*/
  height: 40px;
  border: 1px solid #CFD9D9;
  background-color: #fff;
  font-size: 16px;
  color: #696969;
  cursor: pointer;
  appearance: none;
  background-image: url("/_themes/default/images/artistdb/AiOutlineDown.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* 첫 번째 select_wrap 안에 아이콘 삽입 */
.filter_section .filter_left .select_wrap:nth-of-type(1)::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/_themes/default/images/artistdb/AiOutlineCompass.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  pointer-events: none;
  z-index: 1;
}

/* 두 번째 select_wrap 안에 아이콘 삽입 */
.filter_section .filter_left .select_wrap:nth-of-type(2)::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/_themes/default/images/artistdb/AiOutlineAppstore.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  pointer-events: none;
  z-index: 1;
}


.filter_section .filter_right {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #CFD9D9;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  padding: 0 12px;
}

.filter_section .filter_right .search_box {
  display: flex;
  align-items: center;


}

.filter_section .filter_right .search_select {
  width: 150px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #696969;
  padding-left: 12px;
  cursor: pointer;
  background-image: url("/_themes/default/images/artistdb/AiOutlineDown.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.filter_section .filter_right .search_input {
  flex: 1;
  border: none;
  padding: 0 10px;
  font-size: 16px;
  color: #696969;
}

.filter_section .filter_right .search_input::placeholder {
  color: #bbb;
}

.filter_section .filter_right .search_btn_icon {
  width: 20px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  background-image: url("/_themes/default/images/artistdb/AiOutlineSearch.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;

}

.filter_section .filter_right .reset_btn {
  width: 16px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  background-image: url("/_themes/default/images/artistdb/Vector.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.info_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 40px;
}

.info_section .post_count {
  font-size: 16px;
  color: #444;
}

.info_section .post_count span {
  color: #1a716d;
  font-weight: bold;
}

.info_section .sort_filter {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
}

.info_section .sort_filter .select_box {
  width: 150px;
  padding: 0 20px 0 40px;
  /* 왼쪽 아이콘 자리 확보 */
  height: 40px;
  border: none;
  background-color: #fff;
  font-size: 16px;
  color: #696969;
  cursor: pointer;
  appearance: none;
  background-image: url("/_themes/default/images/artistdb/AiOutlineDown.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.info_section .sort_filter::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/_themes/default/images/artistdb/AiFillFunnelPlot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  pointer-events: none;
  z-index: 1;
}

.artist_list {
  display: flex;
  gap: 60px 20px;
  flex-wrap: wrap;
}

.artist_list li {
  width: calc((100% - 80px) / 5);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
}

.artist_list li .img_wrap {
  width: 100%;
  position: relative;
}

.artist_list li .img_wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.28);
  z-index: 1;
}

.artist_list li .img_wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 240 / 360;
  filter: saturate(45%);
  -webkit-filter: saturate(45%);
}

.artist_list li:hover .img_wrap::before,
.artist_list li:focus .img_wrap::before {
  background-color: transparent;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

.artist_list li:hover .img_wrap img,
.artist_list li:focus .img_wrap img {
  filter: saturate(100%);
  -webkit-filter: saturate(100%);
}

.artist_list li .contents {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.artist_list li .contents .artist_name {
  text-align-last: left;
  font-size: 28px;
  font-weight: 600;
  color: #272727;

}

.artist_list li .contents .position {
  padding: 3px 12px;
  background-color: #272727;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  box-sizing: border-box;
  line-height: 1.4;
  margin-top: 2px;
}

@media only screen and (max-width: 1360px) {
  .title_box {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .filter_section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .filter_section .filter_left {
    width: 100%;
  }

  .filter_section .filter_left .select_wrap {
    width: calc((100% - 10px) / 2);
  }

  .filter_section .filter_left .select_box {
    width: 100%;
  }

  .filter_section .filter_right {
    gap: 0px;
    justify-content: space-between;
    width: 100%;
  }

  .filter_section .filter_right .search_box {
    width: 100%;
  }

  .filter_section .filter_right .reset_btn {
    margin-left: 12px;
  }

  .artist_list li {
    width: calc((100% - 60px) / 4);
  }
}

@media screen and (max-width: 1080px) {
  .artist_list li {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 870px) {
  .artist_list li .contents .artist_name {
    font-size: 24px;
  }
}

@media screen and (max-width: 560px) {
  .board-container {
    padding: 0;
  }

  .filter_section .filter_right .search_select {
    width: 100px;
  }

  .filter_section .filter_right .search_input {
    flex: none;
    width: calc(100% - 120px);
  }

  .artist_list li {
    width: calc((100% - 20px) / 2);
  }

}

@media screen and (max-width: 460px) {
  .info_section .post_count {
    font-size: 14px;
  }

  .info_section .sort_filter::before {
    left: 5px;
  }

  .info_section .sort_filter .select_box {
    width: 90px;
    padding: 0 20px 0 30px;
    font-size: 14px;
  }

  .artist_list li .contents .artist_name {
    font-size: 20px;
  }

  .artist_list li .contents .position {
    font-size: 13px;
  }
}

/* 예술인DB 리스트 상세 */
.sub_h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  margin-bottom: 50px;
  color: #272727;
}

.artistdb_list_view .profile_top {
  display: flex;
  justify-content: space-between;

}

.artistdb_list_view .profile_top .profile_left .name_wrap {
  margin-bottom: 50px;
}

.artistdb_list_view .profile_top .profile_left .name_wrap .artist_name_kor {
  font-size: 36px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  color: #000;
}

.artistdb_list_view .profile_top .profile_left .name_wrap .artist_name_eng {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  color: #238184;
}

.artistdb_list_view .profile_top .profile_left ul li {
  display: flex;
  gap: 70px;
  padding-bottom: 25px;

}

.artistdb_list_view .profile_top .profile_left ul li:last-child {
  padding-bottom: 0;
}

.artistdb_list_view .profile_top .profile_left ul li .profile_title {
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  width: 95px;
}

.artistdb_list_view .profile_top .profile_left ul li:first-of-type div span.field {
  padding-left: 25px;
  position: relative;
}

.artistdb_list_view .profile_top .profile_left ul li:first-of-type div span.field::before {
  content: '';
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
  width: 8px;
  height: 12px;
  background: url(/_themes/default/images/artistdb/arrow_small.png) no-repeat;
}

.artistdb_list_view .profile_top img.profile_right {
  aspect-ratio: 531/797;
  height: 100%;

}

.artistdb_list_view .profile_top {
  margin-bottom: 80px;
}

.sub_title_header {
  width: 100%;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  background-color: #EEF6F6;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.information .sub_title_header {
  margin-bottom: 0;
}

.sub_title_header::before {
  content: '';
  position: absolute;
  right: 20px;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  background: url(/_themes/default/images/artistdb/arrow_won.png) no-repeat;

}

.sub_title_header p {
  font-size: 24px;
  font-family: 'Pretendard-Bold';
  font-weight: 600;
  padding-bottom: 0 !important;
  color: #000;
}

.information .contents {
  padding: 20px 30px;
  border-bottom: 1px solid #238184;
  margin-bottom: 40px;
}

.info_table_wrap {
  padding: 8px;
  border-top: 1px solid #238184;
}

.info_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
}

/* 둥근 모서리 */
.info_table tr:first-child th {
  border-top-left-radius: var(--radius)
}

.info_table tr:first-child td {
  border-top-right-radius: var(--radius)
}

.info_table tr:last-child th {
  border-bottom-left-radius: var(--radius)
}

.info_table tr:last-child td {
  border-bottom-right-radius: var(--radius)
}

/* 셀 공통 */
.info_table th,
.info_table td {
  padding: 25px;
  vertical-align: middle;
  background: #fff;
  border-bottom: 1px solid #DCE0E0;
}

/* 좌측 라벨 셀 */
.info_table th {
  width: 180px;
  text-align: left;
  font-weight: 600;
  color: #101828;
  background-color: #EEF6F6;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
}

/* 값 셀 */
.info_table td {
  color: #585860;
}

/* 버튼 */
.btn_preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #238184;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  color: #fff;
  cursor: pointer;
  background-color: #238184;
  transition: background .2s ease, transform .02s ease;
}

.btn_preview:active {
  transform: translateY(1px)
}

.btn_preview:hover {
  background-color: #469092;
}

.btn_preview .btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

button.go_list {
  border: 1px solid #E2E5EC;
  box-sizing: border-box;
  padding: 10px 20px;
  margin-top: 40px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  color: #212121;
}

button.go_list:hover {
  background-color: #238184;
  color: #fff;
  transition: 0.3S ease-in;
  -webkit-transition: 0.3S ease-in;
  -moz-transition: 0.3S ease-in;
  -ms-transition: 0.3S ease-in;
  -o-transition: 0.3S ease-in;
}


@media screen and (max-width: 1200px) {
  .artistdb_list_view .profile_top img.profile_right {
    width: 40%;
  }
}

@media screen and (min-width: 767px) and (max-width: 950px) {
  .artistdb_list_view .profile_top {
    flex-direction: column;
    gap: 40px;
  }

  .artistdb_list_view .profile_top .profile_left {
    order: 2;
  }

  .artistdb_list_view .profile_top .profile_right {
    order: 1;
  }
}

@media screen and (max-width: 640px) {
  .sub_h2 {
    font-size: 30px;
  }

  .artistdb_list_view .profile_top .profile_left .name_wrap .artist_name_kor {
    font-size: 24px;
  }

  .artistdb_list_view .profile_top .profile_left .name_wrap .artist_name_eng {
    font-size: 18px;
  }

  .sub_title_header p {
    font-size: 18px;
  }

  .artistdb_list_view .profile_top .profile_left ul li {
    gap: 10px;
  }

  .info_table,
  .info_table tbody,
  .info_table tr,
  .info_table th,
  .info_table td {
    display: block;
    width: 100%
  }

  .info_table tr+tr {
    margin-top: 8px
  }

  .info_table th,
  .info_table td {
    padding: 15px 20px;
  }

  .info_table th {
    border-bottom: 0;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    width: auto;

  }

  .info_table td {
    border-top: 0;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    color: var(--muted);
  }
  .btn_preview{font-size: 14px;}
}

@media screen and (max-width: 640px) {
  .artistdb_list_view .profile_top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .artistdb_list_view .profile_top .profile_left {
    order: 2;
  }

  .artistdb_list_view .profile_top .profile_right {
    order: 1;
  }

  .artistdb_list_view .profile_top .profile_left .name_wrap {
    margin-bottom: 20px;
  }

  .artistdb_list_view .profile_top .profile_left ul li {
    padding-bottom: 15px;
  }
}

/* 등록안내 */
/* .sub_h2{
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  font-family: 'Pretendard-Bold';
  margin-bottom: 60px;
  color: #272727;
  line-height: 1;
} */
.sub_h2.no_mb {
  margin-bottom: 20px;
}

.registration h3 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
  line-height: 1;
  font-family: 'Pretendard-Bold';
}

.sub_title_header.no_arrow::before {
  display: none;
}

.color_point_green {
  color: #238184;
}

.color_point_red {
  color: #F53827;
}

.registration .img_wrap.step {
  width: 80%;
  margin: 112px auto;
}

.registration .img_wrap.step img {
  width: 100%;
}

.application>div:first-of-type {
  color: #585860;
  text-align: center;
  padding-bottom: 34px;
}

/* .basic_ul li{
  position: relative;
  padding-left: 15px;
}
.basic_ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background-color: #585860;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
} */
.custom-checkbox {
  text-align: right;
  display: block;
}

.registration .img_wrap.step_02 {
  width: 80%;
  margin: 123px auto;

}

.registration .img_wrap.step img {
  width: 100%;
}

@media screen and (max-width: 640px) {

  .registration .img_wrap.step,
  .registration .img_wrap.step_02 {
    width: 100%;
    margin: 50px auto;
  }
}

/* 등록 폼 */

/* ===== 탭 ===== */
.registration_form .tabmenu {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.registration_form .tabmenu .tab-btn {
  padding: 16px 0;
  border: 1px solid #238184;
  border-radius: 8px;
  background: #fff;
  color: #238184;
  font-weight: 600;
  cursor: pointer;
  min-width: 154px;
  font-size: 20px;
  line-height: 1;
  transition: 0.3s ease-in;
}

.registration_form .tabmenu .tab-btn.active,
.registration_form .tabmenu .tab-btn:hover {
  background: #238184;
  color: #fff;

}

/* ===== 테이블 ===== */

.registration_form .info_table th {
  width: 20%;
  padding: 12px 25px;
}

.registration_form .info_table td {
  padding: 12px;
  min-height: 77px;
}

.sr_only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width:640px) {
  .info_table .col_label {
    width: 34%;
  }

  .tabmenu {
    flex-wrap: wrap;
  }
}

/* ===== 폼 컴포넌트 ===== */
.registration_form .text {
  width: 100%;
  max-width: 470px;
  height: 50px;
  border: 1px solid #CFD9D9;
  border-radius: 6px;
  padding: 0 10px;
}

.registration_form .text.short {
  max-width: 326px;
}

.registration_form .email .text,
.registration_form .number .text {
  width: 150px;
  box-sizing: border-box;
}

.registration_form .select {
  width: 150px;
  height: 50px;
  border: 1px solid #CFD9D9;
  border-radius: 6px;
  padding: 0 10px;
  cursor: pointer;
  appearance: none;
  background-image: url(/_themes/default/images/artistdb/AiOutlineDown.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  color: #585860;
}

.registration_form .inline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.registration_form .muted {
  color: #64748b;
  font-size: 13px;
  /* margin-left: auto; */
}

.registration_form .badge {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #94a3b8;
  border-radius: 999px;
  font-size: 12px;
  color: #475569;
}

.registration_form .req::after {
  content: " *";
  color: #ef4444;
  font-weight: 700;
}

.registration_form .btn_color {
  padding: 10px 16px;
  border: 1px solid #238184;
  border-radius: 8px;
  background: #238184;
  cursor: pointer;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.registration_form .btn_color:hover {
  background: #1c6c6c;
}

.registration_form input[type="radio"],
.registration_form input.radio_icon {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #CFD9D9;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  position: relative;

}

.registration_form input[type="radio"]:checked,
.registration_form input.radio_icon:checked {
  border: 1px solid #238184;
  background-color: #238184;

}

.registration_form input[type="radio"]:checked::after,
.registration_form input.radio_icon:checked:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url('/_themes/default/images/artistdb/radio_check_icon.png') no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.registration_form input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 20px;
  height: 20px;
  border: 1px solid #CFD9D9;
  border-radius: 4px;
  /* 라운딩 모양 (필요없으면 제거) */
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.registration_form input[type="checkbox"]:checked {
  border: 1px solid #238184;
  background-color: #238184;
}

.registration_form input[type="checkbox"]:checked::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url('/_themes/default/images/artistdb/radio_check_icon.png') no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.registration_form .check_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.registration_form .check_flex label {
  width: calc((100% - 40px) / 5);
}

.upload_wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.preview_box {
  width: 119px;
  height: 100%;
  border: 1px solid #DCE0E0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 119 / 159;
}

.preview_box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.upload_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upload_info p {
  padding: 0 !important;
  color: #585860;
  font-weight: 500;
}

.upload_desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.btn_upload:hover {
  background: #1c6c6c;
}

.artistic_activities {
  margin-top: 60px;
}

.artistic_activities .title_wrap {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.sub_h3 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
  font-family: 'Pretendard-Bold';
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-year-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field {
  color: transparent;
  /* 글자색 투명화 */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.artistic_activities input[type="date"] {
  border: 1px solid #CFD9D9;
  width: 150px;
  height: 50px;
  border: 1px solid #CFD9D9;
  border-radius: 6px;
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  color: #585860;
}

.artistic_activities input[type="date"]::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url('/_themes/default/images/artistdb/calendar_icon.png') no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);
}

.add_list_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 16px auto;
  /* 가운데 정렬 */
  border-radius: 50%;
  cursor: pointer;
  background: #238184 url('/_themes/default/images/artistdb/plus_icon.png') no-repeat center center / 30px;
}

.add_list_btn:hover {
  background-color: #1c6c6c;
  transition: 0.3s ease-in;
}

.intro_section {
  margin-top: 66px;
  margin-bottom: 90px;
}

.intro_section table tr:first-of-type td {
  position: relative;
  padding: 0;
}

.intro_section .intro_textarea {
  width: 100%;
  height: 400px;
  border: 1px solid #CFD9D9;
  border-radius: 6px;
  padding: 25px;
  color: #585860;

}

.intro_section .intro_counter {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: #c8c8c8;
}

.intro_section .yt_help {
  font-size: 14px;
  padding-top: 12px;
}

.registration_form .btn_wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.registration_form .btn_wrap button.cancel_btn {
  width: auto;
  height: 66px;
  padding: 21px 58px;
  text-align: center;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  font-size: 24px;
  color: #585860;
  line-height: 1;
  box-sizing: border-box;
  background-color: #fff;
}

.registration_form .btn_wrap button.register_btn {
  height: 66px;
  padding: 21px 58px;
  text-align: center;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  box-sizing: border-box;
  background-color: #238184;
  color: #fff;
  border: 1px solid #238184;
}

.registration_form .btn_wrap button.register_btn:hover {
  background-color: #1c6c6c;
  transition: 0.3s ease-in;
}

.registration_form .btn_wrap button.cancel_btn:hover {
  background-color: #1c6c6c;
  transition: 0.3s ease-in;
  color: #fff;
}
.file_extension{padding-top: 10px;}

.tel1 {
  	width: 150px !important;
 }
 .tel2, .tel3 {
 	width: 150px !important;
 }

@media screen and (max-width: 1130px) {
  .registration_form .info_table th {
    width: 26%;
  }

  .registration_form .text {
    width: 50%;
  }

  .registration_form .text.short {
    width: 50%;
  }

  .registration_form .email .text,
  .registration_form .number .text,
  .registration_form .select {
    width: 25%;
  }

  .registration_form .check_flex label {
    width: calc((100% - 30px) / 4);
  }
}

@media screen and (max-width: 1000px) {
  .registration_form .inline {
    gap: 6px;
  }

  .registration_form .btn_color {
    font-size: 14px;
  }

  .registration_form .check_flex label {
    width: calc((100% - 20px) / 3);
  }

  .intro_section .intro_textarea {
    height: 250px;
  }

  .registration_form .btn_wrap button.register_btn,
  .registration_form .btn_wrap button.cancel_btn {
    height: 50px;
    padding: 10px 45px;
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .sub_h3 {
    padding-bottom: 10px;
  }

  .artistic_activities .title_wrap .sub_h3 {
    padding-bottom: 0;
  }

  .registration_form .tabmenu .tab-btn {
    min-width: 120px;
    font-size: 16px;
  }

  .tabmenu {
    flex-wrap: wrap;
  }

  .registration_form .info_table th {
    width: 100%;
    padding: 12px 20px;
  }

  .registration_form .info_table td {
    padding: 12px 0;
  }

  .registration_form .text.short,
  .registration_form .text {
    width: 100%;
    max-width: 100%;
  }

  .registration_form .addrass .text {
    width: 100%;
    max-width: 100%;
  }

  .registration_form .text.v_short {
    width: 40%;
  }

  .registration_form .info_table tbody[hidden] {
    display: none;
  }

  .registration_form .check_flex label {
    font-size: 14px;
  }


  .artistic_activities .title_wrap {
    flex-direction: column;
  }
    .intro_section .intro_textarea {
    height: 200px;
  }
    .artistic_activities input[type="date"] {
    width: calc(50% - 10px);
  }
  
  .tel1 {
  	width: 29% !important;
  }
  .tel2, .tel3 {
  	width: 33% !important;
  }
}

@media screen and (max-width: 400px) {
  .registration_form .tabmenu{
    gap:5px;
  }
  .registration_form .tabmenu .tab-btn {
    min-width: 0;
    padding: 16px 10px;
  }

  .registration_form .inline {
    gap: 10px 5px;
  }

  .registration_form .text.v_short {
    width: 50%;
  }

  .registration_form .email .text,
  .registration_form .number .text,
  .registration_form .select {
    width: 48%;
  }
  
  .tel1 {
  	width: 29% !important;
  }
  .tel2, .tel3 {
  	width: 33% !important;
  }


}