@charset 'utf-8';

:root {
    --space-5: 5px;
    --space-10: 10px;
    --space-15: 15px;
    --space-20: 20px;
    --space-25: 25px;
    --space-30: 30px;
    --space-35: 35px;
    --space-40: 40px;
    --space-45: 45px;
    --space-50: 50px;
    --space-60: 60px;
    --space-65: 65px;
    --space-70: 70px;
    --space-80: 80px;
    --space-90: 90px;
    --space-100: 100px;
    --space-110: 110px;
    --space-120: 120px;
    --space-130: 130px;
    --space-140: 140px;
    --space-150: 150px;
    --space-160: 160px;
    --space-200: 200px;

    --font-12: 12px;
    --font-13: 13px;
    --font-14: 14px;
    --font-15: 15px;
    --font-16: 16px;
    --font-17: 17px;
    --font-18: 18px;
    --font-20: 20px;
    --font-22: 22px;
    --font-23: 23px;
    --font-24: 24px;
    --font-25: 25px;
    --font-28: 28px;
    --font-30: 30px;
    --font-35: 35px;
    --font-38: 38px;
    --font-40: 40px;
    --font-45: 45px;
    --font-48: 48px;
    --font-50: 50px;
    --font-60: 60px;
    --font-70: 70px;
    --font-80: 80px;

    --fw-light: 300;
    --fw-normal: 400; 
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;

    --flex-box: flex;

    --color-primary: #0000FF;
    --color-gold: #AD9159;
    --color-dark: #1A1311;
    --color-basic: #444444;
    --color-gray7b: #7B7B7B;
    --color-grayae: #AEAEAE;
    --color-grayec: #ECECEC;
    --color-gray: #F9F9F9;
    --color-white: #FFFFFF;

    
    --border: 1px solid #ECECEC;
    --borderW: 2px solid #1A1311;

    --transition: all 0.3s
}

html {
    scroll-behavior: smooth;
    min-width: 280px;
    overflow-x: hidden;
    font-size:20px;
    color:#1A1311;
}
body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button,
address, code, em, img, select,
small, strong, sub, sup, var, button,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, mark, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    font-family: 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: keep-all;
    letter-spacing: -1px;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a,
a:active,
a:hover,
a:visited {
    text-decoration: none;
}
a,
button {
    outline: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color:inherit;
    font-size:inherit;
}
/* svg * {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
} */
a:hover,
button:hover {
    color: var(--color-primary)
}
iframe,
img,
table {
    border: 0;
}
button,
img,
input,
select,
textarea {
    vertical-align: middle;
}
li,
ol,
ul {
    list-style: none;
}
pre {
    white-space: pre-line;
}
strong {
    font-weight: inherit;
}
td,
tr {
    vertical-align: middle;
}
address,
em,
optgroup {
    font-style: normal;
}
/* img {
    width:100%
} */
caption {
    position: static;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}
::-moz-selection {
    color:#fff;
    background:#2A2A2A
}
::-webkit-selection {
    color:#fff;
    background:#2A2A2A
}
::selection {
    color:#fff;
    background:#2A2A2A
}

svg {
    height: auto;
}
@media all and (max-width: 768px) {
    pre {
        white-space: normal;
    }
}
@media all and (max-width:320px) {
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    address, code, em, img,
    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, mark, video, a {
        font-size:13px}
}

/* 인풋 기본 스타일 제거 */
textarea,
input,
select,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    line-height: normal;
}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}
select::-ms-expand {
    display: none;
}
textarea {
    width: 100%;
    background: none;
    resize: none;
}
button {
    border: 0;
    background: none;
    cursor: pointer;
}
select {
    cursor: pointer;
    background-color: #fff;
    outline: none;
    overflow: hidden;
    width: 100%;
}

/* placeholder css 적용하기 */
input::placeholder,
textarea::placeholder {
    color: #231F20;
    opacity: 1;
    /* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #231F20;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #231F20;
}
input:-mos-input-placeholder,
textarea:-mos-input-placeholder {
    color: #231F20;
}

/* placeholder 포커스시 감추기*/
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;
}

