@charset "utf-8";
* {
	box-sizing: border-box;
}
.event_wrap .e_container.bg_01 {
	background: #000 url("https://contents.kyobobook.co.kr/pmtn/2025/book/250818_ysbread/bnD11_cont01_bg.jpg") no-repeat 50% 0;
}
.event_wrap .e_container.bg_02 {
	background: #66e661;
}
.event_wrap .mT70 {
	margin-top:70px;
}
.event_wrap .inner.w1200 {
	width:1200px;
}
.event_wrap .e_main_box {
	position:relative;
	margin-bottom:70px;
	perspective: 1000px;
}
.event_wrap .e_main_box .e_ani {
	position:absolute;
	top:385px;
	left:380px;
	width:462px;
	transform-style: preserve-3d;
	animation: rotating 5s infinite ease-in-out;
}
.event_wrap .e_main_box .e_ani img {
	width:100%;
}
.event_wrap .e_btn_box {
	width:517px;
	margin:46px auto 0;
}
.event_wrap .e_notice {
	width:710px;
	padding:65px 0;
}
.event_wrap .e_notice p,
.event_wrap .e_notice ul li {
	color:#949494;
}
.event_wrap .e_notice ul li::before {
	background: #949494;
}
@keyframes rotating {
	0% {
		transform: rotateY(0deg);
	}
	50% {
		transform: rotateY(-20deg);
	}
	100% {
		transform: rotateY(0deg);
	}
}