/* * {outline: 1px solid #ddd;} */
:root {
    --mc: #283A63;
    --sc: #FFBD39;
    --tc: #98d3c1;
    --bc: #49bcae;
    --bsc:#3b979b;
    --bbc: #e6fffc;
    --gc: #fffcf1;
    --fc: #eaf3f4;
    --pc: #f7586c;
    --ppc: #f7556a;
    --lc: #ced4da;

    --swiper-theme-color: #ffbd399d;
}






/********** 공통 **********/
.tit h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--bsc);
}

.tit p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

h2+p br {
    display: none;
}






.header {
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
}

.header h1 a img {
    width: 120px;
}

.header_top {
    border-bottom: 1px solid #e8e8e8;
    white-space: nowrap;
}

.header_top .h_inner {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0px;

}

.header_top ul {
    display: flex;
	align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.header_top ul li {
    position: relative;

}

.header_top ul li a {color:#666; font-size: 14px;} 
.header_top ul li a i {background: var(--tc); padding: 5px; border-radius: 50%; color: #fff; }
.header_top ul>li~li:before {content: ""; position: absolute; top: 50%; left: -10px; transform: translate(-50%,-50%); width: 1px; height: 10px; background: #ddd;}

/* 
.header_top ul li~li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 1px;
    height: 10px;
    background: #ddd;
    transform: translate(0, -50%);
} */

.gnb_wrap .h_inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;


}

.gnb::before {
    content: '';
    position: absolute;
    top: 115px;
    left: 0;
    right: 0;
    height: 0;
    visibility: hidden;
}

.gnb:hover::before {
    height: 170px;
    visibility: visible;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: white;
}

.gnb>ul {
    display: flex;
    font-size: 18px;
    font-weight: 600;
}

.gnb>ul>li {
    position: relative;
    padding: 0 20px;
    line-height: 90px;
}

.gnb>ul>li:last-of-type {
    padding-right: 0;
}

.gnb .sub_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
}

.gnb:hover .sub_menu {
    opacity: 1;
    visibility: visible;
}

.gnb .sub_menu>li {
    margin-bottom: 15px;
}

.gnb .sub_menu>li:last-of-type {
    margin-bottom: 0;
}

.gnb>ul>li:last-of-type .sub_menu {
    width: calc(100% + 40px);
}


.mobile_menu {
    display: none;
}







.v_inner {
	max-width: 680px;
    margin: 0 auto;
    padding: 0 0px;
}

.main_slide .swiper-slide {
    position: relative;
    height: 400px;
    border-radius: 0  0 90px 0 ;
}


.main_slide .swiper-slide.item01 {
    background: url(../images/main_v01.jpg) no-repeat center center/cover;
}

.main_slide .swiper-slide.item02 {
    background: url(../images/main_visual3.jpg) no-repeat left center/cover;
}

.main_slide .swiper-slide.item03 {
    background: url(../images/main_vi03.jpg) no-repeat center top/cover;
}


.main_slide .slogan {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
    text-align: center;
}

.main_slide .slogan strong {
    display: block;
    font-size: 38px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.95);
    margin-bottom: 10px;
}

.main_slide .slogan p {
    font-size: 22px;
    font-weight: 600;
    color: #f1f1f1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

.main_slide .swiper-pagination-bullet-active {
    width: 15px;
    border-radius: 6px;
	background: var(--sc);
}

.main_slide .swiper-pagination-bullets {
    bottom: 20px;
}

.main_slide .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 998;
    width: 95%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
}

.main_slide .arrow .left {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -50%);
    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    padding: 10px;
    transition: .5s;
}

.main_slide .arrow .left:hover,
.main_slide .arrow .right:hover
 { color: rgba(255, 255, 255, .9);  border: 1px solid rgba(255, 255, 255, .9);}

.main_slide .arrow .right {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    padding: 10px;
    transition: .5s;
}







.service_detail {
    
}

.service_detail .inner {
    position: relative;
    background: white;
    padding: 0;
    z-index: 10;
    overflow: hidden;
	
}

.service_detail h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    background: rgba(216, 159, 160, 0.15);
    padding: 15px 0;
    border-bottom: 1px solid rgba(216, 159, 160, 0.15);
}

.service_detail .subject {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 0 30px 30px;
}

.service_detail .subject li~li {
    border-left: 1px solid #f2f2f2;
}

.service_detail .subject a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
    text-align: center;
    transition: color 0.4s;
}

.service_detail .subject a:hover {
    color: #d89fa0;
}

.service_detail .subject a span {
    position: relative;
    font-weight: 500;
}

