@charset "utf-8";
@import "layout.css?v=2";
@import "main.css?v=2";
@import "sub.css?v=5";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* 1. box-sizing 설정 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color1: #578e7e;
}

/* 2. HTML 기본 스타일 초기화 */
html,
body {
    height: 100%;
    font-family: 'Pretendard Variable', Arial, 맑은 고딕, 돋움, sans-serif;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

/* 3. 리스트 스타일 제거 */
ul,
ol {
    list-style: none;
    padding-left: 0;
}

li {
    list-style: none;
}

/* 4. 링크 기본 스타일 초기화 */
a {
    text-decoration: none;
    color: inherit;
}

/* 5. 테이블 기본 스타일 초기화 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 6. 이미지 기본 스타일 초기화 */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 7. Form 요소 스타일 초기화 */
input,
button,
textarea,
select {
    background: transparent;
    border: none;
    font: inherit;
    color: inherit;
    padding: 0;
}

/* 8. 버튼 기본 스타일 초기화 */
button {
    cursor: pointer;
}

/* 9. 세로 스크롤바 숨김 */
body {
    overflow-x: hidden;
}

/* 10. 기타 기본 스타일 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

code {
    font-family: monospace;
}