/* 공통 */
#A_Footer {
    margin: 0;
}
#A_Container section .limit {
    width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}
#A_Container section .minWidth {
    min-width: 1440px;
    padding: 0 15px;
}
#A_Container section h4.sub_title {
    font-family: "paybooc_Otf_extrabold";
    font-size: 44px;
    margin: 0 0 15px;
}
#A_Container section h4.sub_title + strong {
    display: block;
    font-size: 18px;
    font-weight: 300;
    margin: 0 0 60px;
}
/* tap */
.tap_wrap {
    position: relative;
    margin: 0 0 45px;
}
.tap_wrap li {
    display: inline-block;
    width: calc( 100% / 3);
    float: left;
    text-align: center;
    cursor: pointer;
}
.tap_wrap ul:nth-of-type(1) li {
    position: relative;
    z-index: 2;
}
.tap_wrap li .img_wrap {
    position: relative;
    margin: 0 0 40px;
    width: 100%;
    height: 43px;
}
.tap_wrap li .img_wrap img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    max-width: none;
    opacity: 0;
    transition: .5s ease;
}
.tap_wrap li .img_wrap img:nth-of-type(2) {
    opacity: 1;
}
.tap_wrap li.on .img_wrap img:nth-of-type(1) {
    opacity: 1;
}
.tap_wrap li.on .img_wrap img:nth-of-type(2) {
    opacity: 0;
}
.tap_wrap li .img_wrap + p {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    transition: .5s ease;
}
.tap_wrap li.on .img_wrap + p {
    color: 3333;
    font-weight: 500;
}
.line {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 65px;
    background: #eeeeee;
}
.line ul {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translate(-50%,0);
}
.line li {
    position: relative;
    height: 10px;
}
.line li div {
    position: absolute;
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: .5s ease;
    opacity: 0;
}
.line li div:nth-of-type(1) {
    background: #eeeeee;
    opacity: 1;
}
.line li div:nth-of-type(2) {
    background: linear-gradient(to right, #1072cc , #3fb4e3);
}
.line li.on div:nth-of-type(1) {
    opacity: 0;
}
.line li.on div:nth-of-type(2) {
    opacity: 1;
}

/* 리스트 */
.list_part li {
    display: inline-block;
    width: calc((100% - 90px) / 4);
    height: 410px;
    margin: 0 30px 60px 0;
    box-shadow: 4px 4px 20px 0 rgba(0,0,0,.1);
    border-radius: 10px;
    float: left;
	background-color:white;
}
.list_part li:nth-of-type(4n) {
    margin: 0 0 60px;
}
.list_part li > a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.list_part li .img_wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    float: left;
	background-color:white;
	border-radius:8px 8px 0 0 ;
}
.list_part li .img_wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	max-width: 80%;
	max-height: 80%;
}
.list_part li .txt_wrap {
    width: 100%;
    padding: 27px 15px;
    float: left;
}
.list_part li .txt_wrap .list_tit {
   /* display: block;*/
    width: 100%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
    margin: 0 0 20px;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.list_part li .txt_wrap .list_tit + p {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 16px;
    color: #666;
    font-weight: 300;
    line-height: 1.4;
    height: 2.8em;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 더보기 버튼 */
.btn_wrap {
    text-align: center;
}
.btn_more {
    width: 240px;
    height: 76px;
    border: 1px solid #0085c8;
    background: transparent;
    padding: 0 30px;
    cursor: pointer;
    transition: .5s ease;
}

.btn_more:hover {
    background: #0085c8;
}
.btn_more span {
    display: inline-block;
    font-family: "paybooc_Otf_medium";
    font-size: 18px;
    float: left;
    color: #0085c8;
    margin: 0 8px 0 0;
    transition: .5s ease;
}
.btn_more:hover span {
    color: #fff;
}
.btn_more div {
    position: relative;
    width: 9px;
    height: 14px;
    float: left;
    transform: translate(0,4px);
}
.btn_more div img {
    position: absolute;
    opacity: 0;
    transition: .5s ease;
}
.btn_more div img:nth-of-type(2) {
    opacity: 1;
}
.btn_more:hover div img:nth-of-type(1) {
    opacity: 1;
}
.btn_more:hover div img:nth-of-type(2) {
    opacity: 0;
}
.btn_more p {
    font-size: 16px;
    font-family: "paybooc_Otf_medium";
    display: inline-block;
    float: right;
    color: #0085c8;
    transform: translate(0,2px);
    transition: .5s ease;
}
.btn_more:hover p {
    color: #fff;
}

.story_more{margin-top: 30px;}
.story_more span {margin-left: 50px;}
/* main_banner */
.main_banner_area {
    height: 100vh;
    min-width: 1440px;
}

.main_banner_area .swiper-tool_wrap {
    position: absolute;
    width: 1410px;
    padding: 0 15px;
    left: 50%;
    top: 25%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.main_banner_area .swiper-pagination-fraction {
    font-family: 'Montserrat', sans-serif;
    width: auto;
    bottom: auto;
    right: auto;
    color: #fff;
    left: 0;
}

.main_banner_area .swiper-pagination-total::before,
.main_banner_area .swiper-pagination-current::before {
    content: "0";
    display: inline-block;
}
.main_banner_area .swiper-pagination-fraction span:nth-of-type(1) {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.main_banner_area .swiper-pagination-fraction span:nth-of-type(2) {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}
.main_banner_area .swiper-tool_wrap .swiper-scrollbar {
    display: inline-block;
    width: 150px;
    height: 1px;
    top: 15px;
    left: 80px;
    background: rgba(255,255,255,0.3);
}



.main_banner_area .swiper-button-wrap {
    position: absolute;
    width: 140px;
    height: 70px;
    right: 60px;
    bottom: 60px;
}
.main_banner_area .swiper-button {
    width: 70px;
    opacity: 1;
    border-radius: 50%;
    height: 70px;
    border: 1px solid transparent;
    transition: .3s ease;
}
.main_banner_area .swiper-button.clicked {
    border-color:rgba(255,255,255,0.3);
}
.main_banner_area .swiper-button-next {
    right: 0;
    left: auto;
}
.main_banner_area .swiper-button-prev {
    height: 70px;
    opacity: 1;
    width: 70px;
    left: 0;
    right: auto;
}
.main_banner_area .swiper-button-next::after,
.main_banner_area .swiper-button-prev::after {
    display: none;
}
.main_banner_area .swiper-scrollbar-drag {
    background: #fff;
}
.main_banner_area .swiper-container {
    height: 100vh;
}
.main_banner_area .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}
.main_banner_area .swiper-slide::after {
    content :"";
    position:absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
}
.main_banner_area .txt_wrap {
    position: absolute;
    width: 1440px;
    padding: 0 15px;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.main_banner_area .txt_wrap p {
    font-family: "paybooc_Otf_light";
    font-size: 64px;
    color: #fff;
}
.main_banner_area .txt_wrap h2 {
    font-family: "paybooc_Otf_extrabold";
    font-size: 64px;
   /* margin: 0 0 20px;*/
    color: #fff;
}
.main_banner_area .txt_wrap span {
    display: block;
    font-family: "paybooc_Otf_medium";
    font-size: 24px;
    color: #fff;
    margin: 0 0 30px;
    line-height: 1.7;
}
.main_banner_area .txt_wrap em {
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}
.main_banner_area .scroll_txt_wrap {
    position: absolute;
    left: 200px;
    bottom: 0;
    z-index: 2;
    transform: rotate(270deg);
    transform-origin: left;
}
.main_banner_area .scroll_txt_wrap > div {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    overflow: hidden;
    float: left;
    transform: translate(0,8px);
    margin: 0 4px 0 0;
}
.main_banner_area .scroll_txt_wrap > div::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
}
.main_banner_area .scroll_txt_wrap span {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    float: left;
}
/* gallery */
.gallery_area {
    position: relative;
    /*padding: 100px 0;*/
}


.gallery_area > .bg {	
    position: absolute;
    /*background: #f8f7f5;*/
    width: 100%;
    height: 1080px;
    left: 0;
    bottom: -320px;
    z-index: -1;
}

/* employment_area */
.employment_area {
    position: relative;
    padding: 100px 0 100px;
}
.employment_area .title_wrap > div {
    display: inline-block;
    width: auto;
    float: left;
}
.employment_area .title_wrap > div:nth-of-type(2) {
    float: right;
    transform: translate(0,25px);
}
.employment_area .title_wrap > div:nth-of-type(2) button {
    width: 160px;
    height: 60px;
    float: left;
    border-radius: 50px;
    color: #999;
    border: none;
    background: transparent;
    border: 2px solid #dddddd;
    font-size: 18px;
    font-family: "paybooc_Otf_medium";
    cursor: pointer;
    transition: .5s ease;
    margin: 0 10px 0 0;
}
.employment_area .title_wrap > div:nth-of-type(2) button:last-child {
    margin: 0;
}
.employment_area .title_wrap > div:nth-of-type(2) button.on {
    background: linear-gradient(to right, #1072cc, #3fb4e3);
    color: #fff;
    border: none;
}
.employment_area .list_part li {
    height: 280px;
    background: #fff;
    box-shadow: inset 1px 1px 3px 0px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    transition: .5s ease;
	position:relative;
}
.employment_area .list_part li:hover {
    box-shadow: none;
    border-color: transparent;
	background: #1072cc;
	border:1px solid #1072cc;
}
.employment_area .list_part li .img_wrap {
    height: 140px;
}
.employment_area .list_part li .txt_wrap {
    text-align: center;
}
.employment_area .list_part li .txt_wrap strong {
    display: block;
    font-family: "paybooc_Otf_extrabold";
    font-size: 24px;
    margin: 0 0 10px;
    transition: .5s ease;
}
.employment_area .list_part li .txt_wrap strong + p {
    color: #666666;
    font-size: 18px;
    font-weight: 300;
    transition: .5s ease;
}
.employment_area .list_part li:hover .txt_wrap strong + p {
    color: #fff;
}
.employment_area .list_part li:hover .txt_wrap strong {
    color: #fff;
}
.employment_area > .bg {
	position: absolute;
    background: #f8f7f5;
    width: 100%;
    height: 550px;
    left: 0;
    top: 0;
    z-index: -1;
}
.employment_area .flag {
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 40px;
    line-height: 30px;
    clip-path: polygon(100% 0, 100% 65%, 50% 100%, 0 65%, 0 0);
    /* color: #fff; */
    color:transparent;
    text-align: center;
    font-weight: 400;
    left: 10px;
    top: -10px;
    z-index: 2;
}
.employment_area .flag.gs {
    background: linear-gradient(to top left, #ff512f , #dd1736); color:#fff;
}
.employment_area .flag.transfer {
    background: linear-gradient(to top left, #faa61a , #fa6e1a); color:#fff;
} 
	
	
/* story_area */
.story_area {
    padding: 0 0 100px;
}
#A_Container .story_area h4.sub_title + strong {
    margin: 0 0 120px;
}
.story_area .list_part li {
    height: auto;
    padding: 0;
    background: transparent;
}
.story_area .list_part li:nth-of-type(odd) {
    transform: translate(0,-50px);
}
.story_area .list_part li:nth-of-type(even) {
    transform: translate(0,50px);
}
.story_area .list_part a {
    display: inline-block;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    float: left;
    overflow: hidden;
    border-radius: 10px;
    padding: 0;
}
.story_area .list_part a .txt_wrap {
    position: relative;
    display: inline-block;
    width:100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease;
    padding: 30px 25px;
    background: linear-gradient(to right,rgba(16,144,204,0.8),rgba(63,180,227,0.8));
}
.story_area .list_part a:hover .txt_wrap {
    visibility: visible;
    opacity: 1;
}
.story_area .list_part a .txt_wrap strong {
    font-family: "paybooc_Otf_bold";
    display: block;
    font-size: 24px;
    color: #fff;
    margin: 0 0 10px;
}
.story_area .list_part a .txt_wrap em {
    display: block;
    font-family: "paybooc_Otf_light";
    font-size: 24px;
    color: #fff;
    margin: 0 0 30px;
}
.story_area .list_part a .txt_wrap p {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 18px;
    color: #666;
    font-weight: 300;
    line-height: 1.4;
    height: 2.8em;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
}
.story_area .list_part a .txt_wrap button {
    position: absolute;
    width: calc(100% - 50px);
    left: 50%;
    transform: translate(-50%,0);
    bottom: 40px;
    border: none;
    background: transparent;
    cursor: pointer;

}
.story_area .list_part a .txt_wrap button span {
    color: #fff;
    float: left;
}
.story_area .list_part a .txt_wrap button img {
    transform: translate(0,5px);
    float: right;
}
/* news_area */
.news_area {
    position: relative;
    padding: 0 0 100px;
}
#A_Container .news_area h4.sub_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
#A_Container .news_area h4.sub_title,
#A_Container .news_area h4.sub_title + strong {
    text-align: center;
}
.news_area article > div {
    display: inline-block;
    width: calc((100% - 30px)/2);
    background: #fff;
    float: left;
    padding: 50px 60px 20px;
}

.news_area .news_part {
    margin: 0 30px 0 0;
}
.news_area .notice_part {
    margin: 0;
}
.news_area article > div .tit_wrap {
    width: 100%;
}
.news_area article > div .tit_wrap strong {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    float: left;
}
.news_area article > div .tit_wrap strong + a {
    display: inline-block;
    float: right;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    transform: translate(0,12px);
}
.news_area article > div hr {
    background: #dddddd;
    border: none;
    height: 1px;
    margin: 10px 0;

}


.news_area article > div li a {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.news_area article > div li:last-child a {
    border-bottom: none;
}
.news_area article > div li a h4 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 5px;
}
.news_area article > div li a h4 + p {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
    color: rgba(0,0,0,0.6);
}
.news_area .bg {
    position: absolute;
    background: #f8f7f5;
    width: 100%;
    height: 680px;
    left: 0;
    bottom: 0;
    z-index: -1;
}


/*20220513퀵메뉴버튼*/
.directmenu_area{position:relative;padding: 60px 0 60px;}
.directmenu_area >.bg{position:absolute;background:#1d84d2;width:100%;height:100%;
    left:0;top:0;z-index:-1;}
.directmenu_area article > div{float:left;}
.directmenu_area article > div:nth-child(1){width:38%;}
.directmenu_area article > div:nth-child(2){width:62%;}
.directmenu_area article .left_title_wrap div{text-align:center;font-size:32px;font-weight:800;line-height:1.2em;color:#ffde00;}
.directmenu_area article .left_title_wrap div:nth-child(2){font-size:52px;color:#fff;font-weight:400;}
.directmenu_area .left_subtitle_wrap{margin-top:36px;}
.directmenu_area .left_subtitle_wrap li{width:320px;/*width:265px;*/margin:0 auto;font-size:22px;/*font-size:18px;*/font-weight: 300;color:#fff;}
.directmenu_area .left_subtitle_wrap li span{padding-left: 20px;color:#fff;}
.directmenu_area .left_subtitle_wrap img{margin-right:4px;width:20px;vertical-align: middle;}
.left_direct_btn{display:block;width:344px;margin:32px auto 0;padding:14px;text-align:center;font-size:26px;font-weight:bold;background-color:#ffde00;} 
.right_title_wrap p{color:#fff;}
.right_title_wrap p:nth-child(1){font-size:26px;font-weight:500;}
.right_title_wrap strong{color:#fff;font-weight:500;}
.right_btn_wrap{margin-top:20px;}
.right_btn_wrap li{display:inline-block;width: calc((100% - 20px) / 3);margin-left:10px;background-color:#fff;border-radius:10px;text-align:center;}
.right_btn_wrap li:nth-child(1),.right_btn_wrap li:nth-child(4){margin-left:0;}
.right_btn_wrap li:nth-child(n+4){margin-top:10px;}
.right_btn_wrap li a{display:block;padding:20px;width:100%;}
.right_btn_wrap li div{font-size:20px;font-weight:bold;}
.right_btn_wrap li img{width:52px;}
.directbtn05{display:block;padding:20px;width:100%;cursor:pointer;}
	
.additional_application .tuition_part3 td input[type="text"] {
    width: 600px;
    height: 46px;
    border: 1px solid #ddd;
    padding: 0 0 0 10px;
}
.additional_application .tuition_part3 .phone_num td input[type="text"] {
    width: 140px;
    height: 46px;
    border: 1px solid #ddd;
    padding: 0 0 0 10px;
}
.additional_application .tuition_part3 .phone_num td input[type="text"] + span {
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #ddd;
    transform: translate(0,-6px);
    margin: 0 5px;
}

.review_area{
	background-color:#2c364c;
	width:100%;
	height:80px;
	padding: 10px;
	padding-top:15px;
	padding-left : 130px;
	margin : 0 auto;
}
.reviewContent{
	width:1440px;
	margin:0 auto;
}
.reviewTitle{
	width:180px;
	height:50px;
	padding-top : 10px;
	border : 1px solid #1e48a6;
	border-radius : 30px;
	text-align:center;
	float:left;
	font-weight:bold;
	background-color:#1e48a6;
	color:white;
}
.review-container{
	width:  75%; height:80px;
	padding-top : 10px;
	padding-left : 20px;
	float:left;
	color:white;
}
.review_wrap p{
	width: 97%;
	padding-top:5px;
	color:white;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-wrapper{
	width:100%;
}
.review-button-wrap{
	padding-top : 15px;
}
.review-button-prev {
	padding:0px;
	position:absolute;
	transform:rotate(90deg);
	left:96%;
	color:#FFFFFF;
	transform-origin: right center;
}
.review-button-next {
	transform:rotate(90deg);
	left:96%;
	color:#FFFFFF;
	transform-origin: right center;
}
.review-button-prev:after,.review-button-next:after {
	font-size:13px;
}
.reviewMore{
	width:80px;
	height:30px;
	border : 1px solid black;
	border-radius : 30px;
	margin-top : 10px;
	margin-left : 30px;
	background-color:#fff;
	color:black;
	float: left;
	text-align:center;
}
.reviewMore >a{
	font-size:13px;
	line-height:30px;
}