
: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);
} 

/*header*/
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	min-width: 1100px;
	background-color: var(--clr-blue-500);
	z-index: 100;
	border-bottom: 1px solid #ddd;

	.logo {
		position: absolute;
		top: 15px;
		left: 60px;
		width: 156px;
		height: 67px;

		a {
			display: block;
			background: none;
			width: 100%;
			height: 100%;
			text-indent: 0;
		}

		@media (width <=calc(1480 / 16 * 1rem)) {		
			left: 40px;
		}
	}

	.ico--link {
		position: absolute;
		top: 42px;
		right: -16px;
		display: inline-block;
		height: 9px;
		width: 10px;
		background: url(../images/2025/arrow_gnb.png) no-repeat center;
		background-size: 100%;

	}

	nav .gnb-wrapper {
		display: flex;
		gap: 90px;
		align-items: center;
		justify-content: center;

		@media (max-width:1480px) {
			gap: 70px;
			padding-inline-start: 165px;
		}

		li {
			position: relative;

			a {
				display: grid;
				align-items: center;
				height: 100px;
				font-size: 20px;
				font-weight: 600;
				letter-spacing: -0.5px;
				color: #fff;
				transition: 250ms ease-in-out;
				transition-property: color;

				&.on,
				&:hover {
					color: #f7d055;

					.ico--link {
						background-image: url(../images/2025/arrow_gnb_on.png);
					}
				}

			}

			.lnb-wrapper.show {
				display: flex;
				animation: fadeInDown 1s 1;
			}

			.lnb-wrapper {
				position: absolute;
				left: -20px;
				top: 90px;
				display: none;
				flex-direction: column;
				gap: 10px;
				border-radius: 5px;
				box-shadow: 3.7px 3.3px 10px 0 rgba(0, 0, 0, 0.2);
				border: solid 1px var(--clr-blue-500);
				background-color: #f7f7f7;
				z-index: 11;
				padding: 20px 0;
				width: 180px;

				a {
					font-size: 18px;
					font-weight: 300;
					text-align: left;
					color: #151515;
					padding: 0 20px;
					height: auto;
					line-height: 2;

					&:hover {
						font-weight: 600;
						color: var(--clr-blue-500);
					}

					&.on {
						font-weight: 600;
						color: var(--clr-blue-500);
					}
				}
			}

		}
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -30px, 0);
	}

	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

/*footer*/
#footer_subsovac {	
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	min-width: 1100px;

	.footer_inner {
		position: relative;
		top: auto;
		left: auto;
		transform: translate(0, 0);
		width: 100%;
		max-width: 1100px;
	}
}

/*wrap*/
.web_2024 .program2024 .tab-menu-timetable {
	padding: 0 40px;
}

.web_2024 .program2024 .tab-menu-timetable ul {
	display: grid;
	grid-template-columns: repeat(8, auto);
}

.web_2024 .program2024 .tab-menu-timetable ul.item6 {
	grid-template-columns: repeat(6, auto);
}

.web_2024 .program2024 .tab-menu-timetable li {
	width: auto;
	box-sizing: border-box;
}
#container>div>.content,
#container>div>.content1 {
	padding: 0 40px;
}

.highlights__items {
	display: grid;
	gap: 24px;

	@media (width >=calc(1200 / 16 * 1rem)) {
		padding-block-start: 0;
	}
}

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

	.time {
		grid-area: time;		
		color: #666;	
		font-size: 18px;
	}
	.place {
		grid-area: place;		
		color: #666;	
	}
	.host {
		grid-area: host;		
		color: #666;	
	}
	svg {
		width: 20px;
		height: 20px;
		margin-right: 3px;
		vertical-align: -3px;

		fill :#666
	}
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.highlights__item-image {
	grid-area: image;
	border-radius: 6px;
	overflow: hidden;
}

.highlights__item-divider {
	position: relative;
	top: 15px;
	width: 32px;
	height: 1px;
	background: var(--clr-image-divider);
}

.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: 57.9%
	}

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

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

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

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

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

	img {
		width: 100%;
		max-width: 770px;
	}
	
	/* .overlay-button:hover {
		background: rgba(79, 42, 127, 0.1);
		border-radius: 4px;
	} */
}

p {
	font-size: 18px;
}

h3 {
	grid-area: headline;
	font-size: 20px;
	margin-block-end: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5 !important;
	max-height: 3em !important;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.btn-day-wrapper {
	text-align: center;
	line-height: 0;
	font-size: 0;
	padding-block-start: 15px;

	.btn-day {
		display: inline-block;
		text-align: center;
		font-size: 24px;
		line-height: 1.5;
		border-radius: 40px;
		padding: 5px 40px;
		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: 10px;
		}
		b::after {
			content: '|';
			display: inline-block;	
			vertical-align: 2px;
			padding-inline-start: 15px;
			font-weight: 400;
		}
	}
		
	.btn-day+.btn-day {margin-left: 20px;}
}

