/* 초기값 */
* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    height: 100%;
}

body {
    overflow-x: hidden;
    color: #333;
    background-color: #fff;
    letter-spacing: -0.025em;
}

#wrap {
    width: 100vw;
    overflow: hidden;

}

select::-ms-expand {
    display: none;
}

select {
    width: 100%;
    height: 100%;
    /* position: absolute; */
    border: 0;
    outline: 0;
    padding-left: 10px;
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    color: #333;
}

input {
    outline: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

input::placeholder {
    font-size: 90%;
}

input:-ms-input-placeholder {
    font-size: 90%;
}

textarea {
    outline: 0;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}

input[type='button'] {
    cursor: pointer;
    padding: 0;
}

button {
    border: 0;
    outline: 0;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator {
    margin-left: 0px;
    font-size: 14px;
}

.image_wrapper_common {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* common gap */
/* gap:24px; */


/* common box_shadow : big */
/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */


/* common box_shadow : small */
/* box-shadow: rgba(0, 0, 0, 0.15) 1px 4px 8px; */

.sub_login_content .center{
    width: 100%;
}

.center {
    width: 73%;
    margin: 0 auto;
    height: fit-content;
}

.center1 {
    width: 86.5%;
    margin: 0 auto;
    height: fit-content;
}

.center2 {
    /* border: 1px solid rgb(255, 87, 115); */
    width: 66%;
    margin: 0 auto;
    height: fit-content;
}

.center3 {
    width: 1380px;
    margin-left: auto;
    height: fit-content;
}

.sub_content_fix {
    background-image: none !important;
}



/* cursor:pointer */
.something{
    cursor: pointer;
}

.shape {
    cursor: default;
}

.no_margin {
    margin: 0 !important;
}

.no_padding {
    padding: 0 !important;
}

.no_bc {
    background-color: unset !important;
}

.no_border_bottom {
    border-bottom: 0px !important;
}

.remove_bg_color {
    background-color: unset !important;
}

.no_border {
    border: 0 !important;
}

table.remove_bg_color tr td {
    background-color: unset !important;
}






/* mobile */
@media screen and (max-width: 767px) {

    .center{
        width: 90%;
    }
    .sub_login_content .center {
        width: 90%;
    }
    .center1 {
        width: 90%;
    }

    .center2 {
        width: 90%;
    }

    .center3 {
        width: 90%;
    }

    input[type='text'], input[type='password'], input[type='button'], input[type='date'], textarea, button {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }



}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .center{
        width: 90%;
    }
    .center1 {
        width: 90%;
    }

    .center2 {
        width: 90%;
    }

    .center3 {
        width: 90%;
    }


    input[type='text'], input[type='password'], input[type='button'], input[type='date'], textarea, button {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }



}









/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {}