
:root {
	--clr-blue-50: #e7edfe;
	--clr-blue-100: #c9d8fd;
	--clr-blue-200: #94b1fa;
	--clr-blue-300: #5e8af8;
	--clr-blue-400: #2862f5;
	--clr-blue-500: #0a46dc;
	--clr-blue-600: #0837b0;
	--clr-blue-700: #062a84;
	--clr-blue-800: #041c58;
	--clr-blue-900: #020e2c;
	--clr-blue-950: #010818;
	--clr-gray-100: hsl(234, 30%, 13%);
	--clr-gray-300: hsl(218, 21%, 18%);
	--clr-gray-400: hsl(0, 0%, 30%);
	--clr-gray-450: hsla(0, 0%, 30%, 0.5);
	--clr-gray-500: hsl(217, 14%, 42%);
	--clr-gray-700: hsla(0, 0%, 80%, 0.3);

	--clr-shadow: hsla(234, 30%, 13%, 0.5);
	--clr-menu-divider: var(--clr-gray-700);
	--clr-image-divider: var(--clr-blue-500);
	--clr-tab-active: var(--clr-blue-500);
	--clr-tab-inactive: var(--clr-gray-450);
	--clr-tab-line: var(--clr-blue-500);
} 

.break {
	word-break: keep-all;
	display: inline-block;
}
.highlights__items {
	display: grid;
	gap: 16px;
	padding: 16px;
}

