@charset "UTF-8";
:root {
	/* Colors */
	--white:#fff; 
	--black: #000000;
	
	--gray10: #011327;

	--main:#4861FF;
	--landing-max-desktop: 72rem;
}




/*  ==========================
Common (mobile default = pre-edit)
=========================== */
body {
	background-color: var(--gray70);
	color:var(--gray10) !important;
	font-family: 'Pretendard', sans-serif, system-ui;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	padding:0 20px;
	position: sticky;
	width:100%;
	top:0;
	z-index: 1;
}
.header .logo {
	font-size:20px;
	font-weight: 700;
	color:var(--gray10);
}
.header .btn-login {
	font-size:16px;
	font-weight: 600;
	color:#fff;
	padding:0 16px;
	height: 36px;
	border-radius: 99px;
	background: var(--gray10);
	display: flex;
	align-items: center;
	justify-content: center;
}
.header.down {
	background: #fff;
	-webkit-transition-duration:0.1s;
-webkit-transition-timing-function:ease;
transition-duration:0.1s;
transition-timing-function:ease;
}
section .sc-tit-group {
	display: flex;
	gap:12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding:0 20px;
}

section .sc-tit-group h1,
section .sc-tit-group h2.tit,
section .sc-tit-group .tit {
	font-size:36px;
	line-height: 125%;
	font-weight: 800;
	text-align: center;
	margin: 0;
}
section .sc-tit-group h1 .point,
section .sc-tit-group .tit .point {
	color:#4861FF;
}
section .sc-tit-group .sub-txt {
	text-align: center;
	font-weight: 500;
	font-size:16px;
	line-height: 150%;
}
section .sc-tit-group .sub-txt.gray {
	color:#6F7678;
}

.br-mobile-only {
	display: inline;
}

.sc-main {
	padding-top:90px;
    margin-top: -60px;
	padding-bottom:50px;
	position: relative;
}
.sc-main::before {
	content:"";
	width:100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(72, 97, 255, 0) 0%, rgba(72, 97, 255, 1) 100%);
	opacity: 0.4;
	display: flex;
	position: absolute;
	top:0;
}
.sc-main .img-group {
	width:100%;
	height: 330px;
	position: relative;
	overflow: hidden;
	margin-top:48px;
}
.sc-main .img-group .sc01-img1 {
	width:446px;
	position: relative;
	margin-left:20px;
}
.sc-main .img-group .sc01-img2 {
	position: absolute;
	width:306px;
	height: 213px;
	left: 50%;
	transform: translateX(-50%);
	margin-top:-180px;
}
.sc-main .img-group .rotate-icon {
	width:64px;
	height: 64px;
	border-radius: 99px;
	background: linear-gradient(140.18deg, rgba(72, 97, 255, 1) 0%, rgba(128, 55, 255, 1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top:168px;
	animation: rotate_image 2s linear infinite;
    transform-origin: 50% 50%;
}
.sc-main .img-group .rotate-icon img {
	width:29px;
	
}
.sc-free {
	padding:0 20px 50px;
	background: #B6C0FF;
}

.sc-free .box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 16px 0px rgba(72, 97, 255, 0.2);
	padding:30px 20px;
}
.sc-free .box .box-tit {
	font-size:26px;
	font-weight: 800;
	line-height: 125%;
	text-align: center;
	margin-bottom:30px;
}
.sc-free .box .box-tit .sub {
	font-size:16px;
	font-weight: 500;
	color:#6F7678;
	margin-top:10px;
	line-height: 150%;
}
.sc-free .box input {
	height: 50px;
	width:100%;
	background: #EFF2FA;
	border-radius:8px;
	padding:0 16px;
	display: flex;
	margin-bottom:8px;
}
.sc-free .box #submitBtn {
	background: #4861FF;
	height: 52px;
	border-radius: 8px;
}
.sc-free .box #submitBtn:hover {
	background: #2D44D7;
}
.sc-free .box input[type="checkbox"] {
	display: none;
	position: relative;
}
.sc-free .box input[type="checkbox"] + label {
	display: flex;
	gap:6px;
	align-items: center;
	font-size:14px;
	color:#6F7678;
}
.sc-free .box input[type="checkbox"] + label:before {
	content:"";
	display: flex;
	width:24px;
	height: 24px;
	background: url(images/icon-checkicon.svg) no-repeat center;
	background-size:100%;
}
.sc-free .box input[type="checkbox"]:checked + label:before {
	content:"";
	display: block;
	width:24px;
	height: 24px;
	background: url("images/icon-checkicon-check.svg") no-repeat center;
	background-size:100%;
}
.sc-free .box .check-group {
	margin:16px 0 8px;
}
.sc-edu {
	padding-bottom:80px;
	position: relative;
	padding-top:256px;
	background: url("images/sc-edu-bg.png") no-repeat top center;
	background-size:contain;
}
.sc-edu-visual {
	display: none;
}
.sc-edu-body {
	width: 100%;
}
.sc-edu .text-group {
	padding:0 20px;
	color:#6F7678;
	font-size:16px;
	line-height: 150%;
	font-weight: 500;
	text-align: center;
	margin-top:30px;
	display: flex;
	gap:16px;
	flex-direction: column;
	margin-bottom:40px;
}
.sc-edu button, .sc-edu .btn-story {
	height: 52px;
	width: calc(100% - 40px);
	border:1px solid #4861FF;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:8px;
	font-size:16px;
	font-weight: 700;
	margin:0 20px;
	color:#4861FF;
}
.sc-edu button i, .sc-edu .btn-story i {
	width:16px;
	height: 16px;
}
.sc-edu button:hover, .sc-edu .btn-story:hover {
	background: rgba(72, 97, 255, .07);
	-webkit-transition-duration:0.1s;
	-webkit-transition-timing-function:ease;
	transition-duration:0.1s;
	transition-timing-function:ease;
}
.sc-worry {
	padding-bottom:60px;
}
.sc-worry .sc-tit-group {
	margin-bottom:30px;
}
.sc-worry .worry-img {
	width:335px;
	height: 220px;
	margin:0 auto;
	position: relative;
}

