
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{
  width: 100%;
  height: 100%;
  color: #2e2e31;
  /* overflow: hidden; */
}
html{
  overflow-y:scroll;  
  overflow-x:hidden; 
}
body{
  font-family: 'Pretendard Variable', sans-serif;
  font-size: 16px; 
  line-height: 1.5;
}
article,aside,details,summary,figcaption,figure,
footer,header,hgroup,main,nav,section{ 
	display:block;  
}
li{list-style-type: none;}
a{
  text-decoration: none;  
  color: inherit;  
}
img{
	vertical-align:top; /*이미지에 원치 않는 여백이 생성되는 브라우저 오류가 발생하는 경우가 있음*/
	font-size:0;  /*폰트 크기 초기화*/
	border:0; /* 이미지 링크시 기본적으로 나타나는 테두리 제거 */
}
table { 
  width: 100%; 
  border-collapse: collapse;
}

.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; /* hover 시 조금 더 진한 청록 */
}

/* ------------------------------------------------------------- */

.container { 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto;
  /* padding: 0 20px;   */
}

/* notice.css 시작 */
.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 (min-width: 768px) and (max-width: 1300px) {
  .notice {
    padding: 100px 20px;
    background-color: white;
  }
}
@media (max-width: 768px) {
  .notice {
    background-color: white;
  }
  .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;
  }
}
/* notice.css 끝 */

/* inquiry.css 시작 */
.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;
}
/* inquiry.css 끝 */