.service_detail .subject a:hover span::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 5px;
    height: 5px;
    background: rgba(217, 161, 162, 0.75);
    border-radius: 50%;
}

.service_detail .subject img {
    height: 45px;
}



.service_detail ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service_detail ul li {
    padding: 30px 10px;
	text-align: center;
}

.service_detail ul li~li {
    border-left: 1px solid #ddd;
}

.service_detail figure {
    box-sizing: content-box;
    width: 50px;
    height: 50px;
    padding: 15px;
    background:var(--tc);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.service_detail strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: 0.4s;
}

.service_detail p {
	font-size: 16px;
    margin-bottom: 10px;
    transition: 0.4s;
	line-height: 1.30;
}

.service_detail a {
    display: inline-block;
    color:var(--sc);
    transition: 0.4s;
}

.service_detail a span {
    display: inline-block;
    white-space: nowrap;
}


.service_detail a i {
    font-size: 18px;
}
















/********** about **********/

.about {
    padding: 80px 0;

}

/* 탭 메뉴 */

.about .about_list {
    text-align: center;
    user-select: none;
    margin-bottom: 25px;
}

.about  h2 {font-size: 32px; color: #000;  font-weight: 700; margin-bottom: 20px; border-bottom: 1px dotted rgba(255,255,255.8); padding: 0 0 20px 0; text-align: center;}

.about .about_list li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding: 0 5px;
    margin-right: 10px;
    margin-bottom: 0;
    color: #444;
    cursor: pointer;
}

/* .about .about_list li span {color: var(--bsc);} */

.about .about_list li:last-of-type {
    margin-right: 0;
}

.about .about_list li.active {
    color: var(--sc);
	font-size: 22px;
}

.about .about_list li.active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 5px;
    height: 18px;
}

.about .about_list li.active::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 5px;
    height: 18px;
}

/* 탭 컨텐츠 */

.about .about_cont>li {
    display: none;
	
}

.about .about_cont>li.active {
    display: block;
}

.about .about_cont  .img_box { display: flex; justify-content: center}

.about .about_cont  .img_box img {
    width: 100%;
    border-radius: 15px 15px 0 0;
} 

.about .text {
    position: relative;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
    background:white;
    border-radius: 0 0 15px 15px;
	width: 100%;
	margin: 0 auto;
	border: 1px dotted var(--bc);
}

.about .text::before {
    content: attr(data-order);
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 200px;
    height: 45px;
    transform: translate(-50%, -100%);
    background:white;
    font-size: 32px;
	color: var(--tc);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.about .text strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 15px;
}

.about .text p {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
    color: #666;
	word-break: keep-all;
}





/********** INTRODUCE **********/

/* .introduce {
    padding: 50px 0;
    background: var(--tc);
}

.i_inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

.introduce h2 {color: #fff;}
.introduce p {color: #444;}

.introduce ul {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.introduce ul li {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.introduce ul img {
    width: 100%;
} */








.inquiry {
    position: relative;
    background: url(../images/main_slogan01.png) no-repeat top center/cover;
    height:170px;
}

.inquiry::before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0,.99);
    z-index: -999;
}

.inquiry .i_txt { padding: 45px 0 30px 0;}
.inquiry h2 {font-size: 24px; font-weight: 600; color: #fff; text-align: center; margin-bottom: 20px;}
.inquiry h2 span {color: var(--sc); font-weight: 900;}
.inquiry h2 br {display: none;}

.main_btn { font-size: 16px; text-align: center; line-height: 1.25; }
.main_btn a {display: inline-block;   padding: 8px 30px; border-radius: 35px; color: #fff; transition: .5s; border:1px solid rgba(255, 255, 255, .9);animation: blink 2s infinite ease-in-out; }
.main_btn:hover a {color: var(--sc); border: 1px solid var(--sc);}







.footer {
    padding: 40px 0;
    background: var(--tc);
}

.footer_logo img {
    width: 140px;
    margin-bottom: 5px;
}

.footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.footer .info .footer_menu {
    display: flex;
    gap: 0 30px;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
    white-space: nowrap;
    border-bottom:1px solid rgba(255,255,255,.4) ;
    margin-bottom: 20px;
    padding: 20px 0;
}

.footer .info .footer_menu li {
    position: relative;
}

.footer .info .footer_menu li~li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 1px;
    height: 12px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.3);
}

.footer .info .footer_menu li strong {
    font-weight: 700;
}

.footer .info .company {
    font-size: 16px;
    font-weight: 300;
    color: #444;
}


.footer .info .company li {
    margin-bottom: 10px;
}


