/* ÆùÆ® ¼³Á¤ Start */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
.fs_14 { font-size: 14px; }
.fs_16 { font-size: 16px; }
.fs_18 { font-size: 18px; }

#index_wrap,
#index_wrap *,
header a, header span {
    font-family: 'Pretendard' !important;
}
/* ÆùÆ® ¼³Á¤ End*/

#wrap { padding-top: 103px; }
#index_wrap { width: 100%; margin: 0px; padding: 0px; }
.index_content { width: 100%; }
.index_content section { width: 100%; }

.index_binder {
	width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}


/* Header Start */
.header {
	top: 0px;
	position: fixed;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #ededed;
	z-index: 9999999999;
}
#header_gnb {
	display: flex;
	justify-content: space-between;
}

.header_left_side { 
	max-width: 260px; 
}
.header_left_side img { 
	width: 100%; 
}

.header_top { 
	display: flex; 
	justify-content: right; 
	padding: 15px 0px 20px; 
	margin-right: 25px;
}
.header_top li span { 
	color: #666; 
	padding: 0px 8px; 
}

.navi_menu {
    display: flex;
	justify-content: right;
    gap: 6px;
    font-size: 16px;
}

.navi_menu > li {
    position: relative;
}

.navi_menu .gnb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #222;
    border-radius: 8px;
    transition: color .25s;
}

.navi_menu .gnb:hover {
    color: #007aff;
}

.navi_menu .gnb i {
    font-size: 12px;
    transition: transform .25s;
}

.navi_menu li.active .gnb i {
    transform: rotate(180deg);
}

.navi_menu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    margin-top: 15px;
    padding: 6px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease;
}

.navi_menu > li.active > ul {
    max-height: 500px;
    opacity: 1;
}

.navi_menu > li > ul li a {
    display: block;
    padding: 10px 25px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.navi_menu > li > ul li a:hover {
    background: #f4f6f8;
    color: #2f4fff;
}




/* ===== ¸ð¹ÙÀÏ Çì´õ °øÅë (È­ÀÌÆ® Åæ) ===== */
.m_header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #ffffff;
	color: #111827;
	border-bottom: 1px solid #e5e7eb;
}

.m_header_bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #e5e7eb;
}

.m_logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #111827;
}
.m_logo_banner {
	display: inline-block;
	height: 40px;
}
.m_logo_banner img {
	height: 100%;
}

.m_header_actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.m_hamburger {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
	cursor: pointer;
}
.m_hamburger span {
	width: 18px;
	height: 2px;
	background: #111827;
	border-radius: 2px;
	opacity: 0.92;
}

.m_overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.45);
	z-index: 9998;
}

.m_drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(86vw, 360px);
	height: 100vh;
	background: #ffffff;
	z-index: 9999;
	transform: translateX(110%);
	transition: transform 0.28s ease;
	box-shadow: -20px 0 60px rgba(0,0,0,0.18);
	display: flex;
	flex-direction: column;
}

.m_drawer.is_open {
	transform: translateX(0);
}

.m_drawer_head {
	padding: 16px;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.m_user_title {
	margin: 0 0 10px;
}
.m_user_links {
	display: flex;
	gap: 10px;
}

.m_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 12px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 13px;
	color: #111827;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

.m_close {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	cursor: pointer;
	position: relative;
}
.m_close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 2px;
	background: #111827;
	border-radius: 2px;
	transform-origin: center;
}
.m_close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.m_close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.m_nav {
	padding: 10px 0 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
}

.m_navi_menu {
	list-style: none;
	margin: 0;
	padding: 8px 12px 14px;
}

.m_item {
	border: 1px solid #e5e7eb;
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 10px;
	overflow: hidden;
}

.m_gnb {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 14px;
	background: transparent;
	border: none;
	color: #111827;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.m_gnb i {
	transition: transform 0.2s ease;
	opacity: 0.9;
}

.m_sub {
	list-style: none;
	margin: 0;
	padding: 0 14px 12px;
	display: none;
}
.m_sub li + li { margin-top: 8px; }
.m_sub a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #111827;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	font-size: 14px;
}

.m_item.is_open .m_sub { display: block; }
.m_item.is_open .m_gnb i { transform: rotate(180deg); }

.m_drawer_footer {
	padding: 14px 16px 18px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #6b7280;
	font-size: 13px;
}
.m_drawer_footer a {
	color: #2563eb;
	text-decoration: none;
}
.m_sep { opacity: 0.6; }
/* Header End*/


/* Index Start*/
.index_content {
	width: 100%;
	padding-top: 30px;
	min-height: 600px;
}

#section_01,
#section_02,
#section_03,
#section_04,
#section_05 {
	font-family: 'Pretendard' !important;
}

/* ===============================
   section_01
================================ */
#section_01 {
	padding: 50px 0px 160px 0px;
	position: relative;
	bottom: 30px;
	height: 500px;
	/* background: #fcfcfc; */
}
#section_01 .section_01_binder {
	position: relative;
	width: 1400px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

#section_01 .cut_box {
	position: relative;
	width: calc(100% - 250px);
	box-sizing: border-box;
	padding-top: 50px;
	left: 50px;
}
#section_01 .cut_content {
	position: relative;
	z-index: 50;
}

#section_01 .sub {
    font-size: 32px;
    color: #555;
    margin-top: 15px;
	margin-bottom: 30px;
	letter-spacing: 0.08em;
	padding-bottom: 15px;
}
#section_01 .sub_title {
	color: #555;
	font-size: 28px;
	margin-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 40px;
	max-width: 660px;
	border-bottom: 1px solid #ddd;
}
#section_01 .title {
	color: #333;
	font-size: 48px;
	margin: 0px 0px 40px 0px;
	font-weight: 600;
	letter-spacing: -0.02em;
}
#section_01 .sub_content {
    font-size: 36px;
    color: #555;
    margin-top: 15px;
	margin-bottom: 15px;
	letter-spacing: 0.08em;
	padding-bottom: 0px;
}
#section_01 .sub_content .sub_content_bold {
	color: #222;
	font-weight: 800;
}
#section_01 .section_01_certification_btn {
    font-family: 'Pretendard' !important;
    color: #444;
    font-weight: 300;
    background: #e1e6f3;
    border: none;
    width: 500px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    display: block;
    margin: 40px 0px;
    font-size: 24px;
    border-radius: 52px;
    letter-spacing: -0.5px;
}
#section_01 .section_01_certification_btn .bold {
	font-size: 28px;
	color: #111;
	font-weight: 600;
}
#section_01 .section_01_certification_btn .section_01_arrow {
	margin-top: -5px;
	margin-left: 15px;
	height: 15px;
	opacity: 0.8;
}
#section_01 .title .point_color {
	font-size: 112px;
	font-weight: 800;
    background: linear-gradient(
        90deg,
        #6446bb 0%,
        #3c74ba 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#section_01 .badge {
    font-size: 14px;
    font-weight: 600;
	width: 100px;
	height: 37px;
	line-height: 37px;
	text-align: center;
    color: #2f4fff;
    background: #eef2ff;
    border-radius: 999px;
    white-space: nowrap;
	position: relative;
	left: 15px;
	
}
#section_01 .badge_img {
	position: absolute;
	left: -15px;
	top: -2px;
	height: 43px;
}

#section_01 .price_value {
	font-size: 112px;
	font-weight: 800;
	color: #2f4fff;
	letter-spacing: -0.02em;
}

#section_01 .cut_box_img {
	position: absolute;
	top: 170px;
	right: 80px;
    width: 265px;
	transform: rotate(15deg);
}

#section_01 .cut_box_img img {
    width: 100%;
}

#section_01 .section_01_banner {
    position: relative;
    left: 200px;
    width: 520px;
    margin-top: 30px;

    background: #ffffff;
    border-radius: 24px;
    padding: 28px 28px 32px;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.05);
}

#section_01 .section_01_banner * {
    font-family: 'Pretendard', sans-serif !important;
    line-height: 1.55;
}

#section_01 .section_01_banner .banner_top {
    font-size: 15px;
    color: #6b7280;
}

#section_01 .section_01_banner .banner_top p.customer_title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
#section_01 .section_01_banner .gray_color {
    color: #b7b7b7;
    font-weight: 700;
}
#section_01 .section_01_banner .point_color {
    color: #2563eb;
    font-weight: 700;
}

#section_01 .section_01_banner .contact_link_list {
    margin-top: 10px;
}

#section_01 .section_01_banner .contact_link {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;

    padding: 10px 14px;
    border-radius: 12px;

    background: #f9fafb;
    transition: all 0.25s ease;
}

#section_01 .section_01_banner .contact_link:hover {
    background: #eef2ff;
    color: #2563eb;
}

#section_01 .section_01_banner .contact_link img {
    width: 22px;
    height: 22px;
}

#section_01 .section_01_banner .banner_list {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#section_01 .section_01_banner .banner_list ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

#section_01 .section_01_banner .banner_list li {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 16px 56px;
	min-height: 100px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#section_01 .section_01_banner .banner_list li:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 24px rgba(37,99,235,0.15);
}

#section_01 .section_01_banner .banner_list_title {
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 4px;
}
#section_01 .section_01_banner .banner_list_content {
	word-break: keep-all;
	overflow-wrap: break-word;
}
#section_01 .section_01_banner .banner_list_content a {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
}

#section_01 .section_01_banner .banner_list .icon_alert {
    background: url('/images/main/section_01_alert_icon.png') no-repeat 16px 45px;
    background-size: 28px;
}
#section_01 .section_01_banner .banner_list .icon1 {
    background: url('/images/main/section_01_guide_icon.png') no-repeat 16px 45px;
    background-size: 28px;
}
#section_01 .section_01_banner .banner_list .icon2 {
    background: url('/images/main/section_01_list_icon.png') no-repeat 16px 45px;
    background-size: 28px;
}
#section_01 .section_01_banner .banner_list .icon3 {
    background: url('/images/main/section_01_qna_icon.png') no-repeat 16px 45px;
    background-size: 30px;
}
#section_01 .section_01_banner .banner_list .icon4 {
    background: url('/images/main/section_01_point_icon.png') no-repeat 16px 45px;
    background-size: 24px;
}


/* ===============================
   section_02
================================ */
#section_02 {
    padding: 100px 0 150px;
    background: #f7f9ff;
}
#section_02 .point_color {
    color: #2f4fff;
}

#section_02 .section02_title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.4;
}

#section_02 .section_02_content ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

#section_02 .section_02_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 25px 70px 25px;
    text-align: center;

    box-shadow:
        0 10px 30px rgba(47,79,255,0.08),
        0 2px 6px rgba(0,0,0,0.04);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#section_02 .section_02_card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(47,79,255,0.15),
        0 6px 12px rgba(0,0,0,0.08);
}

#section_02 .section_02_card dt {
	width: 210px;
	height: 210px;
	margin: 0px auto;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	top: 10px;
}
#section_02 .section_02_card dt img {
	width: 100%;
}
#section_02 .section_02_card dt.section02_icon_01 img { width: 230px; position: relative; top: 37px; right: 10px; }
#section_02 .section_02_card dt.section02_icon_02 { padding: 15px; }
#section_02 .section_02_card dt.section02_icon_03 { padding: 25px; }
#section_02 .section_02_card dt.section02_icon_04 { padding: 25px; }


#section_02 .section_02_card dd {
	margin: 0;
}
#section_02 .section_02_card dd .card_title {
	font-size: 22px;
	font-weight: 600;
	margin: 25px 0px;
}
#section_02 .section_02_card dd {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    word-break: keep-all;
}


/* ===============================
   section_03
================================ */
#section_03 {
    position: relative;
    padding: 60px 0;
	min-width: 1890px;
	height: 560px;
	box-sizing: border-box;
    overflow: hidden;

    background: radial-gradient(
        1200px 420px at 50% -120px,
        #3b2a6f 0%,
        #010226 60%
    );
}
#section_03::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image: url('/images/main/section_03_bg.png');
    background-repeat: no-repeat;
    background-position: -150px center;
    background-size: contain;

    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}
#section_03::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to top,
        #010226,
        rgba(28,20,51,0)
    );
}
#section_03 > * {
    position: relative;
    z-index: 1;
}

#section_03 .index_binder {
	position: relative;
	left: 50px;
}

#section_03 .section03_title {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #ffffff;
}

#section_03 .section03_title .highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #a78bfa 0%,
        #60a5fa 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-weight: 800;
}

#section_03 .section03_title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 20px auto 0;

    background: linear-gradient(
        90deg,
        #a78bfa,
        #60a5fa
    );
    border-radius: 4px;
    opacity: 0.9;
}

#section_03 .review_slider {
    width: 1000px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
	top: 18px;
}

