@charset "UTF-8";
/* #Base */
/* Reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Sans:wght@500&display=swap");
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

form {
    display: inline;
}

input {
    font-family: inherit;
}
input[type]::-ms-clear {
    display: none;
    opacity: 0;
    visibility: hidden;
}
input[type]::-ms-reveal {
    display: none;
    opacity: 0;
    visibility: hidden;
}
input[type]::-webkit-search-cancel-button {
    display: none;
}

select {
    font-family: inherit;
}

textarea {
    font-family: inherit;
    resize: vertical;
}

button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    outline: 0;
}

embed, iframe, object {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

/* Fonts */
/* Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard. https://github.com/orioncactus/pretendard This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL */
@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    font-display: swap;
    src: local(""), url("../font/pretendard-bold.woff2") format("woff2"), url("../font/pretendard-bold.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    font-display: swap;
    src: local(""), url("../font/pretendard-medium.woff2") format("woff2"), url("../font/pretendard-medium.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("../font/pretendard-regular.woff2") format("woff2"), url("../font/pretendard-regular.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    font-display: swap;
    src: local(""), url("../font/pretendard-light.woff2") format("woff2"), url("../font/pretendard-light.woff") format("woff");
}
/* Helper Classes */
.sr-text {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    font-size: 1px;
    color: transparent;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    outline: 0;
}

.show {
    display: block !important;
}

.align-center {
    text-align: center !important;
}

.align-right {
    text-align: right !important;
}

.align-justify {
    text-align: justify;
}
.align-justify:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0;
}

/* #Common */
/* Animation */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
                transform: translateZ(-80px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
                transform: translateZ(-80px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
    }
}
@-webkit-keyframes slide-up {
    0% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes slide-up {
    0% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
/* Typography */
.txt-color1 {
    font-style: normal;
    color: #57CCAF !important;
}

.txt-color2 {
    font-style: normal;
    color: #1B9D7D !important;
}

.txt-red {
    font-style: normal;
    color: #F86048 !important;
}

.primary-title {
    display: block;
    margin: 0 0 62px;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.primary-title em {
    font-style: normal;
    color: #1B9D7D;
}

.secondary-title {
    display: block;
    margin: 0 0 25px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.secondary-title em {
    font-style: normal;
    color: #1B9D7D;
}

/* Loader */
.backdrop-loader {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 20;
}

.loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 4px solid #57CCAF;
    border-right-color: transparent;
    border-radius: 50%;
    z-index: 20;
}
.loader.show {
    display: block;
    -webkit-animation: loader-rotate 1s linear infinite;
            animation: loader-rotate 1s linear infinite;
}

.loader:after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 13px;
    width: 4px;
    height: 4px;
    background: #57CCAF;
    border-radius: 50%;
}

@-webkit-keyframes loader-rotate {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
/* Button */
.btn {
    display: inline-block;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border: 0;
    background: transparent;
}

.btn-primary {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    border: 0;
    background: #57CCAF;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: #38b898;
}

.btn-secondary {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    border: 0;
    background: #BEBFC9;
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: #a2a4b2;
}

.btn-tertiary {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border: 0;
    background: #1B9D7D;
}
.btn-tertiary:hover, .btn-tertiary:focus {
    background-color: #14715a;
}

.btn-light {
    display: inline-block;
    font-weight: 500;
    color: #1B9D7D;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border: 0;
    background: #D2F7ED;
}
.btn-light:hover, .btn-light:focus {
    background-color: #a7efdc;
}

.btn-dark {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border: 0;
    background: #000;
}
.btn-dark:hover, .btn-dark:focus {
    background-color: #1a1a1a;
}

.btn-round {
    border-radius: 5px;
}

.btn-bookmark {
    display: block;
    position: absolute;
    top: 0;
    right: -1px;
    width: 80px;
    height: 80px;
    border: 0;
    background: url("../img/ic_bookmark_on.svg") no-repeat 0 0;
    background-size: 0px;
    pointer-events: none;
    z-index: 1;
}
.btn-bookmark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 81px solid #fff;
    border-left: 80px solid transparent;
    z-index: -1;
}
.btn-bookmark:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 25px;
    background: url("../img/ic_bookmark_off.svg") no-repeat 0 0;
    background-size: contain;
    pointer-events: all;
    z-index: 1;
}
.btn-bookmark.on:after {
    background-image: inherit;
}

.btn-view-all {
    display: block;
    position: absolute;
    top: 6px;
    right: 116px;
    font-size: 18px;
    text-decoration: underline;
}
.btn-view-all:before {
    content: "+";
}

.btn-add-more {
    display: inline-block;
    width: 37px;
    height: 37px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37px;
            flex: 0 0 37px;
    border: 0;
    border-radius: 5px;
    background: #57CCAF url("../img/ic_add_item.svg") no-repeat 50% 50%;
    background-size: contain;
}

.angle-link {
    display: block;
    padding: 17px 42px 17px 24px;
    font-weight: 700;
    background: url("../img/ic_angle_link.svg") no-repeat calc(100% - 18px) 50%;
    background-size: 7px auto;
}
.angle-link:focus {
    background-color: #E8FFF9;
}

.btn-clear {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
    border: 0;
    border-radius: 100%;
    background: url("../img/ic_clear.svg") no-repeat 50% 50%;
    background-size: contain;
    z-index: 1;
}

/* Datapicker */
.flatpickr-calendar {
    display: none;
    position: absolute;
    width: 320px;
    margin: 0;
    padding: 24px 27px 22px;
    border: 1px solid #595959;
    background: #fff;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    z-index: 5;
}
.flatpickr-calendar.open {
    display: block;
    -webkit-animation: fade-in 0.3s;
            animation: fade-in 0.3s;
}
.flatpickr-calendar.noCalendar {
    padding: 0;
}

.has-popup .flatpickr-calendar.open {
    z-index: 100;
}

.calendar {
    position: relative;
    width: 346px;
    min-height: 250px;
}
.calendar .flatpickr-calendar {
    display: block;
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-animation: none;
            animation: none;
    z-index: inherit;
}

.flatpickr-prev-month {
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    margin: -13px 0 0;
    cursor: pointer;
    border-radius: 100%;
    background: url("../img/ic_month_prev.svg") no-repeat 0 0;
    background-size: contain;
    z-index: 1;
}

.calendar .flatpickr-prev-month {
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.flatpickr-next-month {
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    height: 25px;
    margin: -13px 0 0;
    cursor: pointer;
    border-radius: 100%;
    background: url("../img/ic_month_next.svg") no-repeat 0 0;
    background-size: contain;
    z-index: 1;
}

.calendar .flatpickr-next-month {
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.flatpickr-months {
    position: relative;
    margin: 0 0 13px;
    line-height: 1;
    text-align: center;
}
.flatpickr-months .month {
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}
.flatpickr-months .month small {
    font-size: 12px;
    font-weight: 400;
    vertical-align: middle;
}
.flatpickr-months .year {
    display: block;
    font-size: 11px;
    letter-spacing: 0;
}

.calendar .flatpickr-months {
    margin-bottom: 24px;
}

.flatpickr-current-month {
    display: none;
}

.flatpickr-weekdaycontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.flatpickr-weekday {
    display: block;
    width: 14.2857142857%;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857142857%;
            flex: 0 0 14.2857142857%;
    float: left;
}
.flatpickr-weekday:first-child {
    color: #FF0000;
}
.flatpickr-weekday:last-child {
    color: #2C73B7;
}

.calendar .flatpickr-weekday {
    font-size: 13px;
}

.flatpickr-days .dayContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 -2px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.calendar .flatpickr-innerContainer {
    margin: 0 -13px;
}

.flatpickr-day {
    position: relative;
    width: 14.2857142857%;
    height: 2.4545454545em;
    margin: 0 0 2px;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 2.4545454545;
    text-align: center;
    cursor: pointer;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857142857%;
            flex: 0 0 14.2857142857%;
    float: left;
    z-index: 1;
}
.flatpickr-day:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 2.4545454545em;
    height: 2.4545454545em;
    margin: auto;
    border-radius: 100%;
    border: 1px solid transparent;
    z-index: -1;
}
.flatpickr-day.sat {
    color: #2C73B7;
}
.flatpickr-day.sun {
    color: #FF0000;
}
.flatpickr-day.today:before {
    border-color: #1B9D7D;
}
.flatpickr-day.selected {
    font-weight: 500;
    color: #fff;
}
.flatpickr-day.selected:before {
    border-color: #1B9D7D;
    background: #1B9D7D;
}
.flatpickr-day.inRange {
    width: 100%;
    color: #fff;
}
.flatpickr-day.inRange:before {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background-color: #57CCAF;
}
.flatpickr-day.startRange:before {
    width: 100%;
    margin: 0;
    border-radius: 100px 0 0 100px;
}
.flatpickr-day.endRange {
    color: #fff;
}
.flatpickr-day.endRange:before {
    width: 100%;
    margin: 0;
    border-radius: 0 100px 100px 0;
    background-color: #1B9D7D;
}

.calendar .flatpickr-day {
    font-size: 13px;
}

.flatpickr-disabled {
    color: #BEBFC9 !important;
    cursor: not-allowed;
}

.prevMonthDay {
    opacity: 0;
    pointer-events: none;
}

.nextMonthDay {
    display: none;
}

.flatpickr-monthSelect-theme-light {
    padding: 20px 23px;
}

.flatpickr-monthSelect-months {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 -10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.flatpickr-monthSelect-month {
    position: relative;
    width: 25%;
    height: 2.0769230769em;
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2.0769230769;
    text-align: center;
    cursor: pointer;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    float: left;
    z-index: 1;
}
.flatpickr-monthSelect-month:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 2.0769230769em;
    height: 2.0769230769em;
    margin: auto;
    border-radius: 100%;
    border: 1px solid transparent;
    z-index: -1;
}
.flatpickr-monthSelect-month.selected {
    font-weight: 500;
    color: #fff;
}
.flatpickr-monthSelect-month.selected:before {
    border-color: #1B9D7D;
    background: #1B9D7D;
}
.flatpickr-monthSelect-month.inRange {
    color: #fff;
}
.flatpickr-monthSelect-month.inRange:before {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background-color: #57CCAF;
}
.flatpickr-monthSelect-month.startRange {
    font-weight: 500;
    color: #fff;
}
.flatpickr-monthSelect-month.startRange:before {
    width: 100%;
    margin: 0;
    border-radius: 100px 0 0 100px;
    border-color: #1B9D7D;
    background-color: #1B9D7D;
}
.flatpickr-monthSelect-month.endRange {
    font-weight: 500;
    color: #fff;
}
.flatpickr-monthSelect-month.endRange:before {
    width: 100%;
    margin: 0;
    border-radius: 0 100px 100px 0;
    border-color: #1B9D7D;
    background-color: #1B9D7D;
}

/* Forms */
fieldset {
    display: inherit;
    height: inherit;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
}

.form-fieldset {
    display: block;
    width: 100%;
    border: 0;
}

::-webkit-input-placeholder {
    font-family: "Pretendard", sans-serif;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

::-moz-placeholder {
    font-family: "Pretendard", sans-serif;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder {
    font-family: "Pretendard", sans-serif;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

::-ms-input-placeholder {
    font-family: "Pretendard", sans-serif;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

::placeholder {
    font-family: "Pretendard", sans-serif;
    font-weight: 300;
    color: #999;
    opacity: 1;
}

.form-text {
    display: inline-block;
    width: 100%;
    height: 30px;
    padding: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    vertical-align: top;
    border: 0;
    border-bottom: 1px solid #222;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    outline: 0;
}
.form-text.is-currency {
    padding-right: 20px;
    text-align: right;
}
.form-text.is-currency:last-child {
    padding-right: 0;
}
.form-text.js-datepicker, .form-text.js-time, .form-text.js-find-loc {
    padding-right: 20px;
    text-align: center;
    background: url("../img/ic_caret_sm.svg") no-repeat 100% 45%;
    background-size: 7px auto;
}
.form-text:invalid {
    border-color: #ADAEB9;
}
.form-text:focus {
    border-color: #57CCAF;
    -webkit-box-shadow: inset 0 -2px 0 0 #57CCAF;
            box-shadow: inset 0 -2px 0 0 #57CCAF;
}

.form-textarea {
    display: block;
    width: 100%;
    min-height: 156px;
    padding: 18px;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid #ADAEB9;
    background: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
    resize: none;
}
.form-textarea:focus {
    border-color: #57CCAF;
    -webkit-box-shadow: inset 0 0 0 2px #57CCAF;
            box-shadow: inset 0 0 0 2px #57CCAF;
}
.form-textarea:invalid {
    border-color: #CBCBCB;
}

.form-selectbox {
    display: inline-block;
    position: relative;
    width: 100%;
    min-height: 30px;
    text-align: center;
    vertical-align: middle;
}
.form-selectbox select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: inherit;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
}
.form-selectbox option {
    font-size: 1rem;
}
.form-selectbox .liner {
    display: block;
    min-height: inherit;
    padding: 0 20px 6px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7142857143;
    border-bottom: 1px solid #222;
    background: url("../img/ic_caret_sm.svg") no-repeat 100% 55%;
    background-size: 7px auto;
}
.form-selectbox select:focus ~ .liner {
    border-color: #57CCAF;
    -webkit-box-shadow: inset 0 -2px 0 0 #57CCAF;
            box-shadow: inset 0 -2px 0 0 #57CCAF;
}
.form-selectbox select:invalid ~ .liner {
    font-weight: 400;
    color: #aaa;
    border-color: #ADAEB9;
}

.form-checkbox {
    display: inline-block;
    margin: 0 4px 6px 0;
    vertical-align: middle;
}
.form-checkbox:only-child {
    margin-bottom: 0;
}
.form-checkbox .label {
    display: block;
    position: relative;
    padding: 0 0 0 1.5714285714em;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.2857142857;
}
.form-checkbox .label:before {
    content: "";
    display: block;
    width: 1.2857142857em;
    height: 1.2857142857em;
    margin: 0 0 0 -1.5714285714em;
    border-radius: 100%;
    background: url("../img/ic_chkbox_off.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
}
.form-checkbox .label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.2857142857em;
    height: 1.2857142857em;
    opacity: 0;
    border-radius: 100%;
    background: url("../img/ic_chkbox_on.svg") no-repeat 0 0;
    background-size: contain;
}
.form-checkbox .label-red {
    display: block;
    position: relative;
    padding: 0 0 0 1.5714285714em;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.2857142857;
}
.form-checkbox .label-red:before {
    content: "";
    display: block;
    width: 1.2857142857em;
    height: 1.2857142857em;
    margin: 0 0 0 -1.5714285714em;
    border-radius: 100%;
    background: url("../img/ic_chkbox2_off.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
}
.form-checkbox .label-red:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.2857142857em;
    height: 1.2857142857em;
    opacity: 0;
    border-radius: 100%;
    background: url("../img/ic_chkbox2_on.svg") no-repeat 0 0;
    background-size: contain;
}
.form-checkbox.lg {
    margin: 0;
}
.form-checkbox.lg [class*=label] {
    padding-left: 40px;
    font-size: 1em;
    font-weight: 700;
    color: inherit;
    line-height: 2;
}
.form-checkbox.lg [class*=label]:before {
    width: 32px;
    height: 32px;
    margin-left: -40px;
}
.form-checkbox.lg [class*=label]:after {
    width: 32px;
    height: 32px;
}
.form-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
}
.form-checkbox input:focus ~ [class*=label] {
    text-decoration: underline;
}
.form-checkbox input:checked ~ [class*=label]:before {
    opacity: 0;
}
.form-checkbox input:checked ~ [class*=label]:after {
    opacity: 1;
}
.form-checkbox .box {
    display: block;
    position: relative;
    padding: 0 0 0 1.875em;
    font-weight: 400;
    line-height: 1.25;
}
.form-checkbox .box:before {
    content: "";
    display: block;
    width: 1.25em;
    height: 1.25em;
    margin: 0 0 0 -1.875em;
    border: 1px solid #D5D5D5;
    background: #fff;
    background-size: 12px auto;
    float: left;
}
.form-checkbox .box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25em;
    height: 1.25em;
    opacity: 0;
    border-radius: 100%;
    background: url("../img/ic_check_on.svg") no-repeat 50% 50%;
    background-size: 12px auto;
}
.form-checkbox input:focus ~ .box {
    text-decoration: underline;
}
.form-checkbox input:checked ~ .box:before {
    border-color: transparent;
    background-color: #1B9D7D;
}
.form-checkbox input:checked ~ .box:after {
    opacity: 1;
}

.form-toggle-btn {
    display: block;
    position: relative;
    width: 50%;
    max-width: 100%;
    padding: 0 10px 10px 10px;
    float: left;
}
.form-toggle-btn:nth-child(2n+1) {
    padding-left: 0;
    clear: both;
}
.form-toggle-btn input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
}
.form-toggle-btn .btn {
    display: block;
    padding: 28px 0 40px;
    line-height: 1.1;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    word-break: keep-all;
    border: 1px solid #A8E4D5;
    background: #fff;
}
.form-toggle-btn .ico {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    margin: 0 auto 15px;
    border-radius: 100%;
    border: 1px solid #57CCAF;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    overflow: hidden;
}
.form-toggle-btn .ico:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #57CCAF url("../img/ic_toggle_on.svg") no-repeat 50% 50%;
    background-size: 20px auto;
}
.form-toggle-btn span {
    display: block;
}
.form-toggle-btn input:checked ~ .btn .ico:before {
    border: 0;
    opacity: 1;
}

.form-toggle-btn2 {
    display: inline-block;
    position: relative;
    max-width: calc(100% - 4px);
    margin: 0 4px 6px 0;
    vertical-align: top;
}
.form-toggle-btn2 .btn {
    display: block;
    min-width: 90px;
    height: 35px;
    padding: 0 10px;
    font-size: 15px;
    color: #ADAEB9;
    line-height: 33px;
    text-align: center;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
    border: 1px solid #57CCAF;
    border-radius: 100px;
    border: 1px solid #ADAEB9;
    background: #fff;
    overflow: hidden;
}
.form-toggle-btn2.sm .btn {
    min-width: 38px;
    height: 38px;
    padding: 0 2px;
    line-height: 36px;
}
.form-toggle-btn2 input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
}
.form-toggle-btn2 input:checked ~ .btn {
    color: #fff;
    border-color: transparent;
    background-color: #57CCAF;
}

