.board-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-block: 1px solid #c3cbd5;
  padding-block: 30px;
}
.board-form > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  border-top: 1px dashed #c3cbd5;
}
.board-form > li:first-child {
  padding-top: 0;
  border-top: none;
}
.board-form > li ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.board-form > li ul li input[type='radio'] {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.board-form > li ul li input[type='radio']:checked + label {
  background-color: #d0e3fd;
  border-color: #a1c5fc;
}
.board-form > li ul li label {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 20px;
  border-radius: 2em;
  background-color: #fafafa;
  border: 1px solid #e7eaee;
  color: #495057;
  font-size: 18px;
  font-weight: 400;
}
.board-form > li.is-several .board-form__inner {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.board-form > li.is-several input[type='text'],
.board-form > li.is-several select {
  width: 184px;
}
.board-form > li.is-several02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.board-form > li.is-several02 .board-form__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.board-form > li.is-several02 .board-form__inner input[type='text'],
.board-form > li.is-several02 .board-form__inner select {
  width: 100%;
}
.board-form > li .shape-size p {
  font-weight: 600;
}
.board-form > li .board-form__address {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}
.board-form > li .board-form__address li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.board-form > li .board-form__address li input[type='text'] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.board-form > li .board-form__address li:first-child {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 304px;
}
.board-form > li .board-form__address li button {
  height: 100%;
  border-radius: var(--radius01);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  padding-inline: 16px;
}

.board-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.board-form__inner > p {
  color: #212529;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}
.board-form__inner > p span:not(.is-blue) {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}
.board-form__inner div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.board-form__inner div p {
  color: #757575;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.board-write input[type='date'] {
  width: 154px;
}
.board-write select {
  background-image: url('/assets/images/common/select_arrow.png');
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 180px;
}
.board-write .subject {
  width: 50%;
}
.board-write input[type='date'],
.board-write input[type='text'],
.board-write select {
  height: 40px;
  border-radius: var(--radius01);
  border: 1px solid #c3cbd5;
  padding-inline: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.board-write textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius01);
  border: 1px solid #c3cbd5;
  font-size: 16px;
  font-weight: 400;
  resize: none;
  height: 160px;
}
.board-write textarea::-webkit-input-placeholder {
  color: #757575;
}
.board-write textarea::-moz-placeholder {
  color: #757575;
}
.board-write textarea:-ms-input-placeholder {
  color: #757575;
}
.board-write textarea::-ms-input-placeholder {
  color: #757575;
}
.board-write textarea::placeholder {
  color: #757575;
}
.board-write input[type='date'],
.board-write input[type='text'],
.board-write textarea {
  min-width: 0;
}
.board-write input[type='date']:focus:not(:-moz-read-only),
.board-write input[type='text']:focus:not(:-moz-read-only),
.board-write textarea:focus:not(:-moz-read-only) {
  border-color: #383f4e;
  box-shadow: 0px 0px 4px 0px rgba(65, 81, 112, 0.25);
  background-color: #fff;
}
.board-write input[type='date']:focus:not(:read-only),
.board-write input[type='text']:focus:not(:read-only),
.board-write textarea:focus:not(:read-only) {
  border-color: #383f4e;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(65, 81, 112, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(65, 81, 112, 0.25);
  background-color: #fff;
}
.board-write input[type='date']:-moz-read-only,
.board-write input[type='text']:-moz-read-only,
.board-write textarea:-moz-read-only {
  background-color: #fafafa;
  border-color: #c1c1d7;
  color: #757575;
}
.board-write input[type='date']:read-only,
.board-write input[type='text']:read-only,
.board-write textarea:read-only {
  background-color: #fafafa;
  border-color: #c1c1d7;
  color: #757575;
}
.board-write input[type='date']::-webkit-input-placeholder,
.board-write input[type='text']::-webkit-input-placeholder,
.board-write textarea::-webkit-input-placeholder {
  color: #757575;
}
.board-write input[type='date']::-moz-placeholder,
.board-write input[type='text']::-moz-placeholder,
.board-write textarea::-moz-placeholder {
  color: #757575;
}
.board-write input[type='date']:-ms-input-placeholder,
.board-write input[type='text']:-ms-input-placeholder,
.board-write textarea:-ms-input-placeholder {
  color: #757575;
}
.board-write input[type='date']::-ms-input-placeholder,
.board-write input[type='text']::-ms-input-placeholder,
.board-write textarea::-ms-input-placeholder {
  color: #757575;
}
.board-write input[type='date']::placeholder,
.board-write input[type='text']::placeholder,
.board-write textarea::placeholder {
  color: #757575;
}
.board-write input[type='text']:has(+ select) {
  width: 180px;
}

#imageList {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#imageList li {
  width: 95px;
  height: 95px;
  overflow: hidden;
  border: 1px solid #b8c1c8;
  border-radius: var(--radius01);
  position: relative;
}
#imageList li button {
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url('/assets/images/sub/delete.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  top: 7px;
  right: 7px;
  border: none;
}
#imageList input[type='file'] {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
#imageList label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  background-color: transparent;
  border: none;
}

.board-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.board-btn button,
.board-btn a {
  border-radius: var(--radius01);
  width: 142px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.board-btn button.btn01,
.board-btn a.btn01 {
  background-color: #383f4e;
}
.board-btn button.btn02,
.board-btn a.btn02 {
  background-color: var(--blue);
}
.board-btn button.btn03,
.board-btn a.btn03 {
  border: 1px solid #b8c1c8;
  color: #383f4e;
}

.board-view__top {
  padding-block: 10px 40px;
  border-bottom: 4px solid #c3cbd5;
}
.board-view__top b {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
}

.board-info {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.board-info p {
  color: #495057;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.board-info p span {
  color: #212529;
}
.board-info p:not(:first-child)::before {
  content: '';
  width: 1px;
  height: 18px;
  background-color: #777c88;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

.issue-check__view,
.board-view__edit {
  padding-block: 40px;
  border-bottom: 4px solid #c3cbd5;
}
.issue-check__view .board-comment__top,
.board-view__edit .board-comment__top {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.table-wrap {
  border-radius: var(--radius01);
  overflow: hidden;
  border: 1px solid #c3cbd5;
}
.table-wrap table {
  width: 100%;
}
.table-wrap tr:not(:last-child) {
  border-bottom: 1px solid #c3cbd5;
}
.table-wrap td,
.table-wrap th {
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  border-right: 1px solid #c3cbd5;
  text-align: left;
}
.table-wrap th {
  color: #444;
  background-color: #f2f4f8;
  width: 120px;
}
.table-wrap td:last-of-type {
  border-right: 0;
}

.board-nav {
  border-top: 1px solid #e9ecef;
  margin-top: 40px;
}
.board-nav li {
  height: 67px;
  border-bottom: 1px solid #e9ecef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  padding-inline: 24px;
  font-size: 18px;
}
.board-nav li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: #383f4e;
  font-weight: 600;
}
.board-nav li a {
  font-weight: 400;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  white-space: nowrap;
}
.board-nav li.disable a {
  color: #757575;
}

.slide-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  margin-top: 20px;
}

.issue-check__slide {
  width: 934px;
  margin-inline: auto;
}
.issue-check__slide .slick-slide {
  height: 525px;
}
.issue-check__slide .slick-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.issue-check__slide .slick-arrow {
  position: absolute;
  z-index: 9;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
}
.issue-check__slide .slick-prev {
  left: -153px;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  background-image: url('/assets/images/main/arrow_prev.svg');
}
.issue-check__slide .slick-next {
  right: -153px;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  background-image: url('/assets/images/main/arrow_next.svg');
}

.board-cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
}
.board-cate .board-state {
  margin-left: 0;
}
.board-cate > p {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}
.board-cate > p::after {
  content: '';
  width: 4px;
  height: 4px;
  display: inline-block;
  background-color: #adb5bd;
  margin-left: 10px;
  vertical-align: middle;
}

.board-comment {
  margin-top: 40px;
}
.board-comment > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
.board-comment > ul > li {
  padding: 32px;
  border-radius: var(--radius02);
  border: 1px solid #e7eaee;
}

.board-comment__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.board-comment__top div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.board-comment__top a,
.board-comment__top button {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-inline: 16px;
  border-radius: var(--radius01);
  font-size: 18px;
  font-weight: 600;
  gap: 4px;
  color: #fff;
}
.board-comment__top .btn01 {
  background-color: var(--blue);
}
.board-comment__top .btn02 {
  background-color: #f566a2;
}
.board-comment__top .btn03 {
  color: #383f4e;
  border: 1px solid #b8c1c8;
}

.board-comment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #c3cbd5;
}
.board-comment__info .board-info {
  margin-right: auto;
  gap: 16px;
}
.board-comment__info .board-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.board-comment__info .board-info p:not(:first-child)::before {
  margin-right: 16px;
}
.board-comment__info .board-info b {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.board-comment__info .board-info b + span {
  margin-left: 8px;
  padding-inline: 8px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.comment-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  border-radius: 2em;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  background-color: #fff;
}
.comment-btn.edit-btn {
  border: 1px solid #b8c1c8;
  width: 32px;
  margin-right: 8px;
}
.comment-btn.like-btn {
  border: 1px solid #f566a2;
  padding-inline: 12px;
  color: #383f4e;
}
.comment-btn.like-btn.gray {
  border: 1px solid #ccc;
  padding-inline: 12px;
  color: #383f4e;
}
.comment-btn.delete-btn {
  background-color: #383f4e;
  margin-right: 8px;
  width: 32px;
}

.board-comment__desc {
  padding-top: 24px;
}
.board-comment__desc > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.board-comment__answer {
  border-radius: var(--radius02);
  overflow: hidden;
  padding: 16px;
  background-color: #f2f4f8;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.board-comment__answer button {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.board-comment__answer > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.board-comment__answer > div p {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.board-comment__answer > div div {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.board-comment__answer > div div p {
  line-height: 1;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
}
.board-comment__answer > div div p:first-child {
  font-weight: 600;
  color: #222;
}
.board-comment__answer.is-able {
  display: block;
  background-color: transparent;
  border: 1px solid #c3cbd5;
  padding: 0;
}
.board-comment__answer.is-able textarea {
  width: 100%;
  padding: 16px;
  height: 120px;
  resize: none;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.board-comment__answer.is-able > div {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #c3cbd5;
  background-color: #fafafa;
}
.board-comment__answer.is-able > div div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  padding-inline: 16px;
}
.board-comment__answer.is-able > div div > span {
  color: #757575;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 14px;
  font-weight: 400;
}
.board-comment__answer.is-able > div div p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
}
.board-comment__answer.is-able > div button {
  color: #fff;
  background-color: var(--blue);
  height: 100%;
  width: 142px;
  font-size: 18px;
  font-weight: 600;
}

