/* Search */

.search-inner {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
}
.search select {
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  font-size: 1.8rem;
  height: 53px;
  padding: 0 12px;
  min-width: 140px;
  background: url(../img/bbs/ico_select.svg) no-repeat right 10px center;
  background-size: 24px;
  cursor: pointer;
}

.search .search-input {
  width: 345px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}

.search input {
  width: calc(100% - 34px);
  font-size: 1.8rem;
  line-height: 1;
}

.search button {
  width: 24px;
}
.search button img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1200px) {
  .search .search-input {
    padding: 10px;
    width: 300px;
  }
  .search input {
    font-size: 1.6rem;
  }
  .search select {
    height: 47px;
    font-size: 1.6rem;
    padding: 0 10px;
    min-width: 130px;
    background: url(../img/bbs/ico_select.svg) no-repeat right 8px center;
    background-size: 24px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .search input,
  .search select {
    font-size: 1.5rem;
  }
  .search select {
    height: 46px;
  }
  .search .search-input {
    width: calc(100% - 135px);
  }
}
@media screen and (max-width: 576px) {
  .search-inner,
  .search {
    width: 100%;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 1.6rem;
  color: #999999;
}


.pagination a.current {
  color: #48c1c5;
  font-weight: bold;
}

.pagination a.pagination-prev,
.pagination a.pagination-next {

  display: block;
  width: 32px;
  border-radius: 50px;
}
.pagination a.pagination-prev img,
.pagination a.pagination-next img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 1024px) {

.pagination a.pagination-prev,
.pagination a.pagination-next,
  .pagination a {
    width: 30px;
    height: 30px;

  }
}
@media screen and (max-width: 768px) {
.pagination{
  gap: 10px;
}
  .pagination a {
    font-size: 1.4rem;
  }
  .pagination a.pagination-prev,
.pagination a.pagination-next,
  .pagination a {
    width: 26px;
    height: 26px;

  }
}
@media screen and (max-width: 576px) {

}

/* News List */
.bbs-news {
}
.bbs-news .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #1a1a1a;
}

.bbs-news .table tbody tr {
  border-bottom: 1px solid #e6e6e6;
}

.bbs-news .table th {
  height: 60px;
  padding: 8px;
  font-size: 1.8rem;
  font-weight: 500;
  background: #f6f6f6;
}
.bbs-news .table td {
  height: 78px;
  padding: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #999;
}

.bbs-news .table td a {
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.bbs-news .table td a span {
  display: block;
  width: fit-content;
  max-width: calc(100% - 36px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;

  color: #1a1a1a;
}
.bbs-news .table .lock {
  position: relative;
  width: 26px;
}
.bbs-news .table .new .lock::after {
  content: "";
  background: url(../img/bbs/ico_new.svg) no-repeat center;
  background-size: 100% auto;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
}
.bbs-news .table .lock img {
  width: 100%;
}
.bbs-news .table .status {
  display: inline-block;
  text-align: center;
  min-width: 106px;
  padding: 10px 20px;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 40px;
  border: 1px solid #999;
  color: #999;
  letter-spacing: -0.108rem;
}
.bbs-news .table .complete .status {
  color: #48c1c5;
  border: 1px solid #48c1c5;
}
@media screen and (max-width: 1300px) {
  .bbs-news .table .status {
    min-width: 90px;
    padding: 8px 10px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.6rem;
  }
  .bbs-news .table .status {
    font-size: 1.5rem;
    width: fit-content;
    min-width: initial;
  }
}

@media screen and (max-width: 1024px) {
  .bbs-news {
    padding-bottom: 70px;
  }
  .bbs-news .table thead {
    display: none;
  }

  .bbs-news .table {
    display: block;
  }

  .bbs-news .table tbody {
    display: block;
  }

  .bbs-news .table tr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 6px 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    position: relative;
    height: auto;
    padding: 4px 6px;
    font-size: 1.5rem;
  }

  .bbs-news .table td.no {
    order: 2;
  }
  .bbs-news .table td.data::after,
  .bbs-news .table td.category::after,
  .bbs-news .table td.no::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #999;
  }

  .bbs-news .table td.subject {
    width: 100%;
    order: 1;
  }

  .bbs-news .table td.category {
    order: 3;
  }
  .bbs-news .table td.answer {
    order: 5;
  }
  .bbs-news .table td.data {
    order: 4;
  }

  .bbs-news .table .status {
    padding: 6px 10px;
    font-size: 1.3rem;
  }
  .bbs-news .table td a {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .bbs-news .table tr {
    padding: 4px 2px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.3rem;
  }
}

/* Board Case List */
.board-case {
  padding: 0 0 150px;
}
.board-case .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  row-gap: 30px;
}

