@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: Light;
    font-weight: 300;
    src: url('/public/fonts/AppleSDGothicNeoL.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoL.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: Reguler;
    font-weight: 400;
    src: url('/public/fonts/AppleSDGothicNeoR.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoR.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: Medium;
    font-weight: 500;
    src: url('/public/fonts/AppleSDGothicNeoM.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoM.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: SemiBold;
    font-weight: 600;
    src: url('/public/fonts/AppleSDGothicNeoSB.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoSB.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: Bold;
    font-weight: 700;
    src: url('/public/fonts/AppleSDGothicNeoB.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoB.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: ExtraBold;
    font-weight: 800;
    src: url('/public/fonts/AppleSDGothicNeoEB.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoEB.woff') format('woff');
}
@font-face {
    font-family: 'Apple SD Gothic Neo';
    font-style: Heavy;
    font-weight: 900;
    src: url('/public/fonts/AppleSDGothicNeoH.woff2') format('woff2'),
    url('/public/fonts/AppleSDGothicNeoH.woff') format('woff');
}

:root {
    --space-5: 5px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --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-55: 55px;
    --space-60: 60px;
    --space-65: 65px;
    --space-70: 70px;
    --space-80: 80px;
    --space-90: 90px;
    --space-100: 100px;
    --space-110: 110px;
    --space-115: 115px;
    --space-120: 120px;
    --space-140: 140px;
    --space-150: 150px;
    --space-180: 180px;
    --space-200: 200px;
    --space-260: 260px;

    --font-13: 13px;
    --font-14: 14px;
    --font-15: 15px;
    --font-16: 16px;
    --font-17: 17px;
    --font-18: 18px;
    --font-20: 20px;
    --font-23: 23px;
    --font-25: 25px;
    --font-28: 28px;
    --font-30: 30px;
    --font-33: 33px;
    --font-35: 35px;
    --font-40: 40px;
    --font-45: 45px;
    --font-50: 50px;
    --font-60: 60px;
    --font-70: 70px;
    --font-80: 80px;
    --font-90: 90px;
    --font-100: 100px;

    --fw-l: 300;
    --fw-r: 400;
    --fw-m: 500;
    --fw-sb: 600;
    --fw-b: 700;
    --fw-eb: 800;
    --fw-h: 900;

    --flex-box: flex;

    --color-pink: #D90060;
    --color-dark:#222222;
    --color-gray: #555555;
    --color-lgray: #C1C1C1;
    --color-white: #FFFFFF;

    --border: 1px solid var(--color-lgray);

    --font-en: 'Ubuntu', sans-serif;

    --transition: all 0.3s
}

html {
    min-width: 280px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
}

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,
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;
    color: inherit;
    font-weight: inherit;
    font-family:'Apple SD Gothic Neo', sans-serif;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    word-break: normal;
}

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;
    cursor: pointer;
}

iframe,
img,
table {
    border: 0;
}
button,
img,
input,
select,
textarea {
    vertical-align: middle;
}
li,
ol,
ul {
    list-style: none;
}
pre {
    white-space: pre-line;
}
td,
tr {
    vertical-align: middle;
}
address,
em,
optgroup {
    font-style: normal;
}

::-moz-selection {
    color: #fff;
    background: #D90060;
}
::selection{
    color: #fff;
    background: #D90060;
}
svg {
    height: auto;
}

@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    svg {
        height: 100%;
    }
}

@media all and (max-width:1200px) {
    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}
}

caption {
    position: static;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}

/* 인풋 기본 스타일 제거 */
button,
input,
select,
textarea {
    -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;
}
select {
    cursor: pointer;
    outline: none;
    overflow: hidden;
    width: 100%;
}
input:-internal-autofill-selected {
    background-color: transparent !important
}

/* placeholder css 적용하기 */
::-webkit-input-placeholder {
    color: #333;
    font-weight: 300;
}
::-moz-placeholder {
    color: #333;
    font-weight: 300;
}
:-ms-input-placeholder {
    color: #333;
    font-weight: 300;
}
:-moz-placeholder {
    color: #333;
    font-weight: 300;
}