.form-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-width: 0;
}
.form-file input[type=file] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.form-file .form-text {
    padding-right: 105px;
    color: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.form-file .btn-round {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 95px;
    margin: 0 0 7px;
    padding: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    cursor: pointer;
}

.form-pic-group {
    position: relative;
    width: calc(100% + 20px);
    margin: 0 0 0 -20px;
}
.form-pic-group:after {
    content: "";
    display: table;
    clear: both;
}
.form-pic-group .form-pic {
    width: calc(20% - 20px);
    margin: 0 0 0 20px;
    float: left;
}
.form-pic-group .first .preview {
/*
    background-image: url("../img/none_add_pic.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
*/
}
.form-pic-group .first:before {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
}

.form-pic {
    display: block;
    position: relative;
    cursor: pointer;
    border: 1px solid #EFEFEF;
    background-color: #FBFBFB;
}
.form-pic:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 42px;
    margin: auto;
    pointer-events: none;
    border-radius: 100%;
    /* background: #57CCAF url("../img/ic_camera.svg") no-repeat 50% 45%; */
    z-index: 1;
}
.form-pic input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.form-pic .label {
    position: absolute;
    top: 50.7692307692%;
    left: 0;
    right: 0;
    font-size: 14px;
    line-height: 1.3571428571;
    text-align: center;
    z-index: 1;
}
.form-pic .preview {
    display: block;
    position: relative;
    width: 100%;
    padding: 100% 0 0;
    border-radius: inherit;
    background-color: inherit;
    overflow: hidden;

    background-image: url("../img/none_add_pic.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}
.form-pic .preview img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
}

.form-limit-label {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #BEBFC9;
    line-height: 1;
}

.help-msg {
    display: block;
    min-height: 1.3076923077em;
    margin: 10px 0;
    padding: 0 0 0 1.8461538462em;
    font-size: 13px;
    color: #1B9D7D;
    line-height: 1.3076923077;
    word-break: keep-all;
    background: url("../img/ic_help_info.svg") no-repeat 0 0;
    background-size: 1.3076923077em auto;
}
.help-msg.is-fail {
    color: #F86048;
    background-image: url("../img/ic_error.svg");
}
.help-msg.text-only {
    padding-left: 0;
    background: none;
}
.help-msg.rule {
    color: #777;
    background-image: url("../img/ic_help_rule.svg");
}

.form-label {
    display: block;
    margin: 0 0 12px;
    font-weight: 700;
    word-break: keep-all;
}
.form-label .form-checkbox {
    margin: -2px 0 0 24px;
}

.form-row {
    display: block;
    position: relative;
}
.form-row + .form-row {
    margin-top: 30px;
}
.form-row .form-group {
    margin-bottom: -6px;
}

.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
}
.form-group[class*=col-] {
    margin-bottom: -6px;
}
.form-group[class*=col-] .btn {
    min-width: 0;
    width: 100%;
}
.form-group.col-2 > * {
    width: calc(50% - 4px);
}
.form-group.col-3 > * {
    width: calc(33.3% - 4px);
}
.form-group.col-4 > * {
    width: calc(25% - 4px);
}
.form-group.col-5 > * {
    width: calc(20% - 4px);
}
.form-group.col-6 > * {
    width: calc(16.66% - 4px);
}
.form-group.col-7 > * {
    width: calc(14.28571% - 4px);
}
.form-group.col-8 > * {
    width: calc(12.5% - 4px);
}
.form-group.col-9 > * {
    width: calc(11.11% - 4px);
}
.form-group.is-justify {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.form-group > .col {
    position: relative;
    padding: 0 25px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.form-group > .col:first-child {
    padding-left: 0;
}
.form-group > .col.sm {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
}
.form-group > .col.md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.4368370299%;
            flex: 0 0 31.4368370299%;
}

.inline-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-width: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.inline-group .col {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.inline-group .entity {
    display: block;
    padding: 0 2px;
}
.inline-group .form-text.has-confirm {
    padding-right: 102px;
}
.inline-group .btn-round {
    min-width: 95px;
    padding: 12px;
    font-size: 15px;
}
.inline-group .is-abs {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 0 10px;
}

.form-action-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 35px -4px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.form-action-wrap.align-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.form-action-wrap .btn-round {
    min-width: 6.5em;
    margin: 0 4px;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.form-table .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 26px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 1px solid #D8D8D8;
}
.form-table .form-row:first-child {
    padding-top: 0;
}
.form-table .form-label {
    width: 257px;
    margin: 0;
    padding: 8px 0;
    font-size: 20px;
    line-height: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 255px;
            flex: 0 0 255px;
    -ms-flex-item-align: start;
        align-self: flex-start;
}
.form-table .form-label em {
    display: inline-block;
    max-width: 10.25em;
    margin: 0 0 0 8px;
    font-size: 0.8em;
    font-style: normal;
    font-weight: 400;
    color: #999;
    line-height: 1.25;
    vertical-align: top;
}
.form-table .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.form-table .value > label > .form-text {
    height: 50px;
    font-size: 20px;
    font-weight: 700;
}
.form-table .form-selectbox {
    width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
}
.form-table .value > .form-selectbox {
    min-height: 50px;
}
.form-table .value > .form-selectbox .liner {
    font-size: 20px;
    font-weight: 700;
}
.form-table .form-textarea {
    font-size: 15px;
}
.form-table .week-day .form-toggle-btn2 {
    margin-right: 10px;
}
.form-table .week-day .option {
    margin-left: 12px;
}
.form-table .help-msg {
    margin-left: 255px;
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5625;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 255px);
            flex: 0 0 calc(100% - 255px);
    background-position: 0 2px;
}
.form-table .current-area-form + .col {
    margin-left: 92px;
}
.form-table .js-range-slider {
    width: 378px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.form-table .full-width {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

.dropdown.on {
    opacity: 1;
    visibility: visible;
    -webkit-animation: fade-in 0.3s alternate both;
            animation: fade-in 0.3s alternate both;
}

/* Label */
.badge {
    display: inline-block;
    min-width: 16px;
    max-width: 3.875em;
    padding: 0 4px;
    font-size: 10px;
    color: #fff;
    line-height: 1.6;
    text-align: center;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    vertical-align: top;
    white-space: nowrap;
    border-radius: 100px;
    background: #F86048;
    overflow: hidden;
}

.recomm-badge {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 14px;
    color: #fff;
    line-height: 1.5625;
    background: #F86048;
    z-index: 1;
}

.category-label {
    display: inline-block;
    height: 26px;
    font-size: 1rem;
    vertical-align: top;
    border-radius: 5px;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}
.category-label + .category-label {
    margin-left: 4px;
}

.line-label {
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 10px;
    font-size: 13px;
    color: #1B9D7D;
    line-height: 1.5384615385;
    vertical-align: top;
    border: 1px solid;
    border-radius: 100px;
}

.star-rating {
    display: block;
    position: relative;
    width: 85px;
    height: 15px;
    background: url("../img/rating_stars_off.svg") no-repeat 0 0;
    background-size: auto 100%;
}
.star-rating .star {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    background: url("../img/rating_stars_on.svg") no-repeat 0 0;
    background-size: auto 100%;
}
.star-rating.v2 {
    width: 84px;
    height: 12px;
    background-image: url("../img/rating_stars2_off.svg");
}
.star-rating.v2 .star {
    background-image: url("../img/rating_stars2_on.svg");
}

.benefit-group {
    list-style: none;
    overflow: hidden;
}
.benefit-group .item {
    width: 20%;
    margin: 16px 0 0;
    float: left;
}

.benefit-label {
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}
.benefit-label:before {
    content: "";
    display: block;
    width: 46px;
    height: 35px;
    margin: 0 auto 4px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    -webkit-transform: translatez(0);
        -ms-transform: translatez(0);
            transform: translatez(0);
}
.benefit-label.benefit1-1:before {
    background-image: url("../img/ic_benefit1_1.svg");
}
.benefit-label.benefit1-2:before {
    background-image: url("../img/ic_benefit1_2.svg");
}
.benefit-label.benefit1-3:before {
    background-image: url("../img/ic_benefit1_3.svg");
}
.benefit-label.benefit1-4:before {
    background-image: url("../img/ic_benefit1_4.svg");
}
.benefit-label.benefit2-1:before {
    background-image: url("../img/ic_benefit2_1.svg");
}
.benefit-label.benefit2-2:before {
    background-image: url("../img/ic_benefit2_2.svg");
}
.benefit-label.benefit2-3:before {
    background-image: url("../img/ic_benefit2_3.svg");
}
.benefit-label.benefit3-1:before {
    background-image: url("../img/ic_benefit3_1.svg");
}
.benefit-label.benefit3-2:before {
    background-image: url("../img/ic_benefit3_2.svg");
}
.benefit-label.benefit3-3:before {
    background-image: url("../img/ic_benefit3_3.svg");
}
.benefit-label.benefit3-4:before {
    background-image: url("../img/ic_benefit3_4.svg");
}
.benefit-label.benefit3-5:before {
    background-image: url("../img/ic_benefit3_5.svg");
}
.benefit-label.benefit3-6:before {
    background-image: url("../img/ic_benefit3_6.svg");
}
.benefit-label.benefit3-7:before {
    background-image: url("../img/ic_benefit3_7.svg");
}
.benefit-label.benefit4-1:before {
    background-image: url("../img/ic_benefit4_1.svg");
}
.benefit-label.benefit4-1:before {
    background-image: url("../img/ic_benefit4_1.svg");
}
.benefit-label.benefit4-2:before {
    background-image: url("../img/ic_benefit4_2.svg");
}
.benefit-label.benefit4-3:before {
    background-image: url("../img/ic_benefit4_3.svg");
}
.benefit-label.benefit4-4:before {
    background-image: url("../img/ic_benefit4_4.svg");
}
.benefit-label.benefit4-5:before {
    background-image: url("../img/ic_benefit4_5.svg");
}
.benefit-label.benefit4-6:before {
    background-image: url("../img/ic_benefit4_6.svg");
}
.benefit-label.benefit4-7:before {
    background-image: url("../img/ic_benefit4_7.svg");
}
.benefit-label.benefit1-1-v2:before {
    background-image: url("../img/ic_benefit1_1_gr.svg");
}
.benefit-label.benefit1-2-v2:before {
    background-image: url("../img/ic_benefit1_2_gr.svg");
}
.benefit-label.benefit1-3-v2:before {
    background-image: url("../img/ic_benefit1_3_gr.svg");
}
.benefit-label.benefit1-4-v2:before {
    background-image: url("../img/ic_benefit1_4_gr.svg");
}
.benefit-label.benefit2-1-v2:before {
    background-image: url("../img/ic_benefit2_1_gr.svg");
}
.benefit-label.benefit2-2-v2:before {
    background-image: url("../img/ic_benefit2_2_gr.svg");
}
.benefit-label.benefit2-3-v2:before {
    background-image: url("../img/ic_benefit2_3_gr.svg");
}
.benefit-label.benefit3-1-v2:before {
    background-image: url("../img/ic_benefit3_1_gr.svg");
}
.benefit-label.benefit3-2-v2:before {
    background-image: url("../img/ic_benefit3_2_gr.svg");
}
.benefit-label.benefit3-3-v2:before {
    background-image: url("../img/ic_benefit3_3_gr.svg");
}
.benefit-label.benefit3-4-v2:before {
    background-image: url("../img/ic_benefit3_4_gr.svg");
}
.benefit-label.benefit3-5-v2:before {
    background-image: url("../img/ic_benefit3_5_gr.svg");
}
.benefit-label.benefit3-6-v2:before {
    background-image: url("../img/ic_benefit3_6_gr.svg");
}
.benefit-label.benefit3-7-v2:before {
    background-image: url("../img/ic_benefit3_7_gr.svg");
}
.benefit-label.benefit4-1-v2:before {
    background-image: url("../img/ic_benefit4_1_gr.svg");
}
.benefit-label.benefit4-1-v2:before {
    background-image: url("../img/ic_benefit4_1_gr.svg");
}
.benefit-label.benefit4-2-v2:before {
    background-image: url("../img/ic_benefit4_2_gr.svg");
}
.benefit-label.benefit4-3-v2:before {
    background-image: url("../img/ic_benefit4_3_gr.svg");
}
.benefit-label.benefit4-4-v2:before {
    background-image: url("../img/ic_benefit4_4_gr.svg");
}
.benefit-label.benefit4-5-v2:before {
    background-image: url("../img/ic_benefit4_5_gr.svg");
}
.benefit-label.benefit4-6-v2:before {
    background-image: url("../img/ic_benefit4_6_gr.svg");
}
.benefit-label.benefit4-7-v2:before {
    background-image: url("../img/ic_benefit4_7_gr.svg");
}
.benefit-label.btn {
    display: inline-block;
    position: relative;
    min-width: 96px;
    height: auto;
    padding: 15px 0;
    font-size: 14px;
    color: inherit;
    line-height: 1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: top;
    border-radius: 10px;
    border: 1px solid #BEBFC9;
    background: #fff;
}
.benefit-label.btn:last-child {
    margin-right: 0;
}
.benefit-label.btn:before {
    width: 46px;
    height: 35px;
    margin-bottom: 8px;
}
.benefit-label.btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    width: 46px;
    height: 35px;
    margin: auto;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}
input:checked ~ .benefit-label.btn {
    font-weight: 700;
}

input:checked ~ .benefit-label.btn:before {
    opacity: 0;
}

input:checked ~ .benefit-label.btn:after {
    opacity: 1;
}

.benefit-label.benefit1-1:after {
    background-image: url("../img/ic_benefit1_1_on.svg");
}
.benefit-label.benefit1-2:after {
    background-image: url("../img/ic_benefit1_2_on.svg");
}
.benefit-label.benefit1-3:after {
    background-image: url("../img/ic_benefit1_3_on.svg");
}
.benefit-label.benefit1-4:after {
    background-image: url("../img/ic_benefit1_4_on.svg");
}
.benefit-label.benefit2-1:after {
    background-image: url("../img/ic_benefit2_1_on.svg");
}
.benefit-label.benefit2-2:after {
    background-image: url("../img/ic_benefit2_2_on.svg");
}
.benefit-label.benefit2-3:after {
    background-image: url("../img/ic_benefit2_3_on.svg");
}
.benefit-label.benefit3-1:after {
    background-image: url("../img/ic_benefit3_1_on.svg");
}
.benefit-label.benefit3-2:after {
    background-image: url("../img/ic_benefit3_2_on.svg");
}
.benefit-label.benefit3-3:after {
    background-image: url("../img/ic_benefit3_3_on.svg");
}
.benefit-label.benefit3-4:after {
    background-image: url("../img/ic_benefit3_4_on.svg");
}
.benefit-label.benefit3-5:after {
    background-image: url("../img/ic_benefit3_5_on.svg");
}
.benefit-label.benefit3-6:after {
    background-image: url("../img/ic_benefit3_6_on.svg");
}
.benefit-label.benefit3-7:after {
    background-image: url("../img/ic_benefit3_7_on.svg");
}
.benefit-label.benefit4-1:after {
    background-image: url("../img/ic_benefit4_1_on.svg");
}
.benefit-label.benefit4-1:after {
    background-image: url("../img/ic_benefit4_1_on.svg");
}
.benefit-label.benefit4-2:after {
    background-image: url("../img/ic_benefit4_2_on.svg");
}
.benefit-label.benefit4-3:after {
    background-image: url("../img/ic_benefit4_3_on.svg");
}
.benefit-label.benefit4-4:after {
    background-image: url("../img/ic_benefit4_4_on.svg");
}
.benefit-label.benefit4-5:after {
    background-image: url("../img/ic_benefit4_5_on.svg");
}
.benefit-label.benefit4-6:after {
    background-image: url("../img/ic_benefit4_6_on.svg");
}
.benefit-label.benefit4-7:after {
    background-image: url("../img/ic_benefit4_7_on.svg");
}

.working-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 -4px;
    list-style: none;
}
.working-day > li {
    width: 2.1666666667em;
    height: 2.1666666667em;
    margin: 0 0.5em 4px 0;
    font-size: 12px;
    color: #BEBFC9;
    line-height: 2;
    text-align: center;
    text-indent: -1px;
    border-radius: 100%;
    border: 1px solid #BEBFC9;
    background: #fff;
    float: left;
}
.working-day > li:last-child {
    margin-right: 0;
}
.working-day li[aria-hidden=false] {
    color: #fff;
    border-color: transparent;
    background-color: #57CCAF;
}

.hashtag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    margin: 10px 0 -6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.hashtag .tag {
    display: inline-block;
    max-width: 100%;
    margin: 0 6px 6px 0;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1B9D7D;
    line-height: 2;
    vertical-align: top;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    background: #E8FFF9;
    overflow: hidden;
}
.hashtag .tag:last-child {
    margin-right: 0;
}
.hashtag a:hover, .hashtag a:focus {
    text-decoration: underline;
}

.pic-card {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #EFEFEF;
    background: #f0f0f0;
}
.pic-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

/* List */
.list {
    list-style: none;
}
.list:after {
    content: "";
    display: table;
    clear: both;
}
.list > li {
    border-bottom: 1px solid #DCDCDC;
}
.list .list {
    margin-bottom: -1px;
    border-top: 1px solid #DCDCDC;
}

.dot-list {
    margin: 26px -2em 0 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-align: left;
}

/* Lazy Loader */
.lozad {
    opacity: 0;
}
.lozad[data-loaded] {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* keen-slider : https://keen-slider.io/ */
.keen-slider {
    white-space: nowrap;
}

.keen-slider__slide {
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    vertical-align: top;
    white-space: normal;
}

.dots {
    line-height: 1;
}
.dots .dot {
    position: relative;
    border: 0;
    outline: 0;
}
.dots span {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    font-size: 1px;
    color: transparent;
    opacity: 0;
    outline: 0;
    overflow: hidden;
}

.arrow span {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    font-size: 1px;
    opacity: 0;
    overflow: hidden;
}

/* Range Slider */
.js-range-slider {
    position: relative;
    max-width: 378px;
    margin: 20px 0 40px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid #ddd;
    background: #F5F6F7 url("../img/range_track.svg") no-repeat 50% 50%;
    background-size: contain;
    z-index: 1;
}
.js-range-slider input[type=range] {
    position: absolute;
    top: 0;
    left: -0.125rem;
    width: calc(100% + 2px);
    height: 100%;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}
.js-range-slider input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0px;
    pointer-events: all;
}
.js-range-slider input[type=range]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0px;
    pointer-events: all;
}
.js-range-slider input[type=range]::-ms-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0px;
    pointer-events: all;
}
.js-range-slider .thumb {
    display: block;
    position: absolute;
    top: -6px;
    left: -2px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #fff url("../img/range_handle.svg") no-repeat 0 0;
    background-size: auto 100%;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.js-range-slider .label {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 5px 0 0;
    font-size: 11px;
    color: #1B9D7D;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.js-range-slider .fill {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    border-radius: inherit;
    background: #57CCAF url("../img/range_fill.svg") no-repeat 50% 50%;
    background-size: contain;
    z-index: -1;
}

/* Scrollbar */
.js-scrollbar {
    position: relative;
    height: 100%;
    padding: 0 1px 0 0;
    overflow: hidden;
    scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}
.js-scrollbar::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0);
}
.js-scrollbar .scroll-content {
    position: relative;
}

.scrollbar-track {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 30px;
    cursor: pointer;
    background: #fff;
}

/* Tab */
.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}
.tabs li {
    position: relative;
    float: left;
}
.tabs .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    white-space: nowrap;
    word-break: keep-all;
}
.tabs.is-sub {
    position: absolute;
    top: 100%;
    left: 0;
}

.tabs-wrap {
    position: relative;
    overflow: hidden;
}
.tabs-wrap.has-scroll:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 46px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(246, 248, 250, 0)), to(rgb(246, 248, 250)));
    background: -o-linear-gradient(left, rgba(246, 248, 250, 0) 0%, rgb(246, 248, 250) 100%);
    background: linear-gradient(to right, rgba(246, 248, 250, 0) 0%, rgb(246, 248, 250) 100%);
}
.tabs-wrap.is-scrolled:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(246, 248, 250)), to(rgba(246, 248, 250, 0)));
    background: -o-linear-gradient(left, rgb(246, 248, 250) 0%, rgba(246, 248, 250, 0) 100%);
    background: linear-gradient(to right, rgb(246, 248, 250) 0%, rgba(246, 248, 250, 0) 100%);
    z-index: 1;
}
.tabs-wrap .tabs {
    margin: 0 0 42px;
    overflow: hidden;
}
.tabs-wrap .tabs li {
    padding: 0 55px 0 0;
    border-bottom: 1px solid #E5E5E5;
}
.tabs-wrap .tab {
    position: relative;
    padding: 0 3px 22px;
    font-size: 20px;
    color: #999;
    text-align: left;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.tabs-wrap .tab:hover, .tabs-wrap .tab:focus {
    font-weight: 500;
    color: #222;
}
.tabs-wrap li.on > .tab {
    font-weight: 700;
    color: #222;
}
.tabs-wrap li.on > .tab:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 3px solid #57CCAF;
}
.tabs-wrap .tabs.has-sub {
    margin-bottom: 70px;
}
.tabs-wrap .tabs.is-sub, .tabs-wrap .is-focusing .on .is-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    border-bottom: 0;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
}
.tabs-wrap .is-sub li {
    margin-left: 30px;
}
.tabs-wrap .is-sub .tab {
    padding: 26px 0 0;
    font-size: 1rem;
    font-weight: 400;
    color: #999;
}
.tabs-wrap .is-sub .tab:hover, .tabs-wrap .is-sub .tab:focus {
    font-weight: 500;
    color: #222;
}
.tabs-wrap .is-sub .on .tab {
    font-weight: 700;
    color: #1B9D7D;
}
.tabs-wrap .is-sub .on .tab:after {
    content: none;
}
/*
.tabs-wrap li:hover > .is-sub, .tabs-wrap .on .is-sub,
.tabs-wrap .is-focusing .on:hover .is-sub,
.tabs-wrap .is-sub.on,
.tabs-wrap .has-tab .is-sub.on,
.tabs-wrap .is-focusing .on .is-sub.on {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
}
*/
.tab-panel {
    position: relative;
    opacity: 0;
    visibility: hidden;
    margin-top: 0px; /* 120px; */
}
.tab-panel.on {
    opacity: 1;
    visibility: visible;
    -webkit-animation: fade-in 0.3s both;
            animation: fade-in 0.3s both;
}

/* Tooltip */
.tooltip {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 247px;
    margin: 23px 0;
    padding: 26px;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1.3571428571;
    opacity: 0;
    text-align: center;
    white-space: nowrap;
    visibility: hidden;
    border-radius: 10px;
    background: #1B9D7D;
    -webkit-box-shadow: 5px 3px 14px rgba(27, 157, 125, 0.3);
            box-shadow: 5px 3px 14px rgba(27, 157, 125, 0.3);
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 5;
}
.tooltip:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 30px;
    border: 8px solid transparent;
    border-top: 0;
    border-bottom: 10px solid #1B9D7D;
}
.tooltip.on {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
}
.tooltip.center:before {
    left: 50%;
    margin-left: -8px;
}
.tooltip.right:before {
    left: auto;
    right: 30px;
}
.tooltip.bottom:before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #1B9D7D;
    border-bottom: 0;
}
.tooltip.middle-left {
    margin: 0 23px 0 0 !important;
}
.tooltip.middle-left:before {
    top: 50%;
    left: auto;
    right: -16px;
    margin-top: -13px;
    border: 13px solid transparent;
    border-right: 0;
    border-left: 16px solid #1B9D7D;
}
.tooltip.middle-right {
    margin: 0 0 0 40px;
}
.tooltip.middle-right:before {
    top: 50%;
    left: 14px;
    margin-top: 10px;
    border: 10px solid transparent;
    border-left: 0;
    border-right: 14px solid #1B9D7D;
}
.tooltip .cnt {
    font-style: normal;
    color: #FFF700;
}

.js-toggle-tooltip:hover ~ .tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
}

/* Accordion List */
.accordion-title {
    display: block;
    position: relative;
    padding: 22px 40px 22px 20px;
    font-weight: 700;
    line-height: 1.5;
}
.accordion-title em {
    font-style: normal;
}
.accordion-title:after {
    content: "";
    display: block;
    position: absolute;
    top: 30px;
    right: 24px;
    width: 12px;
    height: 8px;
    pointer-events: none;
    background: url("../img/ic_arrow_down.svg") no-repeat 0 0;
    background-size: contain;
}
.accordion-title[aria-expanded=true] {
    padding-bottom: 0;
}
.accordion-title[aria-expanded=true]:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.accordion-title:hover, .accordion-title:focus {
    text-decoration: underline;
}

.accordion-content {
    position: relative;
    padding: 10px 40px 35px 20px;
    line-height: cacl(24/16);
}

/* Layer Panel */
.layer-panel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    z-index: 10;
}
.layer-panel.on {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}
.layer-panel.on .panel-container {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.panel-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 82%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px 10px 0 0;
    background: #fff;
    overflow: hidden;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    -o-transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 1;
}

.panel-header {
    padding: 20px 22px 22px;
}

.panel-body {
    position: relative;
    padding: 0 22px 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    overflow-y: auto;
}

.panel-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.panel-footer .btn {
    display: block;
    height: 60px;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 700;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    float: left;
}

/* Popup */
.layer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0;
    text-align: center;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-animation: fade-in 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
            animation: fade-in 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    -webkit-perspective: 500px;
            perspective: 500px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 99;
}
.layer-popup:before {
    content: "";
    display: inline-block;
    height: 100%;
    margin: -1px 0;
    vertical-align: middle;
}
.layer-popup:after {
    content: "";
    display: block;
    height: 1px;
}
.layer-popup.in {
    display: block !important;
}

.has-popup {
    overflow: hidden !important;
}

.popup-container {
    display: inline-block;
    position: relative;
    max-width: 90%;
    font-size: 1rem;
    margin: 1em auto;
    opacity: 0;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    border-radius: 10px;
    overflow: hidden;
}
.popup-container[role=alertdialog] {
    width: 19.6875em;
}

.in .popup-container {
    opacity: 1;
    -webkit-animation: fade-in-fwd 0.2s 0.2s both;
            animation: fade-in-fwd 0.2s 0.2s both;
}

.btn-close-popup {
    position: absolute;
    top: 18px;
    right: 19px;
    width: 16px;
    height: 16px;
    border: 0;
    background: url("../img/ic_alert_close.svg") no-repeat 0 0;
    background-size: contain;
    z-index: 1;
}

.popup-title {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
}

.popup-content {
    position: relative;
    max-height: 100%;
    word-break: keep-all;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
}

[role=alertdialog] .popup-content {
    padding: 45px 40px 32px 32px;
}

.popup-content .msg {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5625;
    text-align: center;
    word-break: keep-all;
}
.popup-content .msg em {
    font-style: normal;
    color: #1B9D7D;
}
.popup-content .msg strong {
    display: block;
}
.popup-content .msg small {
    display: block;
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9230769231;
}
.popup-content .msg .point {
    margin-top: 10px;
    color: #1B9D7D;
}

.popup-content .alert-msg {
    width: 315px;
    padding: 50px 18px 30px;
    font-weight: 500;
    line-height: 1.5625;
    text-align: center;
}
.popup-content .alert-msg em {
    font-style: normal;
    color: #1B9D7D;
}

.popup-content .form-wrap {
    margin-top: 24px;
}

.popup-content .required-point {
    margin: 8px 0 0;
    font-weight: 700;
    color: #1B9D7D;
}

.popup-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.popup-footer .btn {
    min-height: 56px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 0 0 0 10px;
}
.popup-footer .btn:nth-child(2):not(:last-child) {
    border-radius: 0;
    background: #868686;
}
.popup-footer .btn:nth-child(2):not(:last-child):hover, .popup-footer .btn:nth-child(2):not(:last-child):focus {
    background-color: #747474;
}
.popup-footer .btn:last-child {
    border-radius: 0 0 10px 0;
}
.popup-footer .btn:only-child {
    border-radius: 0 0 10px 10px;
}

/* Pagination */
.pagination {
    position: relative;
    margin: 50px 25.443649% 0 20.443649%;
    line-height: 1;
    text-align: center;
    z-index: 1;
}

.page-link {
    margin: 0 6px;
    padding: 0 3px;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: -0.05em;
    line-height: 2.3333333333;
    vertical-align: middle;
}
.page-link:hover, .page-link:focus {
    text-decoration: underline;
}

.current {
    margin-right: 8px;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    line-height: 2;
    border-bottom: 2px solid;
}
.current:hover {
    text-decoration: none;
}

.pagination .btn {
    display: inline-block;
    width: 42px;
    height: 42px;
    vertical-align: middle;
    border: 1px solid #D8D8D8;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 12px auto;
}
.pagination .btn:hover, .pagination .btn:focus {
    border-color: #000;
}

.page-front {
    background-image: url("../img/ic_page_front.svg");
}

.page-prev {
    margin-right: 12px;
    background-image: url("../img/ic_page_prev.svg");
}

.page-next {
    margin-left: 12px;
    background-image: url("../img/ic_page_next.svg");
}

.page-last {
    background-image: url("../img/ic_page_last.svg");
}

/* #Layout */
html {
    height: 100%;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 1632px;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font: normal 1rem/1.2 "Pretendard", sans-serif;
    color: #222;
    letter-spacing: -0.05em;
    word-wrap: break-word;
    word-break: break-all;
}

.skip {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    border: 3px solid #1B9D7D;
    background: #57CCAF;
    z-index: -1;
}
.skip:focus {
    text-decoration: underline;
    opacity: 1;
    pointer-events: inherit;
    z-index: 20;
}

.container {
    max-width: 1632px;
    margin: 0 auto;
    padding: 0 116px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: inherit;
    background: #fff;
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
    z-index: 10;
}
#header.transparency {
    color: #fff;
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
#header.searching {
    color: inherit;
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
}
#header.searching:before {
    content: "";
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    -webkit-animation: fade-in 0.3s;
            animation: fade-in 0.3s;
    z-index: -1;
}
.is-scrolled #header {
    color: inherit;
    background: #fff;
}

#header > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#header .rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    float: right;
}

.top-logo {
    position: relative;
    width: 144px;
    height: 50px;
    z-index: 1;
    float: left;
}
.top-logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/top_logo.svg") no-repeat 50% 50%;
    background-size: contain;
}
.transparency .top-logo a {
    background-image: url("../img/top_logo_wh.svg");
}

.searching .top-logo a, .is-scrolled .top-logo a {
    background-image: url("../img/top_logo.svg");
}

.top-menu {
    display: inline-block;
    padding: 1.5em 0 1.5em;
    font-size: 20px;
    font-weight: 700;
    list-style: none;
    line-height: 1;
    vertical-align: top;
}
.top-menu > li {
    margin: 0 0 0 75px;
    float: left;
}

.rt .account-menu {
    font-weight: 500;
    list-style: none;
    letter-spacing: 0;
    line-height: 1.1;
}
.rt .account-menu li {
    position: relative;
    float: left;
}
.rt .account-menu li + li:before {
    content: "·";
    margin: 0 4px;
}
.rt .account-menu a:hover, .rt .account-menu a:focus {
    text-decoration: underline;
}
.rt .account-menu .dropdown {
    z-index: 10;
}
.rt .account-menu .user-name {
    display: inline-block;
    max-width: 2.625em;
    font-style: normal;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: inherit;
}
.rt .account-menu .member-card {
    position: relative;
    width: 232px;
    margin: 15px 0 0 -18px;
    font-size: 11px;
    color: #222;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 0 1px #57CCAF;
            box-shadow: 0 0 0 1px #57CCAF;
}
.dropdown-wrap:hover #memberPanel {
    display: block !important;
    opacity: 1;
    visibility: visible;
    -webkit-animation: fade-in 0.3s alternate both;
            animation: fade-in 0.3s alternate both;
}

.rt .account-menu .member-card:before {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: 42px;
    border: 3px solid transparent;
    border-top: 0;
    border-bottom: 6px solid #fff;
    z-index: 1;
}
.rt .account-menu .member-card:after {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    left: 40px;
    border: 5px solid transparent;
    border-top: 0;
    border-bottom: 8px solid #57CCAF;
    z-index: -1;
}
.rt .account-menu .member-card .card-body {
    padding: 17px 24px;
}
.rt .account-menu .member-card .thumb {
    position: relative;
    width: 40px;
    height: 0;
    padding: 40px 0 0;
    overflow: hidden;
    border-radius: 100%;
    background: #F7F7F7;
    float: left;
}
.rt .account-menu .member-card .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.rt .account-menu .member-card .profile-meta {
    margin: 0 0 0 54px;
    line-height: 1;
}
.rt .account-menu .member-card .profile-meta em {
    font-style: normal;
}
.rt .account-menu .member-card .name em {
    display: inline-block;
    max-width: 90%;
    font-size: 1.3636363636em;
    font-weight: 700;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
    overflow: hidden;
}
.rt .account-menu .member-card .email {
    margin: 3px 0 0;
}
.rt .account-menu .member-card .point {
    margin: 4px 0 0;
}
.rt .account-menu .member-card .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    letter-spacing: 0;
    line-height: 3.3636363636;
    text-align: center;
    border-top: 1px solid #F0F0F0;
}
.rt .account-menu .member-card .card-footer:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1em;
    margin: -0.5em 0 0;
    border-left: 1px solid #f0f0f0;
}
.rt .account-menu .member-card .card-footer a {
    display: block;
    width: 50%;
}

.btn-top-search {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
    margin: 0 0 0 18px;
    background: url("../img/ic_top_search.svg") no-repeat 0 0;
    background-size: contain;
}
.btn-top-search:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #fff url("../img/ic_top_search_on.svg") no-repeat 0 0;
    background-size: contain;
}
.transparency .btn-top-search {
    background-image: url("../img/ic_top_search_wh.svg");
}

.is-scrolled .btn-top-search {
    background-image: url("../img/ic_top_search.svg");
}

.searching .btn-top-search:before {
    opacity: 1;
}

.top-search {
    right: 0;
    background: #fff;
    overflow: hidden;
}
.top-search.on {
    -webkit-animation: none !important;
            animation: none !important;
}
.top-search .search-form {
    position: relative;
    max-width: 594px;
    margin: 52px auto 48px;
}
.top-search .search-form input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 48px 14px 0;
    font-size: 1rem;
    line-height: 1;
    border: 0;
    border-bottom: 3px solid #57CCAF;
    background: inherit;
    outline: 0;
}
.top-search .search-form .btn-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 37px;
    height: 37px;
    border: 0;
    border-radius: 100%;
    background: #57CCAF url("../img/ic_search.svg") no-repeat 50% 50%;
    background-size: 19px auto;
}
.top-search .search-form .btn-search:active {
    background-color: #1B9D7D;
}
.top-search .search-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -64px 54px;
}
.top-search .search-option > .col {
    width: 31%;
    padding: 0 4.1884816754%;
    float: left;
}
.top-search .search-option > .col:first-child {
    width: 38%;
}
.top-search .search-option > .col + .col {
    border-left: 1px solid rgba(222, 222, 222, 0.6);
}
.top-search .search-history {
    min-height: 60px;
    margin: 0;
    padding: 15px 0 10px;
    background: #FBFBFB;
}
.top-search .search-history .added-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.top-search .search-history li {
    position: relative;
    margin: 0 5px 5px 0;
    float: left;
}
.top-search .search-history a {
    display: block;
    min-width: 5.4285714286em;
    max-width: 100%;
    padding: 0 20px 0 14px;
    font-size: 14px;
    line-height: 2.1428571429;
    text-align: center;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    background: #D6F6EE;
    overflow: hidden;
}
.top-search .search-history a:hover, .top-search .search-history a:focus {
    text-decoration: underline;
}
.top-search .search-history .btn-del {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    border: 0;
    background: url("../img/ic_del_item.svg") no-repeat 50% 50%;
    background-size: 8px auto;
}
.top-search .search-history .is-deleted {
    -webkit-animation-duration: 0s !important;
            animation-duration: 0s !important;
}

.dropdown-wrap:hover .top-search[hidden] {
    opacity: 0;
    visibility: hidden;
}

.current-area {
    display: inline-block;
    position: relative;
    min-width: 9.4117647059em;
    padding: 0 1em 0 1.2941176471em;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1176470588;
    text-align: left;
    vertical-align: top;
    background: url("../img/ic_current_loc.svg") no-repeat 0 80%;
    background-size: auto 19px;
}
.current-area + .current-area-form {
    margin-top: 24px;
}

/* Footer */
#footer {
    position: relative;
    margin: auto 0 0;
    /* padding: 20px 0 15px; */
    padding-top: 8px;
    padding-bottom: 5px;
    color: #fff;
    word-break: keep-all;
    background: #1E1E1E;
    font-family: 'Noto Sans KR', sans-serif;
    overflow: hidden;
}
#footer.container {
    display: block;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: -20px;
    padding: 0;
    gap: 0;
}


/* company-name과 footer-contact의 상단 정렬 */
.footer-top .company-name {
    align-self: flex-start;
    margin: 0;
    padding: 0;
}


.footer-top .footer-contact {
    align-self: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    top: 13px;
}






#footer .company-name {
    padding: 0;
    font-weight: 700;
    font-size: 1.6em;
    letter-spacing: 0;
    font-family: 'Noto Sans KR', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-top: 15px;
    line-height: 1.2;
}


/* NOW 텍스트 스타일 */
#footer .company-name .now-text {
    display: inline;
    font-weight: 700;
    font-size: inherit;
    letter-spacing: 0;
    font-family: 'Noto Sans KR', sans-serif;
}


/* NOW의 O만 색상 변경 */
#footer .company-name .o-letter {
    color: #31A182;
}


.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -5px;
    margin-top: 4px;
   
}


.toggle-btn svg {
    color: #787878;
}


.toggle-btn svg polyline {
    stroke: #787878;
}


/* .toggle-btn:hover svg polyline {
    stroke: #57CCAF;
} */


/* .toggle-btn.active svg polyline {
    stroke: #57CCAF;
} */






.toggle-btn .icon-right,
.toggle-btn .icon-down {
    margin-left: -3px;
}


.footer-info {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    color: inherit;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    margin: 0;
    padding: 0;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.875;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    width: 100%;
}


.footer-info:not(.hidden) {  
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin: 10px 0 0;
    padding: 0;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 -18px;
    list-style: none;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
}
.footer-menu:after {
    content: "";
    display: none;
}
.footer-menu li {
    position: relative;
    min-width: 8em;
    min-height: 2.25em;
    margin: 0 0 9px;
    padding: 0 18px;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    float: none;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
    cursor: pointer;
}
.footer-menu li small {
    display: block;
    font-size: 0.8666666667em;
    font-weight: 500;
    opacity: 0.45;
    font-family: 'Noto Sans KR', sans-serif;
}
.footer-menu li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    opacity: 0.4;
    background: #707070;
}
.footer-menu li:last-child:after {
    content: none;
}
.footer-menu a {
    display: block;
    font-weight: 700;
    letter-spacing: 0;
    font-family: 'Noto Sans KR', sans-serif;
    text-decoration: none;
}
.footer-menu a:hover, .footer-menu a:focus {
    text-decoration: none;
}






.footer-info .copyright {
    margin-top: 10px;
}




/* 중복 제거하고 하나로 통합 */
.footer-contact {
    position: relative;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 300px;
    max-width: 400px;
    padding: 0;
}




.footer-contact .title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 8px;  /* 간격 조정 */
}


.footer-contact .title em {
    font-style: normal;
    color: #31A182;
    font-family: 'Noto Sans KR', sans-serif;
}


.footer-contact .tel {
    font-size: 1.375em;
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 0px;  /* 간격 조정 */
    line-height: 1.2;
}


.footer-contact .tel em {
    font-size: inherit;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    font-family: 'Noto Sans KR', sans-serif;
}


.footer-contact .social {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    white-space: nowrap;
    padding-bottom: 8px;
}


.footer-contact .social li {
    margin: 0;
    float: none;
}


.footer-contact .social li:not(:last-child) {
    margin-right: 18px;
}


.footer-contact .social a {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 0%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    transition: opacity 0.3s;
}


.footer-contact .social a:hover, .footer-contact .social a:focus {
    opacity: 0.7;
}


.footer-contact .social1 {
    background-image: url("../img/insta_btn.png");
}


.footer-contact .social2 {
    background-image: url("../img/facebook_btn.png");
}


.footer-contact .social3 {
    background-image: url("../img/kakaobtn.png");
}


.footer-contact .social4 {
    background-image: url("../img/blog_btn.png");
}



.btn-chat {
    display: block;
    position: fixed;
    bottom: 120px;
    right: 36px;
    width: 78px;
    height: 78px;
    border-radius: 100%;
    background: #57CCAF url("../img/ic_open_chat.svg") no-repeat 50% 50%;
    background-size: 52.5641% auto;
    -webkit-transition: background 0.3s, opacity 0.3s 0.3s, visibility 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    transition: background 0.3s, opacity 0.3s 0.3s, visibility 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    -o-transition: background 0.3s, opacity 0.3s 0.3s, visibility 0.3s 0.3s, transform 0.3s 0.3s;
    transition: background 0.3s, opacity 0.3s 0.3s, visibility 0.3s 0.3s, transform 0.3s 0.3s;
    transition: background 0.3s, opacity 0.3s 0.3s, visibility 0.3s 0.3s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    z-index: 5;
}
.btn-chat:hover, .btn-chat:focus {
    background-color: #38b898;
}

.btn-top {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 40px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #535353 url("../img/ic_top.svg") no-repeat 50% 50%;
    background-size: 22.8571% auto;
    -webkit-transition: background 0.3s, opacity 0.3s, visibility 0.3s;
    -o-transition: background 0.3s, opacity 0.3s, visibility 0.3s;
    transition: background 0.3s, opacity 0.3s, visibility 0.3s;
    z-index: 5;
}
.btn-top:hover, .btn-top:focus {
    background-color: #3a3a3a;
}

.is-scrolled .btn-top {
    display: block;
    -webkit-animation: fade-in 0.3s forwards;
            animation: fade-in 0.3s forwards;
}

@-webkit-keyframes delete {
    100% {
        height: 0;
        opacity: 0;
    }
}

@keyframes delete {
    100% {
        height: 0;
        opacity: 0;
    }
}
@-webkit-keyframes delete2 {
    100% {
        width: 0;
        opacity: 0;
    }
}
@keyframes delete2 {
    100% {
        width: 0;
        opacity: 0;
    }
}
.is-deleted {
    overflow: hidden;
    -webkit-animation: delete 0.2s ease-in-out forwards !important;
            animation: delete 0.2s ease-in-out forwards !important;
}
.is-deleted .js-del-item {
    display: none;
}

.is-empty {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 7.375rem 0 0;
    color: #BEBFC9;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    background: url("../img/empty_item.svg") no-repeat 50% 0;
    background-size: 6.0625rem auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.page {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #F6F8FA;
}

.page-content {
    position: relative;
    padding: 140px 0 80px;
}

.section {
    background: #fff;
}
.section.bg-gray {
    background: #F6F8FA;
}

.item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 20px 0;
}
.item-info a:focus {
    text-decoration: underline;
}
.item-info.angle-link {
    padding-left: 24px;
    padding-right: 46px;
}
.person.angle-link {
    background-position: calc(100% - 18px) 36%;
}

.item-info .thumb-wrap {
    position: relative;
}
.item-info .recomm-badge {
    padding: 0 6px;
    font-size: 11px;
}
.item-info .thumb {
    position: relative;
    width: 80px;
    height: 0;
    padding: 100% 0 0;
    background: #F7F7F7;
    overflow: hidden;
}
.item-info .thumb img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-height: 100%;
    border-radius: inherit;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.item-info .btn-bookmark {
    width: 24px;
    height: 24px;
}
.item-info .btn-bookmark:before {
    border-top: 44px solid #fff;
    border-left: 44px solid transparent;
    left: -21px;
}
.item-info .btn-bookmark:after {
    top: 0;
    right: 0;
    width: 24px; /*13px*/
    height: 24px; /*12px*/
    background-image: url("../img/ic_bookmark2_off.svg");
}
.item-info .btn-bookmark.on:after {
    background-image: inherit;
}
.item-info .star-rating {
    margin: 5px auto 0;
}
.item-info .content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-width: 0;
    padding: 0 0 0 20px;
    font-weight: 400;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    word-break: keep-all;
}
.item-info.sale .content-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.item-info .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    margin: 6px -2px 0 0;
    font-size: 13px;
    color: #777;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.item-info .meta:last-child {
    margin-top: 0;
}
.item-info .meta.top {
    margin-top: 0;
}
.item-info .meta > * {
    min-width: 0;
    max-width: 100%;
    margin-right: 4px;
}
.item-info .category-label {
    height: 16px;
}
.item-info .area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.item-info .meta .loc {
    padding-left: 14px;
    font-weight: 400;
    letter-spacing: 0;
    background: url("../img/ic_meta_loc.svg") no-repeat 0 0;
    background-size: 11px auto;
}
.item-info .type {
    font-size: 13px;
    color: #777;
}
.item-info .type em {
    font-style: normal;
    color: #1B9D7D;
}
.item-info .title {
    margin: 4px 0 6px;
    font-size: 14px;
    font-weight: 700;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.item-info .title a:hover {
    text-decoration: underline;
}
.item-info.sale .title {
    margin: 0;
}
.item-info .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 7px 0 5px;
}
.item-info .title-wrap .title {
    max-width: 40%;
    margin: 0;
}
.item-info .title-wrap .meta {
    margin: 1px 0 0 6px;
}
.item-info .title-wrap + .meta {
    margin-top: 0;
}
.item-info .star-rating {
    width: 92px; /* 56px; */
    height: 16px; /* 10px; */
    margin: 5px auto 0;
}
.item-info .hashtag {
    max-height: 20.9px;
    font-size: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.item-info .hashtag .tag {
    margin-bottom: 0;
    padding: 0;
    color: #3A70DB;
    line-height: 1.1;
    background: transparent;
}
.item-info .working-day {
    margin-bottom: 0;
}
.item-info .working-day li {
    margin-bottom: 0;
    font-size: 11px;
}
.item-info .condition {
    margin: 0 0 0 auto;
    font-size: 13px;
    color: #777;
    line-height: 1.1;
    -ms-flex-item-align: center;
        align-self: center;
}
.item-info .condition .period {
    font-size: inherit;
    font-style: normal;
    color: #57CCAF;
}
.item-info .condition .working-time {
    font-size: inherit;
    color: inherit;
}
.item-info .pay {
    margin: -14px 0 0;
    text-align: right;
}
.item-info .period {
    font-size: 13px;
}
.item-info .period em {
    font-style: normal;
    color: #1B9D7D;
}
.item-info .amount {
    margin: 3px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1.1;
}
.item-info .amount .num {
    font-style: normal;
    font-weight: 600;
}
.item-info .price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -6px 3px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.item-info .price-wrap p {
    position: relative;
    margin: 3px 0 0;
    padding: 0 6px;
}
.item-info .price-wrap .amount:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 8px;
    margin: -4px 0 0;
    border-right: 1px solid #BEBFC9;
}
.item-info .date {
    font-size: 13px;
    color: #999;
    letter-spacing: 0;
}
.item-info .btn-line {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    padding: 3px;
    font-size: 12px;
    color: #707070;
    text-align: center;
    vertical-align: top;
    border-radius: 5px;
    border: 1px solid;
    background: #fff;
}
.item-info .btn-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.item-info.colgroup > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.item-info.colgroup .content-wrap {
    padding-left: 35px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.item-info.colgroup .category-label {
    height: 26px;
}
.item-info.colgroup .title {
    margin: 9px 0 5px;
    font-size: 20px;
}
.item-info.colgroup .title-wrap .title {
    margin: 0;
}
.item-info.colgroup .meta {
    font-size: inherit;
}
.item-info.colgroup .type {
    font-size: inherit;
}
.item-info.colgroup .area {
    width: 24.64%;
    font-size: 18px;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24.64%;
            flex: 0 0 24.64%;
}
.item-info.colgroup .meta .area {
    width: auto;
    font-size: inherit;
    text-align: inherit;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
}
.item-info.colgroup .pay {
    width: 22.5%;
    margin: 0;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22.5%;
            flex: 0 0 22.5%;
}
.item-info.colgroup .pay:last-child {
    text-align: right;
}
.item-info.colgroup .period {
    font-size: 18px;
}
.item-info.colgroup .amount {
    font-size: 22px;
}
.item-info.colgroup .form-checkbox .label {
    margin: 0;
}
.item-info.colgroup .hashtag {
    width: 26%;
    max-height: none;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.item-info.colgroup .hashtag .tag {
    max-width: 50%;
    margin: 0;
    padding: 0 9px;
    font-size: 18px;
}
.item-info.colgroup .working-day {
    margin-right: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
}
.item-info.colgroup .working-day li {
    font-size: 18px;
}
.item-info.colgroup .regdate {
    color: #999;
    letter-spacing: 0;
}

.error-msg {
    margin: 36px 0;
    text-align: center;
}
.error-msg .sign {
    margin: 0 auto 19px;
}
.error-msg .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3888888889;
}
.error-msg .title em {
    font-style: normal;
    color: #1B9D7D;
}
.error-msg .desc {
    margin: 19px 0 0;
}

/* #Pages */
/* 로그인 */
.page-login .page-content {
    padding: 184px 0;
}

.login-form {
    position: relative;
    width: 82.1428571429%;
    max-width: 1150px;
    min-height: 520px;
    margin: 0 auto;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}
.login-form .title-logo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 48.173913%;
    background: #000 url("../img/login_bg.jpg") no-repeat 50% 50%;
    background-size: cover;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.login-form .title-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48.7364620939%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
            transform: translate(-50%, -50%) translateZ(0);
}
.login-form .form-container {
    margin: 0 0 0 48.173913%;
    padding: 80px 8.0869565217% 70px;
}
.login-form .form-row {
    margin: 38px 0 25px;
}
.login-form .form-row:first-child {
    margin-top: 0;
}
.ico-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 36px;
    font-size: 1px;
    color: transparent;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-position: 14px 0;
    background-size: 18px auto;
    overflow: hidden;
}
.ico-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    right: 0;
    width: 1px;
    height: 17px;
    background: #E5E5E5;
}
.ico-label.email {
    background-image: url("../img/ic_login_email.svg");
}
.ico-label.pwd {
    background-image: url("../img/ic_login_pwd.svg");
}
.ico-label.phone {
    background-image: url("../img/ic_login_phone.svg");
}
.ico-label.authcode {
    background-image: url("../img/ic_login_code.svg");
}

.login-form .title-wrap {
    margin: 0 0 54px;
    text-align: center;
}
.login-form .secondary-title {
    font-size: 22px;
    margin-bottom: 0;
}
.login-form .desc {
    margin: 8px 0 0;
}
.login-form .desc em {
    font-style: normal;
    color: #57CCAF;
}
.login-form .form-text {
    height: 36px;
    padding: 0 15px 16px 60px;
    border-color: #D1D1D1;
}
.login-form .form-text:focus {
    border-color: #57CCAF;
}
.login-form .help-msg {
    margin-left: 64px;
}
.login-form .btn-primary {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 100px;
}
.login-form .btn-find {
    width: 49.14004914%;
    margin: 46px auto 0;
    font-size: 16px;
}
.login-form .account-menu {
    margin: 14px 0 0;
    line-height: 1;
    list-style: none;
    text-align: center;
}
.login-form .account-menu li {
    display: inline-block;
    padding: 0 9px;
    font-size: 0.875rem;
    line-height: 1.1;
    vertical-align: top;
}
.login-form .account-menu a:hover, .login-form .account-menu a:focus {
    text-decoration: underline;
}

.vendor-login {
    margin: 37px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid #EFEFEF;
}
.vendor-login:after {
    content: "";
    display: table;
    clear: both;
}
.vendor-login .title {
    margin: 0 0 13px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}
.vendor-login .btn {
    display: block;
    width: calc(50% - 5px);
    padding: 14px 17px 13px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 100px;
    text-align: center;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    float: left;
}
.vendor-login .btn:before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 31px;
    margin: -3px 4px 0 0;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}
.vendor-login .btn:hover, .vendor-login .btn:focus {
    -webkit-box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}
.vendor-login .btn + .btn {
    margin-left: 10px;
}
.vendor-login .vendor-type1 {
    color: inherit;
    background-color: #F9E000;
}
.vendor-login .vendor-type1:before {
    background-image: url("../img/ic_login_kakao.png");
}
.vendor-login .vendor-type2 {
    background-color: #161616;
}
.vendor-login .vendor-type2:before {
    background-image: url("../img/ic_login_apple.png");
}

/* 아이디, 비밀번호 찾기 */
.page-find-account .page-content {
    background: #fff;
}
.page-find-account .primary-title {
    margin: 5.375rem 0;
}
.page-find-account .form-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.page-find-account .form-text {
    font-size: 0.9375rem;
}
.page-find-account form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* 회원가입 */
.page-member-type .page-content {
    padding-top: 200px;
    padding-bottom: 300px;
}
.page-member-type .title-logo {
    width: 243px;
    margin: 0 auto 60px;
}
.page-member-type .form-container {
    max-width: 442px;
    margin: 0 auto;
}
.page-member-type .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.page-member-type .form-toggle-btn {
    width: 50%;
    padding: 0 10px;
    float: left;
}
.page-member-type .form-toggle-btn .btn {
    padding: 36px 0 46px;
    font-size: 15px;
    color: #888;
    letter-spacing: 0;
    border-radius: 20px;
}
.page-member-type .form-toggle-btn .ico {
    display: block;
    width: 47px;
    height: 55px;
    margin: 0 auto 24px;
    border-radius: 0;
    border: 0;
}
.page-member-type .form-toggle-btn .ico:before {
    background-size: contain;
}
.page-member-type .form-toggle-btn .member-type1 {
    background-image: url("../img/ic_mtype1.svg");
}
.page-member-type .form-toggle-btn .member-type1:before {
    background-image: url("../img/ic_mtype1_on.svg");
}
.page-member-type .form-toggle-btn .member-type2 {
    background-image: url("../img/ic_mtype2.svg");
}
.page-member-type .form-toggle-btn .member-type2:before {
    background-image: url("../img/ic_mtype2_on.svg");
}
.page-member-type .form-toggle-btn strong {
    display: block;
    margin: 4px 0 0;
    font-size: 1.3333333333em;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.05em;
}
.page-member-type .form-toggle-btn input:checked ~ .btn {
    color: #fff;
    border-color: transparent;
    background-color: #57CCAF;
}
.page-member-type .form-toggle-btn input:checked ~ .btn strong {
    color: inherit;
}
.page-member-type .caution-msg {
    margin: 27px 0 0;
    font-size: 15px;
    letter-spacing: 0;
    text-align: center;
}
.page-member-type .caution-msg em {
    font-style: normal;
    color: #57CCAF;
}

.join-step1 {
    max-width: 575px;
    margin: 0 auto;
}

.join-auth {
    padding: 0 0 36px;
    margin: 0 0 36px;
    text-align: center;
    border-bottom: 1px solid #D8D8D8;
}
.join-auth .title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}
.join-auth .desc {
    line-height: 1.5625;
}
.join-auth .btn-primary {
    margin: 20px auto 0;
    padding: 20px 98px;
    font-size: 20px;
}

.account-list {
    list-style: none;
    border-top: 1px solid #D8D8D8;
}
.account-list > li {
    border-bottom: 1px solid #D8D8D8;
}
.account-list .angle-link {
    padding: 20px 76px 20px 34px;
    background-image: url("../img/ic_angle_link_lg.svg");
    background-position: calc(100% - 34px) 50%;
    background-size: 11px auto;
}
.account-list .meta {
    display: block;
    font-size: 15px;
    line-height: 1.1;
}
.account-list .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
}

.account-info-form {
    max-width: 420px;
    margin: 0 auto;
}
.account-info-form .title {
    margin: 0 0 32px;
    font-size: 24px;
    text-align: center;
}
.account-info-form .title em {
    font-style: normal;
    color: #1B9D7D;
}
.account-info-form .form-fieldset {
    margin-top: 40px;
}
.account-info-form .form-text {
    background-color: inherit;
}

.join-step1 .account-info-form {
    max-width: none;
}
.join-step1 .account-info-form .title {
    margin-bottom: 50px;
}
.join-step1 .account-info-form .form-text {
    margin-top: 0;
}

.btn-auth {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.join-step2 {
    max-width: 448px;
    margin: 0 auto;
}
.join-step2 .secondary-title {
    margin-bottom: 32px;
    font-size: 24px;
}
.join-step2 .section {
    margin-bottom: 32px;
    background: inherit;
}
.join-step2 .section:last-child {
    margin-bottom: 0;
}
.join-step2 .form-checkbox {
    margin-top: 18px;
    margin-bottom: 18px;
}

.first-title {
    margin: 0 0 0 -80.3571428571%;
    padding: 0 0 11px;
    font-size: 25px;
    line-height: 1;
    border-bottom: 2px solid;
    float: left;
}

.find-loc-form .form-text {
    font-size: 18px;
    font-weight: 700;
}

.btn-find-loc {
    display: block;
    width: 100%;
    margin: 32px 0 27px;
    padding: 12px 0 14px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 5px;
}
.btn-find-loc:before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    margin: -2px 8px 0 0;
    vertical-align: middle;
    background: url("../img/ic_find_loc.svg") no-repeat 0 0;
    background-size: contain;
}

.tip {
    border-top: 1px solid #DCDCDC;
    padding: 27px 0 0;
    font-size: 14px;
    line-height: 1.6071428571;
}
.tip .title {
    font-weight: 700;
}
.tip dl {
    margin: 15px 0;
}
.tip dt {
    font-weight: 700;
}
.tip dd + dt {
    margin-top: 14px;
}
.tip .desc {
    font-size: 13px;
    color: #777;
    line-height: 1.3461538462;
}

.post-list {
    list-style: none;
}
.post-list:after {
    content: "";
    display: table;
    clear: both;
}

.post-item {
    margin: 0 0 27px;
}
.post-item:last-child {
    margin-bottom: 0;
}

.post-info .btn {
    display: inline;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
    vertical-align: top;
}
.post-info .btn:active {
    text-decoration: underline;
}
.post-info .post-code {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1.1;
}
.post-info .address dt {
    display: block;
    min-width: 3.4615384615em;
    padding: 0 4px;
    font-size: 13px;
    color: #1B9D7D;
    line-height: 1.6923076923;
    text-align: center;
    white-space: nowrap;
    border: 1px solid;
    clear: both;
    float: left;
}
.post-info .address dd {
    margin: 0 0 3px 53px;
    font-size: 15px;
    line-height: 1.6;
    word-break: keep-all;
}

.terms-list .list > li {
    border-color: #BEBFC9;
}
.terms-list .list > li:first-child {
    border-top: 1px solid #BEBFC9;
}
.terms-list .form-checkbox {
    float: left;
}
.terms-list a span {
    -webkit-text-decoration: 1px underline;
            text-decoration: 1px underline;
}
.terms-list em {
    color: #F86048;
    font-style: normal;
}
.terms-list small {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
}

.layer-popup[id*=termsPopup] .popup-container {
    width: 500px;
}
.layer-popup[id*=termsPopup] .popup-content {
    height: 453px;
    padding: 40px 40px 32px 32px;
}
.layer-popup[id*=termsPopup] .terms-title {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
}
.layer-popup[id*=termsPopup] .terms-wrap {
    letter-spacing: 0;
}

.added-form {
    position: relative;
    padding: 12px 84px 13px 11px;
    border: 1px solid #57CCAF;
    background: #fff;
}
.added-form .form-group {
    margin: 0;
}
.added-form .col + .col:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 1em;
    margin: -0.5em 0 0;
    background: #57CCAF;
}
.added-form .form-text {
    height: 40px;
    padding: 0;
    font-size: 1em;
    text-align: inherit;
    border: 0;
}
.added-form .num {
    color: #aaa;
    letter-spacing: 0;
}
.added-form .form-selectbox {
    width: 130px;
    min-height: 40px;
    text-align: left;
}
.added-form .form-selectbox .liner {
    padding: 0 34px 0 0;
    font-size: 1em;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 2.5;
    border: 0;
    background-image: url("../img/ic_caret_gr.svg");
}
.added-form .btn-add-item {
    position: absolute;
    top: 12px;
    right: 11px;
    width: 60px;
    height: 40px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    border: 0;
    border-radius: 5px;
    background: #1B9D7D;
}

.added-list {
    margin: 0 0 10px;
    list-style: none;
}
.added-list > li {
    position: relative;
    margin: 10px 0 0;
}
.added-list .form-group {
    position: relative;
    margin: 0;
    padding: 12px 84px 13px 11px;
    border: 1px solid #57CCAF;
    background: #fff;
}
.added-list .form-group .col + .col:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 1em;
    margin: -0.5em 0 0;
    background: #57CCAF;
}
.added-list .form-text {
    min-width: 130px;
    height: 40px;
    padding: 0;
    font-size: 1em;
    color: inherit;
    text-align: inherit;
    border: 0;
}
.added-list .txt-color2 {
    font-weight: 700;
}
.added-list .num {
    color: #aaa;
    letter-spacing: 0;
}
.added-list .btn-clear {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 60px;
    height: 40px;
    margin: 0;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    border: 0;
    border-radius: 5px;
    background: #BEBFC9;
}

.layer-popup[id*=agreementPopup] .popup-container {
    width: 500px;
}
.layer-popup[id*=agreementPopup] .popup-content {
    padding: 60px 42px 32px;
}
.layer-popup[id*=agreementPopup] .title {
    margin: 0 0 30px;
    font-size: 20px;
    text-align: center;
}
.layer-popup[id*=agreementPopup] .title em {
    font-style: normal;
    color: #57CCAF;
}

.agreement-form {
    padding: 182px 0 0;
    line-height: 1.5625;
    text-align: center;
    background: url("../img/join_unlegal.svg") no-repeat 50% 0;
    background-size: auto 150px;
}
.agreement-form .headline {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3888888889;
}
.agreement-form .terms-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: underline;
}
.agreement-form .terms-list li {
    float: left;
}
.agreement-form .terms-list li + li {
    margin-left: 20px;
}

.join-step3 {
    clear: both;
}

.skip-tooltip {
    margin: -90px 0 0;
    float: right;
}
.skip-tooltip .action {
    font-size: 20px;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 1;
    text-decoration: underline;
}

.regist-info {
    width: 500px;
    padding: 45px 46px 26px;
    word-break: keep-all;
}
.regist-info .name {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.1;
}
.regist-info .pay {
    color: #1B9D7D;
    font-weight: 700;
    line-height: 1.75;
}
.regist-info .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.regist-info .meta-wrap .hashtag {
    margin-top: 0;
    margin-left: 14px;
}
.regist-info .meta-wrap .tag {
    margin-bottom: 0;
}
.regist-info table {
    margin: 13px 0 0;
    border: hidden;
}
.regist-info td {
    padding: 10px 0;
}
.regist-info .label {
    width: 90px;
    vertical-align: top;
}
.regist-info .value {
    padding: 5px 0;
    font-weight: 500;
    vertical-align: middle;
}
.regist-info .value[colspan] {
    padding: 0;
}
.regist-info .category-label {
    height: 18px;
}
.regist-info .pic-card {
    width: calc(33.3% - 10px);
    margin: 4px 10px 0 0;
    padding-top: calc(33.3% - 10px);
    float: left;
}
.regist-info .currency {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
}
.regist-info .hashtag {
    margin: 3px 0 0;
}
.regist-info .benefit-group .item {
    width: 33.3%;
}

.period-list {
    padding: 4px 0;
    list-style: none;
}
.period-list > li {
    padding: 15px 0;
}
.period-list > li:first-child {
    padding-top: 0;
}
.period-list span {
    display: block;
    position: relative;
    margin: 0 0 4px;
    float: left;
}
.period-list span:first-child:after {
    content: "|";
    margin: 0 0.5em;
    font-size: 0.9em;
}
.period-list em {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #777;
    letter-spacing: 0;
    line-height: 1;
    clear: both;
}

.file-download {
    display: inline-block;
    padding: 0 0 0 24px;
    color: #3A70DB;
    letter-spacing: 0;
    text-decoration: underline;
    vertical-align: middle;
    word-break: break-all;
    background: url("../img/ic_download.svg") no-repeat 0 0;
    background-size: 20px auto;
}

.info-table {
    font-size: 14px;
    line-height: 1.4285714286;
    word-break: keep-all;
    table-layout: fixed;
}
.info-table .label {
    width: 4.6428571429em;
    padding: 4px 0;
    vertical-align: top;
}
.info-table .value {
    padding: 3px 0 3px 3px;
    font-weight: 500;
    vertical-align: top;
}
.info-table .category-label {
    height: 1.1428571429em;
    margin-left: -4px;
    margin-right: 6px;
    vertical-align: text-bottom;
}
.info-table .category-label:first-child {
    margin-left: 0;
}
.info-table .pay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #1B9D7D;
}
.info-table .pay .amount {
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
}
.info-table .time {
    letter-spacing: 0;
}
.info-table .working-time {
    color: #1B9D7D;
}
.info-table .summary {
    display: -webkit-box;
    max-height: 5.7142857143em;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.join-welcome {
    width: 100%;
    margin: 20px 0 40px;
    padding: 320px 0 0;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
    background: url("../img/join_finish.svg") no-repeat 50% 0;
    background-size: auto 280px;
}
.join-welcome .primary-title {
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1.1;
}
.join-welcome .btn-round {
    padding: 18px 62px;
}

.advantage-form {
    margin: 27px 0 0;
}
.advantage-form .form-group {
    margin-top: 12px;
}

/* 메인 */
.page-home .page-content {
    padding: 0;
}
.page-home .section {
    padding-top: 100px;
}
.page-home .primary-title {
    margin-bottom: 34px;
    text-align: left;
}
.page-home .container {
    position: relative;
}

.section-headline {
    margin: 0 0 70px;
}
.section-headline .primary-title {
    margin-bottom: 12px;
    text-align: center;
}
.section-headline .desc {
    font-size: 18px;
    color: #646464;
    text-align: center;
}

.main-visual {
    position: relative;
    height: 635px;
    padding: 138px 0 68px;
    background: #000;
    overflow: hidden;
}
.main-visual > .container {
    position: static;
}
.main-visual .thumb-list {
    width: 26.7857142857%;
    height: 400px;
    padding: 0 19px 0 0;
    z-index: 1;
}
.main-visual .visual-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.main-visual .visual-slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 1920px;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.thumb-list .list-item {
    padding: 10px 30px 10px 20px;
    cursor: pointer;
}
.thumb-list .list-item:hover .title {
    text-decoration: underline;
}
.thumb-list .active {
    -webkit-box-shadow: inset 0 0 0 1px #fff;
            box-shadow: inset 0 0 0 1px #fff;
}
.thumb-list .thumb {
    position: relative;
    width: 60px;
    height: 0;
    margin: 0 15px 0 0;
    padding: 19.5439739414% 0 0;
    border-radius: 5px;
    background: #000;
    overflow: hidden;
}
.thumb-list .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: none;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 70%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.thumb-list .active .thumb img {
    opacity: 1;
}
.thumb-list .title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-weight: 700;
    color: #fff;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.visual-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.visual-slider .keen-slider__slide {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}
.visual-slider .active {
    opacity: 1;
    z-index: 1;
}
.visual-slider .visual-content {
    position: relative;
    margin: 0 0 0 26.78571%;
    padding: 175px 30px 68px 48px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    word-break: keep-all;
    z-index: 1;
}
.visual-slider .container {
    height: 100%;
}
.visual-slider .title {
    margin: 18px 0 0;
    font-size: 2.5555555556em;
    font-weight: 700;
    line-height: 1.3043478261;
}
.visual-slider .title:first-child {
    margin-top: 0;
}
.visual-slider .desc {
    margin: 20px 0 0;
    font-size: 0.8888888889em;
}
.visual-slider .btn {
    display: inline-block;
    min-width: 7.7777777778em;
    margin: 30px 0 0;
    font-weight: 700;
    line-height: 2.5;
    vertical-align: top;
    border: 1px solid #fff;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}
.visual-slider .btn:hover, .visual-slider .btn:focus {
    color: #57CCAF;
    background-color: #fff;
}
.visual-slider img {
    display: block;
    object-fit: cover;
}

.job-categories {
    margin: 0 -10px -25px;
    list-style: none;
    font-size: 0;
    text-align: center;
    overflow: hidden;
}
.job-categories li {
    display: inline-block;
    margin: 0 10px 25px;
    font-size: 1rem;
    vertical-align: top;
}
.job-categories a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 200px;
    height: 110px;
    font-size: 22px;
    color: #fff;
    line-height: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-radius: 20px;
    background: #000;
    overflow: hidden;
    z-index: 1;
}
.job-categories a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.35;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.7s;
    transition: -webkit-transform 0.7s;
    -o-transition: transform 0.7s;
    transition: transform 0.7s;
    transition: transform 0.7s, -webkit-transform 0.7s;
    z-index: -1;
}
.job-categories a:hover:before {
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
}
.job-categories a:focus {
    text-decoration: underline;
}
.job-categories .job-category1:before {
    background-image: url("../img/main/main_job_thumb1.jpg");
}
.job-categories .job-category2:before {
    background-image: url("../img/main/main_job_thumb2.jpg");
}
.job-categories .job-category3:before {
    background-image: url("../img/main/main_job_thumb3.jpg");
}
.job-categories .job-category4:before {
    background-image: url("../img/main/main_job_thumb4.jpg");
}
.job-categories .job-category5:before {
    background-image: url("../img/main/main_job_thumb5.jpg");
}
.job-categories .job-category6:before {
    background-image: url("../img/main/main_job_thumb6.jpg");
}
.job-categories .job-category7:before {
    background-image: url("../img/main/main_job_thumb7.jpg");
}
.job-categories .job-category8:before {
    background-image: url("../img/main/main_job_thumb8.jpg");
}
.job-categories .job-category9:before {
    background-image: url("../img/main/main_job_thumb9.jpg");
}
.job-categories .job-category10:before {
    background-image: url("../img/main/main_job_thumb10.jpg");
}
.job-categories .job-category11:before {
    background-image: url("../img/main/main_job_thumb11.jpg");
}

.main-category .primary-title {
    margin-bottom: 44px;
    font-size: 28px;
    text-align: center;
}

.recruit-card {
    position: relative;
    width: calc(100% - 20px);
    margin: 0 20px 0 0;
}
.recruit-card .btn-bookmark {
    z-index: 2;
}
.recruit-card .thumb {
    position: relative;
    width: 100%;
    padding: 123.2911392405% 0 0;
    border-radius: 10px;
    background: #f0f0f0;
    overflow: hidden;
}
.recruit-card .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.recruit-card .thumb-wrap {
    position: relative;
}
.recruit-card .thumb-wrap .recomm-badge {
    top: 12px;
    left: 12px;
}
.recruit-card .thumb-wrap .thumb {
    padding-top: 69.696969697%;
}
.recruit-card .content-wrap {
    position: relative;
    padding: 20px 0 0;
}
.recruit-card .category-label {
    margin-right: 7px;
}
.recruit-card .area {
    font-size: 18px;
    color: #494A4A;
    word-break: keep-all;
}
.recruit-card .title {
    margin: 8px 0;
    font-size: 20px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.recruit-card .title a:hover, .recruit-card .title a:focus {
    text-decoration: underline;
}
.recruit-card .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 19.1666666667em;
    font-size: 12px;
    text-align: center;
}
.recruit-card .meta p {
    position: relative;
    padding: 0 7px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.recruit-card .meta p:first-child {
    padding-left: 0;
    text-align: left;
}
.recruit-card .meta p:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    margin: -4px 0 0;
    background: #E1E1E1;
}
.recruit-card .meta p:last-child:after {
    content: none;
}
.recruit-card .type em {
    font-style: normal;
    font-weight: 500;
    color: #1B9D7D;
}
.recruit-card .price-wrap {
    margin: -13px 0 0;
    font-size: 14px;
    text-align: right;
}
.recruit-card .amount {
    margin: 4px 0 0;
    font-size: 1.4285714286em;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
}
.recruit-card .amount em {
    margin: 0 4px 0 0;
    font-style: normal;
}
.recruit-card .hashtag {
    display: block;
    margin: 14px 0 0;
    padding: 15px 0 0;
    font-size: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    border-top: 1px solid #000;
    overflow: hidden;
}
.recruit-card .tag {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 0 12px;
    font-size: 14px;
    color: #1B9D7D;
    line-height: 2;
    text-align: center;
    vertical-align: top;
    border-radius: 100px;
    background: rgba(49, 161, 130, 0.15);
}
.recruit-card .tag:last-child {
    margin-right: 0;
}
.recruit-card.category1 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(58, 112, 219, 0)), color-stop(70%, rgb(58, 112, 219)), to(rgb(58, 112, 219)));
    background: -o-linear-gradient(top, rgba(58, 112, 219, 0) 40%, rgb(58, 112, 219) 70%, rgb(58, 112, 219) 100%);
    background: linear-gradient(to bottom, rgba(58, 112, 219, 0) 40%, rgb(58, 112, 219) 70%, rgb(58, 112, 219) 100%);
}
.recruit-card.category2 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(49, 161, 130, 0)), color-stop(70%, rgb(49, 161, 130)), to(rgb(49, 161, 130)));
    background: -o-linear-gradient(top, rgba(49, 161, 130, 0) 40%, rgb(49, 161, 130) 70%, rgb(49, 161, 130) 100%);
    background: linear-gradient(to bottom, rgba(49, 161, 130, 0) 40%, rgb(49, 161, 130) 70%, rgb(49, 161, 130) 100%);
}
.recruit-card.category3 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(220, 123, 25, 0)), color-stop(70%, rgb(220, 123, 25)), to(rgb(220, 123, 25)));
    background: -o-linear-gradient(top, rgba(220, 123, 25, 0) 40%, rgb(220, 123, 25) 70%, rgb(220, 123, 25) 100%);
    background: linear-gradient(to bottom, rgba(220, 123, 25, 0) 40%, rgb(220, 123, 25) 70%, rgb(220, 123, 25) 100%);
}
.recruit-card.category4 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(154, 102, 225, 0)), color-stop(70%, rgb(154, 102, 225)), to(rgb(154, 102, 225)));
    background: -o-linear-gradient(top, rgba(154, 102, 225, 0) 40%, rgb(154, 102, 225) 70%, rgb(154, 102, 225) 100%);
    background: linear-gradient(to bottom, rgba(154, 102, 225, 0) 40%, rgb(154, 102, 225) 70%, rgb(154, 102, 225) 100%);
}
.recruit-card.category5 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(75, 200, 191, 0)), color-stop(70%, rgb(75, 200, 191)), to(rgb(75, 200, 191)));
    background: -o-linear-gradient(top, rgba(75, 200, 191, 0) 40%, rgb(75, 200, 191) 70%, rgb(75, 200, 191) 100%);
    background: linear-gradient(to bottom, rgba(75, 200, 191, 0) 40%, rgb(75, 200, 191) 70%, rgb(75, 200, 191) 100%);
}
.recruit-card.category6 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(223, 134, 147, 0)), color-stop(70%, rgb(223, 134, 147)), to(rgb(223, 134, 147)));
    background: -o-linear-gradient(top, rgba(223, 134, 147, 0) 40%, rgb(223, 134, 147) 70%, rgb(223, 134, 147) 100%);
    background: linear-gradient(to bottom, rgba(223, 134, 147, 0) 40%, rgb(223, 134, 147) 70%, rgb(223, 134, 147) 100%);
}
.recruit-card.category7 .content-wrap {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(97, 196, 123, 0)), color-stop(70%, rgb(97, 196, 123)), to(rgb(97, 196, 123)));
    background: -o-linear-gradient(top, rgba(97, 196, 123, 0) 40%, rgb(97, 196, 123) 70%, rgb(97, 196, 123) 100%);
    background: linear-gradient(to bottom, rgba(97, 196, 123, 0) 40%, rgb(97, 196, 123) 70%, rgb(97, 196, 123) 100%);
}

.main-recruit {
    overflow: hidden;
}

.recruit-recomm {
    /* 20231005 수정 */
    margin: 0 0 -20px;
}
.recruit-recomm .slider-wrap {
    /* 20231005 수정 */
    overflow: hidden;
}
.recruit-recomm .keen-slider__slide {
    opacity: 1;
    backface-visibility: hidden;
}
.recruit-recomm .active {
    opacity: 1;
}
.recruit-recomm .arrow {
    /* 20231005 수정 */
    position: absolute;
    top: 50%;
    left: 26px;
    width: 90px;
    height: 80px;
    margin: 40px 0 0;
    border: 0;
    background: url("../img/main/main_slider2_prev.svg") no-repeat 0 50%;
    background-size: 46px auto;
    z-index: 1;
}
.recruit-recomm .arrow--right {
    /* 20231005 수정 */
    left: auto;
    right: 26px;
    background-image: url("../img/main/main_slider2_next.svg");
    background-position: 100% 50%;
}
.recruit-recomm .recruit-card {
    /* width: calc(33.3% - 18px); */
    width: calc(25% - 18px);
    margin: 0 18px 20px 0;
    float: left;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.recruit-recomm .recruit-card:nth-child(4n+1) { /* 3n+1 */
    clear: both;
}
.recruit-recomm .recruit-card .content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 23px;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}
.recruit-recomm .recruit-card .recomm-badge {
    position: static;
    top: 0;
    left: 0;
    margin-top: 1px;
    margin-right: 7px;
}
.recruit-recomm .recruit-card .category-label {
    border: 1px solid #fff;
}
.recruit-recomm .recruit-card .area {
    color: inherit;
    font-weight: 700;
}
.recruit-recomm .recruit-card .title {
    margin: 13px 0 15px;
    font-size: 22px;
}
.recruit-recomm .recruit-card .meta {
    max-width: 15.625em;
    font-size: 1em;
}
.recruit-recomm .recruit-card .meta p:after {
    height: 11px;
    opacity: 0.3;
    background: #E9E9E9;
}
.recruit-recomm .recruit-card .type em {
    font-weight: 700;
    color: #FFF700;
}
.recruit-recomm .recruit-card .price-wrap {
    margin-top: -15px;
}
.recruit-recomm .recruit-card .amount {
    font-size: 1.7142857143em;
    color: #FFF700;
}
.recruit-recomm .recruit-card .hashtag {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.recruit-recomm .recruit-card .tag {
    margin: 0 8px 0 0;
    font-size: 15px;
    color: inherit;
    line-height: 2.1333333333;
    background: rgba(255, 255, 255, 0.3);
}

.main-person .btn-view-all {
    top: 38px;
}

.person-recomm {
    margin: 0 -20px 0 0;
    overflow: hidden;
}
.person-recomm .keen-slider__slide {
    width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.person-recomm .arrow {
    position: absolute;
    top: 50%;
    left: 76px;
    width: 40px;
    height: 40px;
    margin: 50px 0 0;
    border: 0;
    background: url("../img/main/main_slider3_prev.svg") no-repeat 0 50%;
    background-size: 20px auto;
    z-index: 1;
}
.person-recomm .arrow--right {
    left: auto;
    right: 76px;
    background-image: url("../img/main/main_slider3_next.svg");
    background-position: 100% 50%;
}

.person-card {
    padding: 0 24px 0 0;
}
.person-card .thumb-wrap {
    position: relative;
}
.person-card .recomm-badge {
    top: 10px;
    left: 10px;
    background-color: #57CCAF;
}
.person-card .thumb {
    position: relative;
    padding: 100% 0 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}
.person-card .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.person-card .content-wrap {
    margin: -16px 0 0;
    padding: 46px 20px 24px;
    border-radius: 0 0 16px 16px;
    background: #F9FBFD;
}
.person-card .category {
    margin: 0 0 14px;
    font-size: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
}
.person-card .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.person-card .title {
    max-width: 4.1666666667em;
    margin: 0 12px 0 0;
    font-size: 24px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.person-card .title a:hover, .person-card .title a:focus {
    text-decoration: underline;
}
.person-card .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    text-align: center;
}
.person-card .meta p {
    position: relative;
    width: 25%;
    word-break: keep-all;
    text-align: center;
}
.person-card .meta p:first-child {
    text-align: left;
}
.person-card .meta p:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 13px;
    margin: -6px 0 0;
    background: #e9e9e9;
}
.person-card .meta p:last-child:after {
    content: none;
}
.person-card .national {
    font-size: 17px;
}
.person-card .area {
    margin: 6px 0 0;
    color: #999;
    height: 20px;
}
.person-card .hashtag {
    margin: 12px 0 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 36px;
}
.person-card .tag {
    display: inline;
    margin: 0 8px 0 0;
    padding: 0;
    font-size: 18px;
    color: #3A70DB;
    background: transparent;
}

.company-recomm {
    margin: 0 -23px 0 0;
    padding-bottom: 100px;
    list-style: none;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
}
.company-recomm li {
    display: inline-block;
    width: 14.28571%;
    padding: 0 23px 0 0;
    font-size: 1rem;
    vertical-align: top;
}
.company-recomm .thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding: 77.7777777778% 0 0;
    border: 1px solid #E9E9E9;
    overflow: hidden;
}
.company-recomm .thumb a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.company-recomm .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 80%;
    max-height: 80%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.company-recomm .title {
    margin: 14px 0 0;
    font-weight: 500;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.company-recomm .title a:hover, .company-recomm .title a:focus {
    text-decoration: underline;
}

.market-recomm {
    margin: 0 -40px 0 0;
    padding-bottom: 100px;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
}
.market-recomm .list-item {
    display: inline-block;
    width: 16.66%;
    font-size: 1rem;
    white-space: normal;
    vertical-align: top;
}

.sale-card {
    padding: 0 40px 0 0;
}
.sale-card .thumb-wrap {
    position: relative;
    margin: 0 0 15px;
}
.sale-card .btn-bookmark:before {
    content: none;
}
.sale-card .btn-bookmark:after {
    width: 20px;
    height: 19px;
}
.sale-card .thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding: 100% 0 0;
    background: #f0f0f0;
    overflow: hidden;
}
.sale-card .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.sale-card .title {
    margin: 0 0 7px;
    font-size: 22px;
    font-weight: 500;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sale-card .title strong {
    font-weight: inherit;
}
.sale-card .title a:hover, .sale-card .title a:focus {
    text-decoration: underline;
}
.sale-card .meta {
    font-size: 18px;
    color: #666;
}
.sale-card .area {
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sale-card .price-wrap {
    margin: 6px 0 0;
    font-size: 18px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
}
.sale-card .price-wrap p {
    display: inline-block;
    margin: 0 4px 0 0;
    padding: 0 10px 0 0;
    position: relative;
    vertical-align: top;
}
.sale-card .price-wrap p:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 0.6666666667em;
    margin: -0.3333333333em 0 0;
    opacity: 0.1;
    background: #000;
}
.sale-card .price-wrap p:last-child {
    margin: 0;
    padding: 0;
}
.sale-card .price-wrap p:last-child:after {
    content: none;
}
.sale-card .amount {
    color: #1B9D7D;
    white-space: nowrap;
}
.sale-card .amount em {
    display: block;
    max-width: 4em;
    padding: 0 1px 0 0;
    font-style: normal;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}

.layer-popup[id*=noticePopup] {
    position: absolute;
    right: auto;
    bottom: auto;
    width: 25rem;
    -webkit-backdrop-filter: inherit;
            backdrop-filter: inherit;
    background: transparent;
    overflow: inherit;
    -webkit-animation: none;
            animation: none;
    z-index: 20;
}
.layer-popup[id*=noticePopup]:before {
    content: none;
}
.layer-popup[id*=noticePopup] .popup-container {
    display: block;
    max-width: none;
    margin: 0;
    border-radius: 0;
    -webkit-animation: none;
            animation: none;
}
.layer-popup[id*=noticePopup] .popup-footer .btn {
    border-radius: 0;
}
.layer-popup[id*=noticePopup] .slider-wrap {
    position: relative;
}
.layer-popup[id*=noticePopup] .slider-wrap .dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    line-height: 0;
    text-align: center;
}
.layer-popup[id*=noticePopup] .slider-wrap .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    opacity: 0.3;
    vertical-align: top;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.layer-popup[id*=noticePopup] .slider-wrap .dot:hover,
.layer-popup[id*=noticePopup] .slider-wrap .dot--active {
    opacity: 1;
}

/* 채팅 */
@-webkit-keyframes slide-left {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes slide-left {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
.btn-close-chat {
    display: block;
    position: absolute;
    bottom: 120px;
    right: 12px;
    width: 78px;
    height: 78px;
    opacity: 0;
    visibility: hidden;
    border-radius: 100%;
    border: 0;
    background: #57CCAF url("../img/ic_close_chat.svg") no-repeat 50% 50%;
    background-size: 35.89743% auto;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    z-index: 1;
}
.btn-close-chat.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation: slide-left 0.3s 0.3s both;
            animation: slide-left 0.3s 0.3s both;
}
.btn-close-chat:hover, .btn-close-chat:focus {
    background-color: #38b898;
}

.chat-error {
    width: 450px;
    padding: 75px 0;
    text-align: center;
    border-radius: 30px;
    background: #fff;
}
.chat-error .headline {
    margin: 0 0 30px;
}
.chat-error .headline strong {
    display: block;
    margin: 0 0 10px;
    font-size: 1.5em;
    font-weight: 700;
}
.chat-error .headline span {
    display: block;
}
.chat-error .action-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -3px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.chat-error .btn-round {
    width: 110px;
    height: 40px;
    margin: 0 3px;
    padding: 12px;
}

.chat-empty {
    position: absolute;
    top: 28.518%;
    left: 0;
    right: 0;
    font-size: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}
.chat-empty:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.chat-empty p {
    display: inline-block;
    padding: 138px 0 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    background: url("../img/empty_chat.svg") no-repeat 50% 0;
    background-size: 115px auto;
}

#chatPopup:before {
    content: none;
}
#chatPopup .popup-container {
    position: relative;
    display: block;
    max-width: none;
    margin: -1px 0;
    height: 100%;
    border-radius: 0;
    background: transparent;
    -webkit-animation: none;
            animation: none;
}
#chatPopup .popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 18px;
    bottom: 222px;
    right: 18px;
    margin: 0;
    padding: 0 0 0 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    overflow: visible;
}
#chatPopup.in .popup-content {
    opacity: 1;
    -webkit-animation: slide-left 0.2s 0.2s both;
            animation: slide-left 0.2s 0.2s both;
}

.chat-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    max-height: 604px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.chat-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 345px;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 0 3px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.chat-list-header {
    border-bottom: 1px solid #D1D1D1;
}
.chat-list-header .tabs {
    padding: 0 12px;
}
.chat-list-header .tab {
    padding: 0 12px;
    font-size: 18px;
    color: #999;
}
.chat-list-header .tab span {
    display: block;
    position: relative;
    padding: 22px 0 20px;
}
.chat-list-header .tab span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    border-top: 3px solid #57CCAF;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.chat-list-header .tab:hover, .chat-list-header .tab:focus {
    color: #222;
}
.chat-list-header .on .tab {
    position: relative;
    font-weight: 700;
    color: #222;
}
.chat-list-header .on .tab span:before {
    opacity: 1;
}

.chat-list-body {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    overflow-y: auto;
}
.chat-list-body .tab-panel {
    min-height: 100%;
}
.chat-list-body .list-item {
    position: relative;
    border-bottom: 1px solid #DCDCDC;
}
.chat-list-body .item-info {
    padding-left: 24px;
    padding-right: 24px;
}
.chat-list-body .angle-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-right: 42px;
    background-position: calc(100% - 30px) 50%;
    background: none;
}
.chat-list-body .angle-link::after {
  content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: url('../img/ic_angle_link.svg') no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
    transform-origin: center;
    top: calc(50% - 5px);
    right: 15px;
}
.chat-list-body .angle-link-resume::after {
    transform: rotate(0deg);
}
.chat-list-body .angle-link .thumb {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 0; /* 100%; */
    background: #F7F7F7;
    overflow: hidden;
    float: left;
}
.chat-list-body .angle-link .thumb img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    border-radius: inherit;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.chat-list-body .mid {
    position: relative;
    min-width: 0;
    padding: 0 40px 0 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    pointer-events: none;
}
.chat-list-body .name {
    font-size: 15px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.chat-list-body .latest {
    margin: 3px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.chat-list-body .time {
    margin: 3px 0 0;
    font-size: 11px;
    font-weight: 400;
    color: #ADAEB9;
    letter-spacing: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.chat-list-body .badge {
    position: absolute;
    top: 0;
    right: 0;
}
.btn-del-chat {
    display: block;
    position: absolute;
    top: 11px;
    right: 11px;
    width: 11px;
    height: 11px;
    border: 0;
    background: url("../img/ic_del_chat.svg") no-repeat 0 0;
    background-size: contain;
    z-index: 1;
}

.btn-close-chat-view {
    position: absolute;
    top: 0;
    left: -360px;
    width: 54px;
    height: 65px;
    border-radius: 10px 0 0 10px;
    border: 0;
    background: #31A182 url("../img/ic_collapse.svg") no-repeat 14px 50%;
    background-size: 8px auto;
}
.btn-close-chat-view:hover, .btn-close-chat-view:focus {
    background-color: #40c5a0;
}

.chat-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 365px;
    height: 100%;
    margin: 0 0 0 -20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    background: #fff;
}
.chat-view-header {
    padding: 0 0 0 20px;
}
.chat-view-header .item-info.person {
    padding-top: 18px;
    padding-bottom: 9px;
}
.chat-view .view-title {
    position: relative;
    margin: 0 0 0 -20px;
    padding: 0 1em 0 36px;
    font-weight: 700;
    color: #fff;
    line-height: 2.75;
    text-align: center;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 0 10px 0 0;
    background: #57CCAF;
    overflow: hidden;
}
.chat-view-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 0 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
}
.chat-view-body > .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #F6F6F6;
    overflow: hidden;
    overflow-y: auto;
}
.chat-view .container {
    position: relative;
    padding: 15px 24px;
}
.chat-view .container:after {
    content: "";
    display: table;
    clear: both;
}
.chat-view .write-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
}
.chat-view .write-form form {
    display: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.chat-view .write-form label {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.chat-view .write-form input {
    width: 100%;
    height: 40px;
    padding: 0 26px;
    font-size: 14px;
    border-radius: 60px;
    border: 0;
    background: #F6F6F6;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: 0;
}
.chat-view .write-form .btn-primary {
    width: 65px;
    height: 40px;
    margin: 0 0 0 5px;
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
    line-height: 1;
    border-radius: 60px;
}
.chat-view .btn-round {
    min-width: 84px;
    padding: 12px;
    font-size: 15px;
}
.chat-view .layer-panel {
    border-radius: 0 9px 10px 10px;
    z-index: 2;
}
.chat-view .layer-panel .panel-container {
    border-radius: 10px;
}
.chat-view .layer-panel .panel-container {
    left: 21px;
}

.chat-appointment {
    position: relative;
    border-top: 1px solid #E0E0E0;
}
.chat-appointment .container {
    padding-top: 8px;
    padding-bottom: 8px;
}
.chat-appointment .date {
    padding: 0 8px 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #1B9D7D;
    background: url("../img/ic_appointment_date.svg") no-repeat 0 0;
    background-size: 16px auto;
}
.chat-appointment .date + .btn-round {
    margin-left: auto;
}
.chat-appointment .add-new {
    padding: 2px 0;
    font-size: 14px;
    font-weight: 300;
    color: #1B9D7D;
    text-align: center;
}
.chat-appointment .title:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 14px;
    margin: 2px 4px 0 0;
    vertical-align: top;
    background: url("../img/ic_appointment_date.svg") no-repeat 0 0;
    background-size: contain;
}
.chat-appointment .btn-wrap {
    margin: 7px 0 0;
    text-align: center;
}

.appointment-form {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px 34px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #E0E0E0;
    background: #fff;
    -webkit-box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.1);
    -webkit-animation: fade-in 0.3s linear alternate;
            animation: fade-in 0.3s linear alternate;
    z-index: 2;
}
.appointment-form[hidden] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.appointment-form .container {
    padding: 0;
}
.appointment-form .form-label {
    margin-bottom: 18px;
}
.appointment-form .btn-wrap {
    margin: 20px 0 0;
}

.form-fulldate {
    display: block;
    position: relative;
}
.form-fulldate input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}
.form-fulldate .form-text {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    background: url("../img/ic_caret_sm.svg") no-repeat 100% 45%;
    background-size: 7px auto;
}
.form-fulldate input:focus ~ .form-text {
    border-color: #57CCAF;
    -webkit-box-shadow: 0 2px 0 0 #57CCAF;
            box-shadow: 0 2px 0 0 #57CCAF;
}

.chat-divider {
    position: relative;
    margin: 14px 0;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.3333333333;
    text-align: center;
    z-index: 1;
    clear: both;
}
.chat-divider:before, .chat-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(50% - 45px);
    border-top: 1px solid;
}
.chat-divider:after {
    left: auto;
    right: 0;
}
.chat-divider:first-child {
    margin-top: 0;
}

.chat-bubble {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 0 5px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.chat-bubble.diff {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.chat-bubble:not(.diff) + .diff, .diff + .chat-bubble:not(.diff) {
    margin-top: 20px;
}
.chat-bubble .bubble-content {
    position: relative;
    width: 176px;
    min-height: 64px;
    margin: 0 8px 0 0;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4285714286;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    word-break: keep-all;
    border-radius: 8px;
    background: #FF6D6D;
}
.chat-bubble .bubble-content:before {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: -7px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right: 0;
    border-left: 8px solid #FF6D6D;
}
.chat-bubble.diff .bubble-content {
    margin-right: 0;
    margin-left: 8px;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    background-color: #31A182;
}
.chat-bubble.diff .bubble-content:before {
    right: auto;
    left: -7px;
    border-left: 0;
    border-right: 8px solid #31A182;
}
.chat-bubble .meta {
    margin: 0 12px;
    font-size: 11px;
    color: #ADAEB9;
    letter-spacing: 0;
    white-space: nowrap;
}

.chat-alert {
    margin: 14px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 1.4285714286;
    text-align: center;
    word-break: keep-all;
    border: 1px solid #57CCAF;
    border-radius: 5px;
    background: #E8FFF9;
    overflow: hidden;
}
.chat-alert .content {
    padding: 18px 24px;
}
.chat-alert .alert-footer {
    margin: -10px 0 0;
    padding: 0 24px 18px;
}
.chat-alert .alert-footer-bar {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    background: #57CCAF;
}
.chat-alert .call:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -2px 0 0 8px;
    vertical-align: middle;
    border-radius: 100%;
    border: 1px solid #fff;
    background: url("../img/ic_profile_phone.svg") no-repeat 50% 50%;
    background-size: 9px auto;
}
.chat-alert .call a {
    text-decoration: underline;
}

.chat-notify {
    margin: 13px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1B9D7D;
    line-height: 1.3571428571;
    text-align: center;
    word-break: keep-all;
    clear: both;
}
.chat-notify:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -2px 4px 0 -24px;
    vertical-align: middle;
    background: url("../img/ic_help_info.svg") no-repeat 0 0;
    background-size: contain;
}

.view-all {
    display: inline-block;
    margin: 20px 0 0;
    font-size: 14px;
    text-align: right;
    vertical-align: top;
}
.view-all:before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 10px;
    margin: -2px 4px 0;
    vertical-align: middle;
    background: url("../img/ic_db_angle.svg") no-repeat 0 0;
    background-size: contain;
}
.view-all:focus, .view-all:active {
    text-decoration: underline;
}

.recruit-period {
    margin: 0 0 4px;
    padding: 0 0 0 14px;
    font-size: 14px;
    line-height: 1.1;
    background: url("../img/ic_date_range.svg") no-repeat 0 50%;
    background-size: 10px auto;
}
.recruit-period em {
    font-style: normal;
    letter-spacing: 0;
}

.item-info-summary .title-wrap {
    margin: 0 0 24px;
}
.item-info-summary .secondary-title {
    margin-bottom: 8px;
    font-size: 1em;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.item-info-summary .info-table .label {
    font-size: 14px;
    line-height: 1.4285714286;
}
.item-info-summary .info-table .value {
    font-size: 14px;
    line-height: 1.4285714286;
}
.item-info-summary .view-all {
    display: block;
    margin-bottom: -23px;
}

.btn-view-resume {
    display: inline-block;
    margin: -8px 2px 17px 24px;
    padding: 13px 1em;
    font-size: 14px;
    font-weight: 700;
    color: #1B9D7D;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    border: 1px solid #1B9D7D;
}
.btn-view-resume:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 16px;
    margin: -2px 4px 0 0;
    vertical-align: middle;
    background: url("../img/ic_resume.svg") no-repeat 0 0;
    background-size: contain;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}
.btn-view-resume:hover, .btn-view-resume:focus {
    background-color: #E8FFF9;
}

.btn-view-chat {
    display: inline-block;
    margin: -8px 24px 17px 2px;
    padding: 13px 1em;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    border: 1px solid #1B9D7D;
    background: #1B9D7D;
}
.btn-view-chat:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 16px;
    margin: -2px 4px 0 0;
    vertical-align: middle;
    background: url("../img/ic_chat.svg") no-repeat 0 0;
    background-size: contain;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}
.btn-view-chat:hover, .btn-view-chat:focus {
    background-color: #167f65;
}

.person-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -2px 0 0;
    padding: 0 0 0 20px;
    font-size: 14px;
    line-height: 1;
    background: url("../img/ic_profile_meta.svg") no-repeat 0 50%;
    background-size: 13px auto;
}
.person-meta * {
    margin-right: 2px;
}

/* 채용공고 */
.visual-banner {
    margin: -140px 0 0;
    padding: 82px 0 0;
    background-color: #57CCAF;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.visual-banner.recruit {
    background-image: url("../img/sub/recruit_top_visual.jpg");
}
.visual-banner.market {
    background-image: url("../img/sub/market_top_visual.jpg");
}
.visual-banner.person {
    background-image: url("../img/sub/person_top_visual.jpg");
}

.visual-content {
    padding: 68px 0 88px 88px;
    font-size: 20px;
    color: #fff;
    line-height: 1.1;
}
.visual-content .headline {
    margin: 8px 0 0;
    font-size: 41px;
    font-weight: 700;
}
.visual-content .btn-round {
    display: inline-block;
    min-width: 7.6315789474em;
    margin: 20px 0 0;
    padding: 14px 0;
    font-size: 19px;
    font-weight: 700;
    color: #1B9D7D;
    text-align: center;
    vertical-align: top;
    border-radius: 4px;
    background: #fff;
}
.visual-content .btn-round:hover, .visual-content .btn-round:focus {
    color: #fff;
    background-color: #1B9D7D;
}

.recomm-keyword {
    padding: 28px 0;
    line-height: 1;
}
.recomm-keyword .title {
    margin: 8px 82px 0 0;
    font-size: 20px;
    font-weight: 500;
    float: left;
}
.recomm-keyword .hashtag {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
}
.recomm-keyword .tag {
    min-width: 5.7647058824em;
    margin: 0 7px 0 0;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    line-height: 2.2352941176;
    text-align: center;
    border-radius: 100px;
    background: #E9EAF4;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.recomm-keyword .tag:hover {
    background-color: #c7cae3;
}

.recomm-slider {
    padding: 90px 0;
}
.recomm-slider .container {
    position: relative;
}
.recomm-slider .primary-title {
    margin: 0 0 32px;
    font-size: 30px;
    line-height: 1;
    text-align: center;
}
.recomm-slider .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
}
.recomm-slider .btn-bookmark:before {
    border-top-color: #F6F8FA;
}
.recomm-slider .arrow {
    position: absolute;
    bottom: 50%;
    left: 50px;
    width: 36px;
    height: 36px;
    margin: 42px 0 -18px;
    border: 1px solid #000;
    border-radius: 100%;
    background: url("../img/ic_circle_prev.svg") no-repeat 50% 50%;
}
.recomm-slider .arrow--right {
    left: auto;
    right: 70px;
    background-image: url("../img/ic_circle_next.svg");
}

.search-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 50px 0 130px;
}
.search-result:last-of-type {
    margin-bottom: -80px;
}
.search-result .sidebar {
    width: 255px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 255px;
            flex: 0 0 255px;
}
.search-result .content-area {
    margin: 0 0 0 38px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.search-result .content-area:first-child {
    margin-left: 0;
}
.search-result .content-area .widget {
    margin: 0 0 40px;
    -webkit-animation: fade-in 0.4s;
            animation: fade-in 0.4s;
}
.search-result .content-area .widget-body {
    padding: 0;
}

.find-map {
    display: inline-block;
    margin: 24px 0 0;
    padding: 0 28px 0 0;
    line-height: 1.375em;
    vertical-align: middle;
    background: url("../img/ic_current_loc.svg") no-repeat 100% 0;
}
.find-map:hover, .find-map:focus {
    text-decoration: underline;
}

.widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.widget-header {
    position: relative;
    padding: 18px 24px;
    background: #F6F8FA;
}
.widget-header:after {
    content: "";
    display: table;
    clear: both;
}
.widget-header .title {
    font-weight: 700;
}
.widget-header .find-map {
    margin-top: -20px;
    float: right;
}

.widget-body {
    position: relative;
    padding: 25px 32px 30px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
}

.widget-options ul {
    margin: -13px -8px 0;
}
.widget-options.align-center ul {
    margin-left: -1em;
}
.widget-options li {
    position: relative;
    margin: 13px 0 0;
    padding: 0 8px;
    white-space: nowrap;
}
.widget-options li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0.875em;
    margin: auto;
    border-right: 1px solid #ACACAC;
}
.widget-options li:last-child:after {
    content: none;
}
.widget-options .col-2 > li {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}
.widget-options .col-2 > li:nth-child(2n):after {
    content: none;
}
.widget-options .col-3 > li {
    width: 33.3%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
            flex: 0 0 33.3%;
}
.widget-options .col-3 > li:nth-child(3n):after {
    content: none;
}
.widget-options .col-4 > li {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    text-align: center;
}
.widget-options .col-4 > li:nth-child(4n):after {
    content: none;
}
.widget-options .col-5 > li {
    width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.widget-options .col-5 > li:nth-child(5n):after {
    content: none;
}

.widget-option {
    color: #ACACAC;
    line-height: 1.5;
}
.widget-option:hover, .widget-option:focus {
    text-decoration: underline;
}
.widget-option.on {
    color: #57ccaf;
    text-decoration: none;
    font-weight: 600;
	/*
    color: inherit;
    text-decoration: none;
	*/
}

.advanced-search .area-si {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.advanced-search .option {
    display: block;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    cursor: pointer;
    float: left;
}
.advanced-search .option input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    overflow: hidden;
}
.advanced-search .option:hover,
.advanced-search .option input:focus {
    color: #1B9D7D;
    font-weight: 700;
}
.advanced-search .option .btn {
    display: block;
    padding: 13px 0;
    text-align: center;
}
.advanced-search .option input:checked + .btn {
    font-weight: 700;
    color: #fff;
    background-color: #1B9D7D;
}
.advanced-search .area-gugun {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 13px 48px 27px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #EBEBEB;
    -webkit-animation: fade-in 0.4s;
            animation: fade-in 0.4s;
}
.advanced-search .area-gugun .form-checkbox {
    width: 12.71%;
    margin: 14px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.71%;
            flex: 0 0 12.71%;
    cursor: pointer;
    pointer-events: none;
}
.advanced-search .area-gugun .form-checkbox:nth-child(8n) {
    width: 11%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11%;
            flex: 0 0 11%;
}
.advanced-search .area-gugun .label {
    padding: 0 24px 0 0;
    font-size: inherit;
    line-height: 1;
    pointer-events: all;
    float: left;
}
.advanced-search .area-gugun .label:before {
    content: none;
}
.advanced-search .area-gugun .label:after {
    top: 1px;
    left: auto;
    right: 0;
    width: 17px;
    height: 13px;
    background-image: url("../img/ic_check2_on.svg");
    background-size: contain;
}
.advanced-search .area-gugun .label:hover {
    text-decoration: underline;
}
.advanced-search .area-gugun input:checked ~ .label {
    font-weight: 700;
    color: #1B9D7D;
}
.advanced-search .area-dong {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 13px 24px 27px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #EBEBEB;
    -webkit-animation: fade-in 0.4s;
            animation: fade-in 0.4s;
}
.advanced-search .area-dong .form-checkbox {
    width: 21%;
    margin: 7px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 21%;
            flex: 0 0 21%;
}
.advanced-search .area-dong .form-checkbox:nth-child(5n) {
    width: 16%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
}
.advanced-search .other .form-row {
    padding: 20px 80px 20px 24px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 0;
    background: #F6F8FA;
}
.advanced-search .other .form-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.advanced-search .other .form-label {
    width: 162px;
    padding: 2px 0;
    font-size: 1em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 162px;
            flex: 0 0 162px;
}
.advanced-search .other .form-group {
    margin-top: -8px;
}
.advanced-search .other .form-checkbox {
    margin-top: 8px;
    font-size: 15px;
}

.result-header {
    margin: 0 0 20px;
}
.result-header:after {
    content: "";
    display: table;
    clear: both;
}
.result-header .total {
    font-size: 20px;
    line-height: 1.2;
    float: left;
}
.result-header .total em {
    font-style: normal;
    color: #1B9D7D;
}
.result-header .orderby {
    font-size: 18px;
    color: #707070;
    line-height: 1.3333333333;
    text-align: right;
    float: right;
}
.result-header .orderby .option {
    position: relative;
    padding: 0 10px;
    cursor: pointer;
    float: left;
}
.result-header .orderby .option + .option:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 0.6470588235em;
    margin: auto;
    border-left: 1px solid #e1e1e1;
}
.result-header .orderby input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    overflow: hidden;
}
.result-header .orderby .label:hover {
    text-decoration: underline;
}
.result-header .orderby input:checked + .label {
    color: #1B9D7D;
}

.result-wrap {
    position: relative;
}
.result-wrap:after {
    content: "";
    display: table;
    clear: both;
}
.result-wrap .list-action {
    bottom: 32px;
    float: right;
}

.result-list {
    list-style: none;
    border-top: 2px solid #000;
}
.result-list .list-item {
    position: relative;
    border-bottom: 1px solid #E9EAF4;
}

.list-action {
    margin: -52px 0 0;
    text-align: right;
}

.btn-map {
    display: block;
    position: fixed; /* relative; */
    width: 78px; /* 64px; */
    height: 78px; /* 64px; */
    margin: -83px 0 0 auto;
    border-radius: 100%;
    background: #57CCAF url("../img/ic_view_map.svg") no-repeat 50% 45%; /* #1B9D7D */
    background-size: 32px auto;
    bottom: 209px;
    right: 36px;
}
.btn-map:hover, .btn-map:focus {
    background-color: #167f65;
}
.btn-map:last-child {
    margin-top: 0;
}

.send-request {
    margin: 15px 0 0;
}

.btn-request {
    display: block;
    position: relative;
    margin: 0 0 0 auto;
    padding: 13px 25px; /* 18px 35px; */
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    border-radius: 100px;
    background: #57CCAF;
}
.btn-request:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 36px;
    margin: -2px 12px 0 0;
    vertical-align: middle;
    background: url("../img/ic_send_request.svg") no-repeat 0 0;
    background-size: contain;
}
.btn-request .selected {
    font-style: normal;
    color: #FFF700;
}

.item-info .tooltip {
    display: block;
    min-width: 210px;
    margin-right: 27px !important;
    padding: 17px 22px;
    font-size: 16px;
    text-align: center;
}

.selection .form-checkbox.lg {
    margin-right: -10px;
}

.page-view {
    padding: 80px 0 0;
    background: -o-linear-gradient(top, #57ccaf 0%, #57ccaf 285px, #ffffff 285px, #ffffff 100%);
    background: linear-gradient(to bottom, #57ccaf 0%, #57ccaf 285px, #ffffff 285px, #ffffff 100%);
}
.page-view .page-content {
    padding: 50px 0 0;
}
.page-view .view-footer {
    padding: 78px 0 65px;
    background: #F6F8FA;
}
.page-view .view-footer .btn-wrap {
    margin: 50px 0 0;
    text-align: center;
}
.page-view .view-footer .btn {
    min-width: 6.5em;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
}

.total-bookmark {
    background: url("../img/ic_star.svg") no-repeat 0 50%;
    background-size: 0.8571428571em auto;
}
.total-bookmark em {
    margin: 0 0 0 16px;
    font-style: normal;
}

.btn-report {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #BEBFC9;
    border-radius: 100%;
    background: url("../img/ic_report.svg") no-repeat 50% 50%;
    background-size: 53.3333333333% auto;
}
.btn-report:hover, .btn-report:focus {
    border-color: #1B9D7D;
    background-color: #E8FFF9;
}

.report-form {
    margin: 30px -18px -30px;
}
.report-form .form-textarea {
    min-height: 152px;
    padding: 14px 18px;
    font-size: 1em;
    letter-spacing: 0;
    border: 0;
    background: #F0F0F0;
}

.item-view {
    position: relative;
}
.item-view > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.item-view .view-content {
    width: calc(100% - 360px);
    padding: 35px 35px 45px;
    border-radius: 10px;
    background: #fff;
    float: left;
}
.item-view .view-visual {
    padding: 0 0 40px;
    border-bottom: 1px solid #E6E6E6;
}
.item-view .view-visual .inline-group {
    position: relative;
    height: 364px;
}
.item-view .visual-slider {
    height: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #f0f0f0;
    overflow: hidden;
}
.item-view .visual-slider img {
    width: 100%;
    height: 100%;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
}
.item-view .thumb-slider {
    position: relative;
    width: 198px;
    height: inherit;
    margin: 0 0 0 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 198px;
            flex: 0 0 198px;
}
.item-view .view-visual .arrow {
    position: absolute;
    top: -22px;
    right: 0;
    width: 198px;
    height: 22px;
    border: 0;
    background: transparent url("../img/ic_arrow_up.svg") no-repeat 50% 50%;
    background-size: auto 8px;
}
.item-view .view-visual .arrow--right {
    top: auto;
    bottom: -22px;
    background-image: url("../img/ic_arrow_down.svg");
}
.item-view .view-visual .arrow--disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.item-view .thumb-slider .slider-wrap {
    width: 100%;
    height: 100%;
    white-space: normal;
}
.item-view .thumb-slider .slider-wrap .keen-slider__slide {
    height: 25%;
    min-height: 25%;
    background: #000;
}
.item-view .thumb-slider .slider-wrap img {
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0.5;
    -o-object-fit: cover;
       object-fit: cover;
}
.item-view .thumb-slider .slider-wrap .active:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #1B9D7D;
}
.item-view .thumb-slider .slider-wrap .active img {
    opacity: 1;
}
.item-view .section {
    position: relative;
    padding: 42px 0;
}
.item-view .section + .section {
    border-top: 1px solid #E6E6E6;
}
.item-view .view-header:first-child {
    padding: 0;
}
.item-view .view-meta {
    margin: 0 0 10px;
    font-size: 14px;
    color: #707070;
    line-height: 1;
}
.item-view .view-meta p {
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid #DBD7D7;
}
.item-view .view-meta p:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}
.item-view .view-meta em {
    font-style: normal;
}
.item-view.sale .view-meta {
    margin-top: 10px;
}
.item-view .view-title {
    font-size: 25px;
    font-weight: 700;
    word-break: keep-all;
}
.item-view .recruit-period {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1;
    background-size: 0.8571428571em auto;
}
.item-view .recruit-period em {
    margin-left: 4px;
    font-style: normal;
}
.item-view .btn-report {
    top: 22px;
}
.item-view .secondary-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.item-view .summary {
    margin: 55px 0 0;
}
.item-view .sale-summary {
    width: 356px;
    margin: 0 0 0 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 356px;
            flex: 0 0 356px;
}
.item-view .sale-summary .hashtag {
    margin: 18px 0 0;
}
.item-view .sale-summary .hashtag .tag {
    font-size: 15px;
    line-height: 2.2666666667;
    border-radius: 40px;
    background-color: #DAECE9;
}
.item-view .category {
    margin: 0 0 3px;
    font-size: 18px;
    color: #1B9D7D;
}
.item-view .price-wrap {
    margin: 24px 0 0;
    font-size: 18px;
}
.item-view .price-wrap .nego {
    color: #F86048;
}
.item-view .price-wrap .amount {
    font-size: 1.3333333333em;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
}
.item-view .price-wrap .amount em {
    font-style: normal;
}
.item-view .help-msg {
    font-size: 1rem;
}
.item-view .seller {
    position: relative;
    margin: 40px 0 0;
    padding: 20px 0;
    border-top: 1px solid #E6E6E6;
}
.item-view .seller:after {
    content: "";
    display: table;
    clear: both;
}
.item-view .seller .thumb {
    position: relative;
    width: 60px;
    padding: 6.160164271% 0 0;
    border-radius: 100%;
    overflow: hidden;
    float: left;
}
.item-view .seller .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.item-view .seller .content-wrap {
    margin: 0 0 0 74px;
    padding: 8px 0;
}
.item-view .seller .name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}
.item-view .seller .meta {
    margin: 3px 0 0;
}
.item-view .seller .area {
    padding: 0 0 0 16px;
    background: url("../img/ic_view_profile_loc.svg") no-repeat 0 50%;
}
.item-view .view-desc .desc {
    font-size: 15px;
    line-height: 2;
}
.item-view .view-desc .desc img {
    display: block;
}
.item-view.sale .view-desc {
    padding-top: 20px;
}
.item-view.sale .view-desc .desc {
    font-size: 18px;
    line-height: 1.4444444444;
}
.item-view .benefit-group .item {
    width: 11.1111111111%;
}
.item-view .view-ext .inline-group {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.item-view .view-ext .secondary-title {
    margin-bottom: 25px;
}
.item-view .view-ext .lt {
    width: 346px;
    margin: 0 50px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 346px;
            flex: 0 0 346px;
}
.item-view .view-ext .startdate {
    min-height: 2.5em;
    margin: 30px 0 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 2.5;
    text-align: center;
    border-radius: 10px;
    background: #F6F8FA;
}
.item-view .view-ext .rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.item-view .view-ext .map {
    height: 340px;
    overflow: hidden;
}
.item-view .view-ext .js-map {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}
.item-view .info-table {
    font-size: 17px;
}
.item-view .info-table .label {
    width: 5.2941176471em;
    padding: 7px 0 8px;
    font-size: 0.8823529412em;
}
.item-view .info-table .value {
    padding: 5px 0 6px 5px;
}
.item-view .info-table em {
    font-size: 1.2352941176em;
    font-style: normal;
    font-weight: 700;
}
.item-view .info-table .category-label {
    height: 20px;
}
.item-view .info-table .working-day {
    margin-top: -6px;
}
.item-view .info-table .working-day > li {
    width: 2.7142857143em;
    height: 2.7142857143em;
    font-size: 14px;
    line-height: 2.5714285714;
}
.item-view .view-aside {
    width: 345px;
    margin: 0 0 0 15px;
    padding: 0 0 45px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 345px;
            flex: 0 0 345px;
}
.item-view .view-aside .sticky-group {
    position: sticky;
    top: 90px;
}

.btn-share {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    border: 0;
    background: url("../img/ic_share.svg") no-repeat 0 0;
    background-size: contain;
}

.btn-view-bookmark {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    border: 0;
    background: url("../img/ic_bookmark_off.svg") no-repeat 0 0;
    background-size: contain;
    z-index: 1;
}
.btn-view-bookmark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: url("../img/ic_bookmark_on2.svg") no-repeat 0 0;
    background-size: contain;
}
.btn-view-bookmark.on:before {
    opacity: 1;
}

.share-wrap {
    display: inline-block;
    position: relative;
    line-height: 1;
    vertical-align: middle;
}
.share-wrap .dropdown {
    left: 50%;
    width: 100px;
    margin: 15px 0 0 -50px;
    padding: 20px;
    border-radius: 10px;
    background: #F5F6FA;
}
.share-wrap a {
    display: block;
    margin: 18px 0 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
}
.share-wrap a:first-child {
    margin-top: 0;
}
.share-wrap a:hover, .share-wrap a:focus {
    text-decoration: underline;
}
.share-wrap .ico {
    display: block;
    width: 35px;
    height: 32px;
    margin: 0 auto 6px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
}
.share-wrap .share-link2 .ico {
    width: 25px;
    height: 25px;
}

.summary-card {
    padding: 30px 28px;
    border: 1px solid #57CCAF;
    border-radius: 10px;
    background: #fff;
}
.summary-card .top {
    position: relative;
    margin: 0 0 12px;
    padding: 0 64px 0 0;
    font-size: 19px;
    line-height: 1.3684210526;
}
.summary-card .area {
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.summary-card .top .area {
    margin-left: 10px;
}
.summary-card .share-wrap {
    position: absolute;
    top: 3px;
    right: 36px;
}
.summary-card .btn-view-bookmark {
    position: absolute;
    top: 2px;
    right: 0;
}
.summary-card .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
}
.recruit .summary-card .title {
    display: -webkit-box;
    max-height: 3em;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.summary-card .meta {
    margin: 16px 0 0;
    font-size: 17px;
    color: #777;
}
.summary-card .meta em {
    color: #1B9D7D;
    font-style: normal;
}
.summary-card .amount {
    margin: 6px 0 0;
    font-size: 24px;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1;
}
.summary-card .amount em {
    font-style: normal;
}
.summary-card .price-wrap {
    margin: 36px 0 0;
    font-size: 17px;
}
.summary-card .price-wrap .amount {
    font-size: 1.4117647059em;
}
.summary-card .btn-primary {
    width: 100%;
    height: 62px;
    margin: 20px 0 0;
    padding: 0 1em;
    font-size: 20px;
    line-height: 3.1;
    text-align: center;
    border-radius: 5px;
}
.summary-card .btn-primary:before {
    margin-top: -4px;
}
.summary-card .btn-goto-chat:before {
    content: "";
    display: inline-block;
    margin: -2px 12px 0 0;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    background: url("../img/ic_open_chat.svg") no-repeat 0 0;
    background-size: contain;
}

.recent-history {
    width: 100%; /* 196px; */
    margin: 26px 0 0 auto;
    border-radius: 10px;
    border: 1px solid #57CCAF;
    overflow: hidden;
}
.recent-history .history-header {
    padding: 13px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 1;
    text-align: center;
    border-bottom: 1px solid #57CCAF;
    background: #E8FFF9;
}
.recent-history .history-body {
    position: relative;
    padding: 34px 20px;
    overflow: hidden;
}
.recent-history .recently-slider {
    height: 660px; /* 396px; */
}
.sale .recent-history .recently-slider {
    height: 288px;
}

.recent-history .keen-slider__slide {
    height: 33.3%;
    border-bottom: 1px solid #D9D9D9;
}
.recent-history .keen-slider__slide:last-child {
    border: 0;
}
.recent-history .summary-card {
    padding: 11px 0;
    border: 0;
    border-radius: 0;
}
.recent-history .category-label {
    height: 20px;
}
.recent-history .area {
    margin-left: 4px;
    font-size: 14px;
    line-height: 1.4285714286;
}
.recent-history .title {
    margin-top: 2px;
    font-size: 18px;
    line-height: 1.3888888889;
}
.recent-history .title a:hover,
.recent-history .title a:focus {
    text-decoration: underline;
}
.recent-history .meta {
    margin: 0;
    font-size: 14px;
}
.recent-history .type {
    font-size: 15px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.recruit .recent-history .meta {
    text-align: right;
}

.recent-history .amount {
    margin-top: 2px;
    font-size: 18px;
}
.recruit .recent-history .amount {
    text-align: right;
}

.recent-history .arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%; /* 198px; */
    height: 45px;
    border: 0;
    background: transparent url("../img/ic_arrow_up.svg") no-repeat 50% 50%;
    background-size: auto 8px;
    z-index: 1;
}
.recent-history .arrow--right {
    top: auto;
    bottom: 0;
    background-image: url("../img/ic_arrow_down.svg");
}

.view-footer .recomm-slider {
    position: relative;
    padding: 0;
    /* margin: 0 395px 0 45px; */
    margin: 0 75px 0 45px;
}
.view-footer .recomm-slider .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
}
.view-footer .recomm-slider .recruit-card {
    width: calc(100% - 30px);
    margin-right: 30px;
}
.view-footer .recomm-slider .arrow {
    margin: -18px 0 0;
}
.view-footer .recomm-slider .arrow--left {
    left: -54px;
}
.view-footer .recomm-slider .arrow--right {
    right: -24px;
}

.page-map {
    height: 100vh;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    background: #57CCAF;
}
.page-map .page-content {
    height: 100%;
    padding: 80px 0 0;
}
.page-map .map-wrap {
    position: relative;
    height: 100%;
    background: #fff;
    overflow: hidden;
    z-index: 6;
}
.page-map .map-wrap > .container {
    height: 100%;
}
.page-map .current-area {
    padding-left: 0.8181818182em;
    font-size: 22px;
    z-index: 1;
}
.page-map .current-area:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    margin: 2px 0 0 1em;
    vertical-align: middle;
    background: url("../img/ic_caret.svg") no-repeat 0 0;
    background-size: contain;
}
.page-map .result-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 484px;
    height: 100%;
    padding: 22px 0 37px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}
.page-map .result-wrap .list {
    padding: 0 18px 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
}
.page-map .result-wrap .scroll-content {
    padding: 10px 0;
}
.page-map .result-wrap .list-item {
    border-top: 1px solid #E9EAF4;
}
.page-map .result-wrap .list-item:hover {
  background-color: #ededed;
}
.page-map .result-wrap .list-item:first-child {
    border: 0;
}
.page-map .result-wrap .list-item.on .title {
    text-decoration: underline;
}
.page-map .send-request {
    position: relative;
    margin: auto 0 0;
    padding: 0 20px 0 0;
    z-index: 1;
}
.page-map .btn-request {
    width: 100%;
    border-radius: 5px;
}
.page-map .btn-request:before {
    width: 20px;
    height: 24px;
    margin-top: -4px;
    margin-right: 6px;
}
.page-map .js-map-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.2s;
    -o-transition: opacity 0.3s 0.2s;
    transition: opacity 0.3s 0.2s;
}
.page-map .js-map-wrap.initialized {
    opacity: 1;
}
.page-map .js-map-wrap .js-map {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}
.page-map .item-info .meta {
    font-size: 1rem;
}
.page-map .item-info .meta.top {
    font-size: 18px;
}
.page-map .item-info .category-label {
    height: 26px;
}
.page-map .item-info .title {
    margin-bottom: 0;
    font-size: 20px;
}
.page-map .item-info .period {
    font-size: 18px;
}
.page-map .item-info .amount {
    font-size: 22px;
}
.page-map .item-info .selection {
    position: absolute;
    top: 0;
    right: 0;
}
.page-map .item-info .selection .label-red:before {
    width: 30px;
    height: 30px;
}
.page-map .item-info .selection .label-red:after {
    width: 30px;
    height: 30px;
}
.page-map .has-active {
    width: 82px !important;
    height: 82px !important;
    margin: -17px 0 0 -17px;
    line-height: 82px !important;
    background-image: url("../img/map_cluster_bg2.svg") !important;
}

.btn-listview {
    position: absolute;
    bottom: 50px;
    right: 38px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #222 url("../img/ic_view_list.svg") no-repeat 50% 50%;
    background-size: 46.875% auto;
    z-index: 1;
}
.btn-listview:hover, .btn-listview:focus {
    -webkit-box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
            box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}
.btn-listview:active {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
}

/* 인재정보 */
.recomm-slider.person {
    padding-bottom: 40px;
}
.recomm-slider.person .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.recomm-slider.person .content-wrap {
    background-color: inherit;
}
.recomm-slider.person .arrow--right {
    right: 74px;
}

.view-footer .recomm-slider.person {
    max-width: 1280px; /* 900px; */
}
.view-footer .recomm-slider.person .person-card {
    padding-right: 40px;
}
.view-footer .recomm-slider.person .arrow--right {
    right: -18px;
}

.item-view .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #E6E6E6;
}
.item-view .profile .thumb {
    position: relative;
    width: 140px;
    padding: 14.3737166324% 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    border-radius: 100%;
    overflow: hidden;
    background: #f0f0f0;
    float: left;
}
.item-view .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.item-view .profile-detail {
    width: 194px;
    padding: 0 0 0 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 194px;
            flex: 0 0 194px;
    float: left;
}
.item-view .profile-detail .name em {
    margin: 0 4px 0 0;
    font-size: 1.75em;
    font-weight: 700;
    font-style: normal;
    vertical-align: bottom;
}
.item-view .profile-detail .meta {
    margin: 7px 0 0;
}
.item-view .profile-record {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 34px 0;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 15px;
    text-align: center;
    border: 2px solid #1B9D7D;
    border-radius: 10px;
    background: #E8FFF9;
}
.item-view .profile-record > li {
    padding: 0 1em;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-left: 1px solid #57CCAF;
}
.item-view .profile-record > li:first-child {
    border: 0;
}
.item-view .profile-record > li:last-child {
    padding: 0 4.6875%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    border-color: #D9D9D9;
}
.item-view .profile-record .label {
    display: block;
    margin: 0 0 10px;
}
.item-view .profile-record .value {
    display: block;
    font-size: 28px;
    font-weight: 500;
    font-style: normal;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1;
}
.item-view .profile-record .dimmed {
    font-weight: 500;
    color: #999;
}
.item-view .profile-record .dimmed .value {
    color: inherit;
}
.item-view .profile-record ul {
    list-style: none;
    text-align: left;
}
.item-view .profile-record ul li {
    overflow: hidden;
}
.item-view .profile-record ul li + li {
    margin-top: 12px;
}
.item-view .profile-record ul .label {
    width: 6.3333333333em;
    margin: 0;
    line-height: 1.3333333333;
    float: left;
}
.item-view .profile-record ul .value {
    width: calc(100% - 4.75em);
    font-size: 1.3333333333em;
    text-align: right;
    float: right;
}
.item-view.person .btn-report {
    position: relative;
    top: auto;
    margin: 0 0 0 auto;
    float: right;
}
.item-view.person .summary .col {
    -ms-flex-item-align: start;
        align-self: flex-start;
}
.item-view .period-list {
    font-weight: 700;
}
.item-view .period-list em {
    font-size: 14px;
    font-weight: 400;
}
.item-view .view-introduce {
    font-weight: 500;
    line-height: 1.875;
}
.item-view .view-introduce .tag {
    font-size: 15px;
}

.pic-group {
    margin: 0 0 -20px -20px;
    overflow: hidden;
}
.pic-group .pic-card {
    width: 200px;
    margin: 0 0 20px 20px;
    padding: 20% 0 0;
    float: left;
}

.summary-card .type {
    margin: 3px 0 0;
}
.summary-card .star-rating {
    margin-top: 6px;
    margin-bottom: 40px;
}
.summary-card .star-rating:last-child {
    margin-bottom: 0;
}

.person .recent-history .recently-slider {
    height: 570px;/* 342px; */
}

.recent-history .star-rating {
    margin-bottom: 0;
}

.page-map .item-info.person .type {
    font-size: 1rem;
    color: #1B9D7D;
    position: absolute;
    right: 40px;
    top: 5px;
}
.page-map .item-info.person .meta {
    font-size: 15px;
}
.page-map .item-info.person .title {
    font-size: 18px;
}
.page-map .item-info.person .working-day {
    -ms-flex-item-align: end;
        align-self: flex-end;
    float: right;
}
.page-map .item-info.person .working-day > li {
    width: 2em;
    height: 2em;
    font-size: 14px;
    line-height: 1.8571428571;
}
.page-map .item-info.person .hashtag {
    -ms-flex-item-align: end;
        align-self: flex-end;
    float: right;
}
.page-map .item-info.person .tag {
    font-size: 18px;
    font-weight: 400;
}

/* 중고거래 */
.page-market .advanced-search .form-row {
    padding-right: 24px;
}
.page-market .recomm-slider .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
}
.page-market .recomm-slider .arrow--right {
    right: 90px;
}

.view-slider {
    position: relative;
    height: 266px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
}
.view-slider .slider-wrap {
    height: 100%;
    background: #f0f0f0;
    overflow: hidden;
}
.view-slider .keen-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.view-slider .keen-slider__slide.active {
    z-index: 1;
}
.view-slider img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.view-slider .dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    line-height: 1;
    text-align: center;
    z-index: 1;
}
.view-slider .dots .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 4px;
    opacity: 0.3;
    vertical-align: top;
    border: 0;
    border-radius: 100px;
    background: #fff;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.view-slider .dots .dot--active {
    width: 1em;
    opacity: 1;
}

.view-form {
    position: relative;
}
.view-form .section {
    padding: 50px 45px 145px;
    border-radius: 10px;
    background: #fff;
}
.view-form .form-row {
    padding: 18px 0;
}
.view-form .form-text {
    height: 48px;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
}
.view-form .form-textarea {
    font-size: 1rem;
    line-height: 1.5625;
}
.view-form .option {
    margin-right: 8px;
}
.added-location {
    display: inline-block;
    list-style: none;
    vertical-align: top;
}
.added-location li {
    position: relative;
    max-width: 100%;
    margin: 0 100px 0 0;
    padding: 0 24px 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.85;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}
.added-location li:last-child {
    margin-right: 42px;
}

.add-currency {
    position: relative;
}
.add-currency .form-text {
    padding-right: 1.2em;
}
.add-currency .unit {
    position: absolute;
    bottom: 0;
    right: 0;
}

.view-form .add-currency {
    width: 300px;
}
.view-form .add-currency .unit {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.4;
}
.view-form .add-hashtag {
    width: 100%;
}
.view-form .add-hashtag label {
    width: 100%;
}
.view-form .add-hashtag .form-text {
    font-size: 16px;
}
.view-form .add-hashtag .btn-round {
    min-width: 60px;
}

.important-list {
    list-style: none;
    margin: 30px 0 0;
}
.important-list > li {
    margin: 12px 0 0;
    padding: 0 0 0 2.2105263158em;
    font-size: 19px;
    line-height: 1.5789473684;
}
.important-list > li:before {
    content: "";
    display: block;
    width: 1.5789473684em;
    height: 1.5789473684em;
    margin: 0 0 0 -2.2105263158em;
    background: url("../img/ic_info_bk.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
}
.important-list > li a {
    display: inline-block;
    min-width: 24.7368421053em;
    vertical-align: top;
}
.important-list > li a:hover, .important-list > li a:focus {
    text-decoration: underline;
}
.important-list > li a:after {
    content: "";
    display: block;
    width: 0.7894736842em;
    height: 1.5789473684em;
    background: url("../img/ic_info_caret.svg") no-repeat 100% 50%;
    background-size: auto 0.7894736842em;
    float: right;
}

.view-footer .recomm-slider.sale .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
}
.view-footer .recomm-slider.sale .arrow--right {
    right: -14px;
}

.page-map .item-info.sale .price-wrap {
    margin: 4px 0 0;
}
.page-map .item-info.sale .price-wrap p {
    padding: 0;
}
.page-map .item-info.sale .date {
    font-size: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
}
.page-map .item-info.sale .amount {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
    text-align: right;
}
.page-map .item-info.sale .amount:after {
    content: none;
}

/* 마이페이지 */
.page-mypage .help-msg {
    font-size: 1rem;
    clear: both;
}

.profile-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 36px;
    padding: 45px 94px;
    color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 20px;
    background: #57CCAF;
}
.profile-status .thumb-wrap {
    position: relative;
    margin: 0 42px 0 0;
    float: left;
}
.profile-status .form-pic {
    width: 100px;
    border-radius: 100%;
    border: 0;
}
.profile-status .form-pic:before {
    top: auto;
    left: auto;
    right: -18px;
    width: 38px;
    height: 38px;
    pointer-events: inherit;
    background-image: url("../img/ic_camera2.svg");
    z-index: 2;
}
.profile-status .name {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1;
}
.profile-status .name em {
    display: inline-block;
    margin: 0 2px 0 0;
    font-size: 1.6923076923em;
    font-weight: 700;
    font-style: normal;
    vertical-align: bottom;
}
.profile-status .profile-detail {
    margin: 0 0 0 26px;
    padding: 0 0 0 26px;
    letter-spacing: 0;
    line-height: 1.5;
    word-break: keep-all;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.profile-status .profile-detail p {
    margin: 4px 0 0;
    padding: 0 0 0 26px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 21px auto;
}
.profile-status .profile-detail p:first-child {
    margin-top: 0;
}
.profile-status .profile-detail em {
    font-style: normal;
}
.profile-status .phone {
    background-image: url("../img/ic_profile_phone.svg");
}
.profile-status .email {
    background-image: url("../img/ic_profile_email.svg");
}
.profile-status .point {
    background-image: url("../img/ic_profile_point.svg");
}
.profile-status .point a {
    display: inline-block;
    margin: 0 0 0 8px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.7142857143;
    vertical-align: bottom;
    border: 1px solid;
    border-radius: 5px;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.profile-status .point a:hover, .profile-status .point a:focus {
    background-color: #1B9D7D;
}
.profile-status .profile-record {
    display: table;
    width: 390px;
    margin: 0 0 0 auto;
    padding: 28px 4px;
    font-size: 14px;
    color: #393939;
    line-height: 1;
    list-style: none;
    table-layout: fixed;
    text-align: center;
    border-radius: 10px;
    background: #fff;
}
.profile-status .profile-record li {
    display: table-cell;
    width: 33.3%;
}
.profile-status .profile-record li + li {
    border-left: 1px solid #DCDCDC;
}
.profile-status .profile-record .label {
    display: block;
    margin: 0 0 10px;
}
.profile-status .profile-record .value {
    display: block;
    font-size: 1.9285714286em;
    font-weight: 500;
    font-style: normal;
    color: #1B9D7D;
    letter-spacing: 0;
}

.total-mypoint {
    margin: 0 0 36px;
    padding: 20px 90px;
    word-break: keep-all;
    border: 1px solid #1B9D7D;
    border-radius: 5px;
    background: #E8FFF9;
}
.total-mypoint table {
    table-layout: fixed;
}
.total-mypoint td {
    font-size: 13px;
    line-height: 1.6923076923;
    vertical-align: middle;
}
.total-mypoint .label {
    width: 400px;
    padding: 0 0 0 28px;
    background: url("../img/ic_point.svg") no-repeat 0 50%;
    background-size: 22px auto;
}
.total-mypoint .label strong {
    margin: 0 1em 0 0;
    font-size: 1rem;
    line-height: 1.375;
    vertical-align: bottom;
}
.total-mypoint .value {
    font-weight: 700;
    color: #1B9D7D;
    text-align: right;
}
.total-mypoint .value em {
    font-size: 1.4615384615em;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.1578947368;
    vertical-align: bottom;
}

.point-charge .card-group {
    margin: 0 -30px -30px 0;
}
.point-charge .card-group:after {
    content: "";
    display: table;
    clear: both;
}
.point-charge .card-group .card {
    position: relative;
    width: calc(33.3% - 30px);
    height: 187px;
    margin: 0 30px 30px 0;
    padding: 0 184px 0 0;
    word-break: keep-all;
    border-radius: 0 10px 10px 0;
    float: left;
}
.point-charge .card-group input {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.point-charge .card-group input:checked {
    opacity: 1;
    border: 1px solid #57CCAF;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 10px rgba(192, 244, 231, 0.5);
            box-shadow: 5px 5px 10px rgba(192, 244, 231, 0.5);
    z-index: 1;
}
.point-charge .card-group .card-body {
    display: block;
    position: relative;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background: #fff url("../img/point_label_bg.png") no-repeat 50% 52px;
    background-size: 116px auto;
}
.point-charge .card-group .ico {
    position: absolute;
    top: 13px;
    left: 13px;
    width: 25px;
    height: 25px;
    border: 0;
    background-image: url("../img/ic_chkbox3_off.svg");
}
.point-charge .card-group .ico:before {
    background-image: url("../img/ic_chkbox3_on.svg");
    background-size: contain;
}
.point-charge .card-group input:checked ~ .card-body .ico:before {
    opacity: 1;
}
.point-charge .card-group .point {
    position: absolute;
    top: 105px;
    left: 0;
    right: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
}
.point-charge .card-group .point em {
    font-size: 1.4705882353em;
    font-style: normal;
}
.point-charge .card-group .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 184px;
    height: 100%;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-radius: 0 10px 10px 0;
    background: #E8FFF9;
}
.point-charge .card-group .card-footer em {
    margin: 0 0 0 4px;
    font-style: normal;
}
.point-charge .card-group .discount {
    display: block;
    margin: 6px 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 1;
}

.charge-bill {
    margin: 0 0 40px;
    padding: 25px 92px;
    border: 1px solid #57CCAF;
    background: #fff;
}
.charge-bill td {
    padding: 0 0 12px;
    font-weight: 700;
}
.charge-bill td em {
    font-style: normal;
}
.charge-bill .form-checkbox .label {
    margin-right: 0;
    padding-left: 36px;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.5625;
}
.charge-bill .form-checkbox .label:before {
    width: 25px;
    height: 25px;
    margin-left: -36px;
    background-image: url("../img/ic_chkbox3_off.svg");
    background-size: contain;
}
.charge-bill .form-checkbox .label:after {
    width: 25px;
    height: 25px;
    background-image: url("../img/ic_chkbox3_on.svg");
    background-size: contain;
}
.charge-bill .discount {
    padding-right: 8px;
    font-size: 14px;
    color: #57CCAF;
    line-height: 1.7857142857;
    text-align: right;
}
.charge-bill .value {
    width: 1%;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3157894737;
    text-align: right;
    word-break: keep-all;
}
.charge-bill .value em {
    margin: 0 0 0 4px;
}
.charge-bill tfoot tr {
    border-top: 1px solid #E2E2E2;
}
.charge-bill tfoot td {
    padding: 12px 0 0;
}
.charge-bill .total {
    color: #1B9D7D;
}

.charge-payment {
    margin: 0 0 30px;
}
.charge-payment:after {
    content: "";
    display: table;
    clear: both;
}
.charge-payment .col {
    position: relative;
    width: 64.54%;
    padding: 0 0 0 76px;
    float: left;
}
.charge-payment .col:first-child {
    width: 35.46%;
    padding: 0;
}
.charge-payment .form-label {
    font-size: 20px;
}
.charge-payment .coupon-status {
    position: absolute;
    top: 0;
    right: 0;
    left: 60px;
    font-size: 0;
    line-height: 1;
    word-break: keep-all;
    text-align: right;
}
.charge-payment .coupon-status p {
    display: inline-block;
    position: relative;
    font-size: 19px;
    vertical-align: top;
}
.charge-payment .coupon-status p + p {
    margin-left: 6px;
    padding-left: 6px;
}
.charge-payment .coupon-status p + p:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 0.7368421053em;
    margin: auto;
    border-left: 1px solid #707070;
}
.charge-payment .coupon-status em {
    display: inline-block;
    max-width: 4em;
    margin: -2px 0 0;
    font-style: normal;
    color: #1B9D7D;
    letter-spacing: 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
}
.charge-payment .form-selectbox {
    min-height: 60px;
    margin: 0 30px 0 0;
}
.charge-payment .form-selectbox .liner {
    padding: 0 24px 0 0;
    font-size: 19px;
    line-height: 3.0526315789;
    text-align: right;
    border-width: 2px;
}
.charge-payment .btn-round {
    min-width: 130px;
    height: 60px;
    font-size: 20px;
}
.charge-payment .form-group {
    margin: 0 -18px 0 0;
}
.charge-payment .form-toggle-btn2 {
    width: calc(25% - 18px);
    margin: 0 18px 14px 0;
}
.charge-payment .form-toggle-btn2 .btn {
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 2.9;
    border-color: #57CCAF;
    border-radius: 5px;
    background-color: transparent;
}
.charge-payment .terms-wrap {
    font-size: 13px;
    color: #777;
    line-height: 1.5384615385;
}
.charge-payment .terms-wrap strong {
    font-weight: 400;
    color: #222;
}

.charge-agreement {
    display: block;
    margin: 30px 0;
    padding: 40px 0 0;
    border-top: 1px solid #E6E6E6;
}
.charge-agreement .form-checkbox {
    width: 100%;
    font-size: 20px;
}
.charge-agreement .form-checkbox .label {
    padding-left: 68px;
    line-height: 1;
}
.charge-agreement .form-checkbox .label:before {
    width: 40px;
    height: 40px;
    margin-top: 4px;
    margin-left: -68px;
    background-size: contain;
}
.charge-agreement .form-checkbox .label:after {
    width: 40px;
    height: 40px;
    margin-top: 4px;
}
.charge-agreement .desc {
    display: block;
    margin: 6px 0 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.total-cost {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 94px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 5px;
    border: 1px solid #57CCAF;
    background: #E8FFF9;
}
.total-cost .secondary-title {
    margin: 0;
}
.total-cost table {
    width: auto;
    margin: 0 0 0 auto;
    line-height: 1.5625;
}
.total-cost table .value {
    padding-left: 46px;
    text-align: right;
}
.total-cost table .value em {
    font-style: normal;
}
.total-cost table .total {
    font-size: 20px;
    font-weight: 700;
    color: #1B9D7D;
}
.total-cost .btn-round {
    min-width: 174px;
    height: 68px;
    margin: 0 0 0 40px;
    font-size: 20px;
}

.log-list {
    border-top: 2px solid #222;
}
.log-list .list > li {
    display: table;
    width: 100%;
    min-height: 5.625em;
    padding: 14px 0;
    table-layout: fixed;
    border-bottom: 1px solid #DCDCDC;
}
.log-list .list > li > * {
    display: table-cell;
    vertical-align: middle;
}
.log-list .point {
    display: inline-block;
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}
.log-list .point:only-child {
    margin: 0;
}
.log-list .log-info .point {
    width: 16em;
    padding: 0 4px;
}
.log-list .meta {
    display: inline-block;
    line-height: 1.625;
    vertical-align: middle;
}
.log-list .meta em {
    font-style: normal;
    letter-spacing: 0;
}
.log-list .status {
    width: 11.625em;
    padding: 0 28px;
    line-height: 1.625;
    text-align: right;
}
.log-list .status .point {
    text-align: inherit;
}
.log-list .status .btn-round {
    width: 6.5em;
    margin: 0 -28px 0 0;
    font-size: 20px;
    line-height: 3;
}
.log-list .usage {
    width: 7%;
    text-align: right;
}
.log-list .usage .point {
    text-align: inherit;
}

.promo-list {
    margin: 0 -30px -20px 0;
    list-style: none;
}
.promo-list:after {
    content: "";
    display: table;
    clear: both;
}
.promo-list li {
    width: calc(50% - 30px);
    margin: 0 30px 20px 0;
    float: left;
}

.promo-card {
    position: relative;
    min-height: 124px;
    padding: 0 246px 0 0;
}
.promo-card .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: inherit;
    padding: 0 54px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.5;
    border-radius: 10px 0 0 10px;
    background: #fff;
}
.promo-card .card-body:hover {
    background-color: #effffc;
}
.promo-card .title {
    font-size: 28px;
    font-weight: 700;
}
.promo-card .required-point {
    font-weight: 500;
    color: #1B9D7D;
}
.promo-card .required-point em {
    font-style: normal;
}
.promo-card .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 246px;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0 10px 10px 0;
    background: #E8FFF9;
}
.promo-card .btn-round {
    width: 6.5em;
    font-size: 20px;
    line-height: 3;
}

.promo-view {
    width: 350px;
}
.promo-view .promo-content {
    padding: 63px 24px 38px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.4285714286;
}
.promo-view .secondary-title {
    margin: 0 0 5px;
    line-height: 1;
}
.promo-view .required-point {
    color: #1B9D7D;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.promo-view .required-point em {
    font-style: normal;
}
.promo-view .desc {
    margin: 20px 0 0;
}
.promo-view .form-wrap {
    margin: 20px 0 0;
}
.promo-view .form-label {
    margin-bottom: 0;
    font-size: 1rem;
}
.promo-view .form-text {
    padding-left: 0;
    padding-bottom: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}
.promo-view .form-text.js-datepicker {
    text-align: right;
}
.promo-view .form-selectbox .liner {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}
.promo-view .promo-footer .btn {
    width: 100%;
    padding: 20px;
}

.addition-info-form .address .row {
    margin-top: 10px;
}
.addition-info-form .address .row:first-child {
    margin-top: 0;
}
.addition-info-form .js-find-loc {
    width: 180px;
    text-align: left;
}
.addition-info-form .recruit-range {
    width: 380px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
}
.addition-info-form .value .help-msg {
    margin-left: 40px;
}
.addition-info-form .starting-date .is-abs {
    left: 0;
    right: auto;
    margin-bottom: 8px;
    font-weight: 500;
}
.addition-info-form .starting-date .form-text {
    width: 255px;
    padding-left: 60px;
    text-align: right;
}
.addition-info-form .services .secondary-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 18px;
}
.addition-info-form .services .secondary-title:first-child {
    margin-top: 8px;
}
.addition-info-form .services .form-group {
    margin: 0 -10px -10px 0;
}
.addition-info-form .services .form-toggle-btn2 {
    margin: 0 10px 10px 0;
}
.addition-info-form .addition-option {
    position: relative;
    width: 338px;
}
.addition-info-form .addition-option .row {
    position: relative;
    padding: 0 0 0 148px;
    background: #F6F8FA;
}
.addition-info-form .addition-option .row:not([hidden]) ~ .row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.addition-info-form .addition-option input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.addition-info-form .addition-option .label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 130px;
    border-radius: 100px;
    background: #F2F2F2;
}
.addition-info-form .addition-option .label p {
    width: 50%;
    font-size: 15px;
    color: #BEBFC9;
    line-height: 2.3333333333;
    text-align: center;
    border-radius: 100px;
    float: left;
}
.addition-info-form .addition-option .label .on {
    font-weight: 700;
    color: #fff;
    background: #1B9D7D;
}
.addition-info-form .addition-option .label label {
    display: block;
    width: 100%;
    height: 100%;
}
.addition-info-form .addition-option input[id=opt1]:checked ~ #amount1 {
    z-index: 2;
}
.addition-info-form .addition-option input[id=opt3]:checked ~ #amount3 {
    z-index: 2;
}
.addition-info-form .addition-option .form-text {
    height: 35px;
    margin: 20px 0 0;
}

.item-info.profile .thumb {
    border-radius: 100%;
}
.item-info.profile .thumb img {
    border-radius: 100%;
}
.item-info.profile .inline-group {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.item-info.profile .name {
    margin: 0 20px 0 0;
    font-weight: 700;
}
.item-info.profile .name em {
    font-style: normal;
}
.item-info.profile .meta {
    display: block;
    margin: 0;
    color: #222;
}
.item-info.profile .date {
    margin-left: auto;
    color: #222;
}

.page-mypage .result-header {
    margin: 0 0 10px;
}
.page-mypage .result-header .total {
    font-size: 14px;
}
.page-mypage .result-list .btn-bookmark:before {
    border-top-color: #F6F8FA;
}
.page-mypage .result-list .recruit .title {
    margin: 5px 0 0;
}
.page-mypage .result-list .star-rating {
    margin: 4px 0 0;
}
.page-mypage .result-list .link-group {
    padding: 0 68px 0 0;
}
.page-mypage .result-list .btn-line {
    padding-left: 14px;
    padding-right: 14px;
    color: #000;
    border-radius: 0;
}
.page-mypage .result-list .rt-group {
    text-align: right;
}
.page-mypage .result-list .rt-group .condition {
    margin-bottom: 8px;
}
.page-mypage .result-list .rt-group .hashtag {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.page-mypage .result-list .hashtag .tag {
    font-size: 13px;
}
.page-mypage .result-list .working-time {
    color: #1B9D7D;
}
.page-mypage .result-list .selection {
    padding: 0 0 0 28px;
}
.page-mypage .result-list .selection .form-checkbox {
    margin: 0;
}
.page-mypage .result-list .selection .label-red:before {
    width: 25px;
    height: 25px;
    background-image: url("../img/ic_chkbox3_off.svg");
}
.page-mypage .result-list .selection .label-red:after {
    width: 25px;
    height: 25px;
    background-image: url("../img/ic_chkbox3_1_on.svg");
}
.page-mypage .result-list .action {
    min-width: 10.625em;
    padding: 10px 0 10px 40px;
}
.page-mypage .result-list .action .btn-round {
    min-width: 6.5em;
    padding: 0 26px;
    font-size: 20px;
    line-height: 3;
    vertical-align: middle;
}

.coupon {
    display: block;
    position: relative;
    width: 444px;
    height: 220px;
    background: url("../img/coupon_bg.png") no-repeat 0 0;
    background-size: contain;
}
.coupon .content-wrap {
    padding: 66px 95px 20px 64px;
}
.coupon .title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}
.coupon .benefit {
    margin: 5px 0 0;
    font-size: 21px;
    font-weight: 700;
    color: #1B9D7D;
    letter-spacing: 0;
    line-height: 1;
}
.coupon .benefit em {
    font-size: 42px;
    font-style: normal;
}
.coupon .date {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1;
}
.coupon .date em {
    font-style: normal;
    letter-spacing: 0;
}

.my-coupon .result-list li {
    width: 33.3%;
    margin: 30px 0;
    padding: 0 27px 0 0;
    float: left;
}
.my-coupon .result-list .coupon {
    width: 100%;
}

.alert-msg .calendar {
    width: 260px;
    margin: 0 auto;
}
.alert-msg .calendar .form-text {
    margin: 8px auto 0;
    max-width: 13.5714285714em;
    font-weight: 700;
    text-align: center;
}

.rating-form {
    width: 400px;
    padding: 45px 42px 68px;
}
.rating-form .secondary-title {
    margin-bottom: 14px;
}
.rating-form .item-info {
    padding-top: 0;
    border-bottom: 1px solid #D1D1D1;
}
.rating-form .item-info .star-rating {
    margin-left: 0;
    margin-right: 0;
}
.rating-form .form-row {
    margin-top: 40px;
    text-align: center;
}
.rating-form .form-label {
    display: inline-block;
    position: relative;
    margin: 0 0 22px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    vertical-align: top;
}
.rating-form .form-label em {
    font-style: normal;
    color: #1B9D7D;
}
.rating-form .form-label small {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 3px 0 0;
    font-size: 0.6875em;
    font-weight: 400;
}
.rating-form .form-star-rating {
    display: inline-block;
    position: relative;
    font-size: 0;
    line-height: 1;
    vertical-align: top;
}
.rating-form .form-star-rating input {
    position: absolute;
    top: 0;
    width: 1px;
    height: 1px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    opacity: 0;
    outline: 0;
}
.rating-form .form-star-rating .active-star {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 4px;
    font-size: 1rem;
    background: url("../img/ic_star_off.svg") no-repeat 0 0;
    background-size: contain;
    float: right;
}
.rating-form .form-star-rating .active-star:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: url("../img/ic_star_on.svg") no-repeat 0 0;
    background-size: contain;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.rating-form .form-star-rating input:checked ~ .active-star:before {
    opacity: 1;
}

.manage-list {
    position: relative;
}
.manage-list > ol > li {
    border: 0;
}
.manage-list .company {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    background: #57CCAF;
}
.manage-list .company .thumb {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    padding: 0;
    border-radius: 100%;
    background: #1B9D7D;
    overflow: hidden;
}
.manage-list .company .content-wrap {
    padding: 0;
}
.manage-list .company .name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.manage-list .company .name em {
    font-style: normal;
}
.manage-list .company .meta {
    display: block;
    margin: 8px 0 0;
    font-size: 1rem;
    color: inherit;
    letter-spacing: 0;
}
.manage-list .company .meta p {
    margin-top: 5px;
}
.manage-list .company .ico-phone:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0;
    vertical-align: middle;
    background: url("../img/ic_profile_phone.svg") no-repeat 0 0;
    background-size: contain;
}
.manage-list .company .ico-email:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0;
    vertical-align: middle;
    background: url("../img/ic_profile_email.svg") no-repeat 0 0;
    background-size: contain;
}
.manage-list .company .btn-round {
    margin: 20px 0 0;
    width: 6.5em;
    font-size: 20px;
    font-weight: 500;
    color: #1B9D7D;
    border: 0;
    line-height: 3;
    background: #fff;
}
.manage-list .company .btn-round:hover, .manage-list .company .btn-round:focus {
    background-color: #ededed;
}
.manage-list .result-list {
    margin: 0 0 0 370px;
}
.manage-list .btn-round:hover, .manage-list .btn-round:focus {
    text-decoration: none;
}

/* 회사소개 */
.page-about .page-content {
    padding-bottom: 560px;
    background: url("../img/sub/about_bg.png") no-repeat 50% 100%;
    background-size: 770px auto;
}

.about-visual {
    margin: 0 0 80px;
    overflow: hidden;
}

.about-content {
    font-size: 22px;
    line-height: 1.8181818182;
    text-align: center;
}
.about-content p {
    margin: 0 0 40px;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content .headline {
    margin: 0 0 36px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4705882353;
}
.about-content .headline strong {
    color: #57CCAF;
}

/* 게시판 */
.board-list-top {
    margin: 0 0 13px;
    line-height: 1;
}
.board-list-top:after {
    content: "";
    display: table;
    clear: both;
}
.board-list-top .total {
    font-size: 14px;
    float: left;
}
.board-list-top .total em {
    margin: 0 0 0 4px;
    font-style: normal;
    color: #57CCAF;
}
.list-filter {
    font-size: 14px;
    color: #999;
}
.list-filter .btn {
    margin: 0 0 0 10px;
    float: left;
}
.list-filter .btn:hover, .list-filter .btn:focus {
    text-decoration: underline;
}
.list-filter .on {
    font-weight: 700;
    color: #222;
}
.list-filter .on:hover, .list-filter .on:focus {
    text-decoration: none;
}

.board-list-top .list-filter {
    float: right;
}

.board-list {
    border-top: 2px solid #222;
}
.board-list td {
    height: 64px;
    padding: 1em 8px;
    text-align: center;
    border-bottom: 1px solid #D3D3D3;
    word-break: keep-all;
}
.board-list a:hover, .board-list a:focus {
    text-decoration: underline;
}
.board-list .title {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    overflow: hidden;
}
.board-list .title .board-category {
    margin: 0 8px 0 -50px;
}
.board-list .title a {
    display: inline-block;
    max-width: 80%;
    vertical-align: middle;
}
.board-list .title .form-checkbox .label {
    font-size: 20px;
}
.board-list .no + .title {
    padding-left: 70px;
}
.board-list .important-label {
    display: inline-block;
    margin: 0 0 0 14px;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    color: #F86048;
    line-height: 1;
    vertical-align: middle;
}
.board-list .disabled-label {
    display: inline-block;
    margin: 0 0 0 14px;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    color: #999;
    line-height: 1;
    vertical-align: middle;
}
.board-list .selectable-item {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}
.board-list .selectable-item .form-checkbox .label {
    padding-left: 2em;
    line-height: 1.6;
}
.board-list .selectable-item .form-checkbox .label:before {
    width: 1.6em;
    height: 1.6em;
    margin-left: -2em;
}
.board-list .selectable-item .form-checkbox .label:after {
    background-image: url("../img/ic_chkbox2_on.svg");
}
.board-list .action {
    width: 1%;
}
.board-list .action .btn {
    padding: 0 28px;
    font-weight: 700;
    line-height: 2.375;
    border: 1px solid;
}

.board-category {
    display: inline-block;
    min-width: 2.7142857143em;
    padding: 0 6px;
    font-size: 14px;
    font-style: normal;
    line-height: 1.5714285714;
    text-align: center;
    vertical-align: middle;
    border: 1px solid;
}
.board-category.cate1 {
    font-weight: 700;
    color: #9329C3;
}
.board-category.cate2 {
    font-weight: 700;
    color: #FF6D6D;
}
.board-category.cate3 {
    font-weight: 700;
    color: #20B2AA;
}
.board-category.cate4 {
    font-weight: 700;
    color: #FFA500;
}
.board-category.open {
    font-weight: 700;
}
.board-category.open {
    color: #31A182;
    font-weight: 700;
}
.board-category.close {
    color: #999;
    font-weight: 700;
}
.board-category.dimmed {
    color: #BEBFC9;
    font-weight: 700;
}

.status .board-category {
    min-width: 5.4285714286em;
}

.pagination + .form-action-wrap {
    margin-top: -50px;
}

.help-msg + .form-action-wrap {
    margin-top: -10px;
}

.board-view {
    border-top: 2px solid #222;
    border-bottom: 1px solid #222;
}
.board-view .view-header {
    display: table;
    position: relative;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #D3D3D3;
}
.board-view .view-header .no {
    display: table-cell;
    width: 7.1%;
    padding: 0 20px;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
}
.board-view .view-header .no span {
    display: block;
    position: relative;
}
.board-view .view-header .no span:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -20px;
    width: 1px;
    height: 42px;
    margin: -21px 0 0;
    border-right: 1px solid #d3d3d3;
}
.board-view .view-header .content-wrap {
    display: table-cell;
    padding: 0 120px 0 40px;
    vertical-align: middle;
}
.board-view .view-header .board-category {
    display: inline-block;
    margin: 0 18px 0 0;
    vertical-align: middle;
}
.board-view .view-header .title-wrap {
    display: inline-block;
    max-width: 70%;
    vertical-align: middle;
    word-break: break-all;
}
.board-view .view-header .title-wrap:first-child {
    width: auto;
}
.board-view .view-header .meta {
    margin: 8px 0 0;
    overflow: hidden;
}
.board-view .view-header meta > * {
    margin: 0 24px 0 0;
    float: left;
}
.ico-regdate {
    display: inline-block;
    padding: 0 0 0 24px;
    vertical-align: middle;
    background: url("../img/ic_calendar_bk.svg") no-repeat 0 50%;
    background-size: 17px auto;
}

.ico-viewing {
    display: inline-block;
    padding: 0 0 0 24px;
    vertical-align: middle;
    background: url("../img/ic_viewing.svg") no-repeat 0 50%;
    background-size: 18px auto;
}

.board-view .view-header .btn-report {
    top: 50%;
    margin-top: -15px;
}
.board-view .view-header .status {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}
.board-view .view-header .btn {
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.375;
    text-align: center;
    border: 1px solid;
}
.board-view .view-header .btn:hover, .board-view .view-header .btn:focus {
    text-decoration: underline;
}
.board-view .view-title {
    font-size: 22px;
    font-weight: 700;
}
.board-view .view-body {
    position: relative;
}
.board-view .view-content {
    min-height: 320px;
    padding: 30px 0;
    font-size: 1rem;
    line-height: 1.5;
    overflow: hidden;
}
.board-view .view-content img {
    display: block;
    margin: 0 auto;
}
.board-view.report .view-content {
    min-height: 430px;
}
.board-view .view-meta {
    padding: 16px 4px;
    line-height: 1;
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    overflow: hidden;
}
.board-view .view-meta > * {
    margin: 0 30px 0 0;
    float: left;
}
.btn-like {
    display: inline-block;
    padding: 0 0 0 1.5714285714em;
    font-size: 14px;
    line-height: 1.2142857143;
    text-align: left;
    vertical-align: middle;
    border: 0;
    background: transparent;
}
.btn-like:before {
    content: "";
    display: block;
    width: 1.2857142857em;
    height: 1.2142857143em;
    margin: 0 0 0 -1.5714285714em;
    background: url("../img/ic_like.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
}
.btn-like .cnt {
    font-style: normal;
}
.btn-like:hover, .btn-like:focus {
    color: #F86048;
}
.btn-like:active:before {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
}

.total-comment {
    display: inline-block;
    padding: 0 0 0 1.7142857143em;
    font-size: 14px;
    line-height: 1.2142857143;
    text-align: left;
    vertical-align: middle;
}
.total-comment:before {
    content: "";
    display: block;
    width: 1.3571428571em;
    height: 1.2142857143em;
    margin: 0 0 0 -1.7142857143em;
    background: url("../img/ic_comment.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
}

.board-view .view-navi {
    list-style: none;
    line-height: 70px;
    border-top: 1px solid #222;
    overflow: hidden;
}
.board-view .view-navi > li {
    width: 50%;
    padding: 0 16px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}
.board-view .view-navi a:hover, .board-view .view-navi a:focus {
    text-decoration: underline;
}
.board-view .view-navi .next {
    text-align: right;
}
.board-view .view-navi .dir {
    padding: 0 20px 0 38px;
    font-size: 18px;
    font-weight: 700;
    background: url("../img/ic_board_prev.svg") no-repeat 0 50%;
    background-size: 12px auto;
    float: left;
}
.board-view .view-navi .next .dir {
    padding-left: 20px;
    padding-right: 38px;
    background-image: url("../img/ic_board_next.svg");
    background-position: 100% 50%;
    float: right;
}
.board-view .view-answer {
    padding: 30px 0;
    border-top: 1px solid;
}
.board-view .answer-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 700;
}
.board-view .answer-header .type {
    width: 9%;
    text-align: center;
}
.board-view .answer-header .meta {
    overflow: hidden;
}
.board-view .answer-header .meta p {
    margin: 0 20px 0 0;
    float: left;
}
.board-view .answer-header .meta .regdate {
    font-size: 1rem;
    font-weight: 400;
}
.board-view .answer-content {
    margin: 4px 0 0 9%;
    line-height: 1.5;
}

.comment-container {
    position: relative;
    padding: 28px 0 40px;
}

.comment-list {
    list-style: none;
}
.comment-list > li {
    position: relative;
    margin: 0 0 26px;
}
.comment-list > li:after {
    content: "";
    display: table;
    clear: both;
}
.comment-list .thumb {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #fff;
    overflow: hidden;
    float: left;
}
.comment-list .thumb img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.comment-list .comment-body {
    padding: 8px 20px 0 74px;
}
.comment-list .name {
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}
.comment-list .comment-content {
    margin: 4px 0 0;
    font-size: 14px;
}
.comment-list .goto-comment {
    color: #1B9D7D;
}
.comment-list .goto-comment:hover, .comment-list .goto-comment:focus {
    text-decoration: underline;
}
.comment-list .comment-footer {
    margin: 10px 0 0;
    font-size: 13px;
    color: #777;
    overflow: hidden;
}
.comment-list .comment-footer .btn {
    margin: 0 10px 0 0;
    text-align: left;
    line-height: inherit;
    float: left;
}
.comment-list .comment-footer .btn:hover, .comment-list .comment-footer .btn:focus {
    text-decoration: underline;
}
.comment-list .comment-footer .btn-like-comment {
    padding-left: 2.7692307692em;
    text-indent: -2.7692307692em;
}
.comment-list .comment-footer .cnt {
    margin: 0 0 0 4px;
    font-style: normal;
}
.comment-list .is-reply {
    margin-left: 74px;
}
.comment-list .btn-clear {
    top: 8px;
    width: 15px;
    height: 15px;
    margin-top: 0;
}

.comment-form {
    position: relative;
    padding: 0 120px 0 0;
}
.comment-form .form-textarea {
    min-height: 96px;
    padding: 18px 34px;
    border-color: #D1D1D1;
}
.comment-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 106px;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}

.faq-list {
    list-style: none;
    border-top: 2px solid #222;
}
.faq-list .list-item {
    border-bottom: 1px solid #D3D3D3;
}
.faq-list .accordion-title {
    padding-left: 3em;
}
.faq-list .accordion-title em {
    margin-right: 4px;
}
.faq-list .accordion-title:before {
    content: "Q";
    display: block;
    position: absolute;
    top: 23px;
    left: 1.1111111111em;
    width: 1.3888888889em;
    height: 1.3888888889em;
    font-weight: 700;
    color: #1B9D7D;
    line-height: 1.2777777778;
    text-align: center;
    border: 1px solid;
    border-radius: 100%;
    background: #fff;
}
.faq-list .accordion-content {
    padding-left: 3.375em;
}
.faq-list .accordion-content:before {
    content: "A";
    display: block;
    position: absolute;
    top: 9px;
    left: 1.1111111111em;
    width: 1.3888888889em;
    height: 1.3888888889em;
    font-weight: 700;
    line-height: 1.2777777778;
    text-align: center;
    border: 1px solid;
    border-radius: 100%;
    background: #fff;
}

.latest-posts {
    position: relative;
    margin: 0 -44px 50px;
    padding: 0 44px;
}
.latest-posts .keen-slider__slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
}
.latest-posts .card {
    margin: 0 18px 1px 0;
    padding: 30px 32px;
    border: 1px solid #DBDBDB;
    background: #fff;
}
.latest-posts .title {
    margin: 0 0 58px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3636363636;
}
.latest-posts .title a {
    display: block;
    display: -webkit-box;
    height: 2.7272727273em;
    margin: 3px 0 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-posts .title a:hover, .latest-posts .title a:focus {
    text-decoration: underline;
}
.latest-posts .meta {
    overflow: hidden;
}
.latest-posts .meta p {
    margin: 0 20px 0 0;
    float: left;
}
.latest-posts .arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 100%;
    border: 0;
    background: url("../img/ic_board_prev.svg") no-repeat 0 50%;
    background-size: 14px auto;
}
.latest-posts .arrow--right {
    left: auto;
    right: 20px;
    background-image: url("../img/ic_board_next.svg");
    background-position: 100% 50%;
}

.board-write .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 28px 0 0;
}
.board-write .form-row:first-child {
    margin-top: 0;
}
.board-write .form-label {
    width: 7.6666666667em;
    margin: 0;
    padding: 1em 0 0;
    font-size: 18px;
}
.board-write .value {
    font-size: 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.board-write .form-selectbox {
    min-height: 54px;
    text-align: left;
}
.board-write .form-selectbox .liner {
    padding: 0;
    font-size: inherit;
    line-height: 3.4666666667;
}
.board-write .form-text {
    height: 54px;
    padding: 0;
    font-size: inherit;
}
.board-write .form-textarea {
    height: 326px;
    font-size: inherit;
}
.board-write .form-file .file-name {
    padding-left: 105px;
    font-size: inherit;
}
.board-write .form-file .btn-round {
    left: 0;
    right: auto;
    background-color: #222;
}

.event-list {
    margin: 0 0 -36px -30px;
    list-style: none;
}
.event-list:after {
    content: "";
    display: table;
    clear: both;
}
.event-list > li {
    width: 33.3%;
    margin: 0 0 36px;
    padding: 0 0 0 30px;
    float: left;
}
.event-list .thumb {
    position: relative;
    padding: 53.3333333333% 0 0;
    border-radius: 20px;
    background: #ededed;
    overflow: hidden;
}
.event-list .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.event-list .meta {
    padding: 20px 0;
    border-bottom: 1px solid #000;
}
.event-list .title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.event-list .title a:hover, .event-list .title a:focus {
    text-decoration: underline;
}
.event-list .summary {
    margin: 0 0 8px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tax-form td {
    padding: 28px 0 0;
}
.tax-form tr:first-child td {
    padding-top: 0;
}
.tax-form td.form-label {
    display: table-cell;
    padding-top: 28px;
}
.tax-form td ~ td.form-label {
    width: 9.1111111111em;
    padding-left: 24px;
}

/* 약관 */
.terms-wrap {
    position: relative;
    line-height: 1.875;
    word-break: keep-all;
    overflow: hidden;
}
.terms-wrap a:hover, .terms-wrap a:focus {
    text-decoration: underline;
}

/* #Print */
@media print {
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .bottom-nav, .top-bar {
        display: none;
    }
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
