* {
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box;
}
figure {
    margin: 0;
    padding: 0;
}
body {
    -webkit-touch-callout: none;
    /* 모바일에서 css터치시 파란 배경 투명화 */
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

/* 팝업 출력 시 사용 */
body.open_modal {
    overflow: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* mac 인풋 위아래 버튼 제거 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* ios 쉐도우 제거 */
input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* ios 쉐도우 제거 */
textarea {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* float:left를 위한 clear fix */
.clear::after {
    content: "";
    display: block;
    clear: both;
}

.cursor {
    cursor: pointer;
}

/* ========================================== /공통 초기화 END ==================================== */
