.experience-apply-section {
  margin: 0 0 40px;
}

.experience-apply {
  width: 100%;
  padding: 24px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

/* 타이틀 */
.experience-apply-title {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.experience-apply-title .ico {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
}

.experience-apply-title .ico img {
  width: 100%;
  height: 100%;
}

.experience-apply-title h3 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: #181c34;
}

/* 폼 공통 */
.experience-apply-form .apply-row {
  margin: 0 0 20px;
}
.experience-apply-form .apply-row.apply-row-reason {
  margin-bottom: 10px;
}

.experience-apply-form .apply-row:last-child {
  margin-bottom: 0;
}

.experience-apply-form .apply-field {
  display: flex;
  flex-direction: column;
}

.experience-apply-form .apply-field label,
.experience-apply-form .apply-row-label {
  margin: 0 0 16px;
  font-size: var(--font-size-md);
  font-weight: 700;
  color: #181c34;
}

.experience-apply-form .apply-field input {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-size: var(--font-size-md);
  color: #181c34;
}

.experience-apply-form .apply-field input::placeholder {
  color: var(--gray-font-color);
}

.experience-apply-form .apply-field input:focus {
  border-bottom-color: var(--main-color);
  outline: none;
}

.experience-apply-form .apply-field input[readonly] {
  cursor: default;
}

/* 이름 / 연락처 입력 삭제(X) 버튼 */
.experience-apply-form .apply-input-wrap {
  position: relative;
}

.experience-apply-form .apply-field-clearable input {
  padding-right: 24px;
}

.experience-apply-form .apply-input-wrap .btn-delete {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(https://image.daedamo.com/images/img/renew/icon/i_delete_gray_20.svg) no-repeat;
  background-size: 100%;
  cursor: pointer;
}

/* 이름 / 연락처 2단 (디자인상 각 243px 고정, 좌측 정렬) */
.experience-apply-form .apply-row-2 {
  display: flex;
  gap: 30px;
}

.experience-apply-form .apply-row-2 .apply-field {
  flex: 0 0 243px;
}

/* 주소검색 (디자인 간격: 우편번호 →(10) 주소찾기 →(30) 주소 →(30) 상세주소) */
.experience-apply-form .apply-addr-grid {
  display: flex;
  align-items: flex-end;
}

.experience-apply-form .apply-field-postcode {
  flex: 145 1 0;
}

.experience-apply-form .apply-field-address {
  flex: 243 1 0;
  margin-left: 30px;
}

.experience-apply-form .apply-field-address-detail {
  flex: 244 1 0;
  margin-left: 30px;
}

.experience-apply-form .apply-addr-search {
  flex: 0 0 auto;
  height: 40px;
  margin-left: 10px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  font-size: var(--font-size-md);
  color: #181c34;
  cursor: pointer;
}

.experience-apply-form .apply-addr-search:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}

/* 신청사유 */
.experience-apply-form .apply-row-reason textarea {
  display: block;
  width: 100%;
  min-height: 137px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  font-size: var(--font-size-md);
  color: #181c34;
  resize: none;
}

.experience-apply-form .apply-row-reason textarea::placeholder {
  color: var(--gray-font-color);
}

.experience-apply-form .apply-row-reason textarea:focus {
  border-color: var(--main-color);
  outline: none;
}

/* 신청하기 */
.experience-apply-form .apply-row-submit {
  display: flex;
  justify-content: flex-end;
}

.experience-apply-form .apply-submit {
  min-width: 80px;
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 50px;
  background: var(--main-color);
  font-size: var(--font-size-md);
  color: #fff;
  cursor: pointer;
}

.experience-apply-form .apply-submit:hover {
  background: var(--main-hover-color);
}

.experience-apply-form .apply-submit:disabled {
  background: var(--gray-font-color);
  cursor: default;
}

/* 신청완료 / 마감 안내 */
.experience-apply-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: var(--gray-bg-color);
  box-sizing: border-box;
}

