@charset "UTF-8";
/* 공통 */
a,
a:hover,
a:active,
a:focus {
	color: inherit;
	text-decoration: none;
}

.event_container {
	min-width: 1100px;
	width: 100%;
	color: #000;
	font-family: 'noto4';
	overflow: hidden;
}

.event_container img {
	display: block;
}

.event_container button {
	border: none;
	background: none;
	cursor: pointer;
}

.event_container li {
	float: none;
}

.event_container .screen_out {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
}

.event_container .event_cont {
	position: relative;
}

.event_container .main_inner {
	position: relative;
	width: 1100px;
	height: 100%;
	margin: 0 auto;
}

.event_container .main_title {
	line-height: 1;
	text-align: center;
	letter-spacing: -0.01em;
	color: #fff;
	font-size: 50px;
	font-family: 'noto6';
}

@keyframes marquee {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

@keyframes pointerBounceDiagonal {
	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-10px, -10px);
	}
}

/* 컨텐츠 */
.event_cont .main_inner {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.event_cont_1 .btn_scroll {
	position: absolute;
	bottom: 149px;
	left: 110px;
	width: 880px;
	height: 90px;
}

.event_cont_3 {
	padding: 144px 0 160px;
	background: #f3f3f3;
}

.event_cont_3 .event_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 48px;
	margin: 73px 0 0;
}

.event_cont_3 .event_list .list_item {
	position: relative;
	width: 479px;
	height: 528px;
	border-radius: 30px;
	border: 3px solid #d7d7d7;
	transition: border-color 0.3s;
}

.event_cont_3 .event_list .list_item.is_active {
	border-color: #fd961d;
}

.event_cont_3 .event_list .list_item img {
	width: 100%;
}

.event_cont_3 .event_list .list_item:nth-child(odd)::after {
	content: '';
	position: absolute;
	top: 238px;
    right: -114px;
	width: 75px;
	height: 53px;
	background: url('/img/event/9137/pc/step_icon.png') no-repeat 0 0;
}

.event_cont_3 .btn_go {
	position: relative;
	margin: 73px 0 0;
}

.event_cont_3 .btn_go::after {
	content: '';
	position: absolute;
	top: 52px;
	right: 89px;
	width: 60px;
	height: 62px;
	background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
	animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_4 .btn_share {
	position: absolute;
	bottom: 222px;
	left: 110px;
	width: 880px;
	height: 92px;
}

/* 유의사항 */
.event_notice {
	padding: 212px 0 112px;
	color: #fff;
	background: #454443;
}

.event_notice .notice_title {
	position: relative;
	width: 100%;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -0.025em;
	font-size: 34px;
	font-family: 'noto6';
}

.event_notice .notice_title::before {
	content: '';
	position: absolute;
	top: -86px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 66px;
	height: 66px;
	background: url('/img/event/9137/pc/icon.png') no-repeat 0 0;
}

.event_notice .notice_list {
	width: 100%;
	margin: 85px 0 0 16px;
}

.event_notice .notice_list .list_item + .list_item {
	margin-top: 35px;
}

.event_notice .notice_list .list_item dt {
	line-height: 1.2;
	letter-spacing: -0.05em;
	font-size: 20px;
	font-family: 'noto5';
}

.event_notice .notice_list .list_item dd {
	display: block;
	width: 100%;
	line-height: 34px;
	margin-top: 11px;
	letter-spacing: -0.055em;
    font-size: 20px;
	font-family: 'noto2';
}

.event_notice .notice_list .list_item p {
	font-family: 'noto2';
}

.event_notice .notice_list .list_item ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 6px;
}

.event_notice .notice_list .list_item li {
	line-height: 1.2;
	float: none;
	font-family: 'noto2';
}

.event_notice .notice_list .list_item li::before {
	content: '-';
	margin: 0 5px 0 0;
}

.event_notice .notice_list .list_item ul + p {
	margin: 30px 0 5px;
	font-size: 20px;
	font-family: 'noto5';
}