.footer .info .company span~span::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    margin: 0 10px;
    background:  rgba(255,255,255,.3);
}

.footer .info .company li:nth-child(3) span {display: block; line-height: 1.45;}




.point {
	background: var(--tc);
	padding: 80px 0;
    position: relative;
}

.point::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100px;
    width: 100px;
    height: 150px;
    transform: rotate(-30deg);
}

.point .inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 50px;
}

.point .title {
    position: relative;
    border: 4px solid var(--sc);
    min-height: 300px;
}

.point .title .case {
    position: absolute;
    top: -4px;
    bottom: 50px;
    left: -4px;
    right: 50px;
  	background: var(--tc);
}

.point .title .case .ptit {font-size: 18px; font-weight: 600; margin-bottom: 10px;}
.point .title .case p {font-size: 16px; line-height: 1.40;}
.point .title .case p .stt { font-weight: 600; font-size: 16px;}



.point h2  {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
	color: #444;
}

.point h2 strong {
    font-size: 60px;
    font-weight: 700;
	color: #fff;
}


.point .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.point .list li::before {
    content: attr(data-num);
    display: block;
    margin: 0 0 10px 0;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
	text-align: center;
	border-bottom: 1px dotted rgba(255,255,255,0.8);
	padding: 0 0 10px 0;

}

.point .list li strong {display: block; font-size: 18px;  line-height: 1.30; text-align: center;}




@media (max-width: 680px) {
	


    .body_fixed {
        overflow-y: hidden;
        height: 100vh;
    }


    .header {
        z-index: 999;
    }
	
	.header_top .h_inner {padding: 0 0;}
	
	.header_top ul { position: fixed; top:90px; }

	.header_top .right {display: none;}
	
	 .header.mobile_open .right  {
		display: block;
        position: fixed;
        left: 30px;
        z-index: 999;
		margin: 90px 0 0 0;
    }

    .header.mobile_open .gnb_wrap .inner {
        background: white;
    }

    .header.mobile_open h1 {
        position: fixed;
		 top: 25px;
        left: 15px;
        z-index: 999;
    }

    .gnb {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background:#fff;
		border-right: 8px solid var(--sc);
        z-index: -999;
        padding-bottom: 150px;
        transition: left 0.5s;
    }

    .header.mobile_open .gnb {
        left: 0;
		z-index: 998;
    }

    .gnb::before {
        display: none;
    }

    .gnb>ul {
        flex-direction: column;
        padding-top: 130px;
    }

    .gnb>ul>li {
        padding: 0 30px;
        line-height: 50px;
    }

    .gnb>ul>li:last-of-type {
        padding-right: 50px;
    }

    .gnb>ul>li:last-of-type .sub_menu {
        width: 100%;
    }

    .gnb>ul>li>a {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,.3);
		transition: .5s;
    }
	
	.gnb>ul>li>a:hover {color: var(--sc);}

    .gnb .sub_menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,.3);
		background: var(--sc);
		border-radius: 15px;
		padding: 0 0;
	
		text-align: center;
    }
	
	
	.gnb .sub_menu>li a {color: #fff; font-weight: 500; transition: .5s}
	.gnb .sub_menu>li a:hover {color: #000; font-weight: 500;}
	
	.gnb .sub_menu>li {margin-bottom: 0px; border-bottom: 1px dotted rgba(255,255,255,.8); padding: 20px 0;}

    .gnb .sub_menu>li:last-of-type { border-bottom:none; }



    .mobile_menu {
        display: block;
        position: fixed;
        top: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        overflow: hidden;
        border-radius: 3px;
        z-index: 999;
		cursor: pointer;
		
    }

    .mobile_menu button {
        border: none;
        background: none;
        outline: none;
		cursor: pointer;
    }

    .mobile_menu button::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: 4px;
        background:var(--bsc);
        transition: 0.5s;
        border-radius: 2px;
    }

    .mobile_menu button::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: 4px;
        background:var(--bsc);
        transition: 0.5s;
        border-radius: 2px;
    }

    .mobile_menu span {
        position: absolute;
        top: 50%;
        left: 8px;
        right: 8px;
        width: calc(100% - 16px);
        height: 4px;
        background:var(--bsc);
        transform: translate(0, -50%);
        transition: 0.3s;
        opacity: 1;
        border-radius: 2px;
    }

    .mobile_menu.active button::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile_menu.active button::after {
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%) rotate(-45deg);
    }

    .mobile_menu.active span {
        width: 0;
        opacity: 0;
    }


		
}


  


