/* reset */
*{margin:0;padding:0;font:inherit;color:inherit;}
*, :after, :before {box-sizing:border-box;}
:root {-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;text-size-adjust:100%;cursor:default;line-height:1.5;overflow-wrap:break-word;word-break:break-word;tab-size:4}
html, body {height:100%;}
img, picture, video, canvas, svg {display: block;max-width:100%;}
button {background:none;border:0;cursor:pointer;}
a {text-decoration:none}
table {border-collapse:collapse;border-spacing:0}
ul{list-style-type: none;}

/* font */
@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('./font/PretendardVariable.woff2') format('woff2-variations');
}
body, input, textarea, select, button, table {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    font-family: 'Pretendard Variable';
}
body{
	overflow-x: hidden;
}
html{
	font-size: 62.5%;
}
.rel_wrap{
	width: 80%;
	max-width: 138.8rem;
}
/* wrap */
.visual{
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.visual_bg{
	object-fit: cover;
	position: absolute;
	filter: brightness(.7);
}
.visual_bg strong{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 10rem;
	color: #000;
}
.visual_txt_wrap{
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	font-weight: 400;
	line-height: 1.5;
	transform: translateY(.8rem);
}
.visual_sub{
	font-size: 2.4rem;
}
.visual_sub b{
	font-weight: 700;
}
.visual_main{
	font-size: 4.8rem;
	position: relative;
	opacity: 0;
}
.visual_main b{
	font-weight: 700;
}
.visual_main::after{
	position: absolute;
	top: 0;
	right: -.8rem;
	background-color: #fff;
	content: "";
	width: .8rem;
	height: .8rem;
	border-radius: calc(1px / 0);
}
.header{
	position: fixed;
	top: 3rem;
	display: flex;
	align-items: center;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	border-radius: calc(1px / 0);
	padding: 1rem 3rem;
	background-color: #000;
	color: #fff;
}
.header,.header_logo .header_menu{
	transition: all .2s ease-in-out;
}
.header_menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: 1.6rem;
	padding-left: 10rem;
}
.header_menu > a{
	border-radius: calc(1px / 0);
	padding: .8rem 1.4rem;
}
.header_logo{
	cursor: pointer;
    white-space: nowrap;
	height: 3.6rem;
	width: 16rem;
	display: flex;
	align-items: center;
}
.header_logo svg{
	width: 11.8rem;
	height: 1.6rem;
	overflow: visible;
}
.header_menu_left{
	display: flex;
	gap: 0 2rem;;
}
.header_menu_left a{
	padding: .8rem 1.4rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: all .1s ease-in-out;
}
.header_menu_left .header_dropdown{
	padding: .8rem 1.4rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
	cursor: pointer;
	transition: all .1s ease-in-out;
}
.header_menu_left .header_dropdown:hover{
	background-color: rgba(255, 255, 255, 0.3);
}
.header.visual_header .header_menu_left .header_dropdown:hover{
	background-color: rgba(255, 255, 255, 0.8);
}
.header.visual_header{
	background-color: rgba(255, 255, 255, 0.5);
	color: #000;
}
.header .header_dropdown:hover svg path{
	stroke: #fff;
}
.header.visual_header .header_dropdown:hover svg path{
	stroke: #000;
}
.header.visual_header .header_logo svg path{
	fill: #000;	
}
.header .header_menu > a{
	background-color: rgba(255, 255, 255, 0.3);
}
.header.visual_header .header_menu > a{
	background-color: #fff;
}
.header_menu_left a:hover{
	background-color: rgba(255, 255, 255, 0.3);
}
.header.visual_header .header_menu_left a:hover{
	background-color: rgba(255, 255, 255, 0.8);
}
/* 드롭다운메뉴 */
.header_menu_left .header_dropdown .header_dropdown_inner{
	cursor: auto;
}
.header_dropdown_inner{
	opacity: 0;
	pointer-events: none;
	position: absolute;
	background-color: #fff;
	border-radius: 12px;
	padding: 2rem;
	top: 4rem;
	left: 0;
	filter: drop-shadow(0rem .3rem .6rem rgba(0, 0, 0, 0.08));
	transition: all .1s ease-in-out;
}
.header_dropdown:hover .header_dropdown_inner{
	opacity: 1;
	pointer-events: all;
}
.header_dropdown_top{
	font-size: 1.4rem;
	color: #888;
	padding: 0 0 .6rem 1rem;
}
.header_dropdown_inner a{
	display: block;
	white-space: nowrap;
	padding: .8rem 1rem;
	width: 13rem;
	color: #000;
}
.header_dropdown_inner a:hover{
	background-color: #f1f1f1 !important;
}
.header_dropdown_depth{
	display: flex;
}
.header_dropdown_inner_left{
	border-right: 1px solid #ddd;
	padding-right: 2rem;
	margin-right: 2rem;
}
.header_dropdown_inner_left a{
	margin-bottom: .5rem;
}
.header_dropdown_inner_right p{
	font-size: 1.6rem;
	color: #000;
	white-space: nowrap;
	margin-bottom: 1rem;
}
.header_dropdown_inner_right dd{
	font-size: 1.2rem;
	color: #999;
	line-height: 1.5;
}
.header_dropdown_inner_right dt{
	font-size: 1.6rem;
    color: #000;
    line-height: 1.5;
}
.section{
	display: flex;
	justify-content: center;
	padding-top: 10rem;
	overflow-x: hidden;
}
.section_top_header_txt{
	padding-left: 1rem;
	position: relative;
	margin-bottom: 6rem;
}
.section_top_header_txt::before{
	position: absolute;
	top: -.5rem;
	left: 0;
	content: "";
	display: block;
	background-color: #16A4FF;
	border-radius: calc(1px / 0);
	width: 1rem;
	height: 1rem;
}
.section_top_header_txt.header_txt_center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.section_top_header_txt.header_txt_center::before{
	left: calc(50% - 11.5em);
}
.section_top_header_txt h2{
	font-size: 2.3rem;
	line-height: 1.5;
}
.section_top_header_txt h2 b{
	font-weight: 700;
}
.section01_swiper .swiper-wrapper{
	display: flex;
	cursor: grab;
}
.section01_swiper .swiper-slide{
	cursor: pointer;
	padding: 3rem;
	border-radius: 12px;
	background-color: #F9F9F9;
	color: #000;
	line-height: 1.5;
	width: 40rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.section01_swiper .swiper-slide.blue{
	background-color: #16A4FF;
	color: #fff;
}
.section01_top_sub_txt{
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}
.section01_top_sub_txt img{
	width: 2.1rem;
	height: 2.1rem;
}
.section01_top_sub_txt p{
	font-size: 1.6rem;
}
.section01_top_txt{
	font-size: 2rem;
}
.section01_top_txt b{
	font-weight: 700;
}
.section01_swiper_ani_wrap{
	width: 14rem;
	height: 14rem;
}
.section01_swiper .swiper-slide.blue .section01_swiper_ani_wrap{
	width: 13rem;
	height: 13rem;
}
.section01_swiper .swiper-wrapper .swiper-slide:nth-child(2n){
	margin-top: 10rem;
}
.main_sub_section{
	height: 26rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}
.main_sub_section::after{
	width: 26rem;
	height: 26rem;
	display: block;
	content: "";
	background-image: url(../img/mini_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(16em);
}
.sub_top_txt{
	font-size: 1.8rem;
	line-height: 1.5;
}
.sub_main_txt{
	margin-top: 1rem;
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 700;
}
.sub_main_txt span{
	position: relative;
}
.sub_main_txt span::before{
	position: absolute;
	width: 100%;
	height: .8rem;
	background-color: #16A4FF;
	content: "";
	bottom: 0;
	display: block;
	right: 0;
	z-index: -1;
}
.sub_button_wrap{
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	color: #000;
	margin-top: 2rem;
}
.sub_button_wrap a{
	display: flex;
	gap: 1rem;
	align-items: center;
	border-radius: calc(1px / 0);
	padding: 1.6rem 2.4rem;
}
.sub_button_wrap path{
	stroke: #000;
}
.sub_button_wrap a.btn_blue{
	background-color: #16A4FF;
	color: #fff;
}
.sub_button_wrap a.btn_blue path{
	stroke: #fff;
}
.section03_swiper_wrap{
	display: flex;
	height:  70rem;
	overflow: hidden;
	justify-content: space-between;
}
.section03_swiper.main{
	background-color: #F9F9F9;
	border-radius: 1.2rem;
	padding: 5rem;
	overflow: hidden;
	max-width: 100rem;
	position: relative;
	z-index: 2;
	cursor: grab;
	width: 100%;
}
.section03_swiper.main .swiper-slide{
	display: flex;
	justify-content: center;
	align-items: center;
}
.section03_swiper.main .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}
.section03_swiper.sub .swiper-slide{
	background-color: #F9F9F9;
	display: inline-block;
	border-radius: calc(1px / 0);
	height: 6rem;
	padding: 1rem 1.6rem;
	white-space: nowrap;
	font-size: 1.6rem;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section03_swiper.sub .swiper-slide.dnone{
	background-color: transparent;
	pointer-events: none;
}
.section03_swiper.sub .swiper-slide.swiper-slide-active{
	background-color: #16A4FF;
	color: #fff;
	position: relative;
}
.section03_swiper.sub .swiper-slide.swiper-slide-active::after{
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	right: calc(-400% - 2rem);
	width: 400%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: -1;
}
.section03_swiper.sub .swiper-slide span{
	font-weight: 700;
	margin-right: .5rem;
	font-size: 1.8rem;
}
.section03_swiper.sub li{
	cursor: pointer;
}
.section04_logo_wrap{
	background-color: #F9F9F9;
	border-radius: 1.2rem;;
	padding: 3rem 9rem;
}
.section04_logo_wrap ul{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 2rem
}
.section04_logo_wrap ul li{
	width: calc(20% - 2rem);
}
.section04_button_wrap{
	margin-top: 6rem;
	display: flex;
	justify-content: center;
}
.footer{
	margin-top: 10rem;
	padding: 5rem 0;
	background-color: #000;
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.footer .rel_wrap{
	display: flex;
	flex-direction: column;
	gap: 6rem;
}
.footer_top{
	display: flex;
	gap: 2rem;
}
.footer_top a{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #E6E6E6;
}
.footer_bottom{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer_logo{
	width: 11.8rem;
    height: 1.6rem;
    overflow: visible;
}
.footer_logo svg{
	overflow: visible;
}
.footer_logo path{
	fill: #fff;
}
.footer_info{
	color: #888;
	text-align: end;
	font-size: 1.4rem;
}
.pop_button{
	color: #000;
	background-color: #fff;
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.8rem;
	border-radius: calc(1px / 0);
	filter: drop-shadow(0rem .3rem .6rem rgba(0, 0, 0, 0.08));
	font-size: 1.6rem;
	font-weight: 700;
	cursor: pointer;
	transition: all .2s ease-in-out;
	position: absolute;
	position: fixed;
	right: 10%;
	z-index: 10;
	bottom: 10rem;
}
.pop_button:hover{
	background-color: #16A4FF;
	color: #fff;
}
.pop_button path{
	transition: all .2s ease-in-out;
}
.pop_button:hover path{
	stroke: #fff;
}
.pop_content_wrap{
	display: none;
}
.pop_content_wrap.on{
	display: block;
}
.pop_content_wrap.on .pop_content{
	filter: drop-shadow(0rem .3rem .6rem rgba(0, 0, 0, 0.08));
	z-index: 12;
	width: 80rem;
	height: 50rem;
	background-color: #fff;
	position: fixed;
	right: 10%;
	bottom: 10rem;
	border-radius: 3rem;
	padding: 2rem 3rem;
}
.pop_top{
	display: flex;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2rem;
}
.pop_top_left_wrap{
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	font-size: 1.8rem;
}
.pop_dimd{
	position: fixed;
	z-index: 11;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
}
.close{
	position: relative;
	width: 2.6rem;
	height: 2.6rem;
	cursor: pointer;
}
.close span{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2rem;
	height: .1rem;
	background-color: #000;
	display: block;
}
.close span:nth-child(1){
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.close span:nth-child(2){
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.pop_bottom_top_txt{
	padding-left: 1rem;
	font-size: 1.8rem;
	line-height: 1.5;
	position: relative;
	margin-bottom: 2rem;
}
.pop_bottom_top_txt::before{
	position: absolute;
	top: -.5rem;
	left: 0;
	width: 1rem;
	height: 1rem;
	background-color: #16A4FF;
	border-radius: calc(1px / 0);
	content: "";
}
.pop_bottom_depth{
	display: flex;
	gap: 1rem;
}
.pop_bottom_bbs{
	background-color: #F9F9F9;
	width: 34rem;
	height: 100%;
	padding: 2rem;
	border-radius: 1.2rem;
}
.pop_bottom_bbs_title{
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.pop_bottom_bbs_inner a{
	padding: 1.5rem 0;
	display: block;
	font-size: 1.6rem;
}
.pop_bottom_bbs_inner a.on{
	font-weight: 700;
}
.pop_bottom_bbs_inner a:not(:last-child){
	border-bottom: 1px solid #eee;
}
.pop_bottom_bbs_content{
	font-size: 1.6rem;
	padding-left: 1.5rem;
	width: calc(100% - 35rem);
	height: 32rem;
	overflow-y: auto;
}
.pop_bottom_bbs_content_top_txt{
	position: relative;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}
.pop_bottom_bbs_content_top_txt::before{
	display: block;
	content: "";
	left: -1rem;
	height: 100%;
	width: .5rem;
	background-color: #16A4FF;
	position: absolute;
}
.pop_bottom_bbs_content dl{
	margin-bottom: 1rem;
}
.pop_bottom_bbs_content dd{
	font-size: 1.2rem;
	color: #999;
	line-height: 1.5;
}
.pop_bottom_bbs_content dt{
	font-size: 1.6rem;
	color: #000;
	line-height: 1.5;
}
.pop_bottom_bbs_content a{
	cursor: pointer;
	display: block;
	padding: 1rem 1.6rem;
	background-color: #16A4FF;
	color: #fff;
	font-weight: 700;
	display: inline-block;
	border-radius: calc(1px / 0);
}
.pop_bottom_depth.bbs_on .pop_bottom_bbs_content{
	display: none;
}
.pop_bottom_bbs_content.bbs_on_inner{
	display: none;
}
.pop_bottom_depth.bbs_on .pop_bottom_bbs_content.bbs_on_inner{
	display: block;
}
.pop_bbs_on_inner_title{
	font-size: 1.8rem;
	font-weight: 700;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #eee;
}
.pop_bbs_on_inner_content{
	font-size: 1.6rem;
	line-height: 1.5;
}
/* 서브페이지_강점*/
.section#section01{
	overflow-x: unset;
}
.sub_visual{
	margin-top: 19rem;
	display: flex;
	justify-content: center;
	text-align: center;
	padding-bottom: 10rem;
}
.sub_visual_sub_txt{
	font-size: 1.8rem;
	color: #16A4FF;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
}
.sub_visual_title{
	font-size: 3.6rem;
	color: #000;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
}
.sub_visual_detail{
	font-size: 1.8rem;
	color: #666;
	font-weight: 400;
	line-height: 1.5;
}
.strong_point_depth{
	position: relative;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
.strong_point_sticky{
	top: 8rem;
	align-self: auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.strong_point_sticky a{
	font-size: 2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}
.strong_point_sticky a p{
	white-space: nowrap;
}
.strong_point_sticky a span{
	background-color: #F9F9F9;
	border-radius: calc(1px / 0);
	width: 5rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	margin-right: 1rem;
}
.strong_point_sticky dt{
	font-size: 1.6rem;
	margin-left: 3.5em;
	display: none;
}
.strong_point_sticky li.strong_point_on a{
	font-weight: 700;
}
.strong_point_sticky li.strong_point_on a span{
	background-color: #16A4FF;
	color: #fff;
}
.strong_point_sticky li.strong_point_on dt{
	display: block;
}
.strong_point_content{
	padding-top: 9rem;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.strong_point_sub_title{
	font-size: 2.2rem;
	font-weight: 700;
	color: #000;
}
.strong_point_sub_subtitle{
	font-size: 1.6rem;
	color: #000;
	margin-bottom: 2rem;
}
.strong_point_txt_main{
	font-size: 1.4rem;
	font-weight: 700;
	color: #16A4FF;
}
.strong_point_txt_sub{
	font-size: 1.6rem;
	color: #000;
	font-weight: 400;
	line-height: 1.5;
	margin-top: .3rem;
	margin-bottom: 2rem;
}
.strong_point_txt_sub span{
	opacity: .6;
	font-size: 1.4rem
}
.strong_point_content_inner_section{
	width: 100rem;
	height: 50rem;
	background-color: #F9F9F9;
	border-radius: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.strong_point_content_inner{
	position: relative;
}
.strong_point_scroll{
	position: absolute;
	top: -17rem;
}
.strong_point_logo{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 1.4rem;
	white-space: nowrap;
	position: absolute;
	opacity: 0;
}
.strong_point_content_inner_section .strong_point_logo:nth-child(1){
	transform: translateX(-31rem) translateY(-16rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(2){
	transform: translateX(-10rem) translateY(-16rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(3){
	transform: translateX(10rem) translateY(-16rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(4){
	transform: translateX(32rem) translateY(-16rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(5){
	transform: translateX(-27rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(6){
	transform: translateX(27rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(7){
	transform: translateX(-23rem) translateY(15rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(8){
	transform: translateY(15rem);
}
.strong_point_content_inner_section .strong_point_logo:nth-child(9){
	transform: translateX(23rem) translateY(15rem);
}
.strong_point_logo img{
	width: 10rem;
	height: 10rem;
	background-color: #fff;
	border-radius: calc(1px / 0);
	object-fit: contain;
}
.strong_point_logo.l_pointpay{
	width: 15rem;
	height: 15rem;
	background-color: #16A4FF;
	border-radius: calc(1px / 0);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(.8);
}
.strong_point_logo.l_pointpay svg{
	width: 11.8rem;
    height: 1.6rem;
	overflow: visible;
}
.strong_point_content_inner_section.section02{
	padding: 5rem;
	justify-content: space-between;
	flex-wrap: wrap;
	height: 50rem;
}
.strong_point_flex_box{
	height: calc(50% - 1rem);
	padding: 2rem;
	background-color: #fff;
	color: #A2A2A2;
	border-radius: 12px;
	font-size: 1.4rem;
	font-weight: 700;
	opacity: 0;
	transition: width .6s ease-in-out;
}
.strong_point_flex_box.flex40{
	width: 40%;
}
.strong_point_flex_box.flex60{
	width: 59%;
}
.strong_point_flex_box.s_p_box_red{
	background-color: #FFEFEF;
	color: #FF6565;
}
.strong_point_flex_box.s_p_box_blue{
	background-color: #EFF1FF;
	color: #7683D6;
}
.strong_point_flex_box.s_p_box_green{
	background-color: #EFFFF8;
	color: #3DCB89;
}
.strong_point_flex_box.box_baloon{
	background-color: #fff;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.4rem;
	font-weight: 700;
	width: 100%;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
	transform: scale(.8);
	padding: 0;
}
.strong_point_flex_box.box_baloon strong{
	color: #16A4FF;
	padding-left: .5rem;
}
.strong_point_flex_box.box_baloon::after{
	content: "";
	position: absolute;
	width: 10rem;
	height: 10rem;
	background-color: #fff;
	left: calc(50% - 5rem);
	transform: rotate(45deg) translateX(-50%) translateY(-50%);
	z-index: -1;
	border-radius: 12px;
}
.s_p_section02 .strong_point_flex_box.pay_small{
	color: rgba(0, 0, 0, 0.6);
	position: relative;
	border: 1px solid #eee;
}
.s_p_section02 .strong_point_flex_box.pay_small::after{
	position: absolute;
	background: url(../img/arrow_left.png) no-repeat;
	width: 6.4rem;
	height: 5.6rem;
	background-size: contain;
	content: "";
	left: -6.3rem;
	top: 50%;
	transform: translateY(-50%);
}
.s_p_section02 .strong_point_flex_box.pay_box{
	background-color: #16A4FF;
	color: #fff;
}
.s_p_section02.on .strong_point_flex_box.flex40{
	width: 70%;
}
.s_p_section02.on .strong_point_flex_box.flex60{
	width: 29%;
}
.bg_arrow{
	width: 11.5rem;
	position: relative;
	font-weight: 400;
}
.bg_arrow::after{
	position: absolute;
	top: 50%;
	right: -1.6rem;
	width: 1.6rem;
	height: 1.6rem;
	transform: translateX(-50%) translateY(-50%);
	content: "";
	background: url(../img/arrow_down.png) right center no-repeat;
	background-size: cover;
}
.bg_arrow.a_up::after{
    transform: translateX(-50%) translateY(-60%) rotate(180deg);
}
.s_p_section02 .strong_point_flex_box.pay_small .bg_arrow::after{
	filter: invert(1);
	opacity: .6;
}
.strong_point_content_inner_section.section03{
	overflow: hidden;
}
.s_p_03_percent_wrap{
	background-color: #E2F1FA;
	position: absolute;
	width: 10rem;
	height: calc(100% - 10rem);
	top: 50%;
	transform: translateY(-50%);
	right: 5rem;
}
.s_p_03_percent{
	background-color: #16A4FF;
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;	
}
.s_p_03_txt_wrap{
	position: absolute;
	right: 16rem;
	z-index: 2;
	text-align: left;
	display: flex;
	align-items: flex-end;
	gap: 1rem;
	transform: scale(.8);
}
.s_p_03_txt_wrap_txt{
	opacity: .6;
}
.s_p_03_txt_wrap_img{
	width: 9rem;
}
.s_p_03_txt_wrap, .s_p_03_arrow{
	opacity: 0;
}
.s_p_03_sub_txt{
	font-size: 3.4rem;
	font-weight: 700;
}
.s_p_03_main_txt{
	font-size: 7rem;
	font-weight: 700;
	line-height: 1;
}
.s_p_03_arrow{
	width: 28rem;
	height: calc(100% - 10rem);
	background: url(../img/s_p_arrow_down.png);
	position: absolute;
	left: 16rem;
	top: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0;
}
.s_p_section04 .section04{
	padding: 5rem;
	position: relative;
}
.s_p_s4_left_wrap{
	position: absolute;
	left: 5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	opacity: 0;
}
.s_p_s4_left_comp{
	width: 16rem;
	height: 7rem;
	background-color: #fff;
	border-radius: 1.2rem;
	filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	position: relative;
}
.s_p_s4_left_comp::after{
	position: absolute;
	width: 9rem;
	height: .1rem;
	border-top: .1rem dashed rgba(0, 0, 0, 0.2);
	content: "";
	right: -9rem;
	top: 50%;
	transform: translateY(-50%);
}
.s_p_s4_left_wrap::after{
	position: absolute;
	width: .1rem;
	height: calc(100% - 8rem);
	border-right: .1rem dashed rgba(0, 0, 0, 0.2);
	content: "";
	right: -9rem;
	top: 50%;
	transform: translateY(-50%);
}
.s_p_s4_left_wrap::before{
	position: absolute;
	width: 9rem;
	height: .1rem;
	border-top: .1rem dashed rgba(0, 0, 0, 0.2);
	content: "";
	right: -18rem;
	top: 50%;
	transform: translateY(-50%);
}
.s_p_s4_center_wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.s_p_s4_center_ppay{
	width: 13rem;
	height: 13rem;
	background-color: #16A4FF;
	border-radius: calc(1px / 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	position: relative;
	z-index: 2;
	line-height: 1;
	opacity: 0;
	transform: scale(.8);
}
.s_p_s4_center_ppay img{
	width: 9.4rem;
}
.s_p_s4_center_ppay::before{
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 4rem);
	height: calc(100% + 4rem);
	background-color: rgba(22, 166, 255, 0.2);
	border-radius: calc(1px / 0);
	content: "";
	transform: translateX(-50%) translateY(-50%);
}
.s_p_s4_center_ppay::after{
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 9rem);
	height: calc(100% + 9rem);
	background-color: rgba(22, 166, 255, 0.1);
	border-radius: calc(1px / 0);
	content: "";
	transform: translateX(-50%) translateY(-50%);
}
.s_p_s4_right_wrap{
	position: absolute;
	right: 12rem;
	opacity: 0;
}
.s_p_s4_right_wrap::before{
	position: absolute;
	width: 9rem;
	height: .1rem;
	border-top: .1rem dashed rgba(0, 0, 0, 0.2);
	content: "";
	left: -9rem;
	top: 50%;
	transform: translateY(-50%);
}
.s_p_s4_right_txt{
	width: 18rem;
	height: 7rem;
	background-color: #fff;
	border-radius: 1.2rem;
	filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	text-align: center;
}
.s_p_s4_card_comp{
	position: absolute;
	width: 7rem;
	height: 7rem;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: calc(1px / 0);
	filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
	opacity: 0;
	transform: scale(.6);
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(2){
	top: -110%;
	left: -40%;
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(3){
	top:  -200%;
	left: 5%
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(4){
	top:  -200%;
	right: 5%;
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(5){
	top:  -110%;
	right: -40%
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(6){
	bottom: -110%;
	left: -40%;
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(7){
	bottom:  -200%;
	left: 5%
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(8){
	bottom:  -200%;
	right: 5%;
}
.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(9){
	bottom:  -110%;
	right: -40%
}
.s_p_section02_inq_link{
	position: relative;
	width: 100%;
	border-radius: 1.2rem;
	background-color: #000;
	padding: 4rem;
	background-image: url(../img/s_p_section02_inq_link_bg.png);
	background-position: center;
	background-position-x: calc(100% - 2rem);
	background-size: 50rem;
	background-repeat: no-repeat;
	overflow: visible;
}
.s_p_section02_inq_link_bg_obj{
	width: 31rem;
	height: 18rem;
	position: absolute;
	right: 15rem;
	bottom: -4rem;
	z-index: 2;
	background-image: url(../img/s_p_section02_inq_link_bg_obj.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.s_p_section02_inq_link_txt_wrap{
	color: #fff;
}
.s_p_section02_inq_link_txt_sub{
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.s_p_section02_inq_link_txt_main{
	font-size: 2rem;
	font-weight: 700;
	padding-bottom: 1rem;
}
/* 프로세스 */
.process_wrap{
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.process_img_wrap{
	margin-top: 2rem;
	width: 66rem;
}
.process_img_wrap img:nth-child(2){
	display: none;
}
.h1_txt{
	font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}
.h1_sub_txt{
	font-size: 1.8rem;
	color: #000;
	font-weight: 400;
	line-height: 1.5;
	margin-top: .3rem;
	margin-bottom: 2rem;
}
#section02 .process_img_wrap{
	opacity: 0;
}
.partner_list{
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
}
.partner_list li{
	width: calc((100% - 12rem) / 4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.partner_logo{
	display: flex;
	align-items: center;
	justify-content: center;
}
.partner_list li img{
	width: 60%;
}
.partner_list li p{
	font-size: 1.4rem;
}
/* 문의 */
.partnership_sub_txt{
	font-size: 1.6rem;
	font-weight: 700;
	width: 100%;
	padding-bottom: .5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #000;
}
.partnership label{
	font-size: 1.6rem;
	width: 100%;
	display: block;
}
.partnership label span{
	color: rgb(182, 0, 0);
	margin-left: .5rem;
}
.partnership_wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.partnership_depth{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0 2rem;
}
.partnership{
	width: 100%;
	margin-bottom: 1rem;
}
.partnership.p50{
	width: calc((100% - 2rem) / 2)
}
.partnership_depth input[type="text"],
.partnership_depth input[type="tel"],
.partnership_depth input[type="email"],
.partnership_depth select,
textarea{
	width: 100%;
	font-size: 1.8rem;
	border: 1px solid #ddd;
	border-radius: 1.2rem;
	padding: 1rem 1rem;
	outline: 0;
	resize: none;
}
.partnership_depth input[type="text"]:focus,
.partnership_depth input[type="tel"]:focus,
.partnership_depth input[type="email"]:focus,
.partnership_depth select:focus
,textarea:focus{
	border: 1px solid #16A4FF;
	background-color: #f6fcff;
}
.partnership_depth input[type="checkbox"]{
	width: 1.5rem;
	height: 1.5rem;
}
textarea{
	min-height: 20em;
}
.partnership .partnership_dl:not(:last-child){
	margin-bottom: .5rem;
}
.partnership p{
	font-size: 1.6rem;
	color: #888;
}
.partnership span{
	color: rgb(182, 0, 0);
}
.partnership_dl{
	font-size: 1.6rem;
	display: flex;
	line-height: 1.5;
}
.partnership_dl dd{
	width: 5em;
	font-weight: 700;
}
.check_wrap{
	display: flex;
	align-items: center;
	gap: .5rem;
}
.partner_button{
	display: flex;
	justify-content: center;
}
/* 모바일 */
.mobile_menu_wrap{
	display: none;
}
.mfix{
	display: none !important;
}
.mob900_only{
	display: none;
}
@media (max-width: 1630px) {
	.strong_point_sticky dt{
		margin-left: 0;
	}
}
@media (max-width: 1580px) {
	.strong_point_sticky li.strong_point_on dt{
		display: none;
	}
}
@media (max-width: 1540px) {
	.strong_point_sticky a p{
		display: none;
	}
	.strong_point_content_inner_section{
		width: 80rem;
		height: 50rem;
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(1){
		transform: translateX(-25rem) translateY(-14rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(2){
		transform: translateX(-10rem) translateY(-14rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(3){
		transform: translateX(10rem) translateY(-14rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(4){
		transform: translateX(25rem) translateY(-14rem);
	}
	.strong_point_flex_box.box_baloon::after{
		width: 5rem;
		height: 5rem;
		top: 2rem;
		left: calc(50% - 2.5rem);
	}
	.strong_point_flex_box.box_baloon{
		font-size: 2.2rem;
	}
	.s_p_s4_left_comp{
		width: 14rem;
		height: 5rem;
	}
	.s_p_s4_left_comp::after{
		width: 3rem;
		right: -3rem;
	}
	.s_p_s4_left_wrap::after{
		right: -3rem;
		height: calc(100% - 5rem);
	}
	.s_p_s4_left_wrap::before{
        width: 8rem;
        right: -10rem;
	}
	.s_p_s4_right_wrap{
		right: 8rem;
	}
	.s_p_s4_right_wrap::before{
		width: 7rem;
        left: -7rem;
	}
	.s_p_s4_right_txt{
		width: 14rem;
		height: 7rem;
	}
	.s_p_s4_card_comp{
		width: 6rem;
		height: 6rem;
	}
	.s_p_s4_center_ppay::after{
		width: calc(100% + 8rem);
		height: calc(100% + 8rem);
	}
	.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(3){
		left: -5%;
	}
	.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(4){
		right: 5%
	}
	.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(7){
		left: -5%;
	}
	.s_p_s4_right_wrap .s_p_s4_card_comp:nth-child(8){
		right: 5%
	}
}
@media (max-width: 1480px) {
	.section03_swiper.main{
		max-width: calc(100% - 21rem);
	}
}
@media (max-width: 1248px) {
	.section04_logo_wrap ul li{
		width: calc(25% - 2rem);
	}
}
@media (max-width: 1090px) {
	.strong_point_sticky{
		display: none;
	}
	.strong_point_content_inner_section{
		width: 100%;
	}
}
@media (min-width: 1091px) {
	html{	
		scroll-behavior: smooth;
	}
}
@media (max-width: 1024px) {
	html{
		font-size: 56.2%
	}
	.section03_swiper_wrap{
		height: 40rem;
	}
	.d1024{
		display: none !important;
	}
	.partner_list li{
		width: calc((100% - 8rem) / 3);
	}
	.partner_list li img{
		width: 80%;
	}
}
@media (max-width: 900px) {
	.mob900_only{
		display: block;
	}
	.visual_bg{
		object-position: 80% 0;
	}
	.header{
		justify-content: space-between;
	}
	.header_menu{
		justify-content: flex-end;
		width: auto;
		padding-left: unset;
	}
	.header_menu_left{
		display: none;
	}
	.header_menu > a{
		display: none;
	}
	.header_mobile_menu{
		display: block;
		width: 3.6rem;
		height: 3.6rem;
		position: relative;
	}
	.header_mobile_menu span{
		width: 2.4rem;
		height: 0.1rem;
		background-color: #fff;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		position: absolute;
		transition: all .2s ease-in-out;
	}
	.header.visual_header .header_mobile_menu span{
		background-color: #000;
	}
	.header_mobile_menu span:nth-child(2){
		top: calc(50%);
	}
	.header_mobile_menu span:nth-child(1){
		top: calc(50% - .8rem)
	}
	.header_mobile_menu span:nth-child(3){
		top: calc(50% + .8rem)
	}
	body.mob_menu_on{
		overflow-y: hidden;
	}
	body.mob_menu_on  .header_mobile_menu span{
		background-color: #000;
	}
	body.mob_menu_on .header_mobile_menu span:nth-child(2){
		opacity: 0;
	}
	body.mob_menu_on .header_mobile_menu span:nth-child(1){
		top: 50%;
		transform: translateX(-50%) rotate(-45deg);
	}
	body.mob_menu_on .header_mobile_menu span:nth-child(3){
		top: 50%;
		transform: translateX(-50%) rotate(45deg);
	}
	body.mob_menu_on .mobile_menu_wrap{
		display: flex;
	}
	body.mob_menu_on .header{
		background-color: rgba(255, 255, 255, 0.5);
		color: #000;
	}
	body.mob_menu_on .header .header_logo svg path{
		fill: #000;	
	}
	.mobile_menu_wrap{
		justify-content: center;
		background-color: #fff;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		position: fixed;
		z-index: 8;
	}
	.mobile_menu_wrap .rel_wrap{
		margin-top: 14rem;
		padding: 0 3rem;
	}
	.mobile_menu_title{
		font-size: 2.4rem;
		font-weight: 700;
		padding-bottom: 1rem;
		border-bottom: 1px solid #eee;
		margin-bottom: 1rem;
	}
	.mobile_menu_wrap .rel_wrap > a{
		font-size: 2rem;
		font-weight: 700;
		line-height: 1.5;
		color: #000;
		height: 5rem;
		display: flex;
		align-items: center;
	}
	.mobile_menu_2depth{
		border-left: 1px solid #ddd;
	}
	.mobile_menu_2depth > a{
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.5;
		color: #000;
		height: 5rem;
		display: flex;
		align-items: center;
		padding-left: 1rem;
	}
	.strong_point_depth{
		display: block;
	}
	.strong_point_content_inner_section{
		width: 100%;
	}
	.strong_point_flex_box.box_baloon{
		flex-direction: column;
		font-size: 2rem;
	}
	.strong_point_logo.l_pointpay svg{
		width: 12.8rem;
	}
	.strong_point_logo p{
		font-size: 1.2rem;
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(2){
		transform: translateX(-7rem) translateY(-15rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(3){
		transform: translateX(7rem) translateY(-15rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(1){
		transform: translateX(-20rem) translateY(-15rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(4){
		transform: translateX(20rem) translateY(-15rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(5){
		transform: translateX(-17rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(6){
		transform: translateX(17rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(7){
		transform: translateX(-14rem) translateY(15rem);
	}
	.strong_point_content_inner_section .strong_point_logo:nth-child(9){
		transform: translateX(14rem) translateY(15rem);
	}
	.s_p_section02_inq_link_bg_obj{
		display: none;
	}
	.strong_point_flex_box{
		padding: 1rem;
	}
	.s_p_section04 .section04{
		padding: 2rem;
		flex-direction: column;
	}
	.s_p_s4_left_wrap{
		width: calc(100% - 10rem);
        flex-direction: row;
        top: 3rem;
		left: 50%;
		transform: translateX(-50%);
	}
	.s_p_s4_left_comp::after{
		width: .1rem;
        right: 50%;
        height: 3rem;
        border-top: unset;
        border-left: .1rem dashed rgba(0, 0, 0, 0.2);
        top: 7rem;
	}
	.s_p_s4_left_wrap::before{
        right: -10rem;
        width: 83%;
        top: 8.5rem;
        left: 50%;
        transform: translateX(-50%);
	}
	.s_p_s4_left_wrap::after{
		height: 2rem;
        left: 50%;
        top: 8.5rem;
        transform: translateX(-50%);
	}
	.s_p_s4_right_wrap::before{
		height: 2rem;
        left: 50%;
        top: -2.5rem;
        transform: translateX(-50%);
		border-right: .1rem dashed rgba(0, 0, 0, 0.2);
		width: .1rem;
	}
	.s_p_s4_right_wrap{
		right: unset;
        left: 50%;
        transform: translateX(-50%);
		top: 39rem;
	}
	.s_p_s4_card_comp{
		display: none;
	}
}
@media (max-width: 850px) {
	.section04_logo_wrap ul li{
		width: calc(33.33% - 2rem);
	}
	.pop_content_wrap.on .pop_content{
		max-width: 80vw;
	}
	.section04_logo_wrap{
		padding: 3rem 6rem;
	}
}
@media (max-width: 768px) {
	html{
		font-size: 50%
	}
	.section03_swiper.sub{
		height: 5.8rem;
		margin-bottom: 3rem;
	}
	.section03_swiper.main{
		max-width: 100%;
		width: 100%;
	}
	.section03_swiper.sub .swiper-slide.swiper-slide-active::after{
		display: none;
	}
	.footer_bottom{
		align-items: flex-start;
    	flex-direction: column;
	}
	.footer_info{
		text-align: start;
		margin-top: 2rem;
	}
	.pop_bottom_depth{
		flex-direction: column;
	}
	.pop_content_wrap.on .pop_content{
		height: auto;
	}
	.pop_bottom_bbs{
		width: 100%;
	}
	.pop_bottom_bbs_content{
		width: 100%;
	}
	.section03_swiper_wrap{
		flex-direction: column;
	}
	
	.section03_swiper_wrap{
		height: 60rem;
	}
	.section03_swiper.main{
		height: 50rem;
	}
	.dnone{
		display: none !important;
	}
	.mfix{
		background-color: transparent !important;
		width: 60vw !important;
		display: block !important;
	}
	.mfix:after{
		content: "";
	}
	.process_img_wrap{
		width: 20rem;
		max-width: 80%;
	}
	.process_img_wrap img:nth-child(1){
		display: none;
	}
	.process_img_wrap img:nth-child(2){
		display: block;
	}
}
@media (max-width: 680px) {
	.s_p_section02_inq_link{
		background-image: unset;
	}
	.visual_main{
		font-size: 3.8rem;
	}
	.section04_logo_wrap{
		padding: 3rem;
	}
	.section04_logo_wrap ul{
		gap: 3rem;
	}
	.pop_button{
		bottom: 8rem;
	}
	.pop_content_wrap.on .pop_content{
		bottom: 8rem;
	}
	.section03_swiper.main{
		padding: 3rem;
	}
	.s_p_section02.on .strong_point_flex_box.flex40{
		width: 100%;
	}
	.s_p_section02.on .strong_point_flex_box.flex60{
		width: 0%;
		display: none;
	}
	.s_p_s4_left_wrap{
		gap: 1rem;
		width: calc(100% - 5rem);
	}
	.s_p_s4_left_comp{
		height: 4rem;
	}
	.s_p_section02 .strong_point_flex_box.pay_small::after{
		display: none;
	}
}
@media (max-width: 580px) {
	.strong_point_content_inner_section.section02{
		padding: 2rem;
	}
	.section03_swiper.main{
		padding: 0;
	}
	.strong_point_content_inner_section.section01{
		padding: 2rem;
        gap: 1rem 2rem;
		height: auto;
    }
	.strong_point_logo:not(.l_pointpay){
		position: unset;
		transform: unset !important;
	}
	.strong_point_content_inner_section{
	    align-items: flex-end;
		flex-wrap: wrap;
	}
	.strong_point_logo.l_pointpay{
		display: none;
	}
	.s_p_03_txt_wrap{
		top: 50%;
		left: 3rem;
		right: unset;
	}
	.s_p_03_txt_wrap_img{
		display: none;
	}
	.s_p_03_arrow{
		display: none;
	}
	.partner_list li{
		width: calc((100% - 4rem) / 2);
	}
	.partner_list li img{
		width: 80%;
	}
	.partnership.p50{
		width: 100%;
	}
	.s_p_03_sub_txt{
		font-size: 2.4rem;
	}
	.s_p_03_main_txt{
		font-size: 6rem;
	}
}
@media (max-width: 375px) {
	.section_top_header_txt h2{
		font-size: 2.2rem
	}
	.sub_main_txt{
		font-size: 2.2rem;
	}
	.visual_sub {
		font-size: 2.2rem;
	}
	.visual_main {
        font-size: 3rem;
    }
	.footer_top a{
		font-size: 1.6rem;
	}
	.s_p_section02_inq_link_txt_main{
		font-size: 1.8rem;
	}
	.footer_top{
		gap: 1rem;
	}
}
@media (max-width: 374px) {
	.s_p_03_txt_wrap_img {
		width: 7rem;
	}
	.s_p_03_sub_txt{
		font-size: 2.2rem;
	}
	.s_p_03_main_txt{
		font-size: 5rem;
	}
}