.subject-opinion {
  margin-top: 40px;
}
.subject-opinion b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
.subject-opinion p {
  margin-top: 20px;
  border-radius: var(--radius01);
  border: 1px solid #c3cbd5;
  background-color: #fafafa;
  padding: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.board-comment__list {
  margin-top: 28px;
}
.board-comment__list ul {
  border-block: 1px solid #c3cbd5;
}
.board-comment__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding-block: 24px;
  border-bottom: 1px solid #e9ecef;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.board-comment__list ul li:last-child {
  border-bottom: 0;
}
.board-comment__list ul li div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.board-comment__list ul li div p {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.board-comment__list ul li div p:last-child {
  margin-top: 10px;
  color: #757575;
  font-size: 16px;
  line-height: 1;
}

.board-comment__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  height: 42px;
  border-radius: 0 0 8px 8px;
  border: 1px solid #c3cbd5;
  border-top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  padding-inline: 16px;
  color: #383f4e;
  font-size: 16px;
  font-weight: 600;
}

.regi-wrap {
  padding: 32px 32px 56px 32px;
  border-radius: var(--radius01);
  background-color: #eaf3ff;
}
.regi-wrap ul {
  border-radius: var(--radius02);
  background-color: #fff;
  padding: 32px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 440px;
  margin-inline: auto;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(5, 107, 229, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(5, 107, 229, 0.2);
}
.regi-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.regi-wrap ul li:not(:last-child) {
  border-bottom: 1px solid #c3cbd5;
  padding-bottom: 20px;
}
.regi-wrap ul li p {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}
.regi-wrap ul li p:first-child {
  font-weight: 600;
  color: #212529;
}

.regi-tit {
  margin-bottom: 24px;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.regi-tit b {
  font-size: 24px;
  font-weight: 600;
}

@media all and (max-width: 1450px) {
  .issue-check__slide .slick-prev {
    left: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .issue-check__slide .slick-next {
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .issue-check__slide .slick-slide {
    height: auto;
  }
  .slide-wrap {
    background-color: transparent;
  }
}
@media all and (max-width: 1024px) {
  .board-form > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .board-form__inner {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
  .issue-check__slide {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .board-form {
    gap: 5.28vw;
    padding-block: 8.33vw;
  }
  .board-form__inner {
    gap: 2.08vw;
  }
  .board-form__inner:has(.board-form__radio) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5.28vw;
  }
  .board-form__inner > p {
    font-size: 4.17vw;
  }
  .category-wrap:not(:last-of-type) {
    margin-bottom: 5.28vw;
  }
  .board-write input[type='date'],
  .board-write input[type='text'],
  .board-write select {
    height: 10.56vw;
    padding-inline: 3.19vw;
    font-size: 3.33vw;
  }
  .board-form__inner div p {
    font-size: 3.61vw;
  }
  .board-form > li ul,
  .board-form__inner div {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.08vw;
  }
  .board-form__inner > p span:not(.is-blue) {
    font-size: 3.06vw;
  }
  .board-write textarea {
    padding: 3.19vw;
    font-size: 3.33vw;
    height: 27.78vw;
  }
  .board-btn {
    gap: 1.6vw;
    margin-top: 5.56vw;
  }
  .board-btn button,
  .board-btn a {
    width: auto;
    flex: 1;
    height: 11.67vw;
    font-size: 4.17vw;
  }
  .board-form > li ul li label {
    height: 11.11vw;
    padding-inline: 5.28vw;
    font-size: 3.89vw;
    font-weight: 400;
    white-space: nowrap;
  }
  #imageList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.64vw;
  }
  #imageList li {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
  #imageList label {
    width: 100%;
    height: 100%;
  }
  #imageList label img {
    width: 6.39vw;
  }
  .issue-check__slide .slick-arrow {
    max-width: 10.56vw;
    max-height: 10.56vw;
  }
  .issue-check__slide .slick-prev {
    left: 2.78vw;
  }
  .issue-check__slide .slick-next {
    right: 2.78vw;
  }
  .issue-check__view,
  .board-view__edit {
    padding-block: 5.56vw;
    border-bottom: 1.07vw solid #c3cbd5;
  }
  .board-nav {
    margin-top: 5.28vw;
  }
  .board-btn button.btn03,
  .board-btn a.btn03 {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .board-nav li {
    height: 14.86vw;
    gap: 3.33vw;
    padding-inline: 0;
    font-size: 3.61vw;
  }
  .board-nav li div svg {
    max-width: 4.17vw;
    max-height: 4.17vw;
  }
  .board-info {
    margin-top: 3.19vw;
    gap: 2.08vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .board-info p:not(:first-child)::before {
    display: none;
  }
  .board-view__top b {
    font-size: 6.39vw;
  }
  .board-info p {
    font-size: 3.89vw;
  }
  .board-view__top {
    padding-block: 2.64vw 5.56vw;
    border-bottom: 1.07vw solid #c3cbd5;
  }
  .table-wrap th {
    width: 24vw;
  }
  .table-wrap td,
  .table-wrap th {
    padding: 3.19vw;
    font-size: 3.61vw;
  }
  .slide-wrap {
    margin-top: 5.56vw;
  }
  .board-cate > p {
    font-size: 3.61vw;
  }
  .board-cate > p::after {
    max-width: 1.11vw;
    max-height: 1.11vw;
    margin-left: 2.08vw;
  }
  .board-cate {
    gap: 2.08vw;
    margin-bottom: 1.67vw;
  }
  .board-comment {
    margin-top: 5.56vw;
  }
  .board-comment__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .board-comment__top .btn01 {
    width: 100%;
  }
  .board-comment__top div {
    margin-left: 0;
    width: 100%;
    gap: 2.08vw;
    margin-top: 2.78vw;
  }
  .board-comment__top a,
  .board-comment__top button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
    height: 10.83vw;
    font-size: 4.17vw;
    gap: 1.11vw;
  }
  .board-comment__top a img,
  .board-comment__top button img {
    max-width: 4.17vw;
  }
  .board-comment > ul {
    gap: 2.78vw;
    margin-top: 5.56vw;
  }
  .board-comment > ul > li {
    padding: 5.28vw;
  }
  .board-comment__info .board-info {
    gap: 2.78vw;
    margin-top: 0;
  }
  .board-comment__info .board-info b {
    font-size: 4.44vw;
    max-width: 6ch;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .board-comment__info .board-info b + span {
    margin-left: 2.08vw;
    padding-inline: 2.08vw;
    border-radius: 4px;
    height: 5.83vw;
    font-size: 3.06vw;
    max-width: 15ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 5.83vw;
  }
  .comment-btn {
    height: 7.36vw;
    gap: 1.11vw;
    font-size: 3.33vw;
  }
  .comment-btn img {
    max-width: 4.17vw;
  }
  .comment-btn.like-btn {
    padding-inline: 2.78vw;
  }
  .comment-btn.delete-btn,
  .comment-btn.edit-btn {
    width: 7.36vw;
    margin-right: 1.39vw;
  }
  .board-comment__info {
    padding-bottom: 5.28vw;
  }
  .board-comment__desc {
    padding-top: 5.28vw;
  }
  .board-comment__desc > p {
    font-size: 4.17vw;
  }
  .board-comment__answer {
    margin-top: 5.28vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 4.17vw;
  }
  .board-comment__answer > div div p {
    font-size: 3.61vw;
  }
  .board-comment__answer > div {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-bottom: 4.17vw;
  }
  .board-comment__answer > div div {
    margin-top: 2.78vw;
    gap: 2.78vw;
  }
  .board-comment__answer > div p {
    font-size: 4.17vw;
  }
  .board-comment__answer.is-able > div {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    margin-bottom: 0;
  }
  .board-comment__answer.is-able > div div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.19vw;
    gap: 1.39vw;
  }
  .board-comment__answer.is-able > div div > span {
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-size: 4.17vw;
    line-height: 1;
  }
  .board-comment__answer.is-able > div button {
    height: 10.56vw;
    width: 100%;
    font-size: 4.17vw;
  }
  .board-comment__answer.is-able > div div p {
    font-size: 3.61vw;
    line-height: 1.6;
  }
  .board-comment__answer.is-able textarea {
    padding: 3.19vw;
    height: 27.78vw;
    font-size: 4.17vw;
  }
  .subject-opinion b {
    gap: 1.39vw;
    font-size: 5.28vw;
  }
  .subject-opinion b svg {
    max-width: 4.17vw;
  }
  .subject-opinion {
    margin-top: 5.56vw;
  }
  .subject-opinion p {
    margin-top: 3.19vw;
    padding: 4.17vw;
    font-size: 4.17vw;
  }
  .issue-check__view .board-comment__top,
  .board-view__edit .board-comment__top {
    margin-top: 3.19vw;
  }
  .board-comment__list ul li {
    gap: 3.19vw;
    padding-block: 4.17vw;
  }
  .board-comment__list ul li div p {
    font-size: 4.17vw;
  }
  .board-comment__list ul li div p:last-child {
    margin-top: 1.39vw;
    font-size: 3.61vw;
  }
  .board-comment__more {
    gap: 1.11vw;
    height: 10vw;
    padding-inline: 4.17vw;
    font-size: 4.17vw;
  }
  .board-comment__more svg {
    max-width: 4.17vw;
    max-height: 4.17vw;
  }
  .board-comment__list {
    margin-top: 5.28vw;
  }
  .regi-wrap {
    padding: 5.28vw 5.28vw 7.92vw;
  }
  .regi-tit {
    margin-bottom: 6.39vw;
    font-size: 4.17vw;
  }
  .regi-tit b {
    font-size: 5.28vw;
  }
  .regi-wrap ul {
    width: 100%;
    padding: 6.39vw;
    gap: 4.17vw;
  }
  .regi-wrap ul li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.08vw;
  }
  .regi-wrap ul li p {
    font-size: 4.17vw;
  }
  .regi-wrap ul li p:last-child {
    text-align: right;
  }
  .regi-wrap ul li:not(:last-child) {
    padding-bottom: 4.17vw;
  }
  .board-btn button.mo-full,
  .board-btn a.mo-full {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }
  .board-form > li.is-several02 {
    grid-template-columns: 1fr;
  }
  .board-form > li.is-several02 .board-form__inner {
    overflow: hidden;
    width: 100%;
  }
  .board-form > li .board-form__address li:first-child {
    width: 100%;
  }
  .board-form > li.is-several02 .board-form__inner .shape-size {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
  }
  .board-form
    > li.is-several02
    .board-form__inner
    .shape-size
    input[type='text'] {
    width: auto;
    min-width: 0;
  }
  .board-form > li {
    gap: 4.17vw;
  }
  .board-form > li .board-form__address li button {
    font-size: 3.61vw;
    padding-inline: 8px;
    width: 29.86vw;
  }
  .board-write select {
    background-size: 5.56vw;
    background-position: right 2.08vw center;
    min-width: 0;
  }
  .board-write input[type='text']:has(+ select) {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .board-write input[type='text'] + select {
    width: 36vw;
  }
}

.board-view__file {
  margin-top: var(--gap01);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--bg);
  gap: 10px;
}
.board-view__file a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

/* 로딩바 Start */
.blind {
  display: none !important;
}
.loading-prograss {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
.square {
  border: 0;
  width: 80px;
  padding: 0px;
  margin-top: 300px;
  margin-left: calc(50% - 40px);
  margin-left: -webkit-calc(50% - 40px);
  margin-left: -moz-calc(50% - 40px);
}

.spin {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: dashed 5px white;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* 로딩바 End */