.highlights__item {
	&:not(:last-child) {
		padding-block-end: 16px;
		border-block-end: 2px solid var(--clr-menu-divider);
	}
}	
.highlights__item a {
	display: grid;
	grid-template-columns: 1fr 20px calc(200 / 16 * 1rem);
	grid-template-rows: 60px repeat(3, auto);
	grid-template-areas:
		'headline . image'
		'time . image'
		'place . image'
		'host . image';	

	.time {
		grid-area: time;		
		color: #666;	
	}
	.place {
		grid-area: place;		
		color: #666;	
	}
	.host {
		grid-area: host;		
		color: #666;	
	}
	svg {
		width: 18px;
		height: 18px;
		margin-right: 2px;
		vertical-align: -4px;

		fill :#666
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	p {
		font-size: 13px;
		text-indent: -23px;
		padding-left: 21px;
	}

	h3 {
		grid-area: headline;
		font-size: 14px;
		margin-block-end: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.4 !important;
		max-height: 2.8em !important;
		word-wrap: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}
.highlights__item-image {
	grid-area: image;
	border-radius: 4px;
	overflow: hidden;
	
}
.coming-image {
	display: flex;
	justify-content: center;
	
	.image-container {
		position: relative;
		display: inline-block;
		width: 100%;
		max-width: 770px;
	}
	
	.overlay-button {
    position: absolute;
    display: block;
    width: 200px;
		height: 48px;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s ease;
	}
	
	/* 각 버튼별 높이 설정 */
	.overlay-button:nth-child(2) {
		left: 22%;
		bottom: 57.1%;
	}
	
	.overlay-button:nth-child(3) {
		left: 22%;
		bottom: 46%;
	}
	
	.overlay-button:nth-child(4) {
		left: 32%;
		bottom: 6%;
	}
	
	.overlay-button:nth-child(5) {
		left: 22%;
		bottom: 28.5%;
	}

	.overlay-button:nth-child(6) {
		left: 24%;
		bottom: 11.5%;
	}
	
	.overlay-button:nth-child(7) {
		left: 29%;
		bottom: 34%;
	}

	.overlay-button:nth-child(8) {
		left: 22%;
		bottom: 39.7%;
	}

	.overlay-button:nth-child(9) {
		left: 32.2%;
		bottom: 65.6%;
	}
	.overlay-button:nth-child(10) {
		left: 22%;
		bottom: 23.2%;
	}
	.overlay-button:nth-child(11) {
		left: 28.5%;
		bottom: 17.4%;
	}

	.overlay-button2 {
    position: absolute;
    display: block;
    width: 250px;
		height: 60px;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.3s ease;
	}

	.overlay-button2:nth-child(2) {
		width: 300px;
		height: 20px;
		left: 10%;
		top: 56.7%
	}

	.overlay-button2:nth-child(3) {
			left: 58.8%;
			top: 67.8%;
	}

	.overlay-button2:nth-child(4) {
			left: 58.8%;
			top: 73.7%;
	}

	.overlay-button2:nth-child(5) {
			left: 58.8%;
			top: 79.7%
	}

	.overlay-button2:nth-child(6) {
			left: 58.8%;
			top: 85.7%;
	}

	.overlay-button2:nth-child(7) {
			width: 300px;
			height: 20px;
			left: 10%;
			top: 94.9%
	}
	
	img {
		width: 100%;
		max-width: 770px;
	}
}

/* breakout */
.btn-day-wrapper {
	text-align: center;
	line-height: 0;
	font-size: 0;
	padding: 16px 16px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	.btn-day {
		display: inline-block;
		text-align: center;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: -1px;
		border-radius: 40px;
		padding: 5px 15px 6px;
		color: var(--clr-tab-inactive);
		border: 1px solid var(--clr-tab-inactive);

		&.on {
			color: var(--clr-tab-active);
			border-color: var(--clr-tab-active);
		}
		b {
			padding-inline-end: 5px;
		}
		b::after {
			content: '|';
			display: inline-block;	
			vertical-align: 2px;
			padding-inline-start: 5px;
			font-weight: 400;
		}
	}
}

/*viewing_guide*/
/* 첨부파일 다운 */
.btn_attFile_wrap {
	text-align: right;
	padding-inline-end: 35px;
}
.btn_attFile {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #151515;
	line-height: 28px;
}
.btn_attFile:before {
	position: absolute;
	top: 50%;
	right: -40px;
	content: '';
	display: block;
	width: 24px;
	height: 33px;
	margin-top: -10px;
	background: url(../images/2025/bg_ico_download2.png) no-repeat;
}
.btn_attFile:hover:after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #151515;
}
.list_type03 .text_title {
	font-size: 14px;
}
.info-list {
	padding: 20px;
	background-color: #f4f4f4;

	dl {		
		position: relative;
	}
	dl+dl {margin-block-start: 10px;}
	dt {		
		color: var(--clr-blue-500);
		padding-left: 10px;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.5;
	}
	dt::before {
		content: '';
		position: absolute;
		left: 0;
		top: 10px;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background-color: var(--clr-blue-500);		
	}
	dd {
		font-size: 14px;
		padding-left: 10px;
		line-height: 1.5;
	}
}

/*booking*/
.description {
	background: #f5f5f5;
	padding: 16px;
	margin-block-start: 10px;
	margin-block-end: 20px;
}
.point_blue {color: var(--clr-blue-500) !important;}
.txtH2 {
	font-size: 22px !important;
	letter-spacing: -0.25px;
	line-height: 1.3;
	margin-block-end: 20px;
	padding-bottom: 0;
	font-weight: 600;
	text-align: left;
}
.txtH2.ac {text-align: center;}
.dot_list li {
	position: relative;
	line-height: 22px;
	padding-left: 8px;
	font-size: 13px;
	color: #777;
	letter-spacing: -0.25px;
}

.dot_list li:before {
	position: absolute;
	top: 9px;
	left: 0;
	content: '';
	display: block;
	border-radius: 50%;
	width: 3px;
	height: 3px;
	background-color: #777;
}
.mt0 {margin-block-start: 0px !important;}
.mt10 {margin-block-start: 10px !important;}
.mt20 {margin-block-start: 20px !important;}
.mt30 {margin-block-start: 30px !important;}
.mb0 {margin-block-end: 0px !important;}
.mb20 {margin-block-end: 20px !important;}
.mb30 {margin-block-end: 30px !important;}
.mb40 {margin-block-end: 40px !important;}
.mb100 {margin-block-end: 100px !important;}
.box_infogroup .box_cont_group+.box_cont_group {
	margin-block-start: 24px;
}
.box_infogroup .box_cont_group .text_title {
	font-weight: 600;
}
.box_infogroup .box_cont_group .text_title span {
	font-weight: 400;
}
.fcOrg {
	color: #f06f1a !important;
}
.fcPink {
	color: #ff518b !important;
}
.fcGray {
	color: #777;
}
.txtH4 {
	font-size: 15px;
	font-weight: 600;
	margin-block-end: 7px;
}
.ac {text-align: center;}
.radiogroup_type01 {
	display: flex !important;
}
.radiogroup_type01 label {
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	line-height: 1.0 !important;
}
.box_chk .box_stat {
	display: inline-block;
	text-align: center;
	line-height: 22px;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 200;
	color: #ffffff;
	margin-inline-start: 10px;
}
.box_chk .box_stat.type01 {
	background-color: #55a944;
}

.box_chk .box_stat.type02 {
	background-color: #6c97d8;
}

.box_chk .box_stat.type03 {
	background-color: #b65959;
}

.box_chk .box_stat.type04 {
	background-color: #666;
	color: #fff;
}
.box_select_group.full .checkgroup_type01{
	display: block;	
	width: 100%;
	float: none !important;
	margin: 3px 0 !important;
}
.box_select_group.full .checkgroup_type01 input[type="checkbox"]+label {
	height: auto;
	line-height: 1.5;
	text-align: left;
	padding: 5px 10px;
	box-sizing: border-box;
	margin-left: 0;
	margin-block-end: 7px;
	width: 100%;
	display: block !important;

	p {		
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}
.box_select_group.full input[type="checkbox"]:checked+.button_checktype02:before {
	height: 21px;
	background-position: center 6px;
}
.box_select_group .btn-more-horizontal {
	cursor: pointer;
	width: 100%;
	display: flex;
	justify-content: center;
	height: auto;
	border: 0;
	padding: 0;
	text-align: center;
	background: #65adea;
	box-shadow: 0px 4px 4px 0px #8E8DD014;
	border: 0;
	align-items: center;
	font-size: 0;
	font-weight: 400;
	line-height: 45px;
	letter-spacing: -0.025em;	
	box-sizing: border-box;
	color: #fff;
	height: 45px;	
	transition: .3s;
}
.box_select_group .btn-more-horizontal svg {
	display: inline-block;
	width: 24px;
	height: 45px;	
	fill: #fff !important;
	transform: rotate(-90deg);
	margin-inline-start: 10px;
	transition: .3s;
}
.box_select_group .btn-more-horizontal::before {
	content: '더보기';
	font-size: 14px;
	display: inline-block;
	transition: .3s;
}
.box_select_group .btn-more-horizontal.on::before {
	content: '접기';	
}
.box_select_group .btn-more-horizontal.on svg {
	transform: rotate(90deg);
}
.box_select_group:has(.btn-more-horizontal) .checkgroup_type01 .box_chk:nth-child(n+3) {
	display: none;
}
.box_select_group:has(.btn-more-horizontal.on) .checkgroup_type01 .box_chk:nth-child(n+3) {
	display: block;
}
.box_select_group.full .checkgroup_type01 input[type="checkbox"]:disabled+label {
	border-color: #ddd;
	color: #777;
	cursor: default;
	opacity: 0.5;
}
.box_select_group.full .checkgroup_type01 input[type="checkbox"]:disabled+label:before {
	display: none;
}
.highlight {
	box-shadow: inset 0 -20px 0 #bfffa1;
}
.divider {
	position: relative;
	padding-block-start: 60px;
}
.divider::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 25px;
	width: calc(100% + 40px);
	background: #f4f4f4;
	height: 10px;
}
input[type="text"]:active,
input[type="password"]:active,
input[type="number"]:active,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
	border-color: #ddd !important;
}

