@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
}
.event_wrap .e_container.bg_02 {
	background-color: #46ECA2;
}
.event_wrap .e_container.bg_03 {
	background-color: #2AC580;
}
/* 제목 */
.event_wrap .e_title_box p {
	color: #075633;
}
/* bg_02 */
.event_wrap .e_card_wrap {
	margin-bottom: 64px;
	background: url("https://contents.kyobobook.co.kr/pmtn/2026/eBook/260206_newyear/content02/img/bnM_card_envelope.png") no-repeat bottom right -28px;
	padding-bottom: 180px;
}
.event_wrap .e_card_wrap .e_card_box {
	width: 600px;
	height: 600px;
	margin: 0 auto;
	perspective: 4000px;
	box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
}
.event_wrap .e_card_box .e_card_inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transform: rotateY(0);
	transition: transform 1s;
}
.event_wrap .e_card_box .e_card_inner .e_card {
	cursor: pointer;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transition: all 0.8s;
}
.event_wrap .e_card_wrap .e_card_box .e_card.front {
	opacity: 1;
	visibility: visible;
}
.event_wrap .e_card_wrap .e_card_box .e_card.back {
	opacity: 0;
	visibility: hidden;
}
.event_wrap .e_card_wrap .e_card_box.on .e_card.front {
	opacity: 0;
	visibility: hidden;
}
.event_wrap .e_card_wrap .e_card_box.on .e_card.back {
	opacity: 1;
	visibility: visible;
}
.event_wrap .e_bubble {
	margin: 0 auto;
	animation: floating 0.5s ease-in-out infinite alternate-reverse;
}
.event_wrap .e_bubble.e_bubble01 {
	width: 516px;
}
.event_wrap .e_bubble.e_bubble02 {
	width: 663px;
}
.event_wrap .e_gift {
	margin-bottom: 64px;
}
.event_wrap .e_btn_box .e_tag {
	display: inline-block;
	font-size: 24px;
	color: #B5B5B5;
	background-color: #383838;
	border-radius: 16px;
	overflow: hidden;
	padding: 8px 16px;
	margin-right: 10px;
	vertical-align: middle;
	line-height: 1;
}
.event_wrap .e_draw_wrap {
	font-family: "Pretendard",  sans-serif;
	text-align: center;
	margin-bottom: 64px;
}
.event_wrap .e_draw_wrap .e_card_bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	min-height: 328px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	padding: 50px;
	background-image: url("https://contents.kyobobook.co.kr/pmtn/2026/eBook/260206_newyear/content02/img/bnM_card_bg01.png");
}
.event_wrap .e_draw_wrap .e_card_bg p {
	font-size: 28px;
	line-height: 1.4;
	letter-spacing: -0.03em;
	word-break: keep-all;
}
.event_wrap .e_draw_wrap .e_card_bg .e_sentence {
	font-weight: 500;
}
.event_wrap .e_draw_wrap .e_card_bg .e_info {
	margin-top: 28px;
}
/* notice */
.event_wrap .e_notice {
	padding: 64px 0 0 0;
}
.event_wrap .e_notice p,
.event_wrap .e_notice ul li {
	color: #128351;
	font-size: 28px;
}
.event_wrap .e_notice ul li::before {
	background-color: #128351;
}
.event_wrap .e_toggle_btn,
.event_wrap .e_toggle_box .e_notice p,
.event_wrap .e_toggle_box .e_notice ul li {
	color: #105838;
}
.event_wrap .e_toggle_box .e_notice ul li::before {
	background-color: #105838;
}

@keyframes floating {
	0% {transform: translateY(5px);}
	100% {transform: translateY(0);}
}