/*
---------------------------------------------------------------------------
2024 renewal reset css
---------------------------------------------------------------------------
*/
@charset "UTF-8";

@import "/css/font.css";
@import url("/css/font.css");

*{
    margin:0;
    padding:0;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-family: 'SUIT', sans-serif;
    color:#131313;
    font-size:16px;
    word-break: keep-all;
}

*, *::before, *::after{
    box-sizing:border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd{
    margin-block-end: 0;
}

ul[role='list'], ol[role='list']{
    list-style: none;
}

ul, ol, li{
    list-style: none;
}

body{
    min-height:100vh;
    line-height: 1;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
    text-wrap: balance;
}

a{
    text-decoration: none;
}

a:not([class]){
    text-decoration-skip-ink: auto;
}

img, picture{
    max-width: 100%;
    border: 0;
    display:block;
}

input, button, textarea, select{
    font: inherit;
    margin:0;
    vertical-align: middle;
    font-family: "SUIT", sans-serif;
}

input, button {
    overflow:visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

button, select{
    text-transform: none;
}

input[type="text"],input[type="password"],input[type="number"],input[type="tel"]{
    height:3rem;
    padding:0 0.75rem;
    border:1px solid #ddd;
}

input[type="text"]:disabled,input[type="password"]:disabled,input[type="number"]:disabled,input[type="text"]:read-only{
	color: #acacac;
    background:#e3e3e3;
}

input::-webkit-input-placeholder{
	color: #999;
}

input:-ms-input-placeholder{
	color: #999;
}

input::placeholder{
	color: #999;
}
/* 웹킷 전용 속성 */
input:-moz-placeholder{
	color: #999;
	opacity: 1;
}
/* Mozilla Firefox 4 to 18 */
input::-moz-placeholder{
	color: #999;
	opacity: 1;
}
/* Mozilla Firefox 19+ */
input:-ms-input-placeholder{
	color: #999;
}
select{
    padding:0 1rem;
    font-size:1rem;
    height:3rem;
    border:0;
    background:#f6f6f6
}

button{
    color: #515151;
}

button,
[type='button'],
[type='reset'],
[type='submit']{
    -webkit-appearance: button;
    border: 0 none;
	background: none;
	font: inherit;
	cursor: pointer;
}

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;
}
button:disabled{
    color:#acacac !important;
    border-color:#e3e3e3 !important;
    background:#e3e3e3 !important;
}

a, button{
    outline: 0;
}

textarea {
    overflow: auto;
}

textarea:not([rows]){
    min-height:10em;
}

:target{
    scroll-margin-block: 5ex;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
    display:block;
}

table{
    table-layout:fixed;
    width:100%;
    border-collapse: collapse;
    border-spacing: 0;
}
th, td{
    font-size:0.75rem;
  text-align:center;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

legend,caption{
	overflow: hidden;
	position: absolute;
	left: -9999em;
	top: -9999em;
	width: 1px;
	height: 1px;
	text-indent: -5000px;
	font-size: 1px;
	line-height: 1px;
}


