@charset "utf-8";

/* webFont */
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 300;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Light.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Light.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Light.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 400;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Regular.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Regular.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Regular.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 500;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Medium.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Medium.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Medium.otf) format('opentype');
}

@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 700;
	src: url(../../fonts/NotoSansKr/NotoSansKR-Bold.woff2) format('woff2'),
	url(../../fonts/NotoSansKr/NotoSansKR-Bold.woff) format('woff'),
	url(../../fonts/NotoSansKr/NotoSansKR-Bold.otf) format('opentype');
}

/* Basic */
html {
	overflow-x: auto !important;
	overflow-y: auto !important;
	height: 100%;
	min-height: 100%;
	font-size: 16px;
	letter-spacing: -0.01em;
	line-height: 1;
	margin: 0 !important;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, em, img, q, strong, sub, sup, b, u, i, center, dl, dt, dd, ol, ul, li,
form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, footer, header, menu, nav, section {
	margin: 0;
	padding: 0;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

article, footer, header, menu, nav, section {
	display: block;
}

body, table, th, td, button, select, input, textarea {
	font-family: 'Noto Sans KR', "맑은 고딕", "Malgun Gothic", Dotum, Arial, sans-serif;
	color: #202020;
	font-size: 1rem;
	font-weight: 300;
}

textarea {
	line-height: 1.5 !important;
}

body {
	width: 100%;
	height: 100%;
	background-color: #fff;
	min-height: 100vh;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	letter-spacing: -0.047em;
	line-height: 1.2;
}

h1 {font-size: 2.75rem;}
h2 {font-size: 2.5rem;}
h3 {font-size: 2rem;}
h4 {font-size: 1.625rem;}
h5 {font-size: 1.25rem;}
h6 {font-size: 1.125rem;}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

ul.style-square > li {
	position: relative;
	padding-left: 12px;
}
	
ul.style-square > li::before {
	position: absolute;
	top: 11px;
	left: 0px;
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	background-color: #aaa;
}

ul.style-square li.style-none { /* 20231216 추가 */
	position: relative;
	padding-left: 0px;
}

ul.style-square li.style-none::before {display: none;} /* 20231216 추가 */

.style-dashed {
	position: relative;
	padding-left: 16px;
}

.style-dashed:before {
	position: absolute;
	top: 12px;
	left: 0px;
	content: "";
	display: block;
	width: 8px;
	height: 3px;
	background-color: #bbb;
}

img {
	border: 0;
	vertical-align: middle;
}

button {
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	border: 0px;
	background: none;
	text-transform: none;
	line-height: normal;
}

em, var {
	font-style: normal;
	font-weight: normal;
}

a {
	cursor: pointer;
	color: #202020;
	text-decoration: none;
	outline: none;
}

a:hover, a:active, a:focus {
	color: #008cc0;
	text-decoration: none;
}

table {
	width: 100%;
	word-break: keep-all;
	border-collapse: collapse;
	border-spacing: 0;
	box-sizing: border-box;
}

label {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500 !important;
    margin-right: 8px;
}

label.arrow:before {
    content: "";
    background: url(../../images/kccf/common/icon-arrow-right.svg) no-repeat -8px 3px;
    filter: invert(91%) sepia(7%) saturate(486%) hue-rotate(179deg) brightness(75%) contrast(82%);
    padding-right: 10px;
}

hr {
	width: 100%;
	border: 0;
	border-top: 1px solid #eee;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.cursor-default {
	cursor: default !important;
}

/* Overflow */
.overflow-x-auto {overflow-x: auto !important;}
.overflow-y-auto {overflow-y: auto !important;}

/* Text */
.text-sm {font-size: 0.933rem !important;}

.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-700 {font-weight: 700 !important;}

.txt-red {color: #cd0c22;}
.txt-notice {color: #008cc0;}

/* Color & Badge */
.bc-event {background-color: #267fab !important;} /* 문화원 행사, 소식 */
.bc-event-list {background-color: #fffcd5 !important;} /* 리스트-문화원 행사 */
.bc-news {background-color: #7eab25 !important;} /* 공고, 안내 */
.bc-press {background-color: #878f9d !important;} /* 보도, 언론 */
.bc-business {background-color: #6c429c !important;} /* 입찰 */
.bc-recruit {background-color: #e67602 !important;} /* 채용 */

.bc-local {background-color: #0aa696 !important;} /* 지방문화원 */
.bc-ongoing {background-color: #51ab2c !important;} /* 진행중(설문조사,) */
.bc-complete {background-color: #707070 !important;} /* 완료(설문조사,) */

.btn-badge {
	display: block;
	color: #fff !important;
	white-space: nowrap;
	font-size: 0.813rem !important;
	border-radius: 0.2rem !important;
	padding: 0.188rem 0.375rem !important;
}

.btn-badge-md {
	display: block;
	color: #fff !important;
	white-space: nowrap;
	font-size: 1rem !important;
	border-radius: 0.2rem !important;
	padding: 0.188rem 0.5rem !important;
}

/* Box & Deco */
.box-frame-01 {
	border: 1px solid #e2f1ee;
	background-color: #eef7f5;
}

.parallelogram {
    width: 4px;
    height: 20px;
    transform: skew(-20deg);
    background: #aaa;
    margin: 0 auto;
	margin-top: 8px;
	margin-bottom: 8px;
}

/* Flex */
.row {
	display: flex !important;
	flex-wrap: wrap;
	margin-right: -12px;
  	margin-left: -12px;
}

.row-df {
	display: flex;
	flex-direction: row;
	box-sizing: border-box;
}

.row-cc {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.row-sb {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

/* Button & Input & Select */
.form-group {
    margin-bottom: 0;
}

.form-control {
    display: block;
    width: 100%;
	height: calc(1.5em + 0.75rem);
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #202020;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0rem;
	box-shadow: none !important;
}

.form-control:focus {
	color: #202020;
	background-color: #fff;
	border-color: #909090;
	outline: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #f2f2f2;
    opacity: 1;
}

.form-control-sm {
    height: calc(1.5em + 0.667rem);
	line-height: 1.2;
    padding: 0.267rem 0.533rem;
}

.input-group-prepend {margin-left: -1px;}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.625rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #202020;
    text-align: center;
    white-space: nowrap;
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    border-radius: 0;
}

::-webkit-input-placeholder {color: #a2a2a2 !important;}
:-ms-input-placeholder {color: #a2a2a2 !important;}
input::placeholder {color: #a2a2a2 !important;}

.btn {
	display: inline-block;
	color: #202020;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0;
	padding: 0.25rem 0.75rem;
	margin-right: 0.25rem;
}

.btn:hover, .btn:focus, .btn.focus {
	color: #202020;
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
}

.btn-default {
	/* min-width: 80px; */
	height: 40px;
	white-space: nowrap;
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 0px 16x;
}

.btn-default:hover, .btn-default:active, .btn-default:focus {
	color: #008cc0;
	background-color: #fff;
	border: 1px solid #ddd;
}

.btn-min {
	min-width: 80px;
}

.btn-round {
	border-radius: 10rem;
	padding: 0px 24px;
}

.btn-primary {color: #fff; background-color: #01b1d0 !important; border: none !important;}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {color: #fff; background-color: #009fbb !important; border: none !important;}

.btn-secondary {color: #fff; background-color: #505050 !important; border: none !important;}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {color: #fff; background-color: #434343 !important; border: none !important;}

.btn-tertiary {color: #fff; background-color: #606060 !important; border: none !important;}
.btn-tertiary:hover, .btn-tertiary:active, .btn-tertiary:focus {color: #fff; background-color: #505050 !important; border: none !important;}

.btn-gray {background-color: #fcfcfc !important;}
.btn-gray:hover, .btn-gray:active, .btn-gray:focus {color: #008cc0; background-color: #f9f9f9 !important;}

.hover-primary:hover, .hover-primary:active, .hover-primary:focus {color: #fff; background-color: #01b1d0 !important; border: 1px solid #01b1d0;}

.btn-lg {/* 20231213 추가 */
	height: 48px;
	padding-left: 24px;
	padding-right: 24px;
}

.btn-md {
	height: 36px;
	font-size: 1.063rem;
}

.btn-sm {
	height: 32px !important;
	font-size: 1rem !important;
	padding: 2px 16px 3px 16px;
}

.btn-xs {
	height: 26px !important;
	font-size: 0.813rem !important;
	border-radius: 0.2rem;
	padding: 0.125rem 0.375rem;
}

select:not([multiple]) {
	-moz-appearance: none;
	     appearance: none;
	-webkit-appearance: none;
	background-image: url(../../images/kccf/common/icon-select.svg);
	background-size: 20px;
	background-position: calc(100% - 6px) center;
	background-repeat: no-repeat;
	padding-right: 26px;
}

.btn-more {
	justify-content: flex-end;
	min-width: 100px;
	cursor: pointer;
    opacity: 0.8;
}

.btn-more:before {
    content: "바로가기";
	font-weight: 400;
    padding-right: 8px;
    padding-bottom: 1px;
}

.btn-more.more-2:before {
    content: "더보기";
}

.btn-more:hover {
    opacity: 1;
}

.btn-more > .circle-white {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 0;
	border-radius: 10rem;
}

.btn-more .icon-more:before {
    content: "";
    background: url(../../images/kccf/common/icon-more.svg) no-repeat -2px 2px;
    padding-right: 24px;
}

.btn-more > .circle-white.icon-more:before {
    filter: invert(27%) sepia(25%) saturate(5%) hue-rotate(85deg) brightness(101%) contrast(88%);
}

.btn-more > .circle-dark {
    width: 24px;
    height: 24px;
    background-color: #505050;
    border: 0;
	border-radius: 10rem;
}

.btn-more > .circle-dark.icon-more:before {
    filter: invert(100%) sepia(0%) saturate(3210%) hue-rotate(171deg) brightness(104%) contrast(110%);
}

/* Custom Radio */
.radio-custom {
	position: relative;
	padding: 0 0 0 22px;
	margin-top: 2px;
}

.radio-custom input[type="radio"] {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 3px;
	margin: -6px 0 0 0;
	z-index: 2;
	cursor: pointer;
}

.radio-custom input[type="radio"]:checked + label:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 4px;
	margin-top: -5px;
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	width: 10px;
	height: 10px;
	background-color: #555;
	border-radius: 50px;
	box-shadow: 0px 0px 1px #555;
}

.radio-custom input[type="radio"]:disabled {
	cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled:checked + label:after {
	color: #999;
}

.radio-custom input[type="radio"]:disabled + label {
	cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled + label:before {
	background-color: #eee;
}

.radio-custom label {
	cursor: pointer;
	font-weight: 400 !important;
	line-height: 1.2;
	text-align: left;
	margin-right: 16px;
	margin-left: 0px;
	margin-bottom: 2px;
}

.radio-custom label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -9px;
	width: 18px;
	height: 18px;
	display: inline-block;
	border-radius: 50px;
	border: 1px solid #bbb;
	background: #fff;
}

/* Custom Checkbox */
.checkbox-custom {
	position: relative;
	padding: 0 0 0 25px;
	margin-bottom: 7px;
	margin-top: 0;
}

.checkbox-custom:last-child, .checkbox-custom:last-of-type {
	margin-bottom: 0;
}

.checkbox-custom input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 3px;
	margin: -6px 0 0 0;
	z-index: 2;
	cursor: pointer;
}

.checkbox-custom input[type="checkbox"]:checked + label:after {
	position: absolute;
	display: inline-block;
	content: "";
	background: url(../../images/kccf/common/icon-check.svg) no-repeat 50% 50%;
	top: 50%;
	left: 2px;
	margin-top: -7px;
	font-size: 11px;
	line-height: 1;
	width: 16px;
	height: 16px;
	color: #202020;
}

.checkbox-custom input[type="checkbox"]:disabled {
	cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled:checked + label:after {
	color: #999;
}

.checkbox-custom input[type="checkbox"]:disabled + label {
	cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled + label:before {
	background-color: #eee;
}

.checkbox-custom label {
	cursor: pointer;
	font-weight: 400;
	text-align: left;
	line-height: 1.2;
	margin-bottom: 0;
}

.checkbox-custom label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -8px;
	width: 19px;
	height: 18px;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid #bbb;
	background: #fff;
}

/* Icon */
.symbol-kccf:before {
    display: block;
    content: "";
    background: url(../../images/kccf/common/symbol-kccf.png) no-repeat 50% 50%;
    background-size: 100%;
}

.icon-more-plus:before {
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background: url(../../images/kccf/common/icon-more-plus.svg) no-repeat 50% 50%;
	filter: invert(100%) sepia(0%) saturate(7485%) hue-rotate(95deg) brightness(101%) contrast(100%);
	opacity: 0.9;
}

.icon-more-plus:hover:before, .icon-more-plus:active:before, .icon-more-plus:focus:before {
	opacity: 1;
}

.icon-more-circleF:before {
	cursor: pointer;
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background: url(../../images/kccf/common/icon-more-circleF.svg) no-repeat 50% 50%;
	filter: invert(32%) sepia(1%) saturate(0%) hue-rotate(8deg) brightness(94%) contrast(92%);
	opacity: 0.9;
}

.icon-more-circleF:hover:before, .icon-more-circleF:active:before, .icon-more-circleF:focus:before {
	opacity: 1;
}

.icon-new {
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url(../../images/kccf/common/icon-new-01.png) no-repeat 50% 50%;
}

.icon-attach { /* 20231216 추가 */ /* 20231221 수정 */ /* 20231227 수정 */
	position: relative;
	top: 2px;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../../images/kccf/common/icon-attach.svg) no-repeat 10% 50%;
	filter: invert(39%) sepia(53%) saturate(637%) hue-rotate(155deg) brightness(99%) contrast(91%);
	background-size: 120%;
}

.icon-calendar:before {
	content: "";
	background: url(../../images/kccf/common/icon-calendar.svg) no-repeat 50% 60%;
	padding: 0px 8px;
}

.icon-exclamation-mark:before {
	display: block;
	width: 48px;
	height: 48px;
    content: "";
    background: url(../../images/kccf/common/icon-exclamation-mark.svg) no-repeat 50% 50%;
    filter: invert(73%) sepia(62%) saturate(311%) hue-rotate(143deg) brightness(92%) contrast(86%);
	background-size: 100%;
	margin: 0 auto;
}

.icon-download:before {/* 20231213 추가 */
	content: "";
	background: url(../../images/kccf/common/icon-download.svg) no-repeat -4px 50%;
	filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(78deg) brightness(102%) contrast(102%);
	padding: 0px 12px;
}

.icon-lock { /* 20231227 추가 */
	position: relative;
	top: 3px;
	display: inline-block;
	width: 16px;
	height: 18px;
	background: url(../../images/kccf/common/icon-lock.svg) no-repeat 50% 50%;
	filter: invert(55%) sepia(89%) saturate(579%) hue-rotate(13deg) brightness(97%) contrast(99%);
	background-size: 120%;
}

.icon-shortcut:after {/* 20240129 추가 */
	content: "";
	background: url(../../images/kccf/common/icon-shortcut.svg) no-repeat 5px 3px;
	filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(78deg) brightness(102%) contrast(102%);
	padding: 0px 14px;
}

/* SNS */
.btn-sns:before {
	display: block;
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 200px;
}

.btn-youtube:before {
	background: url(../../images/kccf/common/icon-youtube-off.png) no-repeat 50% 50%;
	background-size: 100%;
}

.btn-youtube:hover:before, .btn-youtube:active:before, .btn-youtube:focus:before {
	background: url(../../images/kccf/common/icon-youtube-on.png) no-repeat 50% 50%;
	background-size: 100%;
}

.btn-facebook:before {
	background: url(../../images/kccf/common/icon-facebook-off.png) no-repeat 50% 50%;
	background-size: 100%;
}

.btn-facebook:hover:before, .btn-facebook:active:before, .btn-facebook:focus:before {
	background: url(../../images/kccf/common/icon-facebook-on.png) no-repeat 50% 50%;
	background-size: 100%;
}

.btn-blog:before {
	background: url(../../images/kccf/common/icon-blog-off.png) no-repeat 50% 50%;
	background-size: 100%;
}

.btn-blog:hover:before, .btn-blog:active:before, .btn-blog:focus:before {
	background: url(../../images/kccf/common/icon-blog-on.png) no-repeat 50% 50%;
	background-size: 100%;
}

/* @media */
@media all and (max-width:1279.98px) {
	/* Basic */
	h2 {font-size: 2.375rem;}
	h4 {font-size: 1.563rem;}
	/* Button & Input & Select */
	.btn {font-size: 1.063rem;}
	.btn-default {height: 38px;}
	.btn-lg {height: 46px;} /* 20231213 추가 */
	/* SNS */
	.btn-sns:before {width: 38px; height: 38px;}
}

@media all and (max-width:1023.98px) {
	/* Basic */
	h2 {font-size: 2.25rem;}
	/* Box & Deco */
	.parallelogram {height: 18px;}
}

@media all and (max-width:991.98px) {
	/* Basic */
	h2 {font-size: 2.125rem;}
	h3 {font-size: 1.875rem;}
	h4 {font-size: 1.5rem;}
	h5 {font-size: 1.188rem;}
	h6 {font-size: 1.063rem;}
}

@media all and (max-width:767.98px) {
	/* Basic */
	h2 {font-size: 2rem;}
	h3 {font-size: 1.75rem;}
	h4 {font-size: 1.438rem;}
	/* Button & Input & Select */
	.btn {font-size: 1rem; line-height: 1.2;}
	.btn-default {height: 36px;}
	.btn-lg {height: 44px;} /* 20231213 추가 */
	/* SNS */
	.btn-sns:before {width: 36px; height: 36px;}
	/* Custom Radio */
	.radio-custom label {line-height: 1.5;}
	/* Icon */
	.icon-exclamation-mark:before {margin-top: 8px;}
	.icon-shortcut:after {background-position: 5px 1px;} /* 20240129 추가 */
}

@media all and (max-width:575.98px) {
	/* Basic */
	h2 {font-size: 1.875rem;}
	h3 {font-size: 1.625rem;}
	h4 {font-size: 1.375rem;}
	h6 {font-size: 1rem;}
	/* Box & Deco */
	.parallelogram {height: 16px;}
	/* Button & Input & Select */
	.btn {font-size: 1rem;}
}

@media all and (max-width:479.98px) {
	/* Basic */
	h2 {font-size: 1.75rem;}
	h3 {font-size: 1.5rem;}
	h4 {font-size: 1.313rem;}
	h5 {font-size: 1.125rem;}
	/* Color & Badge */
	.btn-badge {line-height: 1.1;}
	/* Button & Input & Select */
	.btn-min {min-width: 72px;}
	.btn-round {padding: 0px 20px;}
	/* Icon */
	.icon-exclamation-mark:before {width: 44px; height: 44px; margin-top: 8px;}
}

@media all and (max-width:329.98px) {
	/* Basic */
	html {font-size: 0.938rem;}
	h2 {font-size: 1.5rem;}
	h3 {font-size: 1.375rem;}
	h4 {font-size: 1.25rem;}
	h5 {font-size: 1.063rem;}
	/* Button & Input & Select */
	.btn-default {height: 32px;}
	.btn-min {min-width: 64px;}
	.btn-lg {height: 42px;} /* 20231213 추가 */
	/* SNS */
	.btn-sns:before {width: 32px; height: 32px;}
	/* Custom Radio */
	.radio-custom label {line-height: 1.5;}
	/* Icon */
	.icon-exclamation-mark:before {width: 40px; height: 40px;}
}