/*viewing_guide*/
.page_tit.al {
	text-align: left;
}
.mb100 {
	margin-block-end: 100px !important;
}
.info-list {
	padding: 30px;
	background-color: #f4f4f4;

	dl {
		padding-left: 122px;
		position: relative;
	}

	dl+dl {margin-block-start: 10px;}

	dt {
		position: absolute;
		left: 0;
		top: 0;
		color: var(--clr-blue-500);
		padding-left: 10px;
		font-size: 16px;
		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: 16px;
		line-height: 1.5;
	}
}

/*booking*/
.description {
	background: #f5f5f5;
	padding: 20px;
	margin-block-start: 10px;
	margin-block-end: 20px;
}
.point_blue {color: var(--clr-blue-500) !important;}
.txtH2 {
	font-size: 30px;
	letter-spacing: -0.25px;
	line-height: 1.3;
	margin-block-end: 40px;
	padding-bottom: 0;
}
.mt30 {margin-block-start: 30px !important;}
.mt20 {margin-block-start: 20px !important;}
.mt10 {margin-block-start: 10px !important;}
.mb40 {margin-block-end: 40px !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;
}
.member_chk_wrap:has(.box_chk.full) .categori_wrap {
	left: auto;
}
.box_chk.full{
	display: block;	
	width: 100%;
	float: none !important;
	margin: 3px 0 !important;
}
.box_chk.full input[type="checkbox"]+label {
	height: auto;
	line-height: 1.5;
	text-align: left;
	padding: 5px 10px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.6 !important;
	max-height: 4em !important;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.member_chk_wrap {
	.box_chk.item8 {
		width: calc((100% - 48px) / 8);
	}
	.box_chk.item7 {
		width: calc((100% - 42px) / 7);
	}
	.box_chk.item4 {
		width: calc((100% - 24px) / 4);
	}

	.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;

		svg {
			fill: #fff !important;
		}
	}
}
.member_chk_wrap .btn-more-horizontal svg {
	display: inline-block;
	width: 24px;
	height: 45px;	
	fill: #777;
	transform: rotate(-90deg);
	margin-inline-start: 10px;
	transition: .3s;
}
.member_chk_wrap .btn-more-horizontal::before {
	content: '더보기';
	font-size: 14px;
	display: inline-block;
	transition: .3s;
}
.member_chk_wrap .btn-more-horizontal.on::before {
	content: '접기';	
}
.member_chk_wrap .btn-more-horizontal.on svg {
	transform: rotate(90deg);
}
.member_chk_wrap:has(.btn-more-horizontal) .categori_wrap .box_chk:nth-child(n+3) {
	display: none;
}
.member_chk_wrap:has(.btn-more-horizontal.on) .categori_wrap .box_chk:nth-child(n+3) {
	display: block;
}
.box_chk.full input[type="checkbox"]:disabled+label {
	border-color: #ddd;
	cursor: default;
	opacity: 0.5;
}
.box_chk.full input[type="checkbox"]:disabled+label:before {
	display: none;
}
.highlight {
	box-shadow: inset 0 -20px 0 #bfffa1;
}
input[type="text"]:focus {
	border-color: #ddd;
}
.box_chk input[type="radio"]:checked+label,
.box_chk input[type="checkbox"]:checked+label {
	border-color: var(--clr-blue-500);
	color: var(--clr-blue-500);
}
.box_chk input[type="radio"]:checked+label:before,
.box_chk input[type="checkbox"]:checked+label:before {
	width: 12px;
	height: 10px;
	background: url(../images/2025/box_chk_on.svg) no-repeat;
	background-size: 100%;
	margin-right: 2px;
}

