@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap");

/*Common*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	height: 100%;
}
html {
	overflow-y: scroll;
}
body {
	background-color: #fff;
	word-break: keep-all;
	-webkit-text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
	-ms-text-size-adjust: 100% !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
li,
dt,
dd,
a,
p,
input,
textarea,
select,
option,
button {
	color: #555;
	font-family: "Inter", "pretendard", "돋움", dotum, sans-serif;
	font-size: 14px;
	font-weight: normal;
}
img,
fieldset,
iframe {
	border: 0 none;
}
ul,
ol,
li {
	list-style: none;
}
em,
address {
	font-style: normal;
}
img,
input,
select,
textarea {
	vertical-align: middle;
}
a {
	color: #7d7d7d;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #333;
	text-decoration: none;
}
button,
label {
	cursor: pointer;
	_cursor/**/: hand;
}
button * {
	position: relative;
}
textarea {
	overflow: auto;
}
option {
	padding-right: 6px;
}
.input_text,
textarea {
	margin: -1px 0;
	padding-right: 1px;
}
.input_check,
.input_radio {
	width: 13px;
	height: 13px;
}
.blind,
legend,
caption {
	text-indent: -9999px;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
hr {
	display: none;
}
legend {
	width: 0;
}
:root legend {
	margin-top: -1px;
	font-size: 0;
	line-height: 0;
}
caption {
	line-height: 0;
}
img {
	max-width: 100%;
}
.viewCon a {
	font-family: inherit;
	color: inherit;
	font-size: inherit;
}

/*test*/
.test1 {
	border: 1px solid red;
}
.test2 {
	background: #4f7beb;
}

.font1 {
	font-family: "Noto Sans KR";
}
.font2 {
	font-family: "Montserrat";
}

/* popup */
.pop_today_close {
	padding: 1px 7px 3px 7px;
	color: #ffffff;
	background: #303030;
	vertical-align: middle;
	border: 0px;
}
.pop_close {
	padding: 1px 7px 3px 7px;
	color: #ffffff;
	background: #303030;
	vertical-align: middle;
	border: 0px;
}

@media (max-width: 767px) {
	/* 메인 레이어 팝업 */
	.main_layer_popup {
		width: 96% !important;
		left: 50% !important;
		top: 50px !important;
		transform: translateX(-50%);
	}
	.main_layer_popup .popupContent {
		height: 100% !important;
	}
	.main_layer_popup img {
		width: 100%;
	}
}

/*=============== 로딩스피너 =================*/
#loadingIndicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	display: none;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.2);
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes rotateBg {
	0% {
		transform: translate(-50%, -50%) scale(4) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) scale(4) rotate(360deg);
	}
}
/*=============== 로딩스피너 끝 ================*/

/*=============================== 사이트 CSS 시작 ===============================*/

#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	overflow: visible;
	transition: background 0.4s ease;
}
#header.is-hidden .head {
	transform: translateY(-100%);
}
#header.is-hidden .dropMenu {
	visibility: hidden;
	pointer-events: none;
}
.head {
	position: relative;
	min-height: 100px;
	padding: 0 3%;
	text-align: center;
	box-sizing: border-box;
	transition: transform 0.4s ease;
}
.head h1 {
	position: absolute;
	left: 3%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3001;
}
.head h1 a {
	display: block;
	width: 112px;
	aspect-ratio: 112/61;
	background: url(/images/common/logo1.png) no-repeat center / contain;
	text-indent: -9999px;
}
.head .pcNav {
	position: relative;
	z-index: 100;
}
.head .pcNav > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 112px;
}
.head .pcNav > ul > li > a {
	font-family: Inter;
	font-size: var(--font-size-22);
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 100px;
}
.head .language {
	position: relative;
	right: auto;
	top: auto;
	z-index: 3000;
}
.headTools {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.moMenuBtn {
	display: none;
	box-sizing: border-box;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}
.moMenuBtn:hover {
	background: rgba(255, 255, 255, 0.12);
}
.moMenuBtn:focus-visible {
	outline: 2px solid #490e67;
	outline-offset: 2px;
}
.moMenuBtn__bars {
	display: block;
	position: relative;
	width: 22px;
	height: 16px;
}
.moMenuBtn__bar {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
	transition:
		transform 0.28s cubic-bezier(0.45, 0.05, 0.55, 0.95),
		opacity 0.2s ease;
}
.moMenuBtn__bar:nth-child(1) {
	top: 0;
	transform-origin: center;
}
.moMenuBtn__bar:nth-child(2) {
	top: 7px;
	transform-origin: center;
}
.moMenuBtn__bar:nth-child(3) {
	top: 14px;
	transform-origin: center;
}

#header.on .moMenuBtn:hover,
#header.moMenu--open .moMenuBtn:hover {
	background: rgba(0, 0, 0, 0.06);
}
#header.on .moMenuBtn,
#header.moMenu--open .moMenuBtn {
	color: #343136;
}

