@charset "utf-8";
/* core.css - 전체 사이트 공통핵심*/

/*@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");*/
@font-face {
    font-family: 'Gilroy';
    font-weight: 400;
    src: url('/re_public/fonts/gilroy/Gilroy-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 200;
    font-style: italic, oblique;
    src: url('/re_public/fonts/gilroy/Gilroy-ThinItalic.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 500;
    src: url('/re_public/fonts/gilroy/Gilroy-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 500;
    font-style: italic, oblique;
    src: url('/re_public/fonts/gilroy/Gilroy-MediumItalic.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    src: url('/re_public/fonts/gilroy/Gilroy-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 700;
    src: url('/re_public/fonts/gilroy/Gilroy-Bold.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Pretendard",
        '맑은 고딕', 'malgun gothic',
        'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',
        'Microsoft NeoGothic',
        'Droid sans', sans-serif;
    line-height: 1.3;
    -webkit-tap-highlight-color: transparent;
}

html {
    display: flex;
    width: 100%;
    overflow: inherit;
    min-height: -webkit-fill-available;
    font-family: "Pretendard",
        '맑은 고딕', 'malgun gothic',
        'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',
        'Microsoft NeoGothic',
        'Droid sans', sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #000;

    /* Prevent font scaling in landscape */

    -webkit-text-size-adjust: none;
    /*Chrome, Safari, newer versions of Opera*/

    -moz-text-size-adjust: none;
    /*Firefox*/

    -ms-text-size-adjust: none;
    /*Ie*/

    -o-text-size-adjust: none;
    /*old versions of Opera*/
}

body {
    width: 100%;
    /*height: 100%;*/
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    font-family: "Pretendard",
        '맑은 고딕', 'malgun gothic',
        'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',
        'Microsoft NeoGothic',
        'Droid sans', sans-serif;

    color: #000;
}

img {
    border: none;
    /*이미지링크시 보더없앰.*/
    /*image-rendering: -moz-auto;*/
    /*image-rendering: -o-auto;*/
    /*image-rendering: -webkit-optimize-contrast;*/
    /*image-rendering: auto;*/
    /*transform: translateZ(0);*/
}

a {
    text-decoration: none;
    /*링크 기본 변경*/

    color: #000;
}

b {
    font-weight: 600;
}

ul,
ol {
    padding: 0;
    margin: 0;

    list-style: none;
}

ul::after,
ol::after,
.clb::after {
    display: block;
    clear: both;
    /*float해제*/

    content: "";
}

/*li,
dl {
    float: left;
}*/
button {
    cursor: pointer;
    color: #000;
}

button {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    cursor: pointer
}

input[type="password"] {
    -webkit-text-security: disc !important;
}

input[type=submit] {
    -webkit-appearance: none;
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

input {
    padding: 0;
    padding-left: .4em;

    color: #000;
    border: 1px solid #ddd;
}

input {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::-webkit-input-placeholder {
    color: rgba(51, 51, 51, .5);
}

input::-moz-placeholder {
    color: rgba(51, 51, 51, .5);
}

input:-ms-input-placeholder {
    color: rgba(51, 51, 51, .5);
}

input:-moz-placeholder {
    color: rgba(51, 51, 51, .5);
}

input::placeholder {
    color: rgba(51, 51, 51, .5);
}

input:focus {
    outline: none !important;
}

textarea {
    padding: 0.6em 0.4em;
    resize: none;
    overflow-y: auto;
}

textarea::-webkit-input-placeholder {
    color: rgba(51, 51, 51, .5);
}

textarea:-moz-placeholder {
    color: rgba(51, 51, 51, .5);
}

textarea::-moz-placeholder {
    color: rgba(51, 51, 51, .5);
}

textarea:-ms-input-placeholder {
    color: rgba(51, 51, 51, .5);
}

textarea::placeholder {
    color: rgba(51, 51, 51, .5);
}

textarea:focus {
    outline: none !important;
}

button:focus {
    outline: none !important;
}

input::-ms-clear {
    display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

.br {
    display: none;
    line-height: 0.4em;
}

input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

select {
    width: 120px;
    height: 32px;
    padding: 0 24px 0 12px;

    /* background: url("../images/icon/tri_arrow.png") no-repeat right 0 center; */

    /* -webkit-appearance: none; */
    /* Safari and Chrome */
    /* -moz-appearance: none; */
    /* Firefox */
    /* appearance: none; */
}

select::-ms-expand {
    display: none;
}

select:focus {
    outline: none !important;
}

span:focus {
    outline: none !important;
}

section {
    position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    /* WebKit browsers */
    color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: transparent;
}

@media only screen and (max-width: 414px) {
    select {
        width: 100px;
    }
}

/*h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
}*/
/*태그 초기화 설정*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
    padding: 0;
    margin: 0;
}

/*html5 새로운 태그들 이전 브라우저에서 block으로 해석되게셋팅*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/*IR(Image Replacement)*/
.bld {
    display: none;
    /*대체설명 숨기기*/
}