.check_box.split {
	input[type="checkbox"]+label {
		padding-inline-start: 12px;

		&:before {
			display: none;
		}
	}

	input[type="checkbox"] {
		display: inline-block;
		position: relative;
		width: 20px;
		height: 20px;
		margin: 0;
		vertical-align: -5px;

		&:before {
			position: absolute;
			top: 50%;
			left: 0;
			content: '';
			display: block;
			width: 20px;
			height: 20px;
			margin-top: -10px;
			background: url(../images/member/checkbox.png) no-repeat;
			background-size: 100%;
		}

		&: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: 22px;
	font-weight: bold;
	color: #ff518b;
	line-height: 40px;
	text-align: center;
	padding: 0 0 17px;
	margin: 0 auto 30px;
	border-bottom: 1px solid rgb(221, 221, 221);
}
.sub--title.noline {
	border-bottom: 0;
	padding-bottom: 0;
}
.box_chk input[type="checkbox"]:disabled+label {
	cursor: default;
}
.btn_mid {
	background-color: #ff518b;
}
.btn_mid:hover {
	background-color: #CC0044;
}
.fcPink {
	color: #ff518b !important;
}
.registration-wrap label input[type="checkbox"]:checked+i,
.check_box input[type="checkbox"]:checked+label:before {
	background-image: url(../images/2025/checkboxbutton.svg) !important;
}

.registration-wrap .btn {
	color: #fff;
	background: var(--clr-blue-500);
	border: 1px solid var(--clr-blue-500);
	transition: .3s;
	text-align: center;
	height: auto;
	width: 190px;
	font-size: 16px;
	font-weight: 500;
	box-sizing: border-box;
	padding: 10px 20px;
}
.registration-wrap .table,
.registration-wrap .top_border {
	border-color: #ff518b !important;
}
.registration-wrap a.pink:hover {
	background-color: #CC0044;
}

.accorItem .accorQuest em,
.box_membership_out.privacy3rd .subdesc.txt-red,
.box_membership_out.privacy3rd .desc_type01,
.registration-wrap span.need,
.registration-wrap .ck .need,
.registration-wrap p.need {
	color: #ff518b !important;
}
.accorItem .accorQuest:before {
	content: 'Q';
	color: var(--clr-blue-500);
	font-size: 26px;
	background: none
}
.accorItem .accorAnswer:before {
	content: 'A';
	font-size: 26px;
	color: #ff518b !important;
	background: none
}

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

/* main::before {
	content: '';
	display: block;
	height: 100px;
	width: 100%;
} */
.wrapper {
	display: grid;	
	grid-template-columns: 24px 1fr 24px;

	>* {
		grid-column: 2;
	}

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

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

.button {
	display: inline-block;
	position: absolute;
	top: 145px;
	right: 0;
	width: fit-content;
	padding: 15px 56px 19px 28px;
	border-radius: 35px;
	border: solid 3px #fff;
	background: #00dcff url(../images/2025/arrow_right.png) no-repeat calc(100% - 21px) center;
	background-size: 13px 18px;
	font-size: 28px;
	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);
	
	.image {
		position: relative;		

		img {
			width: 100%;
		}
	}
}
.introduction {
	background-color: #fff;

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

	/* dl {
		padding-left: 155px;
		position: relative;
	}
	dt {
		position: absolute;
		left: 50px;
		top: 0;
	}
	dt,
	dd {
		font-size: 24px;
		font-weight: 600;	
		line-height: 1.67;
		letter-spacing: -0.6px;
		text-align: left;
		color: #151515;
	} */
	h1 {		
		font-size: 36px;
		font-weight: bold;
		line-height: 1.53;
		letter-spacing: -0.95px;
		text-align: left;
		color: #151515;
		margin-block-end: 30px;
	}
	h2 {		
		font-size: 29px;
		font-weight: bold;
		line-height: 1.53;
		letter-spacing: -0.95px;
		text-align: left;
		color: #151515;
		margin-block-end: 30px;
	}

	.ps {
		font-size: 20px;
		font-weight: 500;			
		letter-spacing: -0.5px;
		text-align: left;
		color: #666;
	}
	.description {
		padding: 0;
		background: none;
		margin-block-end: 0;

		p {			
			font-size: 22px;
			font-weight: 500;
			line-height: 1.64;
			text-align: le;
			color: #555;
		}
	}
}
.relative-com {
	position: absolute;
	left: calc(100% + 30px);
	top: -30px;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 12px 12px 12px 13px;
	border-radius: 5px;
	box-shadow: 4.5px 4px 10px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 255px;

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

			&:after {
				content: '';
				position: absolute;
				top: 18px;
				right: 21px;
				width: 19px;
				height: 19px;
				background: url(../images/2025/rec_arrow_right.png) no-repeat center;
				background-size: 100%;
			}
			&:hover {
				border-color: #1d1d1b;
			}
		}
		
		&.korcham a {
			font-size: 0;
			background: url(../images/2025/logo_korcham.png) no-repeat 12px center;
			background-size: 153px 28px;
		}
		&.sovac a {
			font-size: 0;
			background: url(../images/2025/logo_sovac.png) no-repeat 12px center;
			background-size: 119px 23px;
		}
		&.sktelecom a {
			font-size: 0;
			background: #fff url(../images/2025/logo_sktelecom.png) no-repeat 12px center;
			background-size: 109px 41px;
		}
		&.serviceAction a {
			font-size: 0;
			background: url(../images/2025/logo_serviceAction.png) no-repeat 12px center;
			background-size: 120px 26px;
		}
		&.kakaoimpact a {
			font-size: 0;
			background: url(../images/2025/logo_kakaoimpact.png) no-repeat 12px center;
			background-size: 148px 25px;
		}
		&.koica a {
			font-size: 0;
			background: url(../images/2025/logo_koica.png) no-repeat 12px center;
			background-size: 91px 22px;
		}
		&.smcultureandcontents a {
			font-size: 0;
			background: url(../images/2025/logo_smcultureandcontents.png) no-repeat 12px center;
			background-size: 157px 30px;
		}
		&.rootimpact a {
			font-size: 0;
			background: url(../images/2025/logo_rootimpact.png) no-repeat 12px center;
			background-size: 157px 22px;
		}
		&.impactsquare a {
			font-size: 0;
			background: url(../images/2025/logo_impactsquare.png) no-repeat 12px center;
			background-size: 156px 15px;
		}
		&.coex a {
			font-size: 0;
			background: url(../images/2025/logo_coex.png) no-repeat 12px center;
			background-size: 85px 30px;
		}
		&.mois a {
			font-size: 0;
			background: url(../images/2025/logo_mois.png) no-repeat 12px center;
			background-size: 114px 38px;
		}
		&.kasb a {
			font-size: 0;
			background: url(../images/2025/logo_kasb.png) no-repeat 12px center;
			background-size: 142px 31px;
		}
	}
	
	@media (width <=calc(1480 / 16 * 1rem)) {
		position: relative;
		left: auto;
		top: auto;
		flex-direction: row;
		border: 0;
		box-shadow: none;
		justify-content: center;
		margin-block-start: 60px;
		width: 100%;
		flex-wrap: wrap;

		li {
			a {
				width: 255px;
			}
		}
	}
}

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

	h2 {
		font-size: 24px;
		font-weight: 600;
		line-height: 1.67;
		text-align: left;
		padding-inline-end: 150px;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.5 !important;
		max-height: 3em !important;
		word-wrap: break-word;
		display: -webkit-box !important;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		margin-block-end: 24px;
		/* color: var(--clr-blue-500); */
	}
}
.card--list {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 1fr 1fr;

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

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

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

		h3 {
			font-size: 20px;
			font-weight: 600;			
			letter-spacing: -0.5px;
			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: 16px;
			font-weight: 300;		
			line-height: 1.75;
			letter-spacing: -0.4px;
			text-align: left;
			color: #666;
		}
	}
}
.timetable {
	padding-block-end: 100px;

	.image {
		position: relative;

		img {
			width: 100%;
		}
	}
}
/*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 */
.popup_wrap.membership_out {width: 726px;}
.popup_wrap.membership_out p {line-height: 1.5;}
.popup_wrap.membership_out th {line-height: 1.5;font-size: 14px;}
.popup_wrap.membership_out td {line-height: 1.5;font-size: 13px;}