/* 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;
}

.bb0 {
    border-bottom: 0;
}

/* 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;
}

/* Absolute align */
.xyalign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
.yalign {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.xalign {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-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;
}
/* font-weigt */
.fw300 {
    font-weight: 300;
}
.fw400 {
    font-weight: 400;
}

/* Popup */
.popup {
    width: 90%;
    height: auto;
    display: inline-block;
    position: absolute;
    z-index: 1000000;
    max-width: 500px;
}
.popup .popuparea {
    width: 100%;
    height: auto;
    position: relative;
}
.popup .popuparea .ppimg {
    width: 100%;
    display: inline-block;
    border: 1px solid #fff;
    overflow: hidden;
}
.popup .popuparea img {
    width: 100%;
    object-fit: cover;
}
.popup .popuparea .ppclose {
    position: absolute;
    font-size: 40px;
    color: #fff;
    right: -3.5rem;
    top: -0.5rem;
    opacity: 0.8;
}
.popup .popuparea .ppclose:hover {
    opacity: 1;
}
.popup .ppcheck {
    width: 100%;
    display: inline-block;
    border: 1px solid #fff;
    line-height: 2;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    color: #fff;
}
.popup .ppcheck:hover {
    background-color: #333;
    color: #fff;
}
.popup .ppcheck i {
    font-size: 1.214rem;
}
.popup .ppcheck:hover i {
    font-size: 1.214rem;
    color: #fff;
}
.popup .close {
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    position: absolute;
    background-color: #555555;
    right: 0;
    z-index: 9999999;
    border-radius: 100%;
    right: 3%;
    top: 1.8rem;
}
.popup .close .line {
    display: inline-block;
    position: relative;
    padding: 0;
    width: 2px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    margin-top: 0;
}
.popup .close .line:before {
    display: block;
    content: "";
    position: absolute;
    top: 6px;
    left: -6px;
    height: 2px;
    width: 14px;
    background: #fff;
}

/* 게시글이 없을때  */
.ready {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align:center;
    background-color: transparent;
    height: 300px;
    font-weight: var(--fw-light);
    font-size: var(--font-16)
}
@media all and (max-width:640px) {
    .ready {
        height: 200px;
        font-size: var(--font-15)
    }
}

/* 개인정보처리방침 */
.privacy h3 {
    font-weight: var(--fw-medium);
    padding: var(--space-40) 0 0;
    color:#313131
}
.privacy h4 {
    margin-top:var(--space-20)
}
.privacy p,
.privacy th,
.privacy td,
.privacy li {
    color:#313131;
    line-height: 1.5;
    font-size: var(--font-16);
    font-weight: var(--fw-normal)
}
.privacy a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.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-top: var(--space-10);
}
.privacy .brace-list > li {
    padding-left: var(--space-20);
}
.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;
    line-height: 1.4;
    font-size: var(--font-16);
}
.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-15) 0;
    border: 1px solid #d9d9d9;
    border-width: 1px 1px 0 1px;
}
.privacy .table td,
.privacy .table th {
    border-bottom: 1px solid #d9d9d9;
    text-align: left;
    padding: var(--space-5) var(--space-10);
}
.privacy .table td:first-child,
.privacy .table th:first-child {
    border-right: 1px solid #d9d9d9;
}
.privacy .table th {
    background-color: #fafafa;
}
    /* 이용약관 미디어쿼리 */
    @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: var(--font-15)
        }
        .privacy h3 {
            font-size: var(--font-16);
            padding: var(--space-30) 0 0
        }
    }

.ready {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    text-align:center;
    height: 200px;
    font-weight: 300;
}

/* 카카오 지도 */
.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.br-none-rev {
    display: none;
}
@media all and (max-width:1000px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    br.br-none-rev {
        display: block;
    }
}
@media all and (max-width:640px) {
    .ready {
        height: 130px;
    }
}