@charset "UTF-8";
/* KSY 231204 */
:root {
    --header-height: 86px;
    --max-width: 1440px;
    --px40: 40px;
    --px50: 50px;
    --px60: 60px;
    --px70: 70px;
    --px80: 80px;
    --px90: 90px;
    --px100: 100px;
    --px120: 120px;
    --px140: 140px;
    --px150: 150px;
    --px180: 180px;
    --px200: 200px;
    --px230: 230px;
    --px250: 250px;
    --color-accent: #1bd2a6;
    --color-accent2: #54abfb;
    --color-red: #f15353;
    --ff-default: 'Pretendard', system-ui, -apple-system, helvetica, sans-serif;
}
@media screen and (min-width: 2560px) {
    :root {
        --max-width: 1800px;
    }
}
@media screen and (max-width: 992px) {
    :root {
        --header-height: 54px;
        --px40: 20px;
        --px50: 25px;
        --px60: 30px;
        --px70: 35px;
        --px80: 40px;
        --px90: 45px;
        --px100: 50px;
        --px120: 60px;
        --px140: 70px;
        --px150: 75px;
        --px180: 90px;
        --px200: 100px;
        --px230: 115px;
        --px250: 125px;
    }
}
/* Common */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat !important;
}
html {
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
}
body {
    min-width: 320px;
    min-height: 100%;
    background-color: #fff;
    line-height: 1;
    font-family: var(--ff-default);
    font-weight: 400;
    font-size: 1.1428rem;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
body,
button,
blockquote,
button,
caption,
dd,
dialog,
div,
details,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
img,
input,
legend,
li,
ol,
p,
pre,
select,
summary,
textarea,
ul,
video {
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
address,
em {
    font-style: normal;
}
article,
aside,
dialog,
footer,
header,
section,
nav,
figure,
menu {
    display: block;
}
audio,
button,
canvas,
embed,
iframe,
img,
input,
object,
optgroup,
select,
svg,
textarea,
video {
    vertical-align: middle;
}
b,
strong {
    font-weight: 700;
}
button,
[role='button'] {
    cursor: pointer;
}
button,
select {
    text-transform: none;
}
button,
input,
select,
textarea {
    border-radius: inherit;
    color: inherit;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    line-height: inherit;
}
button,
[type='button'],
[type='reset'],
[type='submit'],
::-webkit-file-upload-button {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}
dl,
li,
menu,
ol,
ul {
    list-style: none;
}
fieldset,
img {
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
optgroup,
select,
textarea {
    font-size: inherit;
    font-weight: inherit;
}
hr {
    height: 0;
    border-top-width: 1px;
    color: inherit;
}
img,
video {
    max-width: 100%;
}
input::placeholder,
textarea::placeholder {
    line-height: normal;
}
progress {
    vertical-align: baseline;
}
small {
    font-size: 80%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    text-indent: 0;
}
textarea {
    resize: vertical;
}
video::-internal-media-controls-download-button {
    display: none;
}
:disabled {
    cursor: default;
}
:-moz-focusring {
    outline: auto;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
.button,
.input,
.select,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}

/* Layout */
.por {
    position: relative;
}
.poa {
    position: absolute;
}
.x-cent {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.y-cent {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.xy-cent {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.hide {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    text-shadow: none;
    color: transparent;
}
[hidden] {
    display: none;
}
.flx,
.flxbox,
.flxbt {
    display: -webkit-box;
    display: flex;
}
.flxbox {
    flex-wrap: wrap;
}
.flxbt {
    justify-content: space-between;
}
.flxbox > .col {
    flex: 0 0 auto;
}
.flxcent {
    display: flex;
}
.iflxcent {
    display: inline-flex;
}
.flxcent,
.iflxcent {
    align-items: center;
    justify-content: center;
}
.w-full {
    width: 100%;
}
.w-max {
    max-width: var(--max-width);
}
.wh-full {
    width: 100%;
    height: 100%;
}
.h-full {
    height: 100%;
}
.middle {
    align-items: center;
}
.center {
    justify-content: center;
}

/* Spacing */
.pt4 {
    padding-top: 0.2857rem;
}
.pt10 {
    padding-top: 10px;
}
.mr5 {
    margin-right: 5px;
}
.mr10 {
    margin-right: 10px;
}
.mr15 {
    margin-right: 15px;
}
.mr20 {
    margin-right: 20px;
}
.mr30 {
    margin-right: 30px;
}
.mr40 {
    margin-right: var(--px40);
}
.mb10 {
    margin-bottom: 10px;
}
.mb15 {
    margin-bottom: 15px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb25 {
    margin-bottom: 25px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb35 {
    margin-bottom: 35px;
}
.mb40 {
    margin-bottom: var(--px40);
}
.mb50 {
    margin-bottom: var(--px50);
}
.mb60 {
    margin-bottom: var(--px60);
}
.mb70 {
    margin-bottom: var(--px70);
}
.mb80 {
    margin-bottom: var(--px80);
}
.mb90 {
    margin-bottom: var(--px90);
}
.mb100 {
    margin-bottom: var(--px100);
}
.ml5 {
    margin-left: 5px;
}
.ml10 {
    margin-left: 10px;
}
.ml15 {
    margin-left: 15px;
}
.ml20 {
    margin-left: 20px;
}
.spacing140,
.spacing150,
.spacing180,
.spacing200,
.spacing230,
.spacing250 {
    width: 0;
}
.spacing140 {
    height: var(--px140);
}
.spacing150 {
    height: var(--px150);
}
.spacing180 {
    height: var(--px180);
}
.spacing200 {
    height: var(--px200);
}
.spacing230 {
    height: var(--px230);
}
.spacing250 {
    height: var(--px250);
}

/* Background */
.bgaccent {
    background-color: var(--color-accent);
}
.bgaccent2 {
    background-color: var(--color-accent2);
}
.bglblue {
    background-color: #f1f8ff;
}
.bgred {
    background-color: var(--color-red);
}
.bgwhite {
    background-color: #fff;
}
.bglblack {
    background-color: #424242;
}
.bgcolg2 {
    background-color: #d8d8d8;
}
.bgcolg3 {
    background-color: #6f6f6f;
}
/* Transition */
.tr02 {
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
.tr04 {
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

/* Typography */
.tx-left {
    text-align: left;
}
.tx-cent {
    text-align: center;
}
.tx-right {
    text-align: right;
}
.tx-through {
    text-decoration: line-through;
}
.undline {
    text-decoration: underline;
}
.nowrap {
    white-space: nowrap;
}
.colaccent {
    color: var(--color-accent);
}
.colaccent2 {
    color: var(--color-accent2);
}
.colred {
    color: var(--color-red);
}
.colwhite {
    color: #fff;
}
.colg1 {
    color: #a9a9a9;
}
.colg2 {
    color: #d8d8d8;
}
.colg3 {
    color: #6f6f6f;
}
.colg4 {
    color: #575757;
}

/* 반응형 */
@media screen and (max-width: 992px) {
    .fd-column--992 {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .fd-column--768 {
        flex-direction: column;
    }
}
@media screen and (max-width: 576px) {
    .fd-column--576 {
        flex-direction: column;
    }
}
/******** 김강연 2024 03 28 ***********/
.w50_bt2 {
    position: relative;
    bottom: -28px;
    height: 48px;
    width: calc(50% - 12px);
}
.bt_left {
    left: 10px;
}
.bt_right {
    left: 10px;
}
/* 사용자 달력 화면 버튼 영역 크게 하기 위해서 적용 김강연 240328 */
.fc-event-container a {
    height: 28px !important;
    line-height: 28px !important;
    text-align: center;
}