input[type="radio"]:checked+.button_radiotype01,
input[type="radio"]:checked+.button_radiotype02,
input[type="checkbox"]:checked+.button_checktype01,
input[type="checkbox"]:checked+.button_checktype02 {
	color: var(--clr-blue-500);
	border-color: var(--clr-blue-500);
}
input[type="radio"]:checked+.button_radiotype01:before,
input[type="radio"]:checked+.button_radiotype02:before,
input[type="checkbox"]:checked+.button_checktype01:before,
input[type="checkbox"]:checked+.button_checktype02:before {
	background-image: url(../images/2025/box_chk_on.svg);
}
.checkgroup_type01 {
	display: flex;

	.button_checktype02 {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		line-height: 1.1 !important;
		word-break: keep-all;
	}

	input[type="checkbox"]:checked+.button_checktype01:before,
	input[type="checkbox"]:checked+.button_checktype02:before {		
		margin-left: 10px;
	}
}
.form_field01.split {
	input[type="checkbox"]+.button_checktype03 {
		width: auto;
		vertical-align: middle;
		padding-inline-start: 8px;

		&:before {
			display: none;
		}
	}

	input[type="checkbox"] {
		display: inline-block;
		position: relative;
		top: auto;
		left: auto;
		visibility: visible;
		width: 23px;
		height: 23px;
		vertical-align: -10px;

		&:before {
			position: absolute;
			top: 0;
			left: 0;
			content: '';
			display: block;
			width: 23px;
			height: 23px;			
			background-image: url(../images/common/icon_button_check.png);
			background-position: 0 0;
			background-size: 100%;
			visibility: visible;
		}

		&:checked:before {
			background-image: url(../images/2025/checkboxbutton.svg) !important;
		}
	}
}

