* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-anchor: none;
    font-size: 62.5%;
    scrollbar-gutter: stable;
}

body {
    color: inherit;
    word-break: keep-all;
    overflow-x: hidden;
}

body, h1, h2, h3, h4, h5, h6, input, textarea, button, select, option {
    font-family: "NotoSansKR", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
}

ul, li, dl, dd, dt, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a, button {
    cursor: pointer;
}

em, i {
    font-style: normal;
}

table {
    border-collapse: collapse;
}

button, input, textarea {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

textarea {
    resize: none;
}

button {
    border: none;
    display: inline-block;
    background-color: transparent;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("/images/common/form/ic_down-arrow.svg") 95% center no-repeat;
}

select:disabled {
    background-image: url("/images/common/form/ic_down-arrow-disable.svg");
}

input:focus, textarea:focus {
    outline: none;
}

input[type=text], input[type=password] {
    border: solid 1px #999;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 50000s 0s;
    transition: background-color 50000s 0s;
}

body {
    -webkit-text-size-adjust: none;
}

main {
    padding: calc(var(--bannerHeight, 0px) + var(--headerHeight)) 0 0 0;
    position: relative;
    z-index: 1;
    transition: 0.2s ease-in-out;
}

.inner {
    width: 120rem;
    margin: 0 auto;
    padding: 12rem 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #eee;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

input[type=checkbox],
input[type=radio],
input[type=checkbox] ~ label,
input[type=radio] ~ label {
    cursor: pointer;
}

input[type=text] ~ label,
input[type=email] ~ label,
input[type=tel] ~ label,
textarea ~ label {
    cursor: text;
}

body.header-opened {
    overflow: hidden;
}

.laptop-br {
    display: none;
}

.mobile-br {
    display: none;
}

@media (max-width: 1350px) {
    .inner {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}
@media (max-width: 1024px) {
    .desktop-br {
        display: none;
    }
    .laptop-br {
        display: inline;
    }
    .inner {
        padding: 6rem 0;
    }
}
@media (max-width: 480px) {
    .inner {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
}