@charset "UTF-8";
/**
 * board.scss — 그누보드 게시판 화면에서만 필요한 스타일.
 *
 * 개선 전에는 이 내용이 board/theme/basic/css/common.css 안에
 * "컴파일 결과만" 들어 있어서 원본(SCSS)이 없었습니다.
 * 이제 여기가 원본이고, 테마는 컴파일된 board.css 를 읽어 갑니다.
 *
 * 게시판 스킨(skin/board/basic, basic_thumb, feelz_gallery)이
 * .notice__* / .inquiry__* / .basic-rounded-btn 클래스를 사용합니다.
 */
/* 게시판 목록·페이지네이션 */
.notice {
  padding-top: 100px;
  padding-bottom: 200px;
  /* 게시판 레이아웃 */
  /* 페이지네이션 */
}
.notice__title {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}
.notice__title-maintxt {
  font-size: 44px;
  font-weight: 500;
}
.notice__table {
  margin-top: 80px;
}
.notice__table thead {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.notice__table tr th, .notice__table tr td {
  padding: 14px 16px;
  text-align: center;
}
.notice__td {
  border-bottom: 1px solid #cbcfd1;
}
.notice__bottom {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.notice__pagination {
  display: flex;
  align-items: center;
}
.notice__pagination > a {
  display: inline-block;
  font-size: 20px;
  margin: 0 20px;
}
.notice__pagination > a.prev, .notice__pagination > a.next {
  width: 45px;
  height: 45px;
  border: 1px solid #cbcfd1;
  border-radius: 4px;
  padding: 10px;
}
.notice__pagination > a.prev > img, .notice__pagination > a.next > img {
  width: 100%;
}
.notice__btn-wrap {
  position: absolute;
  right: 0;
  width: 100px;
  height: 45px;
  border: 1px solid #cbcfd1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1300px) {
  .notice {
    padding: 100px 20px;
  }
}
@media (max-width: 768px) {
  .notice__title-maintxt {
    font-size: 32px;
  }
  .notice__table tr th.hidden, .notice__table tr td.hidden {
    display: none;
  }
  .notice__td--title {
    width: 100%;
  }
  .notice__bottom {
    margin-top: 100px;
  }
  .notice__pagination {
    width: 100%;
    justify-content: space-between;
  }
  .notice__pagination > a {
    margin: 0;
  }
  .notice__btn-wrap {
    top: -90px;
  }
}
/* 문의 작성 폼 */
.inquiry {
  padding-top: 100px;
  padding-bottom: 200px;
}
.inquiry__title {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  border-bottom: 1px solid #cbcfd1;
}
.inquiry__title-maintxt {
  font-size: 44px;
  font-weight: 500;
}
.inquiry__content .btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.inquiry__content .btn-wrap > button {
  width: 200px;
  height: 60px;
  border-radius: 50px;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  background-color: #00b7ce;
  transition: 0.3s;
}
.inquiry__content .btn-wrap > button:hover {
  background-color: #00e3ff;
}
.inquiry-form {
  padding: 32px 0;
  width: 100%;
  border-top: 1px solid #161616;
  border-bottom: 1px solid #ddd;
}
.inquiry-form tr {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 32px;
  gap: 20px;
}
.inquiry-form tr th {
  position: relative;
  padding: 16px 0;
  font-weight: 500;
  flex: 12.5 1 0;
}
.inquiry-form tr th.required::after {
  content: "*";
  position: absolute;
  color: #ee1c50;
}
.inquiry-form tr td {
  flex: 57.25 1 0;
}
.inquiry-form tr td textarea {
  height: 230px;
  border: 1px solid #ddd !important;
  padding: 20px;
  border: 1px solid #ddd;
}
.inquiry-form__input {
  width: 100%;
  border: none;
  font-family: "Pretendard Variable", sans-serif;
  font-size: 16px;
  padding: 16px 20px;
  line-height: 140%;
  border-bottom: 1px solid #ddd;
  letter-spacing: 0;
}

@media (max-width: 1300px) {
  .inquiry {
    padding: 100px 20px;
  }
}
@media (max-width: 768px) {
  .inquiry-form tr {
    padding: 20px 0px;
  }
}
/* 게시판 스킨 공용 버튼 */
.basic-rounded-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00b7ce;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background-color 0.3s;
}
.basic-rounded-btn:hover {
  background-color: #0098aa;
}