.board-case .list li {
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}
.board-case .list li a {
  display: block;
}

.board-case .list .thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 484 / 380;
  overflow: hidden;
}

.board-case .list .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.board-case .list li .con {
  padding: 40px 30px;
}

.board-case .list .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.board-case .list .text {
  font-size: 2rem;
  color: #474747;
  line-height: 1.6;
  margin-top: 20px;

  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1201px) {
  .board-case .list li:hover .thumb img {
    transform: scale(1.08);
  }
}
@media screen and (max-width: 1200px) {
  .board-case .list .subject {
    font-size: 1.8rem;
  }
  .board-case .list .text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .board-case {
    padding: 0 0 70px;
  }
  .board-case .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 30px;
  }

  .board-case .list li .con {
    padding: 24px 20px;
  }
  .board-case .list .subject {
    font-size: 1.6rem;
  }
  .board-case .list .text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

/* Board View */

/* Board View */
.bbs-view {
  padding-bottom: 130px;
}
.bbs-view-head {
  padding: 30px 15px;
  border-top: 2px solid #1a1a1a;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}
.bbs-view-head .notice {
  color: var(--primary-color-1);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--primary-color-1);
}
.bbs-view-head .subject {
  font-size: 2.5rem;
  font-weight: 500;
}
.bbs-view-head ul {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 1.6rem;
  color: #999999;
}
.bbs-view-head ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.bbs-view-head ul li + li::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  background: #e6e6e6;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}
.bbs-view-head ul li span {
  font-weight: 400;
}
.bbs-view-area {
  min-height: 100px;
  padding: 30px 15px;
}

.bbs-view-file {
  padding: 20px 0px;
  border-bottom: 1px solid #d9d9d9;
}

.bbs-view-file .file {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.bbs-view-file .file a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bbs-view-file .file i {
  display: block;
  width: 20px;
  height: 20px;
  background: url("/pub/asset/img/common/ico_file.svg") no-repeat center/contain;
}

.bbs-view-file .file span {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 40px);
}

.bbs-view-nav {
  margin-top: 130px;
  display: flex;
  justify-content: center;
  position: relative;
}