/*join company */
.pb50 {
	padding-block-end: 50px !important;
}
.step--wrapper {
	display: flex;
	padding: 20px 0;

	li {
		display: inline-block;
		min-width: 200px;
		padding: 0 20px;
		margin-right: 40px;
		border-radius: 10px;
		color: #fff;
		background-color: var(--clr-blue-500);
		text-align: center;
	}
}
.step--wrapper.type2 {

	li {
		background-color: #f4f4f4;
		border: 1px solid #ddd;
		color: #151515;
	}
	li+li {
		position: relative;
	}
	li+li::before {
		content: '';
		position: absolute;
		left: -26px;
		top: 22px;
		width: 14px;
		height: 26px;
		background: url(../images/2025/arrow_right.png) no-repeat center;
		background-size: 100%;
	}
}

.table-wrapper {
	padding-block-start: 30px;
	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
	}
	.inner-table-wrapper {
		position: relative;
		padding-left: 200px;

		.title {
			position: absolute;
			left: 20px;
			top: 0;
			width: 170px;

			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;
	border-bottom: 1px dashed #151515;
	line-height: 1.5;
	transition: .3s;

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

		svg {
			fill: #151515;
		}
	}

	&:hover {
		border-color: var(--clr-blue-500);
		color: var(--clr-blue-500);

		svg {
			fill: var(--clr-blue-500);
		}
	}
}

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

/*sub notice*/
.border_list_wrap {

	.item {
		a {
			display: flex;
			align-items: center;

			h2 {
				margin-block-end: 0;
			}
		}
	}
}

