html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, textarea, input, option, select {
    margin: 0;
    padding: 0;
    border: 0;
    font-family:  "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    vertical-align: baseline;
    color: inherit;
}



*, *::before, *::after {
	box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.5;
    min-height: 100vh;
    font-size: 1.6rem;
    word-break: keep-all;
    -ms-word-break: keep-all;
    -ms-overflow-style: none;
    color: var(--dark);
}

ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

img, picture, video, svg {
	display: block;
    max-width:100%;
}

canvas {
	display: block;
}


button {
	background-color: unset;
    cursor: pointer;
}

label {
    cursor: pointer;
}

pre {
    white-space: pre-wrap;
}

input:focus,
button:focus,
textarea:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #5259658c;
    border: 0px none #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #525965;
}

::-webkit-scrollbar-thumb:active {
    background: #525965;
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: transparent;
}

::-webkit-scrollbar-track:active {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

:root {
	-webkit-tap-highlight-color:transparent;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
    cursor:default;
    line-height:1.5;
    overflow-wrap:break-word;
    -moz-tab-size:4;
    tab-size:4;
}

.centerXY {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.centerX {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.centerY {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.ai-c {
    align-items: center;
}

.ai-e {
    align-items: end;
}

.ac-sb {
    align-content: space-between;
}

.jc-sb {
    justify-content: space-between;
}

.jc-c {
    justify-content: center;
}

.jc-e {
    justify-content: end !important;
}

.text-els {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.t-center {
    text-align: center !important;
}

.t-left {
    text-align: left !important;
}

.t-right {
    text-align: right !important;
}

[onclick] {
    cursor: pointer;
}

:root {
    font-size: clamp(14px, 0.5vw + 0.4rem, 18px);

    --primary: #0073E4;
    --primary-rgb: 0 115 228;
    --secondary: #002A50;
    --secondary-rgb : 0 42 80;
    --dark: #3E3A39;
    --dark-rgb:62 58 57;

    --logo: url(../images/common/logo.svg) no-repeat center/100%;

    --text-xs: clamp(0.875rem, 0.35vw + 0.5rem, 0.9rem);
    --text-sm: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
    --text-base: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05vw, 1.35rem);
    --text-xl: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
    --text-2xl: clamp(1.5rem, 2vw + 0.5rem, 1.875rem);
    --text-3xl: clamp(1.875rem, 2.5vw + 0.5rem, 2.25rem);
    --text-4xl: clamp(2.25rem, 3vw + 0.5rem, 3rem);
    --text-5xl: clamp(3rem, 4vw + 0.5rem, 3.75rem);
    --text-6xl: clamp(3.75rem, 5vw + 0.5rem, 4.5rem);
    --text-7xl: clamp(4.5rem, 6vw + 0.5rem, 5.5rem);

    --radius-xs:4px;
    --radius-s:8px;

    --side-width: 17.5rem;
    --con-padding: 2.5rem;
    --main-padding: 120px;
    --box-padding:36px;

    --header-h: 100px;
    --header-h-s: 60px;
    --side-space: 100px;
    --con-m-w: 1400px;
    --con-w: calc(100% - var(--side-space)*2);

    --sort-height: 36px;

}

@media screen and (max-width:1500px) {
    :root {
        --side-space: 60px;
    }
}


@media screen and (max-width:1000px) {
    :root {
        --side-space: 40px;
        --header-h: 80px;

        --main-padding: 80px;
    }
}

@media screen and (max-width:600px) {
    :root {
        --side-space: 5%;
        --header-h: 60px;
        --box-padding: 24px;
        --main-padding: 40px;
    }
}

body {
    font-size:clamp(14px, 0.5vw + 0.4rem, 20px);
}
@media screen and (min-width: 1921px) {

    html {font-size:1.15rem !important}

}


@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* 필수 항목 표시 (*) 스타일 */
th.required::after {
    content: " *";
    color: #e74c3c; /* 붉은색 */
    font-weight: bold;
    margin-left: 4px;
    display: inline-block;
}

/* (선택사항) 우측 상단에 필수입력 설명 문구용 */
.required-desc {
    text-align: right;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.required-desc span {
    color: #e74c3c;
    font-weight: bold;
    vertical-align: middle;
}

/* 로딩 레이어 (달력 영역만 덮음) */
.calendar-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.7); */ /* 반투명 흰색 배경 */
    z-index: 100; /* 달력보다 위에 오도록 */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-s); /* 달력 테두리와 맞춤 */
}

/* 회전하는 스피너 애니메이션 */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3; /* 회색 테두리 */
    border-top: 4px solid var(--primary); /* 파란색 포인트 (메인컬러 변수 사용) */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ui-datepicker-trigger{
	cursor:pointer;
}

/* 비디오 컨테이너: 슬라이드 전체를 덮도록 설정 */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 텍스트보다 뒤로 보냄 */
    overflow: hidden;
}

/* 비디오 태그: 비율 유지하면서 꽉 차게 (object-fit: cover) */
.visual-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 핵심: 화면 비율에 맞춰 꽉 차게 자름 */
    display: block;
}

/* 딤드(Dimmed) 처리: 글씨가 잘 보이게 하려면 추가 (선택사항) */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 검은색 반투명 레이어 */
}

.company-logo-noimg {
    /* [핵심] 변수로 받은 로고(앞) , 기본 이미지(뒤) */
    /* 변수(--c-logo)가 들어오면 그걸 보여주고, 안 들어오면 뒤에 있는 no_image가 보입니다 */
    background-image: var(--c-logo), url('../images/common/no_image.png');

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #f5f5f5; /* 이미지가 투명할 경우를 대비한 배경색 */
}

.no-image-area {
    width: 100%;
    height: 500px; /* 영역 높이는 원하는 대로 */
    background-color: #e5e5e5;  /* 완전 불투명한 회색 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 뒤 배경이 보이지 않도록 반드시 필요 */
    position: relative;
    z-index: 10;
}

/* .no-image-area span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #999;
} */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}