#header.moMenu--open .moMenuBtn__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
#header.moMenu--open .moMenuBtn__bar:nth-child(2) {
	opacity: 0;
}
#header.moMenu--open .moMenuBtn__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1399px) {
	.moMenuBtn {
		display: inline-flex;
	}
	.headTools {
		gap: 12px;
	}
	.head {
		height: 72px;
		min-height: auto;
	}
	.head h1 a {
		width: 70px;
	}
	.head .pcNav {
		display: none;
	}
	/* 올메뉴 (Figma m_all menu 3319:23395) — 전면 오버레이 + 상단 72px 바 */
	#header.moMenu--open .headTools {
		z-index: 3001;
	}
	#header.moMenu--open .moMenuBtn {
		width: 44px;
		height: 44px;
		border-radius: 0;
	}
	#header.moMenu--open .moMenuBtn:hover {
		background: transparent;
	}
	#header.moMenu--open .moMenuBtn__bars {
		width: 18px;
		height: 14px;
	}
	#header.moMenu--open .dropMenu {
		position: fixed;
		inset: 0;
		width: 100%;
		padding: 72px 0 0;
		margin: 0;
		background: #f9f9f9;
		border-radius: 0;
		box-sizing: border-box;
		overflow-y: auto;
		max-height: none;
		-webkit-overflow-scrolling: touch;
		z-index: 3000;
	}
}

@media (min-width: 1400px) {
	.moMenuBtn {
		display: none !important;
	}
	.moAccordion__trigger {
		display: none !important;
	}
}

.head .language > a {
	display: block;
	width: 25px;
	height: 25px;
	background: url(/images/common/icon_lang.png) no-repeat center / cover;
}
.head .language > ul {
	display: none;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, 10px);
	background: rgba(255, 255, 255, 0.68);
	backdrop-filter: blur(8px);
	border-radius: 8px;
	padding: 8px 16px;
}
.head .language > ul > li {
	border-bottom: 1px solid #8c8686;
}
.head .language > ul > li:last-child {
	border: 0;
}
.head .language > ul > li > a {
	display: block;
	padding: 8px 0;
	font-size: var(--font-size-16);
	color: #8c8686;
	font-weight: 500;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}
.head .language > ul > li.on > a {
	color: #000;
}

#header.on {
	background: #fff;
}
#header.is-scrolled {
	background: #fff;
}
#header.on .head h1 a,
#header.is-scrolled .head h1 a {
	background: url(/images/common/logo2.png) no-repeat center / contain;
}
#header.on .head .pcNav > ul > li > a,
#header.is-scrolled .head .pcNav > ul > li > a {
	color: #8c8686;
}
#header.on .head .pcNav > ul > li.is-active > a,
#header.is-scrolled .head .pcNav > ul > li.is-active > a {
	color: #343136;
}
#header.on .head .language > a,
#header.is-scrolled .head .language > a {
	background: url(/images/common/icon_lang2.png) no-repeat center / cover;
}
#header.is-scrolled .head .moMenuBtn__bars .moMenuBtn__bar {
	background: #343136;
}

/* dropMenu */
.dropMenu {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	background: #fff;
	border-radius: 0 0 16px 16px;
	padding: 100px 0 0;
}
.dropMenu .conWrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	padding: 40px 3%;
	border-top: 1px solid #ccc;
	align-items: start;
}
/* 같은 그리드 셀에 겹침 → 행 높이는 모든 패널 중 가장 큰 값으로 잡힘 (display:none 대신 visibility) */
.dropMenu .conWrap .menuWrap {
	grid-area: 1 / 1;
	display: flex;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}
