﻿
/*reset 초기화*/
* { margin: 0;  padding: 0;  box-sizing: border-box;  font-weight: 400; font-size: 100%;   }
* { font-family: 'Spoqa Han Sans Neo', 'sans-serif'; line-height: 120%; }
html, body, div, span, applet, object, button, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, enter, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;    padding: 0;    border: 0;    font-size: 100%;    vertical-align: middle;
    background: transparent;    font-style: normal;    scroll-behavior: smooth;
}
html, body {
    width: 100%;
    letter-spacing: -2%;
    color: #1e1e1e;
    -webkit-text-size-adjust: 100% !important; /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust: 100% !important; /* IE */
    -moz-text-size-adjust: 100% !important; /* 파이어폭스 */
    -o-text-size-adjust: 100% !important; /* 오페라 구버전 */
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{ overflow-x: unset; }
article, aside, details, figcaption, figure, footer, hgroup, menu, nav, section { display: block; }
ol, ul, li{ list-style: none;}
a {text-decoration: none;    color: #333;}
table {border-collapse: collapse;    border-spacing: 0;    table-layout: fixed;}
span {vertical-align: baseline;}
:root {color-scheme: light only;}
button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}
/* 아이폰 안드로이드 css 기초세팅 */
label {
    -webkit-tap-highlight-color: transparent; /* iOS 탭 하이라이트 제거 */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* 표준 */
}
html, body {
    touch-action: manipulation; /* 기본 동작 최소화 */
    -webkit-overflow-scrolling: touch; /* iOS에서 스무스 스크롤 활성화 */
}
button, input, select, textarea {
    -webkit-appearance: none; /* iOS 기본 스타일 제거 */
    appearance: none;
    border-radius: 0; /* 라운드 제거 */
}
/* 클릭 시 파란색 창 제거 */
a, button, input, *, .boxbtn {
    user-select: none !important; /* 텍스트 선택 방지 */
    -webkit-user-select: none; /* 크롬, 사파리 */
    -moz-user-select: none;    /* 파이어폭스 */
    -ms-user-select: none;     /* IE/Edge 구버전 */
}



/* 스크롤 커스텀 */
body::-webkit-scrollbar {
    width: 12px;
    background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    border: 1px solid transparent;
}
bodyu::-webkit-scrollbar-track {
    border-radius: 10px;
}