#section_03 .review_track {
    list-style: none;
    margin: 0px;
    padding: 0px 60px 0px 0px;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

#section_03 .review_track li {
    position: relative;
    margin-bottom: 25px;
    padding: 25px 28px;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f9f9fb 100%
    );
    border-radius: 18px;
    box-shadow:
        0 14px 28px rgba(0,0,0,0.18),
        0 2px 6px rgba(0,0,0,0.08);
	transform: translateX(0);
}
#section_03 .review_track li:nth-child(even) {
	transform: translateX(50px);
}
#section_03 .review_track li::after {
    content: '';
    position: absolute;
    left: 42px;
    bottom: -11px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #f9f9fb;
    filter: drop-shadow(0 6px 6px rgba(0,0,0,0.15));
}

#section_03 .review_track li .review_meta {
    display: flex;
	justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
}
#section_03 .review_track li .review_meta .user {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
#section_03 .review_track li .stars {
    display: flex;
    gap: 3px;
}
#section_03 .review_track li .star {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: #ffc400;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

#section_03 .review_track li .review_text {
    margin: 0;
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}


/* ===============================
   section_04
================================ */
#section_04 { 
	padding: 100px 0px;
}
#section_04 .section_04_title {
	font-size: 40px;
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.02em;
    line-height: 1.3;
	margin-bottom: 56px;
}
#section_04 .section_04_title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    border-radius: 4px;
    opacity: 0.9;
}
#section_04 .section_04_title .point_color {
	font-weight: 800;
	color: #2f4fff;
}

#section_04 .section_04_card_box {
    column-count: 3;
    column-gap: 24px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

#section_04 .section_04_card {
    display: inline-block;
    width: 100%;
	
	position: relative;
	overflow: hidden;

    margin: 0 0 24px;

    background: #ffffff;
    border-radius: 20px;
    padding: 32px 26px;

    box-sizing: border-box;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    break-inside: avoid;
}
#section_04 .section_04_card::before {
    content: attr(data-num);
    position: absolute;

    bottom: -22px;
    left: -22px;

    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;

    z-index: 0;
	opacity: 0.8;
    pointer-events: none;
}
#section_04 .section_04_card_01::before { color: #eaedff; }
#section_04 .section_04_card_02::before { color: #e6fef5; }
#section_04 .section_04_card_03::before { color: #f1edfe; }
#section_04 .section_04_card_04::before { color: #f1edfe; }
#section_04 .section_04_card_05::before { color: #e6fef5; }
#section_04 .section_04_card_06::before { color: #e6fef5; }
#section_04 .section_04_card_07::before { color: #f1edfe; }
#section_04 .section_04_card_08::before { color: #eaedff; }

#section_04 .section_04_card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(47,79,255,0.15),
        0 6px 14px rgba(0,0,0,0.08);
}

#section_04 .section_04_card dl {
	position: relative;
	z-index: 10;
    margin: 0;
}

#section_04 .section_04_card dt {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
	margin-top: 10px;
    margin-bottom: 17px;
    letter-spacing: -0.02em;
	line-height: 41px;
}

#section_04 .section_04_card_number {
	display: inline-block;
    font-size: 20px;
    font-weight: 700;
	text-align: center;
	line-height: 39px;
    width: 41px;
    height: 41px;
	margin-right: 7px;
    border-radius: 50%;
}

#section_04 .section_04_card_01 .section_04_card_number { color: #2f4fff; background: #eaedff; }
#section_04 .section_04_card_02 .section_04_card_number { color: #038555; background: #e6fef5; }
#section_04 .section_04_card_03 .section_04_card_number { color: #693fe3; background: #e2dafb; }
#section_04 .section_04_card_04 .section_04_card_number { color: #693fe3; background: #e2dafb; }
#section_04 .section_04_card_05 .section_04_card_number { color: #038555; background: #e6fef5; }
#section_04 .section_04_card_06 .section_04_card_number { color: #038555; background: #e6fef5; }
#section_04 .section_04_card_07 .section_04_card_number { color: #693fe3; background: #e2dafb; }
#section_04 .section_04_card_08 .section_04_card_number { color: #2f4fff; background: #eaedff; }

#section_04 .section_04_card dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    word-break: keep-all;
	padding: 0px 20px 40px 20px;
}