.dropMenu .conWrap .menuWrap.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.dropMenu .conWrap .menuWrap .slg {
	width: 28%;
	font-family: "Noto Serif KR";
	font-size: var(--font-size-32);
	color: #343136;
	line-height: 138%;
}
.dropMenu .conWrap .menuWrap > ul {
	width: calc(100% - 28% - 467px);
	padding: 20px 105px;
	border-left: 1px solid #ccc;
}
.dropMenu .conWrap .menuWrap > ul > li > a {
	font-size: var(--font-size-22);
	color: #565050;
	letter-spacing: -0.02em;
	line-height: 220%;
	transition: color 0.4s;
}
.dropMenu .conWrap .menuWrap > ul > li > a:hover {
	color: #490e67;
}
.dropMenu .conWrap .menuWrap .img {
	overflow: hidden;
	flex: 0 0 auto;
	width: 467px;
	height: 237px;
	border-radius: 16px;
}
.dropMenu .conWrap .menuWrap .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* 모바일·태블릿 전체 메뉴 — Figma m_all menu: 아코디언 + #b7b7b7 구분선 */
@media (max-width: 1399px) {
	#header.moMenu--open .moAccordion__trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 12px;
		padding: 24px 0;
		margin: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		text-align: left;
		box-sizing: border-box;
		font-family: Inter, sans-serif;
		font-size: clamp(18px, 4.5vw, 23px);
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: -0.02em;
		color: #000;
	}
	#header.moMenu--open .moAccordion__trigger:focus-visible {
		outline: 2px solid #490e67;
		outline-offset: 2px;
	}
	#header.moMenu--open .menuWrap.is-open .moAccordion__trigger {
		padding-bottom: 0;
		color: #490e67;
	}
	#header.moMenu--open .moAccordion__chev {
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		position: relative;
		color: inherit;
	}
	#header.moMenu--open .moAccordion__chev::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 28%;
		width: 10px;
		height: 10px;
		margin: -5px 0 0 -5px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
		box-sizing: border-box;
	}
	#header.moMenu--open .menuWrap.is-open .moAccordion__chev::before {
		top: 45%;
		transform: rotate(-135deg);
	}
	#header.moMenu--open .dropMenu .conWrap {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: calc(100dvh - 72px);
		gap: 0;
		padding: 0 16px 32px;
		border-top: none;
		box-sizing: border-box;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap {
		position: relative;
		grid-area: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		min-width: 0;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		z-index: 1;
		padding: 0;
		margin: 0;
		border-bottom: 1px solid #b7b7b7;
		box-sizing: border-box;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap .slg {
		display: none !important;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap > ul {
		width: 100%;
		padding: 0 0 24px;
		margin: 10px 0 0;
		list-style: none;
		border: none;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap > ul > li > a {
		font-family: "pretendard", "Inter", sans-serif;
		font-size: var(--font-size-20);
		font-weight: 500;
		line-height: 2.3;
		letter-spacing: -0.02em;
		color: #565050;
		text-decoration: none;
		transition: color 0.2s ease;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap > ul > li > a:hover {
		color: #490e67;
	}
	#header.moMenu--open .dropMenu .conWrap .menuWrap .img {
		display: none !important;
	}
}

/* 메인 sec1·조직 자문위원회 배경 SVG — opacity 펄스는 common.js initLogoGraphicPathPulse */
.sec1 .bg .logo-bg-graphic path,
.orgAdvisory .bg .logo-bg-graphic path {
	transform-origin: center;
	transform-box: fill-box;
	fill: #000;
}

/* btnMore — 자세히 보기 등 공통 CTA */
.btnMore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	box-sizing: border-box;
	min-height: 47px;
	padding: 10px 23px;
	border: none;
	background: #490e67;
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.45s cubic-bezier(0.45, 0.05, 0.55, 0.95),
		transform 0.45s cubic-bezier(0.45, 0.05, 0.55, 0.95),
		box-shadow 0.45s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.btnMore span {
	font-family: "pretendard", "Inter", sans-serif;
	font-size: var(--font-size-18);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #fff;
}
.btnMore:hover {
	background: #5b1180;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(73, 14, 103, 0.22);
}

/*=============== footer · siteFooter (Figma 2818:16903) ===============*/
#footer {
	width: 100%;
}
.siteFooter {
	padding: 53.5px 0 56px;
}
.siteFooter__panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(32px, 5vw, 80px);
	box-sizing: border-box;
}

.siteFooter__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 80px;
	flex: 0 1 auto;
}

.siteFooter__logoImg {
	display: block;
	line-height: 0;
}

.siteFooter__logoImg img {
	display: block;
	width: 168px;
	max-width: 100%;
	height: auto;
}

.siteFooter__copyBlock {

}

.siteFooter__copyLine {
	font-family: "pretendard", "Inter", sans-serif;
	font-size: var(--font-size-16);
	font-weight: 400;
	line-height: 1.6;
	color: #706e6e;
}

.siteFooter__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	flex: 0 1 687px;
	max-width: 100%;
	min-height: 233px;
}

