@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");


.sound_only {
    display: none;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}


/* break-keep 스타일 */

p,
div,
span,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* letter-spacing 스타일 */
p,
div,
span,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02rem;
}


/* input, select focus 시 파란색 outline 제거 및 border 색상 변경 */
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border-color: #295D95 !important;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
select:focus-visible,
textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: #295D95 !important;
}


/* 체크박스 체크 시 색상 변경 */

input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    border:1px solid #000 !important;
}

input[type="checkbox"] + label span {
    width: 16px !important;
    height: 16px !important;
    border:1px solid #000 !important;
}

input[type="checkbox"] {
    accent-color: #295D95 !important;
}

input[type="checkbox"]:checked {
    accent-color: #295D95 !important;
    background-color: #295D95 !important;
    border-color: #295D95 !important;
}

input[type="checkbox"]:checked + label span {
    accent-color: #295D95 !important;
    background-color: #295D95 !important;
    border-color: #295D95 !important;
}

input[type="checkbox"] + label:hover {
    color: #295D95 !important;
}



/*모바일, 태블릿 뷰에서 lenis 새로고침 중지*/
html,
body {
    overscroll-behavior-y: none;
}

@media (min-width:1024px) {

    html,
    body {
        overscroll-behavior-y: initial;
    }
}


/* 에디터 콘텐츠 내 텍스트, 이미지 정렬 - 에디터에서 설정한 정렬 그대로 반영 */
.editor_content p,
.editor_content div,
#bo_v_con p,
#bo_v_con div {
    text-align: inherit;
}

.editor_content img,
#bo_v_con img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}