#section_04 .section_04_card_img {
    padding: 30px;
    overflow: hidden;
	position: relative;
}
#section_04 .section_04_card_img dt {
	font-size: 18px;
	font-weight: 700;
	position: absolute;
	top: 11%;
	left: 31%;
	transform: rotate(-17deg);
}
#section_04 .section_04_card_img dt .point_color {
	font-size: 16px;
	font-weight: 600;
	color: #2f4fff;
}
#section_04 .section_04_card_img dt .point_color .description {
	height: 22px;
}
#section_04 .section_04_card_img dt p.company_name {
	margin-top: 4px;
}
#section_04 .section_04_card_img dd {
	padding: 0px;
}

#section_04 .section_04_card_img img {
    width: 70%;
	margin: 0 auto;
    height: auto;
    display: block;
    border-radius: 20px;
}




/* ===============================
   section_05
================================ */
#section_05 {
	height: 398px;
	background: #e1e6f3;
	position: relative;
	box-sizing: border-box;
	padding-top: 40px;
}
#section_05 .index_binder {
	position: relative;
	z-index: 2;
}
#section_05 .section_05_title {
	color: #333;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
}
#section_05 .section_05_subtitle .highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #896ae5 0%,
        #498adb 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
#section_05 .section_05_title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 20px auto 0;

    background: linear-gradient(
        90deg,
        #a78bfa,
        #60a5fa
    );
    border-radius: 4px;
    opacity: 0.9;
}
#section_05 .section_05_subtitle {
	color: #333;
	font-size: 32px;
    font-weight: 300;
	text-align: center;
    margin-top: 20px;
}
#section_05 .section_05_certification_btn {
	font-family: 'Pretendard' !important;
	color: #dfdfdf;
	font-weight: 300;
	background: #5d33d7;
	border: none;
	width: 560px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	display: block;
	margin: 50px auto 0px;
	font-size: 24px;
	border-radius: 52px;
	letter-spacing: -0.5px;
}
#section_05 .section_05_certification_btn .bold {
	font-size: 28px;
	color: #fff;
	font-weight: 600;
}
#section_05 .section_05_certification_btn .section_05_arrow {
	margin-top: -5px;
	margin-left: 15px;
	height: 15px;
	opacity: 0.8;
}
/* Index End */



/* Footer Start */
#Footer {
	position: relative;
	background: #222;
	color: #fff;
	padding: 40px 0px 20px;
	text-align: center;
}
#Footer img {
	width: 100%;
}
.footer_site_menu {
	display: flex;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 50px;
}
.footer_site_menu a {
	display: block;
	width: 170px;
	text-align: center;
	color: #fff;
}
.footer_menu {
	display: flex;
	justify-content: space-between;
}
.footer_menu_left {
	margin-top: -20px;
	max-width: 220px;
}
.footer_menu_left {
	font-size: 15px;
	color: #748494;
}
.footer_menu_left li {
	margin-bottom: 10px;
}

.footer_menu_right {
	display: flex;
	justify-content: space-between;
	margin-right: 200px;
}
.footer_menu_right > ul {
	width: 170px;
}
.footer_menu_right li {
	margin-bottom: 10px;
}
.footer_menu_right a {
	font-size: 14px;
	color: #748494;
}

.footer_banner {
	margin-left: 70px;
	margin-top: 30px;
}
.footer_banner .footer_banner_bar {
	width: 580px;
	height: 1px;
	background: #afafaf;
}
.footer_banner table { 
	margin-left: -10px;
	width: 580px;
}
.footer_banner table p {
	text-align: center !important;
}

.footer_banner_cop {
	display: flex;
}
.footer_banner table p span {
	background: none !important;
	color: #fff !important;
}
.footer_badge {
	margin-left: 100px;
}
/* Footer End */




/* ¹ÝÀÀÇü ¹ÌÇÊ¿ä ½Ã ÁÖ¼®Ã³¸® Start */
@media (max-width: 768px) {
	#wrap { padding-top: 0px; }
    .index_binder {
		max-width: 100%;
        padding: 0 16px;
    }
}
/* ¹ÝÀÀÇü ¹ÌÇÊ¿ä ½Ã ÁÖ¼®Ã³¸® End */


