.underline {
	display: inline-block;
	position: relative;
	z-index: 0;
}
.underline:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%);
	display: inline-block;
	width: 100%;
	height: 70%;
	background: rgba(250, 225, 0, .9);
	z-index: -1;
}
.mouse {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 30px;
	height: 50px;
	border-radius: 50px;
	border: 1px solid #fff;
}
.mouse_point {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	animation-duration: 2s;
	animation-name: scroll;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}
.mouse_point > span {
	font-size: 15px;
}
@keyframes scroll {
  from {

  }
  50% {
    top: 30px;
    opacity: 0;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}
.home_header {
	position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1100px;
    height: 60px;
    background: transparent;
    color: #fff;
    transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
}
.home_header.fix {
	color: #333;
	background: #fff;
	border-bottom: 1px solid #dedede;
	position: relative;
}
.home_header.top {
	background: #fff;
	border-bottom: 1px solid #dedede;
	color: #000;
	transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
}
.head_wrap {
    line-height: 60px;
    margin: 0 auto;
    text-align: center;
    max-width: 1100px;
}
.head_wrap:after {
	content: '';
	display: block;
	clear: both;
}
.head_logo {
	float: left;
}
.head_logo a {
	display: inline-block;
	height: 60px;
	white-space: nowrap;
	line-height: 60px;
}
.head_logo img {
	height: 40px;
	margin-right: 10px;
}
.head_logo .logo_text {
	display: inline-block;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	vertical-align: middle;
	text-align: center;
}
.head_logo a .subject {
	font-size: 11px;
	font-weight: 400;
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
	margin-bottom: 3px;
	letter-spacing: 2px;
	text-align: center;
}
.head_gnb {
	float: left;
	margin-left: 100px;
}
.head_gnb ul li {
	float: left;
	padding-right: 50px;
}
.head_gnb > ul > li > a {
	display: inline-block;
}
.head_info {
	float: right;
}
.head_info .login {
	border: 1px solid #fff;
	border-radius: 100px;
	padding: 5px 20px;
}
.home_header.top .login {
	background: #fede22;
	border-color: #fede22;
}
/*.head_info .login:after {
	content: '\e5c5';
	display: inline-block;
	font-family: 'Material Icons';
	margin-left: 5px;
}*/
.home_contents {
	min-width: 1140px;
	margin: 0;
}
.home_vod {
	width: 100%;
	height: 800px;
	position: relative;
}

.home_vod .video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.home_vod .video video {
	position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%,-50%);
}
.home_vod .video:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    background: rgba(0,0,0,.5);
}
.home_vod .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-550px,-40%);
    color: #fff;
}
.home_vod .text p {
	font-size: 3vw;
    line-height: 3.5vw;
    letter-spacing: -.1vw;
    font-weight: 700;
    margin-bottom: 25px;
}
.home_section_divider {
    width: 100%;
    height: 32px;
    background-color: #fafafa;
}
.home_section {
	position: relative;
	min-height: 400px;
}
.home_section.dark {
	background-color: #5d6468;
}
.home_section.dark h3 {
	color: #fff;
}
.home_section.gray {
	background-color: #f6f7f9;
}
.home_section:last-child {
	border-bottom: none;
}
.home_section.hero {
	background: #fede22;
	height: 800px;
}
.home_section.hero.bg {
	background: url('/img/home/intro_bg.jpg')no-repeat;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.home_section.hero.bg .hero_txt h3 {
	color: #fff;
}
.home_section.hero.bg .hero_txt p {
	color: #fff;
	font-weight: 300;
}
.home_section.hero.bg:before {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.hero_txt {
    position: absolute;
    left: 0;
    top: 250px;
        color: #333;
}
.hero_txt h3 {
	font-size: 50px;
	font-weight: bold;
    line-height: 1.3;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 25px;
}
.hero_txt p {
    font-size: 18px;
    line-height: 1.8;
    color: #111;
    letter-spacing: -1px;
}
.hero_btn_wrap {
	margin-top: 50px;
}
.hero_btn {
    display: inline-block;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 25px 50px;
    background: #ffd000;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    margin-right: 25px;
}
.hero_btn.regist {
	background: rgba(255, 255, 255, .75);
}
.home_section.intro {
	height: 500px;
	background-image: url('/img/home/intro_bg.png');
	background-position: 80% bottom;
	background-repeat: no-repeat;
    background-size: 18% auto;
}
.home_section.fullcare {
	height: 750px;
	background-image: url('/img/home/fullcare_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.home_section.fullcare:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}
.fullcare_info {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 1140px;
	text-align: center;
}
.fullcare_info h3 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 50px;
	color: #fff;
}
.fullcare_info p {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
}
.fullcare_title {

}
.fullcare_title h3 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 25px;
}
.fullcare_title p {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: -0.08em;
}
.fullcare_type {
	margin-top: 50px;
}
.fullcare_type li {
	float: left;
	margin-right: 10px;
}
.fullcare_type .type_btn {
	display: inline-block;
	color: #fff;
	font-size: 12px;
	padding: 7px 10px;
	border-radius: 5px;
	background: rgb(255,255,255,.15);
}
.fullcare_type .type_btn.on {
	background: rgb(255,255,255,1);
	color: #326edc;
}
.type_desc {
	display: none;
	font-size: 13px;
	margin-top: 15px;
	color: #fff;
	line-height: 1.5;
}
.type_desc.show {
	display: block;
}
.type_desc li {
	list-style: disc;
	margin-left: 25px;
}
.fullcare_img_frame {
	position: absolute;
	top: 50px;
	left: 50%;
	margin-left: -470px;
	width: 400px;
	height: 600px;
	overflow: hidden;
	border-radius: 25px;
	box-shadow: 0 0 25px rgba(0,0,0,0.15);
	background: #fff;
	padding: 25px;
}
.fullcare_img_frame.adtalk {
	width: 340px;
	margin-left: -50px;
}
.fullcare_img_frame .fullcare_img.show {
	display: block;
}
.fullcare_img_frame .fullcare_img {
	display: none;
	position: absolute;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border-radius: 15px;
	background-size: 100%;
	background-position: center top;
	background-repeat: no-repeat;
}
.fullcare_img_frame  .fullcare_img.img_main {
	background-image: url('/images/main_tem_20220503.jpg');
}
/* .fullcare_img_frame  .fullcare_img.img_main {
	background-image: url('http://design.kakaomarttalk.kr/uploads/templet_thumb/d9577bb68c041494987f64e773f7b417.jpg');
} */
.fullcare_img_frame  .fullcare_img.img_list {
	background-image: url('http://design.kakaomarttalk.kr/assets/images/sample_i01.png');
}
.fullcare_img_frame  .fullcare_img.img_txt {
	background-image: url('http://design.kakaomarttalk.kr/assets/images/sample_t01.png');
}

.fullcare_img_frame.alimtalk {
	width: 340px;
}
.link_btn {
	position: absolute;
	bottom: -100px;
	left: 50%;
	display: inline-block;
    vertical-align: middle;
	padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
	color: #222;
    background-color: #fff;
    border: 1px #777777 solid;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
}
.inner_title {
	font-size: 24px;
	text-align: center;
	margin-top: 25px;
}
.fullcare_faq {
	margin: 25px auto 100px;
	max-width: 1140px;
}
.fullcare_faq li {
	float: left;
	width: 25%;
	padding: 10px;
	text-align: center;
}
.fullcare_faq li span {
	font-size: 50px;
	display: block;
}
.fullcare_faq li p {
	font-size: 18px;
	margin-top: 15px;
}
.fullcare_faq li a {
	display: block;
	padding: 25px;
	width: 100%;
	min-height: 100px;
	border: 1px solid #dedede;
	border-radius: 5px;
}
.fullcare_faq li a:hover {
	box-shadow: 0 2px 15px rgba(0,0,0,0.15);
	transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
	background: #4683e9;
	color: #fff !important;
	cursor: pointer;
}
.sect_wrap {
	position: relative;
	margin: 0 auto;
	padding: 100px 0 100px;
	max-width: 1100px;
}
.sect_wrap.box {
	background: #4683e9;
	border-radius: 30px;
	height: 500px;
	padding: 50px 50px 50px 550px;
	color: #fff;
	margin: 80px auto 200px;
}

.sect_title {
	display: block;
	margin-bottom: 50px;
}
.sect_title h3 {
	font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 25px;
}
.sect_title p {
	color: #333;
	font-size: 18px;
    line-height: 1.8;
    letter-spacing: -0.05em;
}
.sect_img {
	position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -450px;
}
.sect_img.reverse {
    margin-left: 150px;
}
.sect_txt {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    margin-left: 90px;
	max-width: 500px;
	word-break: keep-all;
}
.sect_txt.reverse {
    margin-left: -470px;
}
.sect_txt h3 {
	font-size: 40px;
    font-weight: bold;
    line-height: 1.35;
}
.sect_txt p {
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
}
.home_btn {
	display: inline-block;
    vertical-align: middle;
	padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
	color: #222;
    background-color: #ffdf00;
    border: 1px #ffdf00 solid;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
}
.adtalk_test {
	background: #efefef;
	border-radius: 15px;
	padding: 20px 15px;
	margin-top: 30px;
}
.adtalk_test .title {
	padding-left: 80px;
	background: url('/img/icon/icon_alimtalk.png')no-repeat left 10px center;
	background-size: 50px;
}
.adtalk_test .title > h3 {
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.adtalk_test .title .desc {
	font-size: 12px;
	color: #494949;
	margin-top: 10px;
}
.adtalk_send {
	width: 100%;
	display: flex;
	margin-top: 20px;
	box-shadow: 0 0px 5px rgba(0,0,0,0.2);
}
.adtalk_send .send_num {
	flex: 1;
	font-size: 16px;
	color: #000;
	font-weight: 300;
	height: 38px !important;
	padding: 0 15px !important;
}
.adtalk_send .btn_adtalk {
	display: inline-block;
	width: 100px;
	color: #000;
	font-size: 13px;
	height: 38px;
	line-height: 38px;
	border-radius: 3px;
	border: none;
	background-color: #ffe500;
	text-align: center;
	margin-left: -1px;
    cursor: pointer;
}

.ad_box {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 40px);
	background-color: #fff;
    border-radius: 5px;
    padding: 20px 15px;
}

.home_process {
	display: block;
	text-align: center;
}
.home_process ul li {
	position: relative;
	display: inline-block;
	font-family: 'Spoqa Han Sans';
	margin: 0 30px;
	vertical-align: top;
}
.home_process ul li:after {
	content: '\e315';
	font-family: 'Material Icons';
	font-size: 50px;
	vertical-align: middle;
	position: absolute;
	top: 50px;
	right: -60px;
	color: #dedede;
}
.home_process ul li:last-child:after {
	display: none;
}
.home_process ul li .step {
	color: #000;
	background: #f2f2f2;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home_process ul li .step.on {
	background: #ffd000;
}
.home_process ul li .step span {
	font-size: 40px;
}
.home_process ul li .title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
.home_process ul li .desc {
	font-size: 13px;
	line-height: 1.5;
}
.list_partner {

}
.list_partner li {
	float: left;
	width: 20%;
}
.list_partner li img {
	width: 100%;
}
.list_guide {

}
.list_guide li {
	overflow: hidden;
    position: relative;
    border: 1px solid rgba(34,34,34,.05);
    border-radius: 6px;
    margin-top: 10px;
    background-color: #fafafa;
}
.list_guide .link_guide {
	display: block;
    padding: 16px 34px;
    font-size: 16px;
    color: #326edc;
}
.list_guide li:hover {
	border-color: rgba(50, 110, 220, 0.5);
	background: rgba(50, 110, 220, 0.1);
}
.list_guide .link_guide i {
	color: #666;
}
.desc_regist {
	font-size: 18px;
	color: #fff;
	line-height: 1.8;
}
.regist_btn {
	font-family: 'SpoqaHanSans';
	position: absolute;
    right: 0;
    bottom: 100px;
    padding: 25px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -1px;
    color: #333;
    background-color: #fff;
    text-align: center;
}
.regist_btn {

}
.tag_new {
	color: #000;
    background-color: rgba(255, 208, 0, 1);
    display: inline-block;
    padding: 7px 12px;
    font-size: 66%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
}
.price_wrap {
	display: flex;
	margin: 25px -2.5%;
}
.price_wrap .price_card {
	width: 30%;
	margin: 0 2.5%;
	background: #ededed;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
}
.price_wrap .price_card.hot {
	background: #fede22;
}
.price_wrap .price_card > .name {
    display: block;
    font-weight: 700;
    color: #000;
    font-size: 15px;
}
.price_wrap .price_card > .price {
	font-family: 'Roboto';
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -1px;
	margin-top: 25px;
}
.price_wrap .price_card > .price > small {
	font-size: 13px;
	color: #666;
}
.price_wrap .price_card > .detail {

}
.price_wrap .price_card > .work_time {
	font-weight: 700;
	color: #000;
	padding: 10px 0 25px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.price_wrap .price_card > .work_list {

}
.price_wrap .price_card > .work_list li {
	position: relative;
	font-size: 12px;
	line-height: 1.8;
	color: #000;
}

.price_wrap .price_card > .etc {

}
.tag_blue {
	color: rgb(0, 128, 255);
    background-color: rgb(235, 245, 255);
    display: inline-block;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}
.fullcare_process {
	text-align: center;
}
.fullcare_process .step {
	position: relative;
	display: inline-block;
	text-align: center;
	width: 240px;
}
.fullcare_process .step:not(:last-child):after {
	content: '\e315';
    font-family: 'Material Icons';
    font-size: 40px;
    vertical-align: middle;
    position: absolute;
    top: 30px;
    right: -20px;
    color: #dedede;
}
.fullcare_process .step > span {
	display: inline-block;
	font-size: 30px;
	width: 100px;
	height: 100px;
	border-radius: 100px;
	text-align: center;
	line-height: 100px;
	background: #ededed;
	margin-bottom: 15px;
}
.fullcare_process .step > .desc {
	font-size: 18px;
	font-weight: 700;
}
.fullcare-guide {

}
.fullcare-guide .guide-title {
	border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}
.fullcare-guide .guide-title h3 {
	font-size: 1.5rem;
	line-height: 1;
}
.fullcare-guide .guide-contents {
	padding: 1rem 0;
}
.marker {
	display: inline-block;
	position: relative;
	z-index: 0;
}
.marker:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%);
	display: inline-block;
	width: 100%;
	height: 60%;
	background: rgba(250, 225, 0, .7);
	z-index: -1;
}
/***** modal style *****/
.modal-body {
	padding: 1.5rem !important;
}
.modal.sm {
	max-width: 300px;
}
.modal.lg {
	max-width: 800px;
}
.modal_title h3 {
	font-size: 24px;
}
.modal-bottom {
	padding: 1.5rem;
}
.modal-close {
	font-size: 30px;
	cursor: pointer;
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-block;
	color: #000;
	z-index: 10;
}
.modal-txt {
	margin-bottom: 10px;
	line-height: 1.8;
	word-break: keep-all;
	word-break: break-word;
}
.modal_faq_list li {
	position: relative;
	line-height: 1.3;
	padding: 10px 0;
	border-bottom: 1px solid #dedede;
}
.modal_faq_list .info_tit {
	font-weight: 700;
	color: #000;
	margin-bottom: 15px;
}
.modal_faq_list .info_cont {
	color: #666;
	padding-left: 30px;
}
.modal_faq_list .info_cont:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.modal_info_list li {
	position: relative;
	line-height: 1.3;
	padding-left: 10px;
	margin-bottom: 15px;
}
.modal_info_list li:before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #333333;
    content: "";
    margin-right: 10px;
}
.mbox {
	font-size: 13px;
	color: #767a83;
	margin-top: 15px;
	border-radius: 5px;
	line-height: 1.3;
}
.mbox.alert {
	padding: 15px;
	color: #f80031;
    background-color: #fdd1da;
}
.mbox.caution {
	padding: 15px;
	color: #ff3709;
    background-color: #fee6e0;
}
.mbox.notice {
	padding: 15px;
	font-size: 12px;
	background: rgba(178, 204, 220, .2);
}
.mbox.terms {
	padding: 25px;
	font-size: 14px;
	color: #333;
    background-color: #f4f4f4;
    line-height: 1.8;
}
.mbox_list li {
	position: relative;
	line-height: 1.3;
	padding-left: 10px;
	margin-bottom: 10px;
}
.mbox_list li .title {
	color: #666;
	width: 100px;
}
.mbox_list li:before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #767a83;
    content: "";
    margin-right: 10px;
}
.br-b {
	border-bottom: 1px solid #ededed;
}
.br-t {
	border-top: 1px solid #ededed;
}