.siteFooter__meta {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.siteFooter__metaRow,
.siteFooter__metaSingle {
	margin: 0;
	font-family: "pretendard", "Inter", sans-serif;
	font-size: var(--font-size-16);
	font-weight: 400;
	line-height: 1.6;
	color: #565050;
}

.siteFooter__metaRow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 18px;
}

.siteFooter__metaRow + .siteFooter__metaSingle,
.siteFooter__metaSingle + .siteFooter__metaRow,
.siteFooter__metaSingle + .siteFooter__metaSingle {
	margin-top: 2px;
}

.siteFooter__pipe {
	display: inline-block;
	width: 1px;
	height: 15px;
	background: rgba(86, 80, 80, 0.35);
	flex-shrink: 0;
}

/* Family site — glass bar, panel opens upward */
.footFamily {
	position: relative;
	width: 100%;
	max-width: 265px;
	flex-shrink: 0;
}

.footFamily__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
	padding: 13px 18px;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	color: #565050;
	font-family: "pretendard", "Inter", sans-serif;
	font-size: var(--font-size-18);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease;
}

.footFamily__btn:hover {
	background: rgba(255, 255, 255, 0.85);
}

.footFamily__btn:focus-visible {
	outline: 2px solid #490e67;
	outline-offset: 2px;
}

.footFamily--open .footFamily__btn {
	background: rgba(255, 255, 255, 0.92);
}

.footFamily__chev {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	margin-top: 4px;
	border-right: 2px solid #565050;
	border-bottom: 2px solid #565050;
	transform: rotate(-135deg);
	transition: transform 0.28s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.footFamily--open .footFamily__chev {
	transform: rotate(45deg);
	margin-top: -2px;
}

.footFamily__panel {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	bottom: calc(100% + 8px);
	z-index: 200;
	padding: 8px 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(12px);
}

.footFamily__panel[hidden] {
	display: none;
}

.footFamily__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footFamily__list a {
	display: block;
	padding: 10px 18px;
	font-size: var(--font-size-15);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: #363131;
	text-decoration: none;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.footFamily__list a:hover {
	background: rgba(73, 14, 103, 0.06);
	color: #490e67;
}

@media (max-width: 1100px) {
	.siteFooter__logoImg {
		order: 1;
	}

	.siteFooter__meta {
		order: 2;
		width: 100%;
		padding-right: 5%;
	}

	.footFamily {
		order: 3;
		align-self: flex-start;
		max-width: 265px;
		width: 100%;
	}

	.siteFooter__copyBlock {
		order: 4;
		width: 100%;
		white-space: normal;
	}

.siteFooter__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	flex: none;
	max-width: none;
	min-height: auto;
	}

	.siteFooter__metaRow {
		gap: 0 8px;
	}

	.siteFooter__pipe {
		height: 11px;
	}
}

@media (max-width: 767px) {
	.siteFooter {
		padding-bottom: 36px;
	}

	.siteFooter__panel {
		padding: 0;
	}
	.siteFooter__logoImg img {
		width: 67px;
	}
	.siteFooter__left {
		gap: 20px;
	}
}

/* 서브 정적 페이지 · R&D 플레이스홀더 */
.subPage {
	padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 10vw, 90px);
	min-height: 40vh;
	box-sizing: border-box;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.page.rnd {
	padding-top: clamp(48px, 8vw, 100px);
}
.page.rnd .subPage {
	padding-top: 0;
}
.subPage .pageTitle {
	font-size: clamp(1.25rem, 5vw, 2rem);
	font-weight: 600;
	margin: 0 0 0.35em;
	color: #343136;
	letter-spacing: -0.02em;
	line-height: 1.3;
}
.subPage .subLead {
	font-size: clamp(14px, 3.8vw, var(--font-size-15));
	color: #7a7373;
	margin: 0 0 2em;
	max-width: 42em;
	line-height: 1.65;
}
.subPage .subBody {
	font-size: clamp(14px, 3.6vw, var(--font-size-15));
	color: #5c5656;
	line-height: 1.8;
	max-width: 48em;
}
.subPage .subBody p {
	margin: 0 0 1.1em;
}
.subPage .subBody p:last-child {
	margin-bottom: 0;
}
.subPage .subCta {
	display: inline-block;
	margin-top: 1.5em;
	padding: 12px 22px;
	background: #343136;
	color: #fff !important;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: -0.02em;
	transition: opacity 0.2s;
}
.subPage .subCta:hover {
	opacity: 0.88;
}