/* Padding & Margin  */
.p0 {
    padding: 0 !important;
}
.pt0 {
    padding-top: 0 !important;
}
.pr0 {
    padding-right: 0 !important;
}
.pb0 {
    padding-bottom: 0 !important;
}
.pl0 {
    padding-left: 0 !important;
}
.m0 {
    margin-top: 0 !important;
}
.mt0 {
    margin-top: 0 !important;
}
.mr0 {
    margin-right: 0 !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.ml0 {
    margin-left: 0 !important;
}

/* Float */
.fl {
    float: left;
}
.fr {
    float: right;
}
.cb {
    clear: both !important;
}
.clear::after {
    content: "";
    display: block;
    clear: both;
}

/* Display */
.db {
    display: block !important;
}
.di {
    display: inline !important;
}
.dib {
    display: inline-block !important;
}
.dibw100 {
    width: 100%;
    display: inline-block;
}

/* Alaign */
.tac {
    text-align: center;
}

/* Absolute align */
.xyalign {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.yalign {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.xalign {
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Border */
.b0 {
    border: 0 !important;
}
.bt0 {
    border-top: 0 !important;
}
.bl0 {
    border-left: 0 !important;
}
.br0 {
    border-right: 0 !important;
}
.bb0 {
    border-bottom: 0 !important;
}

/* Popup */
/* .popup_layer {
    z-index: 10001;
    position: absolute;
    background: rgba(255,255,255,0);
    max-width: 100%;
}
.popup_layer .popup_layer_con {
    background-color:#fff;
}
.popup_layer .popup_layer_con p img {
    width: 100%;
    max-width: 100% !important;
}
.popup_layer_con {
    text-align:center
}
.popup_layer_con br {
    display:none
}
.popup_layer_reject {
    width:100%;
    cursor: pointer;
    padding: 10px 20px;
    background: #313131;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 14px;
    color: #fff;
}
.popup_layer_reject:hover {
    background: #000000;
    color: #fff;
}

.popup_layer_close {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 6px;
    background: #313131;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.popup_layer_close:hover {
    background: #000000
}
.popup_layer_close svg {
    width: 24px;
    fill: #fff;
    pointer-events: none;
    vertical-align: top;
}

@media (max-width: 1000px) {
    .popup_layer {
        width:70%;
        margin:0 auto;
        left:0 !important;
        right:0
    }
    .popup_layer img {
        width:100% !important
    }
    .popup_layer_con {
        width: 100% !important;
        height: auto !important
    }
    .popup_layer_close {
        margin:10px;
        padding:5px
    }
}
@media (max-width: 640px) {
    .popup_layer {
        width:80%;
        margin:0 auto;
        left:0 !important;
        right:0
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    :root,
    html {
        font-size: 10px;
    }
    svg {
        height: 100%;
    }
} */

/* float 관련 */
.clear::after {
    content: "";
    display: block;
    clear: both;
}
.leftbox {
    float: left;
}
.rightbox {
    float: right;
}

/* box-shadow */
.shadow {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
/* 말줄임 */
.dot {
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.ellipsis1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.ellipsis3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.ellipsis4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.ellipsis5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

/* 효과 */
.effect1 {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
}
.imgEffect {
    overflow: hidden;
    display: block;
}
.imgEffect img {
    transform: scale(1);
    transition: var(--transition);
}
.imgEffect:hover img { 
    transform: scale(1.02);
}
.ready {
    border-top: var(--borderW);
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #F5F5F5; */
    text-align:center;
    height: 300px;
    font-weight: 300;
    font-size: var(--font-16)
}
/* 카카오 지도 */
.root_daum_roughmap {
    width:100% !important;
    height: 100% !important;
}
.root_daum_roughmap .wrap_map {
    height: 100% !important;
}
.root_daum_roughmap .border1,
.root_daum_roughmap .border2,
.root_daum_roughmap .border3,
.root_daum_roughmap .border4{
    display: none !important;
}

.pc {
    display: block;
}
.mobile {
    display: none;
}
.br-none-rev br {
    display: none;
}
@media all and (max-width:1000px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    .br-none-rev br {
        display: block;
    }
}
@media all and (max-width:640px) {
    .ready {
        height: 130px;
    }

}

/* 페이징 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-90)
}
.pagination ol {
    display: flex;
}
.pagination ol > li {
    cursor: pointer;
    margin: 0 var(--space-10);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination ol > li span,
.pagination ol > li > a {
    font-size: var(--font-15);
    color: var(--color-basic);
    font-weight: var(--fw-medium);
    transition: var(--transition);
}
.pagination ol > li:hover span,
.pagination ol > li.on,
.pagination ol > li.on a,
.pagination ol > li a:hover {
    color:var(--color-gold);
}
.pagination button {
    margin: 0 8px;
    transform: translateX(0);
}
.pagination button.nextLink:hover {
    stroke: var(--color-dark);
    transform: translateX(3px);
}
.pagination button.prevLink:hover {
    stroke: var(--color-dark);
    transform: translateX(-3px);
}
    /* 미디어쿼리 1200px이하 */
    @media all and (max-width: 1199px) {
        .pagination {
            margin-top: 60px;
        }
        .pagination li span,
        .pagination li a {
            font-size: 14px;
        }
        .pagination li.on span,
        .pagination li a:hover {
            font-size: 14px;
        }
    }
    /* 미디어쿼리 768px이하 */
    @media all and (max-width: 1023px) {
        .pagination {
            margin-top: 40px;
        }
        .pagination li span,
        .pagination li a {
            font-size: 13px;
        }
        .pagination li.on span,
        .pagination li a:hover {
            font-size: 13px;
        }
    }

/* 개인정보처리방침 */
.privacy h3 {
    font-size: var(--font-16);
    font-weight: var(--fw-medium);
    padding: var(--space-10) 0 0;
}
.privacy h4 {
    margin-top:var(--space-20)
}
.privacy p,
.privacy th,
.privacy td,
.privacy li,
.privacy .brace-list > li::before,
.privacy .line-list > li::before {
    color: var(--color-basic);
    font-size: var(--font-16);
}
.privacy ul,
.privacy ol{
    margin-top: var(--space-10)
}
.privacy li > ol,
.privacy li > ul {
    margin-top: var(--space-5);
    margin-bottom: var(--space-10)
}
.privacy li {
    position: relative;
    margin-bottom:var(--space-5);
}
.privacy p {
    margin-bottom: var(--space-10);
}
.privacy .brace-list > li {
    padding-left: 20px;
}
.privacy .line-list > li {
    padding-left: var(--space-10);
}
.privacy .brace-list > li::before,
.privacy .line-list > li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}
.privacy .brace-list > li:nth-child(1)::before {
    content: "⑴";
}
.privacy .brace-list > li:nth-child(2)::before {
    content: "⑵";
}
.privacy .brace-list > li:nth-child(3)::before {
    content: "⑶";
}
.privacy .brace-list > li:nth-child(4)::before {
    content: "⑷";
}
.privacy .brace-list > li:nth-child(5)::before {
    content: "⑸";
}
.privacy .line-list > li::before {
    content: "-";
}
.privacy table {
    margin: var(--space-10) 0;
    border: 1px solid var(--color-grayae);
    border-width: 1px 1px 0 1px;
}
.privacy table td,
.privacy table th {
    border-bottom: 1px solid var(--color-grayae);
    text-align: left;
    padding: 5px 10px;
}
.privacy table td:first-child,
.privacy table th:first-child {
    border-right: 1px solid var(--color-grayae);
}
.privacy table th,
.privacy table td {
    background-color: var(--color-gray);
}
.privacy table th {
    font-weight: var(--fw-normal);
}
    /* 이용약관 미디어쿼리 */
    @media all and (max-width:640px) {
        .privacy p,
        .privacy th,
        .privacy td,
        .privacy li,
        .privacy .brace-list > li::before, 
        .privacy .line-list > li::before {
            font-size: 15px;
        }
        .privacy h3 {
            font-size: 16px;
            padding:30px 0 0
        }
    }