.swiper-container.service {
	background-color: #b2ccdc !important;
	border-radius: 30px;
	height: 500px;
}
.swiper-slide {
	position: relative;
}
.swiper-slide img {
	margin-bottom: -80px;
	margin-left: -300px;
}
.swiper-slide.alimtalk {
	background: url('/img/home/home_service_alim.png')no-repeat left 150px top 80px;
	background-size: 340px;
}
.swiper-slide.friendtalk {
	background: url('/img/home/home_service_friend.png')no-repeat left 150px top 80px;
	background-size: 340px;
}
.swiper-slide.lms {
	background: url('/img/home/home_service_lms.png')no-repeat left 150px top 80px ;
	background-size: 340px;

}
.swiper-slide .service_info {
	position: absolute;
	top: 100px;
	left: 50%;
	text-align: left;
	width: 400px;
}
.swiper-slide .service_info .title_point {
    display: block;
    padding-bottom: 10px;
    font-size: 14px;
    color: #222;
}
.swiper-slide .service_info h3 {
	display: block;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -.049em;
}
.swiper-slide .service_info p {
	padding-top: 15px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -.029em;
    word-break: keep-all;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 50px !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 50px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
	color: #fff;
	font-size: 24px !important;
	font-weight: bold;
}
.swiper-button-next:before, .swiper-button-prev:before {
	content: '';
	width: 50px;
	height: 50px;
	border-radius: 50px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: rgba(0,0,0,.1);
	z-index: -1;
	transition: 0.25s cubic-bezier(.12,.62,.53,.91);
}
.swiper-button-next:hover:before,.swiper-button-prev:hover:before {
	background: rgba(0,0,0,0.3);
	transition: 0.25s cubic-bezier(.12,.62,.53,.91);
}