@media (max-width: 768px) {
	#section_01 {
		height: auto;
		padding: 0px 0 80px;
		bottom: 0;
	}

	#section_01 .section_01_binder {
		width: 100%;
		padding: 0;
		flex-direction: column;
		align-items: center;
		gap: 48px;
	}

	#section_01 .cut_box {
		width: 100%;
		left: 0;
		padding-top: 40px;
		text-align: center;
	}

	#section_01 .sub {
		max-width: none;
		border-bottom: none;
		font-size: 22px;
		margin-bottom: 32px;
	}

	#section_01 .title,
	#section_01 .title .point_color {
		font-size: 56px;
		line-height: 1.25;
	}

	#section_01 .cut_box_img {
		display: none;
	}

	#section_01 .badge {
		left: 0;
		margin: 0 auto;
	}

	#section_01 .price_badge {
		margin-left: auto;
		margin-right: auto;
	}

	#section_01 .section_01_banner {
		left: 0;
		width: 93%;
		max-width: 560px;
		margin: 0 auto;
		padding: 22px;
		border-radius: 20px;
		box-sizing: border-box;
	}

	#section_01 .section_01_banner .banner_top p.customer_title {
		font-size: 18px;
	}

	#section_01 .section_01_banner .contact_link {
		font-size: 15px;
		padding: 10px 12px;
	}

	#section_01 .section_01_banner .banner_list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	#section_01 .section_01_banner .banner_list li {
		min-height: auto;
		padding: 0px 14px 5px 56px;
	}
	
	#section_01 .section_01_banner .banner_list .icon_alert {
		background: url(/images/main/section_01_alert_icon.png) no-repeat 16px 29px;
		background-size: 28px;
	}
	#section_01 .section_01_banner .banner_list .icon4 {
		background: url(/images/main/section_01_point_icon.png) no-repeat 16px 29px;
		background-size: 24px;
	}
	#section_01 .section_01_banner .banner_list .icon1 {
		background: url(/images/main/section_01_guide_icon.png) no-repeat 16px 27px;
		background-size: 28px;
	}
	#section_01 .section_01_banner .banner_list .icon2 {
		background: url(/images/main/section_01_list_icon.png) no-repeat 16px 25px;
		background-size: 28px;
	}
	#section_01 .section_01_banner .banner_list .icon3 {
		background: url(/images/main/section_01_qna_icon.png) no-repeat 16px 23px;
		background-size: 30px;
	}

	#section_01 .section_01_certification_btn {
		width: 78vw;
		height: 60px;
		line-height: 60px;
		margin: -20px auto 20px;
		font-size: 22px;
	}

	#section_01 .sub_title {
		max-width: none;
		width: 80vw;
		margin: 30px auto;
		font-size: 16px;
	}

	#section_01 .section_01_certification_btn img {
		display: none;
	}

	#section_01 .sub_content {
		margin-top: 25px;
		font-size: 32px;
	}

	#section_01 .sub_content > span {
		display: block;
	}

	#section_01 .sub_content > span.price_value {
		font-size: 42px;
		display: inline-block;
	}
}


@media (max-width: 768px) {
	#section_02 {
		padding: 60px 0 90px;
	}

	#section_02 .section02_title {
		font-size: 24px;
		line-height: 1.5;
		margin-bottom: 32px;
		text-align: center;
	}

	#section_02 .section_02_content ul {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 0 16px;
	}

	#section_02 .section_02_card {
		padding: 0px 0px 30px;
		border-radius: 18px;
	}

	#section_02 .section_02_card dt {
		width: 160px;
		height: 160px;
		top: 0;
	}

	#section_02 .section_02_card dd .card_title {
		font-size: 20px;
		margin: 0px 0px 18px 0px;
	}

	#section_02 .section_02_card dd {
		font-size: 15px;
		line-height: 1.6;
		padding: 0px 25px;
	}

	#section_02 .section_02_card dt.section02_icon_01 img {
		width: 100%;
		right: 0px;
	}
}



