/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body,
html {
    width: 100%;
    height: 100%;
    color: var(--color-text1);
}

canvas,
img,
picture,
video {
    width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ol,
ul {
    list-style: none;
}

/* root-style */
:root {
    --font-family: 'Pretendard';
    --font-size-tit: 4.4rem;
    --sub-tit-34: 3.4rem;
    --sub-tit-30: 3rem;
    --sub-tit-24: 2.4rem;
    --sub-txt-18: 1.8rem;
    --font-size-base: 1.6rem;
    /* main-color */
    --main-color: #41B06B;
    /* sub-color */
    --sub-color: #00A4C9;
    /* sub-color02 */
    --sub-color02: #1C2849;
    /* gray-color */
    --gray-color: #f9f9f9;
    /* grd-color */
    --grd-color: linear-gradient(135deg, #41B06B, #00A4C9);
    --grd-color-re: linear-gradient(135deg, #00A4C9, #41B06B);
    /* bg-color */
    --color-bg: #ffffff;
    /* main-txt-color */
    --color-text1: #111111;
    /* main-txt-color */
    --color-text2: #222222;
    /* main-txt-color */
    --color-text3: #333333;
    /* main-txt-color */
    --color-text6: #666666;
    /* gray-txt-color */
    --color-g-text: #bababa;
    /* ft-blur */
    --filter-blur: blur(4px);
    --wrap-width-01: 1600px;
    --wrap-width-02: 1500px;
    --wrap-width-03: 1400px;
    --full-height: 100vh;
    --inner: 0;
    /*con-pd*/
    --con-pd: 16rem 0;
    /*shadow*/
    --shadow01: rgba(149, 157, 165, 0.2) 0 0 24px;
    --shadow02: rgba(149, 157, 165, 0.2) 0 0 10px;

}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

a {
    color: var(--color-primary);
}

a:hover {
    color: var(--color-secondary);
}

button {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: none;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--color-secondary);
}