/*booked*/
.bg-gray {
	background: #f5f5f5;
}
.bg-white {
	background: #fff;
	padding: 24px;
	max-width: 900px;
	margin: 0 auto;
}
.sub--title {
	max-width: 600px;
	font-size: 18px;
	font-weight: bold;
	color: #ff518b;
	line-height: 20px;
	text-align: center;
	padding: 0;
	margin: 0 auto;
}
.sub--title.noline {
	border-bottom: 0;
	padding-bottom: 0;
}
.ps2 {
	font-size: 13px;
	color: #999;
	text-indent: -9px;
	padding-left: 15px;
}
.box_chk input[type="checkbox"]:disabled+label {
	cursor: default;
}

.list_table .type01 th.underline {
	border-bottom: 1px solid #ddd;
}
.box_infogroup .box_cont_group.divider, 
.box_infogroup .box_cont_group.divider+.box_cont_group.divider {
	margin-block-start: 0;
}
.registration-wrap a.pink,
.button_type_w01,
.button_type_w02,
.button_large_type03 {
	border-color: #ff518b;
	background-color: #ff518b;
}

/*notice_list*/
.pt24 {
	padding-block-start: 24px !important;
}

.registration-wrap label input[type="checkbox"]:checked+i,
input[type="checkbox"]:checked+.button_checktype03:before {
	background-position: 0 center;
	background-image: url(../images/2025/checkboxbutton.svg) !important;
}
.registration-wrap .ps,
.box_terms_wrap.privacy3rd .subdesc.txt-red,
.box_terms_wrap.privacy3rd .desc_type01,
.list_type03 .text_cat,
.accorItem .accorQuest em,
.box_membership_out.privacy3rd .subdesc.txt-red,
.box_membership_out.privacy3rd .desc_type01,
.registration-wrap span.need,
.registration-wrap p.need,
.registration-wrap .ck .need {
	color: #ff518b !important;
}
.registration-wrap .top_border,
.registration-wrap .table {
	border-color: #ff518b !important;
}
.registration-wrap .btn {
	color: #fff;
	display: inline-block;
	background: var(--clr-blue-500);
	border: 1px solid var(--clr-blue-500);
	transition: .3s;
	text-align: center;
	height: 50px;
	line-height: 50px;
	width: 190px;
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	display: block;
	margin: 0 auto;
}

.list_type03 .button_faq {
	background: none
}
.list_type03 .button_faq:before {
	content: 'Q';
	color: var(--clr-blue-500);
	font-size: 22px;
	position: absolute;
	left: 15px;
	top: 30px;
	background: none;
}
.list_type03 .box_detailwrap {
	background: #f9f9f9;
	position: relative;
}
.list_type03 .box_detailwrap:before {
	content: 'A';
	font-size: 26px;
	position: absolute;
	left: 15px;
	top: 30px;
	color: #ff518b !important;
	background: none
}

/*program info*/
.web_2024 .program_main .program ul li {
	background-image: url(../images/2025/program_opening.png);
}
.web_2024 .program_main .program ul li:nth-child(2) {
	background-image: url(../images/2025/program_leaders.png);
}
.web_2024 .program_main .program ul li:nth-child(3) {
	background-image: url(../images/2025/program_event.png);
}
.web_2024 .program_main .program ul li:nth-child(4) {
	background-image: url(../images/2025/program_lecture.png);
}
.web_2024 .program_main .program ul li:nth-child(5) {
	background-image: url(../images/2025/program_exhibition.png);
}
.web_2024 .program_main .program ul li:nth-child(6) {
	background-image: url(../images/2025/program_market.png);
}
.web_2024 .program_main .program ul li:nth-child(7) {
	background-image: url(../images/2025/program_biznetworking.png);
}

