@charset "utf-8";

@font-face {
    font-family: 'Aritaburi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Arita-buri-SemiBold.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

/***** Text *****/
.aritaburi {
    font-family: 'Aritaburi', sans-serif;
}

.t-rw {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    word-break: break-all;
    word-wrap: break-word;
}

.rw-1 {
    -webkit-line-clamp: 1;
}

.rw-2 {
    -webkit-line-clamp: 2;
}

.rw-3 {
    -webkit-line-clamp: 3;
}

.txt-zero {
    font-size: 0;
    text-indent: -9999px;
}

/***** Transition *****/
.move {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}

/***** layout *****/
.max-box,
.section-body {
    width: 100%;
    max-width: 1520px;
    padding: 0 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

.max-none {
    max-width: unset !important;
    padding: 0 !important;
    margin: 0 !important;
}

.padding-box {
    position: relative;
    height: 0;
    overflow: hidden;
}

.padding-box > .padding-img,
.padding-box > img,
.padding-box > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h_font {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 40px;
}
/***** input *****/
input[type='text']:focus, input[type='text']:focus-visible, 
input[type='password']:focus, input[type='password']:focus-visible, 
input[type='tel']:focus, input[type='tel']:focus-visible, 
input[type='email']:focus, input[type='email']:focus-visible, 
input[type='number']:focus, input[type='number']:focus-visible, 
input[type='url']:focus, input[type='url']:focus-visible, 
textarea:focus, textarea:focus-visible {
    outline: none !important;
    box-shadow: unset !important;
}

input[type='text']:focus, input[type='text'], 
input[type='password']:focus, input[type='password'], 
input[type='tel']:focus, input[type='tel'], 
input[type='email']:focus, input[type='email'], 
input[type='number']:focus, input[type='number'], 
input[type='url']:focus, input[type='url'], 
textarea:focus, textarea {
    transition: .3s ease-out;
}

input[type='text']:focus, 
input[type='password']:focus, 
input[type='tel']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='url']:focus,
textarea:focus {
    border:1px solid #101010;
}

textarea {
    width: 100%;
    border: 1px solid #eeeeee;
    padding: 15px;
    resize: none;
    line-height: 1.4;
}

input[readonly]:not(.datepicker):not([type="submit"]),
input[readonly="readonly"]:not(.datepicker):not([type="submit"]),
input:read-only:not(.datepicker):not([type="submit"]) {
    background-color: #fafafa;
}

/***** check_box *****/
.check-box {
    position: relative;
}

.check-box > input[type="checkbox"] {
    width: 1px;
    height: 1px;
    margin: -1px;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.check-box > input[type="checkbox"] ~ label {
    position: relative;
    cursor: pointer;
}

.check-box > input[type="checkbox"] ~ label:before {
    display: block;
    content: '';
    clear: both;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
}


/***** radio_box *****/

.radio-box {
    position: relative;
}

.radio-box > input[type="radio"] {
    width: 1px;
    height: 1px;
    margin: -1px;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.radio-box > input[type="radio"] ~ label {
    padding-left: 29px;
    position: relative;
    font-size: 1.7rem;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
    cursor: pointer;
}
.radio-box > input[type="radio"]:checked ~ label {color:#695E4A;}
.radio-box > input[type="radio"] ~ label:before {
    display: block;
    content: '';
    clear: both;
    width: 24px;
    height: 24px;
    border-radius:12px;
    padding: 5px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 0;
    z-index: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    background-image: url('/userContent/images/common/btn/radio_default.png');
}

.radio-box > input[type="radio"]:checked ~ label:before {
    background-image: url('/userContent/images/common/btn/radio_checked.png');
}


    

/***** select *****/
.ss-main {
    width: auto !important;
    height: 57px !important;
    padding: 0 15px !important;
    border-color: #eeeeee !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    font-weight: 500 !important;
}

.ss-main .ss-values {
    line-height: 55px
}

.ss-main.ss-open-above,
.ss-main:focus {
    border-color: #101010 !important;
    box-shadow: none !important;
}

.ss-main .ss-values .ss-single {
    width: 100%;
    margin: 0 !important;
}

.ss-content {
    border: unset !important;
    border-radius: unset !important;
    max-height: unset !important;
    background-color: unset !important;
}

.ss-content .ss-list {
    padding: 3px 12px;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    max-height: 200px !important;
    background-color: #ffffff !important;
}

.ss-content .ss-list::-webkit-scrollbar { width: 3px; height: 1px;}
.ss-content .ss-list::-webkit-scrollbar-track { background: transparent; border-radius: 8px;}
.ss-content .ss-list::-webkit-scrollbar-thumb { background: #002b3d; border-radius: 8px;}
.ss-content .ss-list .ss-option {
    height: 40px !important;
    line-height: 40px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    padding: 0 !important;
}

.ss-content .ss-list .ss-option:hover {
    color: #0096d7 !important;
    background-color: transparent !important;
    transition: 0.3s ease-out;
}

.ss-content .ss-list .ss-option:not(:nth-of-type(1)) {
    border-top: 1px solid #eeeeee;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
    color: #0096d7 !important;
    background-color: #ffffff !important;
}

.ss-main .ss-arrow {
    flex-shrink: 0 !important;
    transition: .2s ease-out
}

.ss-main .ss-arrow path {
    display: none;
}

/***** 반응형 *****/
.pc-768 {
    display: block;
}
.mo-768 {
    display: none !important;
}
.pc {
    display: block;
}

.mo {
    display: none !important;
}
@media screen and (max-width: 768px) {
    .pc-768 {
        display: none !important;
    }

    .mo-768 {
        display: block !important;
    }
}
@media screen and (max-width: 960px) {
    .pc {
        display: none !important;
    }

    .mo {
        display: block !important;
    }
}

/***** 에디터 출력 스타일 초기화 상쇄 코드 *****/
.editor-box,
.editor-box * {
    all: revert;
}
