@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
}
.event_wrap {
	font-family: "Pretendard",  sans-serif;
}
.event_wrap .e_container.bg_01 {
	background-color: #F3F3ED;
	padding-top: 120px;
}
.event_wrap .e_container.bg_01 .e_bg_inner01 {
	position: relative;
	padding-bottom: 120px;
}
.event_wrap .e_container.bg_01 .e_bg_inner01::before {
	content: '';
	background: url("https://contents.kyobobook.co.kr/pmtn/2026/book/260211_promind/bnC_bg_inner01.png") no-repeat top left;
	background-size: 100% 100%;
	width: 72%;
	height: 429px;
	position: absolute;
	bottom: -6px;
	left:0;
	animation: bgAppear 2s ease-in-out both;
}
.event_wrap .e_container.bg_01 .e_bg_inner02 {
	position: relative;
	padding: 120px 0;
}
.event_wrap .e_container.bg_01 .e_bg_inner02::before {
	content: '';
	border-top-right-radius: 80px;
	background-color: #84D98A;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: bgAppear 1.5s ease-in-out both;
}
.event_wrap .e_container.bg_02 {
	background-color: #84D98A;
} 
.event_wrap .e_container.bg_02 .e_bg_inner {
	background-color: #B2EDB6;
	border-radius: 80px 80px 0 0;
	padding: 120px 0;
}
.event_wrap .e_container.bg_03 {
	background-color: #B2EDB6;
}
.event_wrap .e_container.bg_03 .e_bg_inner {
	background-color: #fff;
	border-radius: 80px 80px 0 0;
	padding: 120px 0;
}
.event_wrap .w700 {
	width: 700px;
	margin: 0 auto;
}
.event_wrap .pdT120 {
	padding-top: 120px;
}
/* 메인 제목 */
.event_wrap .e_main_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.event_wrap .e_main_title > span {
	display: block;
	font-size: 34px;
	line-height: 1.5;
	color: #1A1A1A;
	margin-bottom: 15px;
}
.event_wrap .e_main_title h3 {
	font-size: 76px;
	line-height: 1.2;
	font-weight: 800;
	color: #1A1A1A;
	margin-bottom: 36px;
}
.event_wrap .e_main_title h3 .e_deco {
	/* silver */
	background: linear-gradient(
		to right, 
		#444444 0%,
		#a1a1a1 40%,
		#ffffff 50%,
		#a1a1a1 60%,
		#444444 100% 
	);
	/* gold */
	/* background: linear-gradient(
		to right,
		#5a4a1f 0%,
		#c9a227 40%,
		#ffe27a 50%,
		#c9a227 60%,
		#5a4a1f 100%
	); */
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: shine 2.5s linear infinite;
}
.event_wrap .e_main_title p {
	font-size: 24px;
	line-height: 1.5;
	color: #498950;
	margin-top: 24px;
}
.event_wrap .e_main_title p b {
	color: #1A1A1A;
	font-weight: 500;
}
.event_wrap .e_main_sub {
	padding-top: 10px;
	animation: textMotion 1.5s 1s ease-in-out both;
	height: 117px;
}
.event_wrap .e_main_sub img {
	width: 100%;
	height: 100%;
}
/* 공통 제목 */
.event_wrap .e_title_box {
	margin-bottom: 40px;
}
.event_wrap .e_title_box h4 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.025em;
	color: #1A1A1A;
}
.event_wrap .e_title_box p {
	font-size: 28px;
	line-height: 1.5;
	color: #1A1A1A;
	margin-top: 16px;
}
/* 버튼 */
.event_wrap .e_btn_wrap {
	width: 700px;
	margin: 40px auto 0;
	display: flex;
	gap: 0 16px;
}
.event_wrap .e_btn_wrap .e_btn {
	display: block;
	max-width: 342px;
	width: 100%;
	height: 80px;
	line-height: 80px;
	border-radius: 8px;
	overflow: hidden;
	font-size: 26px;
	letter-spacing: -0.01em;
	color: #fff;
	background-color: #000;
	text-align: center;
	cursor: pointer;
}
.event_wrap .e_btn_wrap .e_btn img {
	vertical-align: middle;
	margin-left: 24px;
	transition: transform 0.3s;
}
.event_wrap .e_btn_wrap .e_btn.on img {
	transform: rotate(180deg);
}
/* 유의사항 */
.event_wrap .e_notice.e_notice_bg {
	background-color: #F5F5F5;
	border-radius: 40px;
	overflow: hidden;
	width: 700px;
	margin: 40px auto 0;
	padding: 24px 25px;
}
.event_wrap .e_notice.e_notice_bg ul {
	padding: 0;
}
.event_wrap .e_notice.e_notice_bg p,
.event_wrap .e_notice.e_notice_bg ul li {
	font-family: "Pretendard",  sans-serif;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: -0.025em;
}
.event_wrap .e_notice.e_notice_bg ul li::before {
	background-color: #000;
}
/* 유의사항 토글 */
.event_wrap .e_toggle_box {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin-bottom: 120px;
}
.event_wrap .e_toggle_box.on {
	display: block;
}
/* 작가 탭 */
.event_wrap .e_author_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
}
.event_wrap .e_author_wrap li {
	width: calc((100% / 2) - 10px);
}
.event_wrap .e_author_wrap .e_tab {
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #fff;
	border-radius: 40px;
	padding: 16px 16px 16px 20px;
}
.event_wrap .e_author_wrap .e_tab .e_txt {
	width: calc(100% - 104px);
	padding-left: 24px;
}
.event_wrap .e_author_wrap .e_tab .e_txt .e_cate span {
	font-size: 22px;
	line-height: 1.5;
	background-color: #D76DB9;
	color: #F3F3ED;
	border-radius: 24px;
	padding: 4px 12px;
}
.event_wrap .e_author_wrap .e_tab .e_txt .e_name {
	font-size: 32px;
	line-height: 1.5;
	color: #7E7E7E;
}
.event_wrap .e_author_wrap .e_tab .e_txt .e_name b {
	color: #1A1A1A;
}
/* 질문 답변 */
.event_wrap .qna_box {
	position: relative;
	scroll-margin-top: 80px;
}
.event_wrap .qna_box .e_q_box {
	border-top: 1px solid #1A1A1A;
	margin-bottom: 20px;
	padding: 20px 0;
	position: relative;
	cursor: pointer;
}
.event_wrap .qna_box .e_q_box::after {
	content: '';
	background: url("https://contents.kyobobook.co.kr/pmtn/2026/book/260211_promind/bnC_icon_arrow01.png") no-repeat center;
	width: 23px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform 0.3s;
}
.event_wrap .qna_box .e_q_box.active::after {
	transform: translateY(-50%) rotate(180deg);
}
.event_wrap .qna_box .e_q_box h5 {
	font-size: 30px;
	line-height: 1.4;
	font-weight: 500;
	color: #1A1A1A;
}
.event_wrap .qna_box .e_a_box {
	margin-top:20px;
	height:0;
	overflow:hidden;
	transition:height .45s cubic-bezier(.4,0,.2,1);
}
.event_wrap .qna_box .e_a_box.active {
	margin-bottom: 40px;
}
.event_wrap .qna_box .e_a_box .e_q_detail {
	background-color: #DFFAE1;
	border-radius: 24px;
	padding: 20px 50px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: -0.025em;
	color: #638665;
	margin-bottom: 16px;
}
/* 슬라이드 */
.event_wrap .e_answer_slide .swiper-pagination {
	bottom: auto;
	left: auto;
	top: 383px;
	right: 50px;
	width: auto;
	text-align: right;
	font-size: 0;
}
.event_wrap .e_answer_slide .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	background-color: #E6E6E6;
	margin: 0 4px;
}
.event_wrap .e_answer_slide .swiper-pagination-bullet-active {
	background-color: #D76DB9;
}
.event_wrap .qna_box .e_a_box .e_book_details {
	background-color: #fff;
	border-radius: 24px 24px 0 0;
	padding: 40px 50px;
}
.event_wrap .qna_box .e_a_box .e_thumb {
	width: 200px;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto 40px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.event_wrap .qna_box .e_a_box .e_thumb img {
	width: 100%;
	aspect-ratio: 200 / 286;
}
.event_wrap .qna_box .e_a_box .e_text {
	color: #1A1A1A;
	line-height: 1.5;
	letter-spacing: -0.025em;
}
.event_wrap .qna_box .e_a_box .e_text strong {
	display: block;
	font-size: 30px;
	margin-bottom: 10px;
}
.event_wrap .qna_box .e_a_box .e_text p {
	font-size: 24px;
}
.event_wrap .qna_box .e_a_box .e_info {
	background-color: #F5F5F5;
	border-radius: 0 0 24px 24px;
	padding: 24px 50px 40px 50px;
}
.event_wrap .qna_box .e_a_box .e_info .e_author {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.event_wrap .qna_box .e_a_box .e_info .e_author span {
	font-size: 28px;
	font-weight: 600;
	color: #1A1A1A;
	padding-left: 20px;
}
.event_wrap .qna_box .e_a_box .e_info .e_details {
	font-size: 22px;
	line-height: 1.5;
	color: #7E7E7E;
}

@keyframes shine {
	from { background-position: 200% center; }
	to { background-position: 0% center; }
}
@keyframes bgAppear {
	0% {transform: translateX(-95%);}
	100% {transform: translateX(0);}
}
@keyframes textMotion {
	0% {transform: translateY(-100%); opacity: 0;}
	100% {transform: translateY(0); opacity: 1;}
}