@charset "UTF-8";
@import url(../css/font.css);
* {
    margin: 0;
    padding: 0;
}
h2, h3, h4,dd,strong {
    word-break: keep-all;
}
ul,ol{
    list-style: none;
}
a{
    color: #000;
    text-decoration: none;
}
figure {
    margin: 0;
}
img{
    border: none;
    vertical-align: top;
}
p {
    margin: 0;
}
li, span, address {
    font-style: normal;
    word-break: keep-all;
}
body {
    font-family: 'Pretendard';
    font-weight: 400;
}
button {
    /* 1. 기본 배경 및 테두리 제거 */
    background: none;
    border: none;
    padding: 0;
    
    /* 2. 클릭 시 생기는 파란색 테두리(아웃라인) 제거 */
    outline: none;
    
    /* 3. 마우스 올렸을 때 손가락 모양으로 변경 */
    cursor: pointer;
    
    /* 4. 글자 관련 초기화 (부모의 폰트를 따라가게) */
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    
    /* 5. 아이폰/사파리에서 생기는 기본 둥근 모양 방지 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* slider swiper css */
html,
body {
    position: relative;
    /* height: 100%; */
}

/* body {
    background: #000;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
} */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}