@charset "UTF-8";
/* 공통 */
html {
	scroll-behavior: smooth;
}

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 * {
	line-height: normal;
}

.event_container img {
	display: block;
}

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

.event_container li {
	float: none;
	font-weight: normal;
}

.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 .event_cont .main_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	width: 1100px;
	margin: 0 auto;
}

.event_container .main_title {
	text-align: center;
}

.event_container .main_title > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 77px;
	height: 44px;
	margin: 0 0 22px;
	padding: 0 0 12px;
	letter-spacing: -0.025em;
	font-size: 35px;
	font-family: 'noto6';
	background: url('/img/event/9151/pc/num_img.png') no-repeat 0 0 / contain;
}

.event_container .main_title h3 {
	line-height: 1.29;
	letter-spacing: -0.025em;
	font-size: 55px;
	font-family: 'noto7';
}

.event_container .main_title h3 em {
	color: #92ff67;
	font: inherit;
}

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

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

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

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

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

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

	100% {
		transform: translateY(0);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.2;
	}

	100% {
		opacity: 1;
	}
}

/* 상단 배너 */
.event_container .event_marquee {
	background: #ffe600;
	overflow: hidden;
}

.event_container .event_marquee .marquee_inner {
	display: flex;
	align-items: center;
	height: 70px;
	animation: marquee 20s linear infinite;
}

.event_container .event_marquee .marquee_inner ul {
	display: flex;
	align-items: center;
}

.event_container .event_marquee .marquee_inner ul li {
	margin: 0 40px;
	font-family: 'noto7';
	font-size: 28px;
	letter-spacing: -0.08em;
	white-space: nowrap;
	color: #000;
}

/* 플로팅배너 */
.event_container .event_floating {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: fixed;
	bottom: 201px;
	right: 50px;
	width: 200px;
	height: 419px;
	background: url('/img/event/9151/2026/pc/r_bn.png') no-repeat 0 0;
	z-index: 21;
}

.event_container .event_floating a {
	display: block;
	width: 100%;
	height: 200px;
	border-radius: 20px;
}

/* 타이머 */
.event_container .event_timer_area {
	/* position: absolute; */
	/* top: 63px; */
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 77px;
	background: url('/img/event/8955/pc/time_bg.png') center no-repeat;
	z-index: 3;
}

/* .event_container .event_timer_area.is_fixed {
	position: fixed;
} */

.event_container .event_timer_area .main_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	width: 1200px;
	margin: 0 auto;
}

.event_container .event_timer_area p {
	line-height: 1.2;
	letter-spacing: -0.075em;
	color: #fff;
	font-size: 20px;
	font-family: 'noto4';
}

.event_container .event_timer_area p span {
	color: #6cbad7;
}

.event_container .event_timer_area .img_item {
	margin-top: 11px;
}

.event_container .event_timer_area .timer_visual {
	display: flex;
	align-items: center;
}

.event_container .event_timer_area .event_timer {
	display: flex;
	align-items: center;
	gap: 56px;
	height: 100%;
	padding-right: 50px;
}

.event_container .event_timer_area .event_timer > div {
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
}

.event_container .event_timer_area .event_timer span {
	width: 40px;
	height: 50px;
	line-height: 58px;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	font-size: 40px;
	font-family: 'market-b';
	background: #050509;
}

.event_container .event_timer_area .event_timer > div::after {
	position: absolute;
	top: 50%;
	right: -32px;
	transform: translateY(-50%);
	letter-spacing: -0.08em;
	color: #fff;
	font-size: 22px;
	font-family: 'noto4';
}

.event_container .event_timer_area .event_timer .timer_day::after {
	content: '일';
}

.event_container .event_timer_area .event_timer .timer_hour::after {
	content: '시';
}

.event_container .event_timer_area .event_timer .timer_minute::after {
	content: '분';
}

.event_container .event_timer_area .event_timer .timer_seconds::after {
	content: '초';
}

.event_container .event_timer_area .btn_go {
	display: flex;
	align-items: center;
	position: relative;
	height: 48px;
	padding: 0 31px 0 32px;
	border-radius: 48px;
	letter-spacing: -0.035em;
	color: #000;
	font-size: 21px;
	font-family: 'noto5';
	background: #ffe600;
}

.event_container .event_timer_area .btn_go::after {
	content: '>';
	margin-left: 6px;
}

.event_container .event_timer_area .btn_go::before {
	content: '';
	position: absolute;
	top: 24px;
	right: -21px;
	width: 37px;
	height: 48px;
	background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
	animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 컨텐츠 */
.event_container .event_cont_1 {
	/* height: 883px; */
	padding-bottom:215px;
	background: url('/img/event/9151/2026/pc/top_tea.png') no-repeat right 260px bottom -271%, #1e2ce8;
}

.event_container .event_cont_1 .main_inner {
	align-items: flex-start;
	padding: 0;
}

.event_container .event_cont_1 .event_visual {
	margin: 211px 0 0 0px;
}

.event_container .event_cont_1 .btn_go {
	position: relative;
	display: block;
	width: 630px;
	height: 76px;
	z-index: 2;
	bottom: 5px;
	left:0;
	font-size: 0;
}

.event_container .event_cont_1 .btn_go::before {
	content: '';
	position: absolute;
	top: 54px;
	right: 0;
	width: 71px;
	height: 64px;
	background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0;
	animation: pointerBounceDiagonal 0.8s ease infinite;
	z-index: 3;
}

.event_container .event_cont_1 .btn_go p {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 93px;
	letter-spacing: -0.045em;
	color: #b6fe9b;
	font-size: 31px;
	font-family: 'noto5';
	z-index: 2;
	background: #06060e;
}

.event_cont_2 .main_inner {
	padding: 155px 0 126px;
}

.event_cont_3 {
	background: #f0f4ff;
}

.event_cont_3 .main_inner {
	padding: 127px 0 157px;
}

.event_cont_4 {
	margin: -180px 0 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 200px, #364baf 200px, #000001 60%);
}

.event_cont_4 .main_inner {
	padding: 23px 0 72px;
}

.event_cont_4 .img_title {
	margin: 0 0 97px;
}

.event_cont_5 {
	background: #4a03da;
}

.event_cont_5 .main_inner {
	padding: 121px 0 170px;
}

.event_cont_5 .event_video {
	position: absolute;
	left: -27px;
	width: 1100px;
	height: 503px;
}

.event_cont_5 .event_video_1 {
	top: 528px;
}

.event_cont_5 .event_video_2 {
	bottom: 159px;
}

.event_cont_5 .event_video .video_badge {
	position: absolute;
	top: -141px;
	right: -18px;
	z-index: 1;
	animation: floating 0.8s ease-in infinite;
}

.event_cont_5 .event_video .video_box_wrap,
.event_cont_5 .event_video .btn_video {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.event_cont_5 .event_video .btn_video::after {
	content: '';
	position: absolute;
	top: 54%;
    right: 470px;
	width: 71px;
	height: 64px;
	background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0;
	animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_6 .main_inner {
	padding: 141px 0 137px;
}

.event_cont_7 .main_title {
	position: absolute;
	top: 139px;
	left: 0;
	width: 100%;
}

.event_cont_7 .main_title h3 {
	color: #fff;
}

.event_cont_7 .event_coupon {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 692px;
	left: 50%;
	transform: translateX(-50%);
	width: 645px;
}

.event_cont_7 .event_coupon .coupon_title {
	text-align: center;
}

.event_cont_7 .event_coupon .coupon_title strong {
	display: block;
	line-height: 1.08;
	background: linear-gradient(to right, #7925c1, #1b3fa9);
	-webkit-background-clip: text;
	letter-spacing: -0.035em;
	color: transparent;
	font-size: 90px;
	font-family: 'market-b';
}

.event_cont_7 .event_coupon .coupon_noti {
	margin: 36px 0 0;
	width: 549px;
	height: 113px;
	padding: 17px 0 0 62px;
	border-radius: 10px;
	color: #949494;
	background: #f0f0f0;
}

.event_cont_7 .event_coupon .coupon_noti p {
	position: relative;
	line-height: 1.2;
	letter-spacing: -0.035em;
	font-size: 19px;
}

.event_cont_7 .event_coupon .coupon_noti p::after {
	content: '';
	position: absolute;
	top: 3px;
	left: -33px;
	width: 24px;
	height: 24px;
	background: url('/img/event/common/pc/common_info_bullet.png') no-repeat 0 0;
}

.event_cont_7 .event_coupon .coupon_noti ul {
	margin: 4px 0 0;
}

.event_cont_7 .event_coupon .coupon_noti li {
	line-height: 1.2;
	letter-spacing: -0.035em;
	font-size: 19px;
}

.event_cont_7 .event_coupon .coupon_noti li::before {
	content: '-';
	margin: 0 10px 0 0;
}

.event_cont_7 .event_coupon .btn_coupon {
	width: 700px;
	height: 93px;
	margin: 110px 0 0;
	color: #fff;
	font-size: 40px;
	font-family: 'noto6';
}

.event_cont_8 {
	padding: 90px 0 149px;
}

.event_cont_8 .main_inner {
    
}
.event_cont_8 .main_title{
	margin-bottom:100px;
}

.event_cont_8 .lec_list_wrap {
	position:relative;
    width: 100%;
    padding: 42px 30px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ededed;
}
.event_cont_8 .lec_list_wrap_1 {
    width: 100%;
    /* min-height: 527px; */
    margin: 0 0 44px;
    padding: 42px 30px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ff3a2a;
}
.event_cont_8 .lec_list_wrap + .lec_list_wrap {
    margin-top: 29px;
}

.event_cont_8 .lec_list_wrap {
    padding-bottom: 60px;
}

.event_cont_8 .lec_list_wrap .lec_list_title {
    font-family: 'noto6';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

.event_cont_8 .lec_list_wrap_1 .lec_list_title {
    color: #ffdf2c;
}

.event_cont_8 .lec_list_wrap .lec_list_title em {
    font-family: 'noto6';
    color: #ff3a2a;
}

.event_cont_8 .lec_list_wrap .lec_list_sub_txt {
    margin: 10px 0 45px;
    font-family: 'noto4';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.event_cont_8 .lec_list_wrap_1 .event_lec_list_form {
    width: 100%;
    margin-top: 28px;
}

.event_cont_8 .lec_list_wrap_1 .event_lec_list_form:first-of-type {
    margin-top: 43px;
}

.event_cont_8 .lec_list_wrap_1 .lec_list_box {
    width: 100%;
}

.event_cont_8 .lec_list_wrap_1 .lec_list_box + .lec_list_box {
    margin-top: 28px;
}

.event_cont_8 .lec_list_wrap .lec_list_box {
    width: 100%;
}

.event_cont_8 .lec_list_wrap .lec_list_box:first-of-type {
    margin-top: 39px;
}

.event_cont_8 .lec_list_wrap .lec_list {
    display: flex;
    position: relative;
    width: 100%;
    height: 123px;
    border: 3px solid #000;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #000;
}

.event_cont_8 .lec_list_wrap_1 .lec_list {
    border: 0;
    background: #000;
    color: #fff;
}

.event_cont_8 .lec_list_wrap .lec_list + .lec_list {
    margin-top: 28px;
}

.event_cont_8 .lec_list_wrap .lec_list .lec_title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 263px;
    height: 100%;
    padding: 20px 0 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #ffec80;
    font-family: 'market-b';
    font-size: 35px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

.event_cont_8 .lec_list_wrap_1 .lec_list .lec_title {
    background: #292929;
}

.event_cont_8 .lec_list_wrap_3 .lec_list .lec_title,
.event_cont_8 .lec_list_wrap_4 .lec_list .lec_title {
    /* padding: 0; */
}

.event_cont_8 .lec_list_wrap .lec_list .lec_title::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 157px;
    height: 45px;
    /* background: url('/img/event/9179/pc/item_bullet_2.png') center no-repeat; */
}

.event_cont_8 .lec_list_wrap .lec_list .lec_title::before {
    background: url('/img/event/9179/pc/item_bullet_1.png') center no-repeat;
}

.event_cont_8 .lec_list_wrap .lec_list .lec_price_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 263px);
    padding: 24px 35px;
    box-sizing: border-box;
}

.event_cont_8 .lec_list_wrap .lec_list .price_box {
    position: relative;
    margin-top: 20px;
    font-family: 'noto4';
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #666666;
}

.event_cont_8 .lec_list_wrap_1 .lec_list .price_box {
    color: #b1b1b1;
}

.event_cont_8 .lec_list_wrap .lec_list .price_box::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #666666;
}

.event_cont_8 .lec_list_wrap_1 .lec_list .price_box::before {
    background: #b1b1b1;
}

.event_cont_8 .lec_list_wrap .lec_list .discount_price_box,
.event_cont_8 .lec_list_wrap .lec_list .discount_price {
    position: relative;
    font-family: 'noto7';
    font-size: 45px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.event_cont_8 .lec_list_wrap_1 .lec_list .discount_price_box,
.event_cont_8 .lec_list_wrap_1 .lec_list .discount_price {
    color: #fff;
}

.event_cont_8 .lec_list_wrap .lec_list .discount_price_box {
    margin: 16px 0 0 -27px;
}

.event_cont_8 .lec_list_wrap .lec_list .discount_price_box::after {
    clear: both;
    content: '30% 할인';
    display: block;
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 113px;
    height: 31px;
    border-radius: 30px;
    background: #ff3a2a;
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 31px;
    text-align: center;
    color: #ffffff;
}

.event_cont_8 .lec_list_wrap .lec_list .btn-apply,
.event_cont_8 .lec_list_wrap .lec_list .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 252px;
    height: 67px;
    border-radius: 12px;
    font-family: 'noto7';
    background: #000;
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffdf2c;
}

.event_cont_8 .lec_list_wrap_1 .lec_list .link_btn  {
    background: #ffdf2c;
    color: #000;
}

.event_cont_8 .lec_list_wrap .lec_list .btn-apply::before,
.event_cont_8 .lec_list_wrap .lec_list .link_btn::before {
    content: '';
    position: absolute;
    top: 59px;
    right: -16px;
    width: 42px;
    height: 48px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_8 .lec_list_wrap_1 .lec_bulllet {
    position: absolute;
    top: -40px;
    left: -34px;
    width: 90px;
    height: 94px;
}

.event_cont_8 .lec_list_wrap_1 .lec_bulllet > img {
    position: absolute;
    top: 0;
    left: 0;
}

.event_cont_8 .lec_list_wrap_1 .lec_bulllet > img:last-child {
    animation: blink3 1s infinite;
}
@keyframes blink3 {
    0%,
    49% {
        opacity: 0;
    }
    50%,
    100% {
        opacity: 1;
    }
}

.event_cont_8 .lec_list_wrap .lec_list_noti {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 0 0 10px;
    margin-top: 28px;
    font-family: 'noto3';
    font-size: 16px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    opacity: 0.5;
}

/* 유의사항 */
.event_notice {
	padding: 163px 0 100px;
	background: #f5f5f5;
}

.event_notice .main_inner {
	width: 1100px;
	margin: 0 auto;
}

.event_notice .notice_title {
	display: block;
	width: 100%;
	border-bottom: 2px solid #000;
	text-indent: -2px;
	letter-spacing: -0.08em;
	font-size: 50px;
	font-family: 'noto5';
}

.event_notice .notice_list {
	width: 100%;
	margin-top: 46px;
}

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

.event_notice .notice_list .list_item dt {
	line-height: 1.2;
	letter-spacing: -0.08em;
	font-size: 30px;
	font-family: 'noto6';
}

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

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

.event_notice .notice_list .list_item ul {
	padding-left: 10px;
}

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

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

/* 시작 영역 */
.start_cont {
    height: 797px;
    background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_bg.png') no-repeat center top / cover;
}
.start_cont .main_inner {
    position: relative;
    padding: 144px 0 0;
}
.start_cont .main_title img {
    margin: 0 auto 30px;
}
.start_cont .main_title p {
    color: #fff;
    letter-spacing: -0.025em;
    font-size: 50px;
    line-height: 1.1;
    font-family: 'noto4';
}
.start_cont .main_title h3 {
    line-height: 1.29;
    margin: 5px 0 0;
    letter-spacing: -0.025em;
    font-size: 46px;
    font-family: 'noto7';
    color: #40f37e;
}
.start_cont .start_list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 15px;
    width: 100%;
    margin: 86px 0 0 10px;
}
.start_cont .start_list .list_item {
    position: relative;
    width: 215px;
    height: 129px;
    padding: 18px 0 0;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: 21px;
    background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_box.png') no-repeat 0 0;
}
.start_cont .start_list .list_item:nth-child(n + 5) {
    left: 90px;
}
.start_cont .start_list .list_item em {
    font-family: 'noto6';
}
.start_cont .evidence_area {
    position: absolute;
    top: 228px;
    right: 97px;
    display: inline-block;
    z-index: 2;
}
.start_cont .evidence_btn {
    display: block;
    width: 82px;
    height: 28px;
    letter-spacing: -0.03em;
    font-size: 15px;
    font-family: 'noto4';
    background-color: #243c3c;
    line-height: 1.1;
    padding: 6px 6px 1px;
    border: 1px solid #1e8c84;
    border-radius: 3px;
    letter-spacing: -0.025em;
    color: #1e8c84;
    cursor: pointer;
}


/* 근거확인 */
.evidence_area_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.evidence_area_wrap.align_center {
    justify-content: center;
}

.evidence_area {
    position: relative;
    z-index: 2;
}

.evidence_btn {
    display: block;
    height: 25px;
    line-height: 1.1;
    padding: 6px 6px 1px;
    border: 1px solid #000000;
    border-radius: 3px;
    background: #ffffff;
    letter-spacing: -0.025em;
    font-size: 15px;
    font-family: 'market-l';
    color: #000000;
    cursor: pointer;
}

.evidence_btn span {
    display: inline-block;
    font-size: 12px;
}

.evidence_popup_area {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 450px;
    border: 1px solid #000000;
    background: #ffffff;
    letter-spacing: -0.045em;
}

.evidence_popup_wrap {
    position: relative;
    padding: 36px 24px;
}
.evidence_popup_area .x_btn {
    position: absolute;
    top: 14px;
    right: 20px;
    letter-spacing: -0.045em;
    line-height: 1.1;
    color: #000;
    font-size: 20px;
    font-family: 'market-m';
    cursor: pointer;
}

.evidence_popup_area li {
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 14px;
    font-family: 'noto4';
}

.evidence_popup_area li:not(.type_point) {
    text-indent: 10px;
}

.evidence_popup_area li.type_red::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: red;
}

.evidence_popup_area li.type_point {
    margin: 10px 0 0;
    font-size: 17px;
    font-weight: bold;
    color: #000000;
}

.evidence_popup_area li.type_red {
    color: red;
}