@media (max-width: 768px) {
	#section_03 {
		min-width: auto;
		height: auto;
		padding: 60px 0px 0px 0px;
	}

	#section_03 .index_binder {
		left: 0;
		padding: 0 24px;
	}

	#section_03::before {
		background-position: center top;
		background-size: cover;
		opacity: 0.5;
	}

	#section_03 .section03_title {
		font-size: 24px;
		line-height: 1.4;
		margin-bottom: 40px;
	}

	#section_03 .section03_title::after {
		width: 64px;
		height: 3px;
	}

	#section_03 .review_slider {
		width: 100%;
		max-width: 900px;
		height: 260px;
	}

	#section_03 .review_track {
		padding-right: 20px;
	}

	#section_03 .review_track li {
		width: 80%;
		height: 100px;
		margin-bottom: 18px;
		padding: 20px 22px;
		font-size: 14px;
	}

	#section_03 .review_track li:nth-child(even) {
		transform: translateX(10%);
	}

	#section_03 .review_track li::after {
		bottom: -11px;
		left: 28px;
	}

	#section_03 .review_track li .review_meta .user {
		font-size: 12px;
	}

	#section_03 .review_track li .star {
		width: 18px;
		height: 18px;
	}
}


@media (max-width: 768px) {
	#section_04 {
		padding: 60px 0;
	}

	#section_04 .section_04_title {
		font-size: 24px;
		line-height: 1.4;
		margin-bottom: 32px;
	}

	#section_04 .section_04_title::after {
		width: 64px;
		height: 3px;
	}

	#section_04 .section_04_card_box {
		padding: 0 16px;
		column-count: 1;
	}

	#section_04 .section_04_card {
		margin-bottom: 20px;
		padding: 24px 20px;
		border-radius: 18px;
	}

	#section_04 .section_04_card_number {
		width: 36px;
		height: 36px;
		font-size: 16px;
		line-height: 34px;
	}

	#section_04 .section_04_card dt {
		font-size: 18px;
		line-height: 32px;
	}

	#section_04 .section_04_card dd {
		font-size: 14px;
		padding: 0 12px 28px;
	}

	#section_04 .section_04_card::before {
		font-size: 96px;
		bottom: -14px;
		left: -14px;
	}
	
	#section_04 .section_04_card_img {
		display: none;
	}
}


@media (max-width: 768px) {
	#section_05  .section_05_title {
		margin-top: 10px;
		font-size: 32px;
	}
	#section_05 .section_05_subtitle .highlight {
		font-size: 42px;
	}
	#section_05 .section_05_subtitle {
		font-size: 32px;
	}
	#section_05 .section_05_certification_btn {
		width: 80vw;
		margin: 0 0auto;
	}
	#section_05 .section_05_certification_btn .section_05_arrow {
		display: none;
	}
}

@media (max-width: 1200px) {
    .footer_menu {
        padding: 0 40px;
    }

	.footer_menu_left img { 
		max-width: 30vw;
	}

    .footer_menu_right {
        margin-right: 0;
        gap: 40px;
    }

    .footer_banner {
        margin-left: 0;
        margin-top: 40px;
    }

    .footer_banner .footer_banner_bar,
    .footer_banner table {
        width: 100%;
        max-width: 580px;
        margin: 0 auto;
    }

    .footer_badge {
        margin-left: 40px;
    }
}

@media (max-width: 1024px) {
    .footer_site_menu {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .footer_site_menu a {
        width: auto;
        padding: 6px 14px;
        font-size: 14px;
    }

    .footer_menu {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer_menu_left {
        max-width: none;
        text-align: center;
        margin-top: 0;
    }

    .footer_menu_right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer_menu_right > ul {
        width: auto;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #Footer {
        padding: 32px 0 20px;
        text-align: center;
    }

    .footer_site_menu {
        margin-bottom: 24px;
    }

    .footer_menu_left {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer_menu_right {
        display: none;
    }

    .footer_banner {
        margin-top: 32px;
    }

    .footer_banner table {
        font-size: 13px;
    }

    .footer_banner_cop {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer_badge {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer_site_menu a {
        font-size: 13px;
        padding: 4px 10px;
    }

    .footer_menu_right {
        gap: 24px;
    }

    .footer_menu_right > ul {
        min-width: auto;
    }

    .footer_menu_left li,
    .footer_menu_right li {
        margin-bottom: 6px;
    }

    .footer_banner table p {
        font-size: 12px;
        line-height: 1.5;
    }
}
@media (max-width: 768px) {
	#S_container { width: 100%; }
	#S_container #content_area { width: 95%; margin: 0 auto; }
}
/* ¹ÝÀÀÇü ¹ÌÇÊ¿ä ½Ã ÁÖ¼®Ã³¸® End */