/* Reset CSS & Font Import */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pretendard';
  letter-spacing: -1px;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Pretendard';
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* 제목 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* 링크 */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

/* 리스트 */
ul, ol {
  list-style: none;
}

/* 버튼 */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

button:hover {
  background: none;
}
button:focus {
  outline: none;
}

button:active {
  outline: none;
}

/* 입력 요소 */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

/* 테이블 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

/* 이미지 */
img {
  max-width: 100%;
  display: block;
}

/* 기타 */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

.inner {
    width: 1200px;
    position: relative;
    margin: 0 auto;
}