



/* 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 폰트 설정 */
@font-face {
  font-family: 'Pretendard';
  src: url('../font/PretendardVariable.woff2') format('woff2-variations'),
       url('../font/PretendardVariable.woff') format('woff-variations');
  font-weight: 45 920;
  font-display: swap;
}


html, body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
   -webkit-overflow-scrolling: touch;
}


/* 본문 스타일 */
body {
  margin-inline: 20px;
  margin-block: 20px;
  text-align: left;
  word-break: keep-all;
  background-color: white;
}

/* 테이블 기본 스타일 */
table {
  width: 90%;
  margin: auto 0;
  margin-top: 24px;
  margin-bottom: 12px;
  border-collapse: collapse;
}

/* 테이블 헤더 */
th {
  text-align: left;
  font-size: 18px;
  line-height: 120%;
  font-family: "pretendard", sans-serif;
  font-weight: 520;
  color: #111;
}


/* 테이블 셀 */
td {
  vertical-align: top;
  padding-left: 24px;
  padding-block: 8px;
  font-size: 16px;
  font-family: "pretendard", sans-serif;
  font-weight: 520;
  line-height: 140%;
  color: #111;
}



h1 {
  width: 100%;
  word-break: keep-all;
  padding-block: 24px;
  padding-top: 0;
  font-family: "pretendard", sans-serif;
  font-weight: 520;
  font-size: 24px;
  color: #111;
}


h2 {
  font-size: 16px;
  font-family: "pretendard", sans-serif;
  font-weight: 480;
  line-height: 150%;
  padding-bottom: 24px;
  color: #333;
}



h3 {
  font-size: 15px;
  font-family: "pretendard", sans-serif;
  font-weight: 480;
  line-height: 150%;
  padding-bottom: 12px;
  color: #333;

}

/* 링크 스타일 */
a {
  color: #333;
  text-decoration: underline;
}

a:hover {
  color: gray;
  text-decoration: underline;
}



p {
  font-family: "pretendard", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #333;
}



.caption {
  padding-top: 24px;
  font-size: 16px;
  line-height: 140%;
  padding-bottom: 16px;
}




.date {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}


ul {
  list-style: disc;          /* 도트 유지 */
  list-style-position: outside; /* 도트 왼쪽 바깥쪽 */
  padding-left: 16px;       /* 기본값보다 살짝 좁게 */
  margin: 0;
}


li {
  font-size: 14px;
/*  list-style: none;*/
}



.btn {
  margin-left: 24px;
  font-size: 14px;
  padding-bottom: 8px;
}





@media (max-width: 432px) {


h1 { 
 font-size: 20px;
}


.date, .caption {
  font-size: 14px;
}

h3, h2 {
  font-size: 15px;





}





@media (max-width: 414px) {

body {
  margin: 16px;
}

table {
  width: 100%;
}


h1 {
  font-size: 20px;
}

h3, h2 {
  font-size: 15px;

}



.caption {
  padding-bottom: 40px;
}

}





