html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans','sans-serif';
    font-family: 'Pretendard';
    font-size: 16px;
    letter-spacing: -0.04em;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;

    background-color: #000;
}

:root{
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #727272;
    --input-line: #343434;

    --point-color: #e5001c;
}

body,p,
h1,h2,h3,h4,h5,h6,
ul,ol,li,
dl,dt,dd,
table,th,td,_
form,fieldset,
legend,input,
textarea,button,select {
    margin: 0;
    padding: 0;
}

*{box-sizing: border-box;}
* a{ text-decoration: none; color: inherit; }
body {
    word-break: break-all;
    -ms-word-break: break-all;
    word-break: keep-all;
    word-wrap: break-word;
}

img,
fieldset,
iframe {
    border: 0 none;
}

input[type=checkbox] {
    border: 0 none;
    display: none;
}

input::-ms-clear {
    display: none;
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
    display: none;
}

ul,ol {
    list-style: none;
}

em,address {
    font-style: normal;
}

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

a,img,button,
a,img,button,input {
    outline: none;
    color: inherit;
}

/* html5 tags */
button {
    cursor: pointer;
}

/* img{margin:0;padding:0;vertical-align: top;border:0;outline: 0} */
img {
    /* width: 100%;
height: 100%; */
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    vertical-align: top;
    border: 0;
    outline: 0;
    max-width: 100%;
}

button{
    border: none;
    background-color: inherit;
    border-radius: 0;
}

/* Fire Fox button style bug */
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.slick-active:focus {
    outline: none !important
}

textarea:focus{
    outline: none;
}

input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

table{
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.swiper{
    width: 100%;
    height: 100%;
}

.swiper-wrapper{
    width: 100%;
    height: auto;
}

.swiper-slide{
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}