@charset "utf-8";
/*
 * @File Name : reset.css
 * @Description : 초기화
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2025.03.11 | ffany.lee | 최초 등록
 * </pre>
 * @author ffany.lee
 * @since 2025.03.11
 *
 * @Copyright (C)TWOGOMS All rights reserved.
*/

/* 기본 초기화 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: #8B8B8B;
}
::-webkit-scrollbar-track {
    background-color: #eee;
}

html {
    line-height: 1.15; /* 기본 라인 높이 */
    -webkit-text-size-adjust: 100%; /* 텍스트 크기 조정 비활성화 */
}

body {
    margin: 0;
    font-family:-apple-system, BlinkMacSystemFont, 'Pretendard','Roboto','Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #030410;
    background-color: #fff;
    font-style: normal;
    font-display: swap;
}

/* 블록 요소 */
article,
aside,
footer,
header,
nav,
picture,
figure,
section {
    display: block;
}

/* 기본 타이포그래피 설정 */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: 140%;
}

span{
    line-height: 150%;
}

p {
    margin: 0;
    line-height: 140%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

/* 링크 초기화 */
a {
    text-decoration: none;
    color: inherit;
}

/* 테이블 초기화 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* 폼 요소 초기화 */
button{
    all: unset;
}
button, input, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
    cursor: pointer;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/* 입력 및 텍스트 영역 초기화 */
input[type="text"],
input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input{
    all: unset;
    appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

/* 미디어 요소 초기화 */
audio,
canvas,
iframe,
img,
svg,
video {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* SVG 속성 초기화 */
svg {
    fill: currentColor;
}

/* 기타 요소 초기화 */
details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

input [type="file"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.flex-col{flex-direction: column;}
.flex-row{flex-direction: row;}