@media (max-width: 580px) {
	
	.main_slide .swiper-slide {border-radius: 0 0 80px 0;}
	
	.header h1 a img { width: 100px; }
	
	.about {padding: 50px 0;}
	.about .about_list h2 {font-size: 28px;}
	.about .text::before {width: 150px;  height: 40px; font-size: 28px;}
	.about .about_list li {font-size: 18px; padding: 0 0;}
	
	.service_detail ul { display: grid; grid-template-columns: repeat(1, 1fr);}
	.service_detail ul>li { position: relative; padding: 20px 0 0 0; display: grid; grid-template-columns: 80px 1fr;align-items: center; gap: 15px; text-align: left;}
	.service_detail ul li~li {border-left: none;  border-top: 1px solid #ddd;}
	.service_detail strong {font-size: 20px;  line-height: 1.25; margin-bottom: 8px;}
	.service_detail p {margin-bottom: 0;}
	.service_detail p br {display: none;}
	.service_detail figure {margin-bottom: 0;}
	
	.service_detail a span {position: absolute; top: 40%;right: 0;}
	
	.point {padding: 50px 0;}
	.point h2 strong {font-size: 50px;}
	.point h2 span {font-size: 30px;}
	.point .title {min-height: 210px;}
	.point .title .case {bottom: 120px;}
	.point .title .case p {margin: 0 0 0 20px;}
	.point .inner {grid-template-columns: none;}
	.point .list {grid-template-columns: repeat(4, 1fr); gap: 20px;}
	.point .list>li {border-right: 1px dotted rgba(255,255,255,.8); padding: 0 20px 0 0;}
	.point .list>li:last-child {border-right: 0; padding: 0 0 0 0; }
	.point .list li::before {padding: 0 0 0 0; border-bottom: 0}
	.point .list li strong {font-size: 16px;}
	
	.inquiry .i_txt { padding: 25px 0 0 0;}
	.inquiry h2 {font-size: 22px; line-height: 1.25;}
	.inquiry h2 br {display: block;}


@media (max-width: 480px) {
	
	
	h2+p br {display: block;}

	
	.main_slide .swiper-slide {border-radius: 0 0 60px 0;}
	.main_slide .slogan strong {font-size: 32px;}
	.main_slide .slogan p {font-size: 18px;}
	
	.about h2 {font-size:  28px;}
	.about .text::before {width: 120px; font-size: 28px;}
	.about .text {padding: 20px 20px;}
	.about .text p {font-size: 16px;}
	.about .text p br {display: none;}
	.about .about_list li {margin-bottom: 10px;}
	
	.service_detail a span {position: absolute; top: 21px; right: 0;}
	
	.inquiry h2 { font-size: 20px; line-height: 1.25;}
	
	.point .inner {gap:20px;}
	.point .list {grid-template-columns: repeat(2, 1fr); gap: 20px;}
	.point .list>li {border: 1px dotted rgba(255,255,255,.8); padding: 20px 0 20px 0;}
	.point .list>li:last-child {border: 1px dotted rgba(255,255,255,.8); padding:20px 0 20px 0;}
	.point .list li::before {padding: 0 0 0 0; border-bottom: 0}
	
	

	
    .footer .info .company li span {display: block; line-height: 1.45;}
    .footer .info .company span~span::before {display: none;}
	.footer .info .footer_menu {font-size: 16px;}
	

}

@media (max-width: 380px) {
	

	.service_detail p br {display: block;}
	.about .text::before {width: 80px; height: 35px; font-size: 24px; border-top-left-radius: 30px;
    border-top-right-radius: 30px;}
	
	
	.test_wrap {flex-direction: column;}
	.daily .guide_video .g_itm .itm_txt h3 {font-size: 16px;}
	.daily .prev_btn {margin-bottom: 4px;}

		
	.point .title {min-height: 230px; }
	.point h2 strong {font-size: 30px;}
	.point h2 span {font-size: 24px;}
	

}


@media (max-width: 320px) {
	
	h2+p br {display: none;}
	
	.main_slide .slogan strong {font-size: 24px;}
	.main_slide .slogan p {font-size: 16px;}
	
	.service_detail strong {font-size: 18px; width: 80px;}

	
	.inquiry {height: 150px;}
	.inquiry .i_txt {padding: 20px 0;}
	.inquiry h2 {margin-bottom: 10px;}
	.main_btn {font-size: 16px;}

	.point .title {min-height: 250px;}
	.point .case {width: 100%}
	
	
	.footer .info .footer_menu {display: block;}
	.footer .info .footer_menu li {padding: 6px 0;}
	.footer .info .footer_menu li~li::before {display: none;}
	
}






