/* FONTS ===============================================*/
@import url(../vendor/fonts/Pretendard/pretendard.css);
/* normalize ===========================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body, input, select, textarea, button, table {
    font-family: 'Pretendard', sans-serif;
    font-size : 1.6rem;
    font-weight : 300;
    color: var(--fc-main);
    line-height : 1.618;
}
ol, ul, li {
    list-style: none;
}
a {
    text-decoration: none;
    color: var(--font-mainColor);
}
table {
    border-collapse: collapse;
    table-layout: fixed;
}
:root {
    --mainColor : #1A4632;
    --subColor1 : #5F8C77;
    --subColor2 : #A6C4B6;
    --subColor3 : #DEEDE6;
    --subColor4 : #F0EDCC;
    --font-mainColor : #1A1A1A;
    --font-subColor1 : #666666;
    --font-subColor2 : #999999;
}
img {
    vertical-align: middle;
}
button {
    background: none;
    border: none;
    cursor: pointer;
}
/* MEDIA QUERY START ===========================================================*/
@media screen and (max-width:1760px) {  
}
@media screen and (max-width:1480px) {  
}
@media screen and (max-width:1280px) {
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:500px) {
}
/* MEDIA QUERY END ===========================================================*/