/******* slick slider ********/
.slick-slider {
	background-color: #b2ccdc;
	border-radius: 30px;
	height: 500px;
}
.slick-list {
	height: 100%;
}
.slick-item {
	position: relative;
	height: 100% !important;
}
.slick-track {
	height: 100%;
}
.slick-item.alimtalk {
	background: url('/img/home/home_service_alim.png')no-repeat left 150px top 80px;
	background-size: 340px;
}
.slick-item.friendtalk {
	background: url('/img/home/home_service_friend.png')no-repeat left 150px top 80px;
	background-size: 340px;
}
.slick-item.lms {
	background: url('/img/home/home_service_lms.png')no-repeat left 150px top 80px ;
	background-size: 340px;
}
.slick-item .service_info {
	position: absolute;
	top: 100px;
	left: 50%;
	text-align: left;
	width: 400px;
}
.slick-item .service_info .title_point {
    display: block;
    padding-bottom: 10px;
    font-size: 14px;
    color: #222;
}
.slick-item .service_info h3 {
	display: block;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -.049em;
}
.slick-item .service_info p {
	padding-top: 15px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -.029em;
    word-break: keep-all;
}

/***** 신청페이지 스타일   *****/

.subject_section {
	min-width: 1100px;
    padding: 70px 0;
    background-color: #f5f5f5;
    text-align: center;
}
.subject_section .title_subject {
	font-weight: bold;
    font-size: 50px;
}
.subject_section .desc_subject {
	margin-top: 15px;
    font-size: 21px;
    line-height: 34px;
    color: #787878;
    word-break: keep-all;
}
.partner_section {
    overflow: hidden;
    position: relative;
    max-width: 1100px;
    margin: 80px auto;
    display: flex;
}
.partner_section .partner_title {
	display: block;
    font-size: 28px;
    font-weight: bold;
	overflow: hidden;
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 29px;
    border-bottom: 1px solid #000;
    line-height: 25px;
}
.partner_lnb {
	width: 200px;
}
.nav {
	display: block !important;
}
.inner_menu li {
	margin-bottom: .5rem;
}
.inner_menu li:hover {
	font-weight: 600;
}
.inner_menu li .active {
	color: #000;
	transition: 0.2s cubic-bezier(.12,.62,.53,.91);
}
.inner_menu li a {
	display: block;
	padding: 10px;
	border-radius: .5rem;
	transition: 0.2s cubic-bezier(.12,.62,.53,.91);
}
.partner_contents {
	flex: 1;
}
.partner_section .partner_info .item_bundle {
	overflow: hidden;
    position: relative;
    padding: 10px 0 10px 120px;
}
.partner_section .partner_info .item_bundle .tit_bundle {
	position: absolute;
    top: 23px;
    left: 0;
    font-size: 16px;
    font-weight: bold;
}
.tit_require {
	position: absolute;
    top: 0;
    right: -12px;
    color: #DD0701;
}
.partner_section .partner_info .item_bundle .cont_bundle {

}
.select_form {
	position: relative;
    height: 42px;
    border: 0 none;
}
.form-control {
	height: calc(2.5rem + 2px) !important;
}
.input_form {
	position: relative;
    height: 42px;
    border: 0 none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
}
.input_form input {
	display: block;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    border: 0 none;
    font-size: 14px;
    line-height: 18px;
    background: transparent;
    word-wrap: break-word;
    word-break: break-all;
    -webkit-appearance: none;
    outline: 0 none;
    resize: none;
}
.input_form input:focus {
	border: none !important;
	outline: none !important;
}
.desc_form {
	color: #333;
	font-size: 14px;
	padding: 15px 0;
}
p.comment {
    font-size: 13px;
    margin: .5rem 0;
}
.highlight {
    color: #597dd7;
}
.highlight.danger {
    color: #f75676;
}
.terms_check {
	font-size: 13px;
	margin: 15px 0;
	text-align: right;
}
.box_notice {
	width: 100%;
	overflow: hidden;
    padding: 1.5rem;
    line-height: 24px;
    font-size: 14px;
    background-color: #F4F4F4;
    border-radius: .5rem;
    margin: 0 auto;
}
.box_notice.search {
	padding: 3rem;
	width: 800px;
}
.btn_reg_wrap {
	text-align: center;
	margin-top: 50px;
}
.btn_reg.cancel {
	background-color: #171717;
    color: #fff;
}
.btn_reg {
	display: inline-block;
    width: 240px;
    height: 70px;
    margin: 0 5px;
    background: #fcde00;
    font-weight: bold;
    font-size: 17px;
    line-height: 70px;
    text-align: center;
    border-radius: 10px;
    border: none;
}