/*privacy pop */
.box_terms_wrap.privacy3rd p {line-height: 1.5;font-size: 14px;color: #777;}
.box_terms_wrap.privacy3rd h6 {line-height: 1.5;font-size: 14px;color: #151515;font-weight: 700;}
.box_terms_wrap.privacy3rd .colsize01 {width: 120px;}
.box_terms_wrap.privacy3rd th {line-height: 1.5;font-size: 13px;}
.box_terms_wrap.privacy3rd td {line-height: 1.5;font-size: 13px;}

/*join company */
.table_info.type06 th {
	padding-block: 0;
	border: 0;
	background: none;
	padding-inline-start: 0;
	font-weight: 700;
}
.table_info.type06 td {
	padding-right: 0;
}
.step--wrapper {
	display: flex;
	padding: 0 0 10px;

	li {
		display: flex;		
		align-items: center;
		justify-content: center;
		padding: 14px 8px;		
		word-break: keep-all;
		border-radius: 10px;
		color: #fff;
		background-color: var(--clr-blue-500);
		text-align: center;		
		min-width: 80px;
	}
	li+li {
		margin-inline-start: 10px;
	}
}

.step--wrapper.type2 {

	li {
		background-color: #f4f4f4;
		border: 1px solid #ddd;
		color: #151515;
		min-width: 69px;
	}

	li+li {
		position: relative;		
		margin-inline-start: 20px;
	}

	li+li::before {
		content: '';
		position: absolute;
		left: -14px;
		top: 22px;
		width: 7px;
		height: 26px;
		background: url(../images/2025/arrow_right.png) no-repeat center;
		background-size: 100%;
	}
}

.table-wrapper {
	padding-block-start: 0px;
	padding-block-end: 30px;

	.title2 {
		position: relative;
		padding-left: 30px;
		background: url(../images/2025/ic_star.png) no-repeat 0 center;
		background-size: 20px 25px;
		font-weight: 700;
		line-height: 1.11;
		letter-spacing: -0.28px;
		text-align: left;
		color: var(--clr-blue-500);
		margin-bottom: 10px;
		margin-inline-start: -10px;
	}

	.inner-table-wrapper {
		position: relative;
		padding-left: 70px;

		.title {
			position: absolute;
			left: -10px;
			top: 0;
			width: 75px;

			span {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 100%;
				height: 50px;
				padding: 8px 0 8px;
				border-radius: 10px;
				background-color: var(--clr-blue-500);
				font-size: 14px;
				font-weight: 500;
				line-height: 1.3;
				text-align: center;
				color: #fff;
			}

		}

		.ps2 {
			display: block;
			text-align: center;
			font-size: 13px;
			color: #666;
			margin-top: 8px;
			line-height: 1;
		}

		.ar {
			text-align: right;
		}

		.ps3 {
			display: block;
			text-align: center;
			font-size: 13px;
			font-weight: 400;
			color: #666;
		}

		.listTable.round td {
			padding: 8px 12px;
		}
	}

	.listTable.round {
		border-collapse: collapse;
		border-spacing: 0;
		width: 100%;
		margin-top: 0px;
		border-radius: 10px 10px 0 0;
		box-shadow: 0 0 0 1px var(--clr-blue-500);
		border-style: hidden;
	}

	.listTable.round thead th {
		height: 25px;
		background-color: var(--clr-blue-500);
		border-top-color: var(--clr-blue-500);
		line-height: 25px;
		letter-spacing: -0.064px;
		color: #fff;
		text-align: center;
		vertical-align: middle;
		padding-block-start: 5px;
		padding-block-end: 5px;
	}

	.listTable.round thead td {
		height: 42px;
		background-color: #e4e4e4;
		border-top-color: var(--clr-blue-500);
		font-size: 28px;
		font-weight: 600;
		line-height: 42px;
		letter-spacing: -0.064px;
		color: var(--clr-blue-500);
		text-align: center;
		padding: 0;
	}

	.listTable.round thead th+th {
		border-left: 1px solid #3365e2;
	}

	.listTable.round thead td+td {
		border-left: 1px solid var(--clr-blue-500);
	}

	.listTable.round th:first-child {
		border-left: 0
	}

	.listTable.round th:last-child {
		border-right: 0
	}

	.listTable.round td:last-child {
		border-right: 0
	}

	.listTable.round tbody th {
		height: auto;
		font-weight: 500;
		line-height: 26px;
		letter-spacing: -0.064px;
		color: var(--clr-blue-500);
		text-align: center;
		vertical-align: middle;
	}

	.listTable.round td {
		padding: 12px;
		border-color: var(--clr-blue-500);
		font-weight: 500;
		line-height: 1.3;
		letter-spacing: -0.06px;
		text-align: center;
		color: var(--clr-blue-500);
		vertical-align: middle;
		border-left: 1px solid var(--clr-blue-500);
		border-top: 1px solid var(--clr-blue-500);
	}

	.listTable.round td span {
		font-weight: 400;
	}

	.listTable.round thead th:first-child {
		border-top-left-radius: 10px;
	}

	.listTable.round thead th:last-child {
		border-top-right-radius: 10px;
	}
}
.btn-link {
	display: inline-flex;
	align-items: center;
	border-bottom: 1px dashed #151515;
	line-height: 1.5;	

	.ico_link {
		display: inline-block;
		margin-inline-start: 5px;
		width: 18px;
		height: 18px;

		svg {
			fill: #151515;
		}
	}	
}

/*main*/
main {
	min-width: 350px;
}

main::before {
	content: '';
	display: block;
	height: 104px;
	width: 100%;
	background-color: var(--clr-blue-500);
}

.wrapper {
	display: grid;
	grid-template-columns: 15px 1fr 15px;

	>* {
		grid-column: 2;
	}

	>.fullbleed {
		grid-column: 1 / -1;
	}

	@media (width >=calc(720 / 16 * 1rem)) {
		grid-template-columns: 1fr min(100% - 30px, 720px) 1fr;
	}
}

.button {
	display: inline-block;
	position: absolute;
	bottom: 24%;
	right: 30px;
	width: fit-content;
	padding: 5px 26px 4px 17px;
	border-radius: 33px;
	border: solid 3px #fff;
	background: #00dcff url(../images/2025/arrow_right.png) no-repeat calc(100% - 15px) center;
	background-size: 4px 8px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #1d1d1b;
	transition: 250ms ease-in-out;
	transition-property: background-color;

	&:hover {
		background-color: #66EBFF;
	}
}

.hero {
	background-color: var(--clr-blue-500);
	width: 100%;
	
	.image {
		display: block;
		position: relative;
		max-width: 720px;
		margin: 0 auto;

		img {
			width: 100%;
		}
	}
}

.introduction {
	background-color: #fff;

	.inner-wrapper {
		position: relative;
		padding: 40px 0 30px;
	}

	h1 {
		font-size: 22px;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: -0.59px;
		text-align: left;
		color: #151515;
		word-break: keep-all;
		margin-block-end: 24px;
	}

	h2 {
		font-size: 19px;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: -0.59px;
		text-align: left;
		color: #151515;
		word-break: keep-all;
		margin-block-end: 24px;
	}

	.description {
		padding: 0;
		background: none;
		margin-block-end: 0;

		p {
			font-size: 15px;
			font-weight: 500;
			line-height: 1.5;
			text-align: left;
			color: #555;
			word-break: keep-all;
		}
	}
}

.relative-com {
	display: flex;
	gap: 5px;
	/* flex-direction: column; */
	justify-content: center;
	align-items: center;
	margin-block-end: 20px;
	flex-wrap: wrap;

	li {
		width: 170px;

		a {
			position: relative;
			display: block;
			background-color: #fff;
			border: 1px solid #ddd;
			border-radius: 5px;
			width: 100%;
			height: 35px;
			font-size: 13px;
			font-weight: 600;
			line-height: 2;
			letter-spacing: -0.45px;
			text-align: left;
			color: #666;
			padding-left: 15px;
			line-height: 33px;
			box-sizing: border-box;
			transition: 250ms ease-in-out;
			transition-property: border-color;

			&:after {
				content: '';
				position: absolute;
				top: 9px;
				right: 10px;
				width: 16px;
				height: 16px;
				background: url(../images/2025/rec_arrow_right.png) no-repeat center;
				background-size: 100%;
			}

			&:hover {
				border-color: #1d1d1b;
			}
		}

		&.korcham a {
			font-size: 0;
			background: #fff url(../images/2025/logo_korcham.png) no-repeat 12px center;
			background-size: 120px 22px;
		}

		&.sovac a {
			font-size: 0;
			background: #fff url(../images/2025/logo_sovac.png) no-repeat 12px center;
			background-size: 94px 18px;
		}

		&.sktelecom a {
			font-size: 0;
			background: #fff url(../images/2025/logo_sktelecom.png) no-repeat 12px center;
			background-size: 86px 32px;
		}

		&.serviceAction a {
			font-size: 0;
			background: #fff url(../images/2025/logo_serviceAction.png) no-repeat 12px center;
			background-size: 94px 20px;
		}

		&.kakaoimpact a {
			font-size: 0;
			background: #fff url(../images/2025/logo_kakaoimpact.png) no-repeat 12px center;
			background-size: 116px 20px;
		}

		&.koica a {
			font-size: 0;
			background: #fff url(../images/2025/logo_koica.png) no-repeat 12px center;
			background-size: 71px 17px;
		}

		&.smcultureandcontents a {
			font-size: 0;
			background: #fff url(../images/2025/logo_smcultureandcontents.png) no-repeat 12px center;
			background-size: 124px 24px;
		}

		&.rootimpact a {
			font-size: 0;
			background: #fff url(../images/2025/logo_rootimpact.png) no-repeat 12px center;
			background-size: 124px 17px;
		}

		&.impactsquare a {
			font-size: 0;
			background: #fff url(../images/2025/logo_impactsquare.png) no-repeat 12px center;
			background-size: 123px 12px;
		}

		&.coex a {
			font-size: 0;
			background: #fff url(../images/2025/logo_coex.png) no-repeat 12px center;
			background-size: 67px 24px;
		}

		&.mois a {
			font-size: 0;
			background: #fff url(../images/2025/logo_mois.png) no-repeat 12px center;
			background-size: 90px 30px;
		}

		&.kasb a {
			font-size: 0;
			background: #fff url(../images/2025/logo_kasb.png) no-repeat 12px center;
			background-size: 112px 24px;
		}
	}
}

.notice {
	padding-block-end: 40px;

	h2 {
		font-size: 19px;
		font-weight: 600;
		line-height: 1.14;
		text-align: left;
		color: var(--clr-blue-500);
		margin-block-end: 13px;
	}
}

.card--list {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr;

	.card--item {
		height: 94px;
		border: 1px solid #ddd;
		transition: 250ms ease-in-out;
		transition-property: border-color;

		a {
			display: block;
			width: 100%;
			height: 100%;
			padding: 20px 15px 0;
			box-sizing: border-box;

		}

		&:hover {
			border-color: #1d1d1b;
		}

		h3 {
			font-size: 15px;
			font-weight: 600;
			letter-spacing: -0.36px;
			text-align: left;
			color: #151515;
			overflow: hidden;
			text-overflow: ellipsis;
			line-height: 1.4;
			height: 2.8em;
			word-wrap: break-word;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			margin-block-end: 8px;
		}

		time {
			font-size: 12px;
			font-weight: 300;
			line-height: 1.26;
			letter-spacing: -0.29px;
			text-align: left;
			color: #666;
		}
	}
}
.timetable {
	margin-block-end: 40px;

	.image {
		position: relative;
		display: block;
		width: 100%;
		overflow: auto;
		overflow-y: hidden;		
		text-align: center;

		img {
			width: 1000px;
		}
	}
	.scroll {
		width: 100%;
		overflow: auto;
		overflow-y: hidden;
	}
}

/*header*/
.box_header_container {

	.box_logo {
		margin: 0;
		width: 100%;
		height: auto;
		line-height: 0;
		background-color: var(--clr-blue-500);
		padding-block-start: 13px;

		a {
			display: block;
			width: 110px;
			height: 50px;
			margin: 0 auto;
			line-height: 0;
		}
		/* 		
		div {			
			width: 205px;
			height: 50px;
			margin: 0 auto;
			line-height: 0;
			position: relative;

			.btn-left {
				position: absolute;
				left: 0;
				top: 0;
				width: 50%;
				height: 100%;
				margin-top: 0;
			}
		
			.btn-right {
				position: absolute;
				right: 0;
				top: 0;
				width: 50%;
				height: 100%;
				margin-top: 0;
			}
		} */
	}

	.button_nav {
		background: url(../images/2025/menu.png) no-repeat center;
		background-size: 20px 16px;
		width: 55px;
		height: 55px;
	}

	#gnb {
		background-color: var(--clr-blue-500);
		height: auto;
		border-bottom: 0;

		.gnb {
			display: flex;
			gap: 16px;
			justify-content: start;			
			padding: 0 30px 0 15px;		
			overflow-x: auto;

			li {
				padding: 0;
				
				.lnb-wrapper {
					display: none;
					align-items: center;
					justify-content: center;
					gap: 19px;
					white-space: nowrap;
					position: absolute;
					width: 100%;
					height: 37px;
					left: 0;
					top: 101px;					
					z-index: 100;
					background-color: #3617ce;
					overflow-x: auto;
					box-sizing: border-box;					

					a {
						font-size: 14px;							
						line-height: 1.37;
						letter-spacing: -0.34px;
						text-align: left;
						color: #fff;
						font-family: 'NotoKr-Regular';					

					}

					li.on {
						a {
							font-family: 'NotoKr-Medium';
							color: #f7d055;
						}
					}

					li+li {
						position: relative;

						&::before {
							content: '';
							position: absolute;
							left: -10px;
							top: 2px;
							width: 1px;
							height: 14px;
							background-color: #fff;
						}
					}					
				}

				&:first-child .lnb-wrapper {
					justify-content: start;
					padding: 0 30px 0 15px;					

					&::after {
						content: '';
						position: fixed;
						top: 101px;
						right: -30px;
						z-index: 0;
						width: 60px;
						height: 37px;
						background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, #3617ce 24%);
						background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, #3617ce 24%);
						background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #3617ce 24%);
						pointer-events: none;				
					}
				}

				&:has(.button_gnb.active) {
					.lnb-wrapper {
						display: flex;
					}
				}

				&.on>a {
					color: #f7d055;
				}
			}

			a {
				font-family: 'NotoKr-Medium';
				font-size: 15px;
				color: #fff;
				border-bottom: 0;
				width: auto;
				height: 41px;
				line-height: 41px;
				position: relative;

				.ico--link {					
					display: inline-block;
					height: 9px;
					width: 10px;
					margin-inline-start: 3px;
					vertical-align: 5px;
					background: url(../images/2025/arrow_gnb.png) no-repeat center;
					background-size: 100%;
				}
			}

			li:first-child>a{
				width: auto;
				height: 41px;
			}			

			/* &::after {
				display: none;
			} */

			@media (min-width: 412px) {		
				padding: 0 15px 0 15px;
				justify-content: center;

				&::after {
					display: none;
				} 
			}

		}

		&::after {
			/* display: none; */
			background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, var(--clr-blue-500) 24%);
			background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, var(--clr-blue-500) 24%);
		}
	}
	
}