.experience-apply-done .ico {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.experience-apply-done .ico img {
  width: 100%;
  height: 100%;
}

.experience-apply-done p {
  font-size: var(--font-size-md);
  line-height: 24px;
  color: #181c34;
  text-align: center;
}

/*--------------------------------------------------------------
  board-comment-list 댓글 리스트 (board_comments.inc.css 복제)
--------------------------------------------------------------*/
.board-comment-list {
  margin-bottom: 40px;
}

.board-comment-list .title {
  display: block;
  margin: 10px 0 20px;
}

.board-comment-list .title h3 {
  font-size: 24px;
  font-weight: 700;
}

/* 댓글 sorting */
.board-comment-list ul.sorting-list {
  display: none;
  /* display: flex; */
  margin-top: 10px;
}
.board-comment-list ul.sorting-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;

  font-size: 14px;
  color: var(--gray-font-color);
  cursor: pointer;
}
.board-comment-list ul.sorting-list li:not(:first-child) {
  padding-left: 10px;
}
.board-comment-list ul.sorting-list li.on {
  position: relative;
  color: var(--main-primary-color);
}
.board-comment-list ul.sorting-list li.on:before {
  display: block;
  position: relative;
  top: 2px;
  margin-right: 3px;
  content: url(https://image.daedamo.com/images/img/renew/i_desc.svg);
}

/* 댓글 목록 */
.board-comment-list ul.comment-lists-ul {
  margin: 0;
  padding: 0;
}

.board-comment-list .comment-item {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.board-comment-list .comment-item:first-child {
  border-top: 1px solid var(--border-color);
}

.board-comment-list .comment-item .comment-header {
  display: flex;
  align-items: center;
  position: relative;
}

.board-comment-list .comment-item .comment-header .info {
  flex: 1;
  display: flex;
  align-items: center;
}

.board-comment-list .comment-item .comment-header .btn_usermenu.writer::after {
  display: inline-block;

  margin-left: 5px;
  padding: 4px 8px;

  border-radius: 50px;
  background: rgba(122, 191, 255, 0.3);

  font-size: 12px;
  font-weight: 700;
  color: var(--main-color);

  content: "작성자";
}

/* 언어번역 */
.translate_ja .board-comment-list .comment-item .comment-header .btn_usermenu.writer::after {
  content: "投稿者";
}
.translate_en .board-comment-list .comment-item .comment-header .btn_usermenu.writer::after {
  content: "Author";
}
.translate_zh-CN .board-comment-list .comment-item .comment-header .btn_usermenu.writer::after {
  content: "作者";
}

.board-comment-list .comment-item .comment-header .comment-date {
  margin-left: 12px;
  color: #9394a4;
}

.board-comment-list .comment-item .comment-header .comment-date.new {
  padding-right: 26px;

  background: url("https://image.daedamo.com/images/img/renew/icon/i_new_orange_20.svg") no-repeat right 50%;
  background-size: 18px;
}

.board-comment-list .comment-item .comment-header .btn_comment_menu {
  text-align: right;
}

.board-comment-list .comment-item .comment-header .comment-dropdown {
  position: absolute;
  top: 20px;
  right: 0;

  padding: 5px 20px 5px 12px;

  border: 1px solid #ddd;
  background: #f9f9f9;

  z-index: 1;
}

.board-comment-list .comment-item .comment-header .comment-dropdown button {
  display: block;

  height: 24px;

  border: none;
  background-color: transparent;

  font-size: 12px;

  color: #9394a4;
  line-height: 24px;
}

.board-comment-list .comment-item .comment-header .comment-dropdown button .fa {
  margin-right: 4px;
}

.board-comment-list .comment-item .comment-header .comment-dropdown button:hover {
  color: #121212;
}

.board-comment-list .comment-item .comment-body {
  margin: 10px 0;

  font-size: 16px;
  line-height: 1.5;

  word-wrap: break-word;
  word-break: break-all;
}

.board-comment-list .comment-item .comment-body.forbidden {
  padding: 12px 20px;

  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fafafa;

  font-size: var(--font-size-sm);
  font-weight: 400;
  color: #9394a4;
}

.board-comment-list .comment-item .comment-body.forbidden a {
  display: inline-block;

  margin-left: 10px;
  padding: 2px 12px;

  border: 1px solid var(--main-color);
  border-radius: 12px;

  font-size: 12px;
  color: var(--main-color) !important;
  text-decoration: none;
}

.board-comment-list .comment-item .comment-body.forbidden a:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

.board-comment-list .comment-item .comment-images {
  margin-bottom: 20px;
}

.board-comment-list .comment-item .comment-images img {
  max-width: 80%;
}

.board-comment-list .comment-item .comment-footer {
  display: flex;
  align-items: center;
}

.board-comment-list .comment-item .comment-footer span:first-child {
  flex: 1;
}

.board-comment-list .comment-item .comment-footer .btn_comment_reply {
  color: var(--main-color);
}

.board-comment-list .comment-item .comment-footer .btn_comment_good,
.board-comment-list .comment-item .comment-footer .btn_comment_bad {
  padding-left: 20px;

  background-size: 13px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background: url("https://image.daedamo.com/images/img/renew/icon/i_good_off_blue_16.svg") no-repeat 0 50%;
  background-size: 13px;

  color: #9394a4;
  cursor: pointer;
}

.board-comment-list .comment-item .comment-footer .btn_comment_good {
  background-image: url("https://image.daedamo.com/images/img/renew/icon/i_good_off_blue_16.svg");
}

.board-comment-list .comment-item .comment-footer .btn_comment_good.on {
  background-image: url("https://image.daedamo.com/images/img/renew/icon/i_good_on_blue_16.svg");
}

.board-comment-list .comment-item .comment-footer .btn_comment_bad {
  margin-left: 20px;

  background-image: url("https://image.daedamo.com/images/img/renew/icon/i_hate_off_blue_16.svg");
}

.board-comment-list .comment-item .comment-footer .btn_comment_bad.on {
  background-image: url("https://image.daedamo.com/images/img/renew/icon/i_hate_on_blue_16.svg");
}

.board-comment-list .comment-item.best {
  background: #f7f8fb;
}

.board-comment-list .comment-item.best .comment-body:before {
  display: block;
  content: "BEST";
  width: 50px;

  margin-bottom: 5px;
  padding: 5px 0;

  background: rgba(122, 191, 255, 0.3);
  border-radius: 4px;

  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
}

.board-comment-list .comment-item.reply {
  background-image: url("https://image.daedamo.com/images/img/renew/icon/i_reply_gray_16.svg");
  background-repeat: no-repeat;
}

.board-comment-list .comment-item.reply.depth1 {
  padding-left: 24px;
  background-position: 0 14px;
}

.board-comment-list .comment-item.reply.depth2 {
  padding-left: 40px;
  background-position: 16px 14px;
}

.board-comment-list .comment-item.reply.depth3 {
  padding-left: 56px;
  background-position: 32px 14px;
}

.board-comment-list .comment-item.reply.depth4 {
  padding-left: 72px;
  background-position: 48px 14px;
}

.board-comment-list .comment-item.reply.depth5 {
  padding-left: 88px;
  background-position: 64px 14px;
}

.board-comment-list .comment-item.focused {
  background-color: rgba(122, 191, 255, 0.16);
}

.board-comment-list .comment-item .comment-body.premium {
  width: 100%;

  margin: 0;
  padding: 40px;

  background: url("../../img/css_shared/view_blind.png") no-repeat 50% 50%;
  background-size: 100%;
  box-sizing: border-box;

  font-size: var(--font-size-sm);
  font-weight: 400;
  text-align: center;
  color: var(--main-color);
}

.board-comment-list .comment-item .comment-body.premium button {
  display: block;

  width: 90%;
  max-width: 215px;

  margin: 10px auto;
  padding: 10px 0;

  background: var(--main-color);
  border: none;
  border-radius: 6px;

  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #fff;
}

/** 블라인드 댓글 */
.board-comment-list .comment-item.blocked {
  position: relative;
}

.board-comment-list .comment-item.blocked .comment-body {
  color: #888 !important;
  filter: blur(10px) !important;
  -webkit-filter: blur(10px) !important;

  app-region: no-drag;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  background: url(../../img/css_shared/view_blind.png) no-repeat 50% 50%;
  height: 130px;
  overflow: hidden;
  background-size: cover;
}
.board-comment-list .comment-item.blocked .comment-body p {
  display: none;
}

.board-comment-list .comment-item.blocked .commend-blocked {
  width: 90%;
  font-weight: 700;
  text-align: center;

  position: absolute;
  top: 80px; /* .comment-body height 고정 */
  left: 50%;
  transform: translateX(-50%);
  color: #181c34eb;
}

.board-comment-list .comment-item.blocked .commend-blocked i {
  margin-right: 6px;
}

.board-comment-list .comment-item.blocked .commend-blocked .btn_blocked_remove {
  display: block;
  margin: 10px auto;
  border-radius: 8px;
  background: #4c00ee;
  color: #fff;
  padding: 8px 12px;
}

/* -----------------------------------------------------------
  ------ mobile ------
--------------------------------------------------------------  */
.mobile .experience-apply-section {
  margin: var(--inner-margin) var(--inner-margin) 30px;
}

.mobile .experience-apply {
  padding: 20px 16px;
}

.mobile .experience-apply-title {
  margin: 0 0 16px;
}

.mobile .experience-apply-title h3 {
  font-size: var(--font-size-xl);
}

/* 모바일 행 간격 16px, 라벨→인풋 8px */
.mobile .experience-apply-form .apply-row {
}

.mobile .experience-apply-form .apply-row.apply-row-reason {
  margin-bottom: 10px;
}

.mobile .experience-apply-form .apply-field label,
.mobile .experience-apply-form .apply-row-label {
  margin-bottom: 8px;
}

.mobile .experience-apply-form .apply-row-2 {
  gap: 16px;
}

/* 모바일은 좁은 폭을 반씩 나눠 쓴다(디자인 136px) */
.mobile .experience-apply-form .apply-row-2 .apply-field {
  flex: 1 1 0;
}

/* 우편번호 + 주소찾기 한 줄(간격 16), 주소 / 상세주소는 각각 한 줄(위 간격 10) */
.mobile .experience-apply-form .apply-addr-grid {
  flex-wrap: wrap;
  gap: 10px 16px;
}

.mobile .experience-apply-form .apply-field-postcode {
  flex: 1 1 auto;
}

.mobile .experience-apply-form .apply-field-address,
.mobile .experience-apply-form .apply-field-address-detail {
  flex: 1 1 100%;
  margin-left: 0;
}

.mobile .experience-apply-form .apply-addr-search {
  height: 38px;
  margin-left: 0;
}

.mobile .experience-apply-form .apply-row-reason textarea {
  min-height: 80px;
  padding: 8px 12px;
}

.mobile .experience-apply-done {
  gap: 4px;
  padding: 12px 30px;
  border-radius: 8px;
}

.mobile .experience-apply-done .ico {
  width: 20px;
  height: 20px;
}

.mobile .experience-apply-done p {
  font-size: var(--font-size-sm);
  line-height: 22px;
}

/* board-comment-list 댓글 리스트 (board_comments.inc.css 복제) */
.mobile .board-comment-list {
  margin-bottom: 2vw;
  border-top: 10px solid #f4f4f4;
}

.mobile .board-comment-list .title {
  margin: 10px 0;
  padding: 0 5%;
}

.mobile .board-comment-list .title h3 {
  font-size: 18px;
  font-weight: 700;
}
.mobile .board-comment-list ul.sorting-list {
  margin-top: 5vw;
  padding: 0 5%;
}
.mobile .board-comment-list ul.sorting-list li {
  padding: 1vw 0;
}
.mobile .board-comment-list ul.sorting-list li:not(:first-child) {
  padding-left: 2vw;
}

.mobile .board-comment-list .comment-item {
  padding: 15px 5%;
}

.mobile .board-comment-list .comment-item .comment-header .comment-date {
  margin-left: 6px;
  font-size: 12px;
}

.mobile .board-comment-list .comment-item .comment-header .comment-date.new {
  padding-right: 18px;
  background-size: 12px;
}

.mobile .board-comment-list .comment-item .comment-header .btn_usermenu.writer::after {
  padding: 2px 8px;
}

.mobile .board-comment-list .comment-item .comment-body {
  font-size: var(--font-size-sm);
}
.mobile .board-comment-list .comment-item .comment-body.forbidden {
  text-align: center;
}

.mobile .board-comment-list .comment-item .comment-body.forbidden a {
  display: block;
  width: 78px;

  margin: 5px auto 0;

  text-align: center;

  color: var(--main-color) !important;
}
.mobile .board-comment-list .comment-item .comment-body.forbidden a:hover {
  color: #fff !important;
}

.mobile .board-comment-list .comment-item.reply.depth1 {
  padding-left: calc(5% + 24px);
  background-position-x: 5%;
}

.mobile .board-comment-list .comment-item.reply.depth2 {
  padding-left: calc(5% + 40px);
  background-position-x: calc(5% + 16px);
}

.mobile .board-comment-list .comment-item.reply.depth3 {
  padding-left: calc(5% + 56px);
  background-position-x: calc(5% + 32px);
}

.mobile .board-comment-list .comment-item.reply.depth4 {
  padding-left: calc(5% + 72px);
  background-position-x: calc(5% + 48px);
}

.mobile .board-comment-list .comment-item.reply.depth5 {
  padding-left: calc(5% + 88px);
  background-position-x: calc(5% + 64px);
}

.mobile .board-comment-list .btn_more {
  width: 90%;
  margin: 10px 5%;
}