.sc-worry .list-group {
	display: flex;
	flex-direction: column;
	gap:16px;
	padding:0 20px;
	margin-top: -19px;
}
.sc-worry .list-group .item {
	width:100%;
	background: #F2F3F6;
	border-radius: 12px;
	padding:24px 20px 24px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:24px;
	
}
.sc-worry .list-group .item .icon {
	width:32px;
	height: 32px;
}
.sc-worry .list-group .item .txt-group {
	width:calc(100% - 56px);
}
.sc-worry .list-group .item .txt-group .label {
	font-size:20px;
	font-weight: 800;
	line-height: 135%;
	margin-bottom:10px;
	display: block;
}
.sc-worry .list-group .item .txt-group .text {
	color:#6F7678;
	font-size:15px;
	line-height:150%;
	display: block;
	font-weight: 400;
} 
.sc-why {
	padding:60px 0px;
	background: linear-gradient(180deg, rgba(232, 244, 254, 1) 0%, rgba(201, 208, 255, 1) 100% );
	
}
.sc-why .list-group {
	display: flex;
	flex-direction: column;
	gap:16px;
	padding:0 20px;
	margin-top:30px;
}
.sc-why .list-group .item {
	width:100%;
	background: #fff;
	border-radius: 12px;
	padding:24px 20px 24px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:24px;
	
}
.sc-why .list-group .item .icon {
	width:32px;
	height: 32px;
}
.sc-why .list-group .item .txt-group {
	width:calc(100% - 56px);
}
.sc-why .list-group .item .txt-group .label {
	font-size:20px;
	font-weight: 800;
	line-height: 135%;
	margin-bottom:10px;
	display: block;
	color:#4861FF;
}
.sc-why .list-group .item .txt-group .text {
	color:#6F7678;
	font-size:15px;
	line-height:150%;
	display: block;
	font-weight: 400;
} 
.sc-point {
	padding:60px 0px;
}
.sc-point .list-group {
	margin-top:30px;
	padding:0 20px;
	display: flex;
	gap:16px;
	flex-direction: column;
}
.sc-point .list-group .item {
	width:100%;
	border-radius: 12px;
	padding:24px 20px 30px;
	display: flex;
	gap:30px;
	flex-direction: column;
}
.sc-point .list-group .item:first-child {
	background: #E8F4FE;
}
.sc-point .list-group .item:nth-child(2) {
	background: #F1EEFE;
}
.sc-point .list-group .item:nth-child(3) {
	background: #E1F4F1;
}
.sc-point .list-group .item:last-child {
	background: #FCF3EA;
}
.sc-point .list-group .item .txt-group {
	display: flex;
	gap:10px;
	flex-direction: column;
}
.sc-point .list-group .item .txt-group .label {
	font-size:20px;
	font-weight: 800;
	line-height: 135%;
}
.sc-point .list-group .item .txt-group .text {
	font-size:15px;
	font-weight: 500;
	line-height: 150%;
	color:#6F7678;
}
.sc-detail {
	background: #23272B;
	padding:60px 0;
}
.sc-detail  .sc-tit-group .tit {
	color:#fff;
}
.sc-detail  .sc-tit-group .sub-txt  {
	color:rgba(255,255,255,.7) !important;
}
.sc-detail .info-group {
	display: flex;
	align-items: center;
	gap:6px;
	justify-content: center;
	margin-top:16px;
}
.sc-detail .info-group p {
	font-size:13px;
	color:rgba(255,255,255,0.5);
	
}
.sc-detail .img-group {
	width:335px;
	margin:40px auto 0;
	position: relative;
}
.sc-detail .img-group .icon {
	width:54px;
	height: 54px;
	background: linear-gradient(140.18deg, rgba(72, 97, 255, 1) 0%, rgba(128, 55, 255, 1) 100%);
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 95px;
	animation: rotate_image 2s linear infinite;
    transform-origin: 50% 50%;
}
.sc-detail .img-group .icon i {
	width:28px;
	height: 28px;
	display: flex;
	align-items: center;
	background: url("images/icon-repeat-mono.svg") no-repeat center;
	background-size:100%;
}
.sc-review {
	padding:60px 0;
}
.sc-review .list-group {
	margin-top:30px;
	padding:0 20px;
	display: flex;
	gap:16px;
	flex-direction: column;
}
.sc-review .list-group li {
	background: #F2F3F6;
	border-radius: 12px;
	padding:24px 20px;
	box-sizing: border-box;
}
.sc-review .list-group li i {
	width:24px;
	height: 24px;
	display: block;
	background: url("images/icon-review.svg") no-repeat center;
	background-size:100%;
	margin-bottom:6px;
}
.sc-review .list-group li .review {
	font-size:16px;
	line-height: 150%;
}
.sc-review .list-group li .user {
	display: block;
	margin-top:16px;
	font-size:14px;
	color:#828A93;
}
footer {
	padding:24px 20px;
	border-top:1px solid #EAEDF4;
}
footer .f-menu {
	display: flex;
	gap:16px;
	align-items: center;
	margin-bottom:18px;
}
footer .f-menu a {
	font-size:14px;
	line-height: 150%;
}
footer .f-menu a:hover {
	text-decoration: underline;
}
footer .f-menu a.bold {
	font-weight: 700;
}
footer .company-name {
	font-size:14px;
	line-height: 150%;
	font-weight: 700;
	margin-bottom:6px;
}
footer .f-info {
	font-size:14px;
	font-weight: 400;
	color:#67738E;
	line-height: 150%;
}