/* nav menu */
.nav_inner_wrap {
	background: #fff;
}
.nav_area {
	.box_nav_header {
		background-color: var(--clr-blue-500);

		.nav_profilebox {
			background-color: var(--clr-blue-500);

			.box_profile {
				padding: 0;
				text-align: center;
			}
		}
	}

	.button_menu {
		padding-left: 0;
	}

	.list_nav_sub {
		padding-left: 20px;
		padding-block-end: 10px;
	}

	.list_nav_sub>li {
		padding-top: 10px;
	}

	.list_nav>li+li {
		margin-top: 10px;
	}

	.ico--link {
		display: inline-block;
		height: 9px;
		width: 10px;
		margin-inline-start: 3px;
		vertical-align: 5px;
		background: url(../images/2025/arrow_gnb_black.png) no-repeat center;
		background-size: 100%;
	}
}
.box_nav_group {
	border-bottom: 0;
}

/*contents*/
#sv_wrap.type01 .box_contents_container {
	padding-top: 104px;
}

.box_contents_container h1.page_tit {
	padding-block-start: 44px;
}

.box_contents_container h1.page_tit {
	font-size: 22px;
}

.view_cont_body.type-01 .view_title {
	font-size: 22px;
	padding-block-start: 24px;
	font-family: 'NotoKr-Bold';
}

/*registration-wrap*/
.registration-wrap {
	background: linear-gradient(180deg, var(--clr-blue-500) 240px, #fff 0);
}

/*program schedule*/
.web_2024 .program_main .schedule article {
	width: 100%;
	.scroll img {
		width: 1000px;
	}
}