/* === 브라우저 기본 스타일 초기화 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://sjinfotec.com/250908/miracom2025/fonts/Pretendard-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-bold';
    src: url('https://sjinfotec.com/250908/miracom2025/fonts/Pretendard-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraBold' ;
    src: url('https://sjinfotec.com/250908/miracom2025/fonts/Pretendard-ExtraBold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-SemiBold' ;
    src: url('https://sjinfotec.com/250908/miracom2025/fonts/Pretendard-SemiBold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Medium' ;
    src: url('https://sjinfotec.com/250908/miracom2025/fonts/Pretendard-Medium.ttf') format('truetype');
    font-style: normal;
}

/* === HTML, body 전체 설정 === */
html, body {
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: #333;
	font-family: 'Pretendard-Regular';
}

/* === 링크 초기화 === */
a {
    text-decoration: none;
    color: inherit;
}

/* === 리스트 스타일 초기화 === */
ul, ol {
    list-style: none;
}

/* === 테이블 초기화 === */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* === 버튼 초기화 === */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* === 인풋, 텍스트에어리어 초기화 === */
input, textarea {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
}
 
/* === 폼 요소 스타일 초기화 === */
fieldset {
    border: none;
}

/* === 강제 줄바꿈 및 공백 설정 초기화 === */
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

h4 {
     font-weight: bold !important;
}