@keyframes rotate_image {
  from {
    -webkit-transform: translateX(-50%) rotate(0deg);
    -o-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(360deg);
    -o-transform: translateX(-50%) rotate(360deg);
    transform: translateX(-50%) rotate(360deg);
  }
}

/*  ==========================
Mobile guard (max 1023px): new HTML wrappers must not alter layout
=========================== */
@media (max-width: 1023px) {
	.landing-container {
		padding-left: 0;
		padding-right: 0;
		max-width: none;
	}

	.header .landing-container.header-inner {
		display: contents;
	}

	.sc-main-layout,
	.sc-edu-layout,
	.sc-main-copy {
		display: block;
	}

	.sc-edu-visual {
		display: none !important;
	}
}

/*  ==========================
Desktop (min 1024px): progressive enhancement only
=========================== */
@media (min-width: 1024px) {
	.br-mobile-only {
		display: none;
	}

	.landing-page {
		max-width: none !important;
		width: 100%;
		background: transparent;
		box-shadow: none;
		min-height: 0;
	}

	.landing-container {
		max-width: var(--landing-max-desktop);
		margin-left: auto;
		margin-right: auto;
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.header {
		padding: 0;
		z-index: 10;
		background: rgba(255, 255, 255, 0.92);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		border-bottom: 1px solid #eaedf4;
	}

	.header .landing-container.header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 3rem;
		width: 100%;
		max-width: var(--landing-max-desktop);
		height: 60px;
	}

	.header .logo {
		flex-shrink: 0;
	}

	.header .btn-login {
		flex-shrink: 0;
		margin-left: auto;
	}

	.header.down {
		background: #fff;
	}

	section .sc-tit-group {
		padding: 0;
	}

	section .sc-tit-group .tit {
		font-size: 2.5rem;
	}

	section .sc-tit-group .sub-txt {
		font-size: 1.125rem;
		max-width: 42rem;
	}

	.sc-tit-group--hero {
		align-items: flex-start;
	}

	.sc-tit-group--hero .tit,
	.sc-tit-group--hero .sub-txt {
		text-align: left;
	}

	.sc-main {
		padding-top: 4rem;
		padding-bottom: 4rem;
		margin-top: 0;
		background: #fff;
		border-radius: 0 0 1rem 1rem;
	}

	.sc-main-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 3rem;
		align-items: center;
	}

	.sc-main .img-group {
		height: auto;
		min-height: 420px;
		margin-top: 0;
	}

	.sc-main .img-group .sc01-img1 {
		width: min(100%, 520px);
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	.sc-main .img-group .sc01-img2 {
		width: min(100%, 360px);
		height: auto;
		margin-top: -12rem;
	}

	.sc-main .img-group .rotate-icon {
		top: 11rem;
	}

	.sc-free {
		padding: 4rem 0;
	}

	.sc-free .landing-container {
		max-width: 40rem;
	}

	.sc-free .box {
		padding: 2.5rem 2rem;
		border-radius: 1rem;
	}

	.sc-free .box .box-tit {
		font-size: 2rem;
	}

	.sc-edu {
		padding-top: 0;
		padding-bottom: 0;
		background: none;
		margin-top: 1.5rem;
	}

	.sc-edu-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
		align-items: stretch;
		background: #fff;
		border-radius: 1rem;
		overflow: hidden;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	}

	.sc-edu-visual {
		display: block;
		min-height: 28rem;
		background: #e8f4fe url("images/sc-edu-bg.png") no-repeat center bottom;
		background-size: contain;
	}

	.sc-edu-body {
		padding: 3rem 2.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.sc-edu .sc-tit-group {
		align-items: flex-start;
	}

	.sc-edu .sc-tit-group .tit {
		text-align: left;
	}

	.sc-edu .text-group {
		padding: 0;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
		font-size: 1.125rem;
		text-align: left;
	}

	.sc-edu .btn-story {
		width: auto;
		min-width: 280px;
		margin: 0;
		align-self: flex-start;
		padding: 0 2rem;
	}

	.sc-worry {
		padding: 5rem 0;
		background: #fff;
		border-radius: 1rem;
		margin-top: 1.5rem;
	}

	.sc-worry .worry-img {
		width: min(100%, 420px);
		height: auto;
		margin-bottom: 1rem;
	}

	.sc-worry .list-group.list-group--cards,
	.sc-why .list-group.list-group--cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
		margin-top: 2rem;
		padding: 0;
		flex-direction: unset;
	}

	.sc-why .list-group.list-group--cards .item {
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		height: 100%;
		width: auto;
	}

	.sc-why .list-group.list-group--cards .item .txt-group {
		width: calc(100% - 56px);
	}

	.sc-worry .list-group.list-group--cards .item {
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		height: 100%;
		width: auto;
	}

	.sc-worry .list-group.list-group--cards .item .txt-group {
		width: calc(100% - 56px);
	}

	.sc-why {
		padding: 5rem 0;
		border-radius: 1rem;
		margin-top: 1.5rem;
	}

	.sc-why .list-group {
		padding: 0;
	}

	.sc-point {
		padding: 5rem 0;
		background: #fff;
		border-radius: 1rem;
		margin-top: 1.5rem;
	}

	.sc-point .list-group.list-group--points {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
		padding: 0;
		flex-direction: unset;
	}

	.sc-point .list-group.list-group--points .item {
		flex-direction: row;
		align-items: center;
		height: 100%;
		width: auto;
		padding: 1.75rem;
	}

	.sc-point .list-group.list-group--points .item .txt-group {
		flex: 1;
		min-width: 0;
	}

	.sc-point .list-group.list-group--points .item .img {
		flex-shrink: 0;
		width: 140px;
	}

	.sc-point .list-group.list-group--points .item .img img {
		width: 100%;
		height: auto;
	}

	.sc-detail {
		padding: 5rem 0;
		margin-top: 1.5rem;
		border-radius: 1rem;
	}

	.sc-detail .img-group {
		width: min(100%, 480px);
	}

	.sc-detail .img-group .icon {
		top: 28%;
		width: 64px;
		height: 64px;
	}

	.sc-detail .img-group .icon i {
		width: 32px;
		height: 32px;
	}

	.sc-review {
		padding: 5rem 0;
		background: #fff;
		border-radius: 1rem;
		margin-top: 1.5rem;
	}

	.sc-review .list-group.list-group--reviews {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
		padding: 0;
		flex-direction: unset;
	}

	footer {
		padding: 24px 0;
		background: #fff;
	}

	.footer-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 2rem;
	}

	footer .f-menu {
		margin-bottom: 0;
	}

	footer .f-info {
		text-align: right;
	}
}

@media (min-width: 1280px) {
	section .sc-tit-group .tit {
		font-size: 2.75rem;
	}

	.sc-main .img-group .sc01-img2 {
		margin-top: -14rem;
	}
}