.bbs-view-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 325px;
  height: 70px;
  font-weight: 700;
  border-radius: 70px;
  border: 1px solid #1a1a1a;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .bbs-view-head .subject {
    font-size: 2rem;
  }
  .bbs-view-nav .nav-back {
    font-size: 1.8rem;
  }

  .bbs-view-head ul {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .bbs-view-head {
    padding: 20px 0px;
  }

  .bbs-view-head .data {
    padding-left: 20px;
  }

  .bbs-view-head .data::before {
    width: 16px;
    height: 14px;
    background-size: auto 14px;
  }

  .bbs-view-area {
    min-height: 300px;
    padding: 20px 0px;
  }

  .bbs-view-file {
    padding: 14px 0px;
  }

  .bbs-view-file .file {
    padding: 14px 20px;
  }

  .bbs-view-file .file a {
    gap: 12px;
  }

  .bbs-view-file .file i {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 26px);
  }

  .bbs-view-nav {
    margin-top: 60px;
  }

  .bbs-view-nav .nav-prev,
  .bbs-view-nav .nav-next {
    max-width: 260px;
  }

  .bbs-view-nav .nav-prev i,
  .bbs-view-nav .nav-next i {
    width: 24px;
    height: 24px;
    background-size: 16px;
  }

  .bbs-view-nav .nav-prev span,
  .bbs-view-nav .nav-next span {
    margin: 14px 0px;
  }
  .bbs-view-nav .nav-edit,
  .bbs-view-nav .nav-back {
    max-width: 240px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bbs-view-head .subject {
    font-size: 1.8rem;
  }
  .bbs-view-head .data::before {
    width: 14px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view-file .file a {
    gap: 8px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 22px);
  }

  .bbs-view-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .bbs-view-nav .nav-prev,
  .bbs-view-nav .nav-next {
    max-width: none;
    width: calc(50% - 10px);
    order: 1;
  }
  .bbs-view-nav .nav-edit,
  .bbs-view-nav .nav-back {
    order: 3;
    position: relative;
    left: unset;
    bottom: unset;
    transform: none;
    max-width: 180px;
    height: 54px;
    font-size: 1.6rem;
  }
  .bbs-view-head ul {
    flex-wrap: wrap;
    overflow: hidden;
    row-gap: 16px;
  }
}
@media screen and (max-width: 576px) {
  .bbs-view-head {
    padding: 14px 0px;
  }

  .bbs-view-head .data {
    padding-left: 14px;
  }

  .bbs-view-head .data::before {
    width: 12px;
    height: 10px;
    background-size: auto 10px;
  }

  .bbs-view-area {
    padding: 14px 0px;
  }

  .bbs-view-file {
    padding: 10px 0px;
  }

  .bbs-view-file .file {
    padding: 10px 14px;
  }

  .bbs-view-file .file a {
    gap: 6px;
  }

  .bbs-view-file .file i {
    width: 12px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view-file .file span {
    width: calc(100% - 18px);
  }

  .bbs-view-nav {
    margin-top: 40px;
  }

  .bbs-view-nav .nav-prev i,
  .bbs-view-nav .nav-next i {
    height: 8px;
    background-size: auto 8px;
  }

  .bbs-view-nav .nav-prev span,
  .bbs-view-nav .nav-next span {
    margin: 10px 0px;
  }
  .bbs-view-nav .nav-edit,
  .bbs-view-nav .nav-back {
    max-width: 100px;
    height: 40px;
    font-size: 1.4rem;
  }
}

/* Board Modal */
.bbs-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 9999;
}

.bbs-modal .modal-con {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.bbs-modal .modal-con-wrap {
  position: relative;
  width: 100%;
}

.bbs-modal .swiper {
  overflow: hidden;
  width: 100%;
}

.bbs-modal .swiper .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(559 / 380 * 100%);
  overflow: hidden;
  border-radius: 20px;
}

.bbs-modal .swiper .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bbs-modal .swiper .con {
  margin-top: 30px;
}

.bbs-modal .swiper .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.bbs-modal .prev,
.bbs-modal .next {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  z-index: 10;
}

.bbs-modal .prev {
  left: -100px;
  background-image: url("/pub/asset/img/bbs/si_prev.svg");
}

.bbs-modal .next {
  right: -100px;
  background-image: url("/pub/asset/img/bbs/si_next.svg");
}

.bbs-modal .swiper-button-disabled {
  display: none;
}

.bbs-modal .modal-bak {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.bbs-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .bbs-modal .swiper .subject {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .bbs-modal .prev,
  .bbs-modal .next {
    width: 40px;
    height: 40px;
  }

  .bbs-modal .prev {
    left: -60px;
  }

  .bbs-modal .next {
    right: -60px;
  }

  .bbs-modal .swiper .con {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bbs-modal .swiper .subject {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .bbs-modal .modal-con {
    max-width: 220px;
  }

  .bbs-modal .modal-con-wrap {
    max-width: 220px;
  }

  .bbs-modal .prev,
  .bbs-modal .next {
    width: 30px;
    height: 30px;
  }

  .bbs-modal .prev {
    left: -40px;
  }

  .bbs-modal .next {
    right: -40px;
  }

  .bbs-modal .swiper .img {
    padding-top: calc(323 / 220 * 100%);
  }

  .bbs-modal .swiper .con {
    margin-top: 12px;
  }

  .bbs-modal .swiper .subject {
    font-size: 1.4rem;
  }
}
/*  */

/* 문의하기 뷰 */
.inquiry-view {
  padding-bottom: 150px;
}
.inquiry-view .bbs-view-area {
  padding: 40px 0;
  border-bottom: 1px solid #898989;
}
.inquiry-view .bbs-view-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.inquiry-view .bbs-view-nav .nav-back {
  position: initial;
  left: initial;
  top: initial;
  transform: initial;
}
.inquiry-view .view-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.inquiry-view .view-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

/* 메타 */
.inquiry-view .view-meta {
  padding: 16px 0;
  border-bottom: 1px solid #898989;
}
.inquiry-view .meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 50px;
  line-height: 2.3;
}

/* 답변 */
.view-reply {
  margin-top: 80px;
  border-bottom: 1px solid #e6e6e6;
}

.reply-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  background: #f6f6f6;
  padding: 20px 15px;
  color: #48c1c5;
}
.view-reply.on .reply-head {
  background: #edfafa;
  border-bottom: 2px solid #48c1c5;
}
.reply-num {
  display: flex;
  align-items: center;
  gap: 6px;
}
.reply-num .num {
  text-align: center;
  display: flex;
  min-width: 22px;
  line-height: 22px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}
.reply-body {
  padding: 30px 15px;
  min-height: 124px;
  line-height: 1.5;
  color: #ccc;
}
.view-reply.on .reply-body {
  color: #333;
}
/* 반응형 */
@media screen and (max-width: 1024px) {
  .inquiry-view .bbs-view-area {
    min-height: 300px;
    padding: 20px 0px;
  }
  .view-reply {
    margin-top: 40px;
    padding: 20px;

    min-height: 250px;
  }
}
@media screen and (max-width: 992px) {
}
@media (max-width: 768px) {
  .inquiry-view .view {
    padding: 16px;
  }
  .inquiry-view .view-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .inquiry-view .meta {
    grid-template-columns: 120px 1fr;
  }
  .view-reply {
    margin-top: 32px;
    padding: 16px;

    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .inquiry-view .bbs-view-area {
    padding: 14px 0px;
  }
}

/* Form */
.form-sec {
  background: #f6f6f6;
  padding: 50px 0 150px;
}
.form-table {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: flex;
  gap: 12px;
}

.form-table tr:not(:last-child) {
  margin-bottom: 20px;
}

.form-table th {
  display: block;
  width: 130px;
  padding: 20px 0px;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.108rem;
}

.form-table td {
  display: flex;
  gap: 10px;
  width: calc(100% - 142px);
  font-size: 1.8rem;
  font-weight: 400;
}

.form-table input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  height: 62px;
  font-weight: 400;
  padding: 10px 20px;
}

.form-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
}

.form-table select {
  width: 100%;
  height: 62px;
  border-radius: 10px;

  font-size: 1.8rem;
  font-weight: 400;
}

.form-table textarea {
  resize: none;
  display: block;
  width: 100%;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: 1.8rem;
  background: #fff;
}
.form-table .privacy-box {
  display: block;
  width: 100%;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: 1.8rem;
  line-height: 1.45;
  background: #fff;
  overflow-y: auto;
}
.form-table .time-list {
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-table .time-box select {
  width: 160px;
}
.form-table .email-wrap {
  display: flex;
  align-items: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.file-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 파일명 표시 상자 */
.file-name {
  width: 321px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* ... 처리 */
  border-radius: 10px;
  border: 1px solid #eee;
  color: #ccc;
  background: #fff;
}

/* 파일이 선택되었을 때 진한 색상 */
.file-name.has-file {
  color: #333;
}

/* 오른쪽 검은 버튼 */
.file-btn {
  width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 10px 18px;
  border-radius: 5px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.108rem;
  cursor: pointer;
  user-select: none;
}

/* 우측 회색 설명 */
.file-meta {
  padding-left: 10px;
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: -0.084rem;
}
.file-meta span {
  font-weight: 400;
}

.form-table .agree {
  margin-top: 20px;
}

.form-table .agree label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0px;
  cursor: pointer;
}

.form-table .agree input {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  opacity: 0;
  height: 100%;
  cursor: pointer;
}

.form-table .agree button {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.form-btn .btn {
  max-width: 325px;
  width: 100%;
  height: 70px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  border-radius: 70px;
  background: #48c1c5;
  letter-spacing: -0.144rem;
}

.form-flex-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-flex-box .form-flex-btn {
  display: inline-block;
  width: 140px;
  height: 62px;
  padding: 10px;
  line-height: 1px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.108rem;
  text-align: center;
}

@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
  .form-table .privacy-box,
  .form-btn .btn,
  .form-table textarea,
  .form-table input,
  .form-table select {
    font-size: 1.6rem;
  }
  .form-flex-box .form-flex-btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .form-btn {
    margin-top: 60px;
  }
  .file-meta {
    padding-left: 0;
  }

  .form-table textarea {
    height: 160px;
  }

  .file-name {
    width: 250px;
    height: 50px;
    font-size: 1.6rem;
    padding: 0 16px;
  }
  .file-btn {
    font-size: 1.6rem;
    height: 50px;
    width: 100px;
  }

  .form-table th {
    font-size: 1.6rem;
    width: 110px;
    padding: 16px 0;
  }
  .form-table td {
    width: calc(100% - 122px);
  }
  .form-flex-box .form-flex-btn {
    height: 50px;
  }

  .form-table input {
    height: 50px;
    padding: 0px 16px;
  }

  .form-table select {
    height: 50px;
    padding: 0px 16px;
    background-position: right 4px center;
  }
  .form-table .privacy-box,
  .form-table textarea {
    padding: 16px;
  }

  .form-table .chk-list {
    gap: 60px;
  }

  .form-table .chk-list label {
    gap: 6px;
  }

  .form-table .chk-list i {
    width: 20px;
    height: 20px;
    background-size: auto 20px;
  }

  .form-table .agree {
    margin-top: 14px;
  }

  .form-table .agree label {
    gap: 6px;
  }

  .form-table .agree i {
    width: 20px;
    height: 20px;
    background-size: auto 20px;
  }

  .form-btn .btn {
    max-width: 240px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .form-sec {
    padding: 50px 0 80px;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 32px;
  }
  .form-table tr {
    flex-wrap: wrap;
    gap: 6px;
  }

  .form-table th {
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
  }
  .file-field {
    width: 100%;
    flex-wrap: wrap;
  }
  .file-name {
    width: calc(100% - 110px);
  }
  .form-table td {
    width: 100%;
  }

  .form-table input {
    width: 100%;
  }
  .form-table .privacy-box,
  .form-table textarea {
    height: 140px;
  }

  .form-btn .btn {
    max-width: 200px;
    height: 54px;
  }
  .form-flex-box .form-flex-btn {
    width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .form-table td {
    flex-wrap: wrap;
  }

  .form-table .time-box select {
    width: 100%;
  }
  .form-table .time-box .time-list {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .form-table .time-box .time-list select {
    width: calc((100% - 30px) / 2);
  }
  .form-table input {
    padding: 0px 12px;
    font-size: 1.4rem;
    border-radius: 5px;
    width: 100%;
    height: 40px;
  }
  .form-flex-box .form-flex-btn {
    font-size: 1.4rem;
    padding: 6px;
    height: 40px;
    width: 100px;
  }
  .form-table select {
    padding: 0px 12px;
    font-size: 1.4rem;
    border-radius: 5px;
    height: 40px;
  }
  .form-table .privacy-box,
  .form-table textarea {
    padding: 12px;
    font-size: 1.4rem;
    border-radius: 5px;
  }

  .file-btn,
  .file-name {
    height: 40px;
    padding: 0 12px;
    font-size: 1.4rem;
    border-radius: 5px;
  }
  .form-table .email-wrap {
    flex-wrap: wrap;
  }

  .form-table .email-wrap span {
    width: 12px;
    text-align: center;
    margin: 0px 8px;
  }

  .form-table .email-wrap .box {
    width: calc(50% - 14px);
  }

  .form-table .email-wrap .box02 {
    width: 100%;
    margin-left: 0px;
    margin-top: 6px;
  }

  .form-table .agree i {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }

  .form-btn .btn {
    max-width: 140px;
    height: 40px;
    font-size: 1.4rem;
  }
}
