/* transition: left .6s cubic-bezier(0.120, 0.870, 0.295, 0.930); */
#app, html ,body {overflow-x:hidden;}
.primary {color:#9D1E2F !important;}
.bg-primary {background-color:#9D1E2F !important;}
.accent {color:#DBAF47;}
.bold {font-weight:600;}
.white {color:white !important;}

.wrap {width:1200px; margin:0 auto;}

@media screen and (max-width:1200px){
    .wrap {width:100%; padding:0 20px;}
}

.mt-100 {margin-top:100px;}
.mt-80 {margin-top:80px;}
.mt-60 {margin-top:60px;}
.mt-40 {margin-top:40px;}
.mt-20 {margin-top:20px;}
.mt-10 {margin-top:10px;}

@media screen and (max-width:1300px) {
    .mt-100 {margin-top:60px;}
    .mt-80 {margin-top:40px;}
    .mt-60 {margin-top:30px;}
    .mt-40 {margin-top:20px;}
    .mt-20 {margin-top:10px;}
}

.header {
    display:flex; align-items: center; justify-content: space-between;
    width:100%; padding:0px 50px;
    position:fixed; top:0; left:0; z-index:10;
    transition: all .3s cubic-bezier(0.120, 0.870, 0.295, 0.930);
}
.header .black {display:none; content:""; width:100%; height:100%; position:fixed; top:0; left:0; background:rgba(0,0,0,0.6); z-index:1;}
.header .black.active {display:block;}
.header.active {background-color:#14284b; box-shadow:0px 0px 6px rgba(0,0,0,0.16);}
.header .logo {width:210px;}
.header .right {display:flex; align-items: center; margin-left:auto; justify-content: flex-end; z-index:2;}
.header .right > .navs {display:flex;}
.header .right > .navs > .nav {margin:0 20px; position:relative;}
.header .right > .navs > .nav:hover .navs {display:block; animation: fadeInNavs .6s forwards cubic-bezier(0.120, 0.870, 0.295, 0.930);}
@keyframes fadeInNavs {
    0% {
        top:80px;
        opacity:0;
    }

    100% {
        top:60px;
        opacity:1;
    }
}
.header .right > .navs > .nav > .text {display:block; padding:20px 0; position:relative; font-weight:600; color:#fff;}
.header .right > .navs > .nav > .text:after {content:""; width:100%; max-width:0; height:4px;
    position:absolute; left:50%; bottom:4px; transform: translateX(-50%);
    background-color:#fff;
    transition: max-width .6s cubic-bezier(0.120, 0.870, 0.295, 0.930);
}
.header .right > .navs > .nav:hover > .text:after {max-width:100%;}
.header .right > .navs > .nav > .navs {
    display:none;
    min-width:250px;
    padding:24px; position:absolute; left:50%; transform:translateX(-50%);
    background-color:#fff; box-shadow:0px 3px 6px rgba(0,0,0,0.16);
}
.header .right > .navs > .nav > .navs > .nav {margin-bottom:16px;}
.header .right > .navs > .nav > .navs > .nav:last-child {margin-bottom:0;}
.header .right > .navs > .nav > .navs > .nav > .text {display:block; transition: all .3s; }
.header .right > .navs > .nav > .navs > .nav > .text:hover {color:#9D1E2F;}
.header .right .utils {display:flex; align-items: center; margin-left:40px;}
.header .right .utils .util {display:flex; align-items: center; position:relative; color:#fff;}
.header .right .utils .util:before {content:"|"; display:inline-block; margin:0 20px; position:relative; top:-2px; font-size:12px; font-weight:300; opacity:0.5;}
.header .right .utils .util:first-child:before {display:none;}
.header .right .utils .util img {display:block; margin-right:12px;}
.header .btn-menu {display:none; width:40px; height:40px; margin-right:-10px; background:url("../img/menu-white.png") no-repeat; background-position:center; z-index:2;}
.header .btn-menu.active {top:10px; left:10px; position:fixed; background:url("../img/x.png") no-repeat; background-position:center;}
.header .right .utils .util.active .m-input-text.type01 {display:block;}
.header .m-input-text.type01 {display:none; width:260px; position:absolute; right:0; top:50%; transform:translateY(-50%); border-radius:10px; overflow:hidden;}
.header .m-input-text.type01 img {margin-right:0;}

@media screen and (max-width:1400px){
    .header {padding:0px 20px;}
    .header .btn-menu {display:inline-block;}
    .header .logo {width:150px;}
    .header .right.active {right:0;}
    .header .right.active .utils {right:0;}
    .header .right {width:300px; height:100vh; padding-top:60px; justify-content: normal; flex-wrap:wrap; position:fixed; right:-300px; top:0; background-color:#14284b;
        overflow-y:auto;
        flex-grow: 1;
        transition: right .3s cubic-bezier(0.120, 0.870, 0.295, 0.930);
    }
    .header .right > .navs {flex-wrap:wrap;}
    .header .right > .navs > .nav {width:100%; margin:0;}
    .header .right > .navs > .nav > .text {padding:20px; border-bottom:1px solid rgba(255,255,255,0.4);}
    .header .right > .navs > .nav > .navs {display:block; position:static; transform:none; animation: none;}
    .header .right > .navs > .nav:hover .navs {animation:none;}
    .header .right > .navs > .nav > .text:after {display:none;}
    .header .right .utils {width:300px; justify-content: center; margin-left:0; padding:20px;
        position:fixed; top:0; right:-300px; background-color:#14284b; border-bottom:1px solid rgba(255,255,255,0.4);
        transition: right .3s cubic-bezier(0.120, 0.870, 0.295, 0.930);

    }

}

@media screen and (max-width:768px){}

.footer .banner {background-color:#9D1E2F;}
.footer .banner .wrap {display:flex; justify-content: space-between; align-items: center;}
.footer .banner .box-text {margin-right:40px;}
.footer .banner .title {font-size:24px; font-weight:500; color:#fff;}
.footer .banner .body {font-size:14px; font-weight:500; color:#fff;}
.footer .banner .img {flex:0 0 auto;}
.footer .top {padding:10px 0; background-color:#333333;}
.footer .top .wrap {display:flex; align-items: center; justify-content: space-between;}
.footer .top .links {display:flex; align-items: center;}
.footer .top .link {display:block; margin-left:20px; padding-left:20px; position:relative; color:#fff;}
.footer .top .link:before {content:""; display:inline-block; width:1px; height:10px;  position:absolute; left:0; top:60%; transform:translateY(-50%); opacity:0.8; background-color:#fff;}
.footer .top .link:first-child {padding-left:0; margin-left:0;}
.footer .top .link:first-child:before {display:none;}
.footer .top .socials {display:flex;}
.footer .top img {display:block; margin-left:10px;}
.footer .bottom {padding-bottom:35px; background-color:black;}
.footer .bottom .boxes {display:flex; padding:0; margin:0 -40px;}
.footer .bottom .box-wrap {padding:40px;}
.footer .bottom .logo {width:170px; margin-bottom:10px;}
.footer .bottom .body {margin-bottom:10px; font-size:14px; font-weight:300; color:#fff; white-space: nowrap;}
.footer .bottom a.body {text-decoration: underline;}
.footer .bottom .body:last-child {margin-bottom:0;}
.footer .bottom .title {margin-bottom:12px; font-size:18px; font-weight:500; color:#fff;}
.footer .bottom .copyright {font-size:14px; font-weight:300; color:rgba(255,255,255,0.8);}
.footer a {display:block;}

@media screen and (max-width:1200px){
    .footer .banner .wrap {padding-right:0;}
    .footer .top .wrap {flex-wrap:wrap; justify-content: center;}
    .footer .top .links {width:100%; flex-wrap:wrap; justify-content: center; margin-bottom:10px;}
    .footer .top .links .link {margin:0; padding:0; padding:8px;}
    .footer .top .links .link:before {display:none;}
    .footer .top .socials {margin-bottom:10px;}
    .footer .bottom .boxes {flex-wrap:wrap; margin:0px -20px;}
    .footer .bottom .box-wrap {width:50%; padding:20px;}
}
@media screen and (max-width:769px){
    .footer .banner {position:relative; overflow:hidden;}
    .footer .banner .box-text {padding:20px 0; position:relative; z-index:1;}
    .footer .banner .title {margin-bottom:10px; font-size:20px;}
    .footer .banner .img {width:100%; position:absolute; bottom:0; right:0; opacity:0.4;}
    .footer .banner .body {word-break: keep-all;}
    .footer .bottom {padding-top:10px;}
    .footer .bottom * {word-break: keep-all;}
    .footer .bottom .box-wrap {width:100%; padding:10px 20px;}
    .footer .bottom .logo {display:block; margin:0 auto; margin-bottom:20px;}
}

.main .subVisual {display:flex; align-items:center; justify-content:center; height:350px; margin-bottom:80px; position:relative; overflow:hidden;}
.main .subVisual .title {margin-top:40px; position:relative; z-index:1; font-size:40px; font-weight:500; color:#fff;}
.main .subVisual img {position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);}
.main .subContent {padding-bottom:100px;}

@media screen and (max-width:768px){
    .main .subVisual {height:200px; margin-bottom:40px;}
    .main .subVisual .title {margin-top:30px; padding: 0 20px; font-size:24px; text-align: center;}
    .main .subContent {padding-bottom:40px;}
}
.area-main .section .section-title {margin-bottom:60px; text-align: center;}
.area-main .section .section-title .subtitle {margin-bottom:20px; font-size:20px; font-weight:600;}
.area-main .section .section-title .title {font-size:40px; font-weight:600; word-break: keep-all;}
.area-main .section .section-title .title .point {font-size:40px; font-weight:300; word-break: keep-all;}
.area-main .section {padding:100px 0;}

@media screen and (max-width:1200px){
    .area-main .section {padding:40px 0;}
    .area-main .section .section-title {margin-bottom:20px;}
    .area-main .section .section-title .subtitle {margin-bottom:10px; font-size:16px;}
    .area-main .section .section-title .title {font-size:24px;}
    .area-main .section .section-title .title .point {font-size:24px;}
}
.area-main .section01 {
    padding:0;
    position:relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.area-main .section01 .icon {animation:upAndDown 1s infinite; position:absolute; bottom:40px; left:50%; transform:translateX(-50%); z-index:2; opacity:0.8;}
@keyframes upAndDown {
    0% {
        opacity:.8;
    }
    25% {
        opacity:.4;
    }
    50% {
        opacity:.8;
    }
    75% {
        opacity:.4;
    }
    100% {
        opacity:.8;
    }
}
.area-main .section01 .swiper-slide {height:100vh;}
.area-main .section01 .visual {width:100%; height:100%; position:absolute; top:0; left:0; object-fit:cover; object-position:center 30%;}
.area-main .section01 .box-text {position:absolute; top:48%; left:50%; transform:translate(-50%, -50%); text-align: center;}
.area-main .section01 .box-text .title {margin-bottom:20px; font-size:80px; font-weight:600; line-height:90px; color:#fff;}
.area-main .section01 .box-text .body {font-size:40px; font-weight:400; color:#fff;}


@media screen and (max-width:1400px){
    .area-main .section01 .visual {object-position:center 25%;}
}

@media screen and (max-width:1100px){
    .area-main .section01 .visual {object-position:center 20%;}
}

@media screen and (max-width:768px){
    .area-main .section01 .box-text {width:100%; padding:0 20px;}
    .area-main .section01 .box-text .title {font-size:40px; line-height:46px;}
    .area-main .section01 .box-text .body {font-size:16px;}
    .area-main .section01 .box-text {top:28%;}
    .area-main .section01 .visual {object-position:center 15%;}
}
.area-main .section01-1 img {display: block; max-width:100%; margin:0 auto;}

.area-main .section02 {padding-bottom:0;}
.area-main .section02 .section-title .title {font-size:30px; font-weight:300;}
.area-main .section02 .boxes {display:flex;}
.area-main .section02 .box {flex:1; margin-left:-2px; position:relative;}
.area-main .section02 .m-ratioBox-wrap {padding-top:122%;}
.area-main .section02 .m-ratioBox-wrap img {width:100%; height:100%; object-fit:cover; object-position:center; transform:none; left:0; top:0;}
.area-main .section02 .box .deco-wrap {content:""; width:100%; height:100%; padding:20px; position:absolute; left:0; top:0; z-index:2;}
.area-main .section02 .box .deco {content:""; width:100%; height:100%; border:1px solid white;}
.area-main .section02 .box-text {display:flex; align-items:flex-end; flex-wrap:wrap;
    width:100%; height:100%; padding:100px 60px; position:absolute; left:0; bottom:0; z-index:2;
}
.area-main .section02 .box-text .title {width:100%; margin-bottom:10px;  font-size:40px; font-weight:500; color:#fff; }
.area-main .section02 .box-text .body {font-size:20px; color:#fff;}

@media screen and (max-width:1000px){
    .area-main .section02 .section-title .title {font-size:20px;}
    .area-main .section02 .section-title .title br {display:none;}
    .area-main .section02 .box-text {padding:50px;}
    .area-main .section02 .box-text .title {font-size:20px;}
    .area-main .section02 .box-text .body {font-size:14px;}

}
@media screen and (max-width:768px){
    .area-main .section02 .boxes {flex-wrap:wrap;}
    .area-main .section02 .box {flex:auto; width:100%;}
    .area-main .section02 .m-ratioBox-wrap {padding-top:49%;}
}

.area-main .section03 .box-content {display:flex; align-items: flex-start;}
.area-main .section03 .m-ratioBox-wrap {flex: 0 0 auto; width:517px; margin-right:60px; padding-top:54%; border:none; box-shadow:0px 3px 6px rgba(0,0,0,0.16);}
.area-main .section03 .comment {margin-bottom:16px; font-size:20px; font-weight:500; word-break: keep-all;}

@media screen and (max-width:1000px){
    .area-main .section03 .box-content {flex-wrap:wrap;}
    .area-main .section03 .box-content .content {width:100%;}
    .area-main .section03 .m-ratioBox-wrap {margin:0 auto; margin-bottom:20px; padding-top:94%;}
    .area-main .section03 .comment {font-size:14px;}
}
@media screen and (max-width:768px){
    .area-main .section03 .m-ratioBox-wrap {width:100%;}
}

.area-main .section04 {position:relative; overflow:hidden;}
.area-main .section04 .visual {position:absolute; top:0; left:50%; transform:translateX(-50%); z-index:-1;}
.area-main .section04 .title {margin-bottom:40px; font-size:80px; font-weight:600; line-height:90px; color:#fff;}
.area-main .section04 .comment {margin-bottom:20px; font-size:20px; font-weight:300; color:#fff;}
.area-main .section04 .comment:last-child {margin-bottom:0;}

@media screen and (max-width:1000px){
    .area-main .section04 .title {margin-bottom:20px; font-size:24px; line-height:normal;}
    .area-main .section04 .title br {display:none;}
    .area-main .section04 .comment {font-size:14px; word-break: keep-all;}
    .area-main .section04 .comment br {display:none;}
}
@media screen and (max-width:768px){}

.area-main .section05 .boxes {display:flex; margin:-12px;}
.area-main .section05 .box-wrap {width:33.33%; padding:12px;}
.area-main .section05 .box .title {margin-bottom:10px; padding-top:16px; position:relative; font-size:24px; font-weight:600;}
.area-main .section05 .box .title:before {content:""; width:40px; height:4px; position:absolute; top:0; left:0; background-color:#9D1E2F;}
.area-main .section05 .box .body {margin-bottom:24px; height:96px; color:#777;}
.area-main .section05 .m-ratioBox-wrap {padding-top:55%; border:none;}

@media screen and (max-width:1000px){
    .area-main .section05 .box .title {font-size:16px;}
    .area-main .section05 .box .body {margin-bottom:20px; font-size:14px; word-break: keep-all;}
    .area-main .section05 .box .body br {display:none;}
}
@media screen and (max-width:768px){
    .area-main .section05 .boxes {flex-wrap:wrap;}
    .area-main .section05 .box-wrap {flex:auto; width:100%;}
    .area-main .section05 .box .body {height:auto;}
}

.area-main .section06 {background-color:#F8F8F8;}
.area-main .section06 .swiper {position:relative;}
.area-main .section06 .swiper-container {padding:20px 0;}
.area-main .section06 .m-ratioBox-wrap {width:90px; padding-top:90px; margin: 0 auto; margin-bottom:20px; border:none; border-radius:100%;}
.area-main .section06 .m-ratioBox-wrap img {
    width:122%; height:100%; object-fit:cover; object-position: top;

}
.area-main .section06 .swiper-slide {padding:60px; text-align: center; box-shadow:0px 3px 6px rgba(0,0,0,0.16); border:1px solid #e1e1e1; background-color:#fff;}
.area-main .section06 .swiper-slide .title {margin-bottom:10px; font-size:20px; font-weight:500;}
.area-main .section06 .swiper-slide .body {margin-bottom:20px; word-break: keep-all;}
.area-main .section06 .swiper-btns {display:flex; justify-content: space-between; width:100%; padding:0 20px; position:absolute; top:50%; left:0; transform:translateY(-50%); z-index:1; cursor:pointer;}

@media screen and (max-width:1000px){}
@media screen and (max-width:768px){
    .area-main .section06 .swiper-slide {padding:40px 20px;}
    .area-main .section06 .swiper-slide .body {word-break: keep-all;}
    .area-main .section06 .swiper-btn {width:20px;}
}

.area-main .section-summer {padding:80px 0; background-color:#FDFBFA;}
.area-main .section-summer .box-summer {display:flex; align-items: flex-end;}
.area-main .section-summer .box-summer img {margin-right:80px;}
.area-main .section-summer .box-title .sub {font-size:24px; font-weight: bold; color:#9D1E2F;}
.area-main .section-summer .box-title .title {margin-bottom:20px; font-size:40px; font-weight: bold;}
.area-main .section-summer .infos {display:flex; flex-wrap:wrap; margin-bottom:40px;}
.area-main .section-summer .info {display:flex; padding-left:40px; border-left:1px solid #e1e1e1;}
.area-main .section-summer .info:first-of-type {padding-right:40px; padding-left:0; border-left:none;}
.area-main .section-summer .info .title {margin-right:24px; font-weight:bold;}
.area-main .section-summer .info .body {margin-bottom:4px; font-size:14px; color:#555;}
.area-main .section-summer .info .body:last-of-type {margin-bottom:0;}

@media screen and (max-width:1000px){
    .area-main .section-summer .box-title .sub {font-size:20px;}
    .area-main .section-summer .box-title .title {font-size:30px;}
    .area-main .section-summer .info {width:100%; margin-bottom:20px;}
    .area-main .section-summer .info:first-of-type {padding-right:40px;}
    .area-main .section-summer .info {padding-left:0; border-left:none;}
    .area-main .section-summer .info .title {width:90px; word-break: keep-all;}
}
@media screen and (max-width:768px){
    .area-main .section-summer {padding:40px 0;}
    .area-main .section-summer .box-summer {flex-wrap:wrap;}
    .area-main .section-summer .box-summer img {margin:0 auto; margin-bottom:20px;}
    .area-main .section-summer .box-title .sub {font-size:16px;}
    .area-main .section-summer .box-title .title {font-size:24px;}
    .area-main .section-summer .infos {margin-bottom:20px;}
    .area-main .section-summer .info .body {}
}

.area-aboutUs {}
.area-aboutUs .m-btn.type02 {
    width:300px;
}
.area-aboutUs .boxes {display:flex; flex-wrap:wrap; margin:-10px;}
.area-aboutUs .box {display:flex; align-items:center; justify-content:center; height:100px; padding:6px 0; position:relative; border:1px solid #e1e1e1;}
.area-aboutUs .box img {display:block; max-height:100%; max-width:100%; margin:0 auto;}
.area-aboutUs .box-wrap {width:25%; padding:10px;}
.area-aboutUs .fragment {height:100%;}
.area-aboutUs .fragments {display:flex; flex-wrap:wrap; margin:-10px; margin-bottom:40px;}
.area-aboutUs .fragments .box-img {content:""; width:100%; height:100%; position:relative; overflow:hidden; border:1px solid #e1e1e1;}
.area-aboutUs .fragments .box-img img {width:auto; height:74%; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);}
.area-aboutUs .fragment-wrap {width:50%; padding:10px;}
.area-aboutUs .fragment-wrap:first-of-type {width:474px;}
.area-aboutUs .fragment-wrap:last-of-type {flex:auto;}
.area-aboutUs .fragment .content {padding:40px; background-color:#9D1E2F;}
.area-aboutUs .fragment .content * {color:#fff;}
.area-aboutUs .fragment .greet {margin-bottom:20px; font-size:20px; font-weight:600;}
.area-aboutUs .fragment .body {margin-bottom:20px; font-weight:300; word-break: keep-all;}
.area-aboutUs .fragment .sign {font-weight:600; text-align: right;}

@media screen and (max-width:1000px){
    .area-aboutUs .box-wrap {width:33.33%;}

}
@media screen and (max-width:1000px){

    .area-aboutUs .box-wrap {width:50%;}
}

@media screen and (max-width:768px){
    .area-aboutUs .m-btn.type02 {
        width:100%;
    }
    .area-aboutUs .fragments {flex-wrap:wrap; margin:-5px; margin-bottom:20px;}
    .area-aboutUs .fragment-wrap {width:100% !important; padding:5px;}
    .area-aboutUs .fragments .box-img img {width:100%; height:auto; position:static; transform:none;}
    .area-aboutUs .fragment .content {padding:20px;}
    .area-aboutUs .fragment .greet {font-size:18px; margin-bottom:10px;}
    .area-aboutUs .fragment .body {margin-bottom:10px; font-size:14px;}
}

@media screen and (max-width:500px){
    .area-aboutUs .box-wrap {width:100%;}
}

.area-contactUs {}
.area-contactUs .boxes {display:flex; margin:-10px;}
.area-contactUs .box-wrap {width:33.33%; padding:10px;}
.area-contactUs .box-wrap .box {display:flex; align-items:center; height:100%; padding:30px; background-color:#FDFBFA; border:1px solid #e1e1e1;}
.area-contactUs .box-wrap .box img {margin-right:20px;}
.area-contactUs .box-wrap .box .title {margin-bottom:8px; font-size:18px; font-weight:500; color:#9D1E2F;}
.area-contactUs .box-wrap .box .body {font-size:14px;}
.area-contactUs .fragments {display:flex;}
.area-contactUs .fragment-wrap:nth-child(2) {flex: 0 0 auto; width:685px; margin-left:40px;}
.area-contactUs .box-contact .title {margin-bottom:20px; padding-bottom:12px; position:relative; font-size:24px; font-weight:500;}
.area-contactUs .box-contact .title:after {content:""; width:45px; height:4px; position:absolute; left:0; bottom:0; background-color:#9D1E2F;}
.area-contactUs .box-contact .body {font-size:14px; color:#999;}
.area-contactUs .box-map {height:100%;}
.area-contactUs iframe {width:100%; height:100%;}
@media screen and (max-width:1000px){
    .area-contactUs .fragments {flex-wrap:wrap;}
    .area-contactUs .fragments .fragment-wrap {width:100%; margin:0;}
    .area-contactUs .box-map {height:400px; margin-top:40px;}
}
@media screen and (max-width:768px){
    .area-contactUs .boxes {flex-wrap:wrap;}
    .area-contactUs .box-wrap {width:100%;}
    .area-contactUs .box-wrap .box {padding:20px;}

}


.area-ourMission {text-align: center;}
.area-ourMission .body {word-break: keep-all;}
.area-ourMission .m-title.type01 {font-weight:500;}
.area-ourMission .boxes {display:flex; margin:-5px; margin-top:40px;}
.area-ourMission .box-wrap {width:25%; padding:5px;}
.area-ourMission .box {position:relative;}
.area-ourMission .box .title {height:58px; padding:0 20px; margin-bottom:40px; position:absolute; bottom:0; left:0; font-size:20px; z-index:1; color:#fff; text-align: left;}
.area-ourMission .m-ratioBox-wrap {padding-top:164%;}
.area-ourMission .wrap > img {max-width:100%;}

@media screen and (max-width:1000px){
    .area-ourMission .boxes {flex-wrap:wrap;}
    .area-ourMission .box-wrap {width:50%;}
    .area-ourMission .m-ratioBox-wrap {padding-top:60%;}
    .area-ourMission .box .title {height:auto;}
}
@media screen and (max-width:768px){
    .area-ourMission .box-wrap {width:100%;}
    .area-ourMission .m-ratioBox-wrap {padding-top:30%;}
    .area-ourMission .box .title {margin-bottom:20px; font-size:16px;}
    .area-ourMission .body {font-size:14px;}
    .area-ourMission .m-title.type01 {font-size:16px; }
    .area-ourMission .m-title.type01 br {display:none;}
    .area-ourMission .m-title.type01 * {font-size:16px; word-break: keep-all;}
    .area-ourMission .wrap > img {width:200px;}
}

.area-apCourses .box-top {position:relative;}
.area-apCourses .box-top .m-form {width:680px; position:absolute; right:60px; top:60px; background-color:#fff;}
.area-apCourses .box-top .box-img {overflow:hidden;}
.area-apCourses .m-btn.type02 {width:300px;}
.area-apCourses .m-section.type01.mt-100 {margin-top:280px;}

.area-enrollNow .box-top .m-form {margin-top:-750px; margin-left:auto; position:relative; background-color:#fff; z-index:1;}
@media screen and (max-width:1000px){}
@media screen and (max-width:768px){
    .area-apCourses .box-top .box-img {display:none;}
    .area-apCourses .box-top .m-form {width:100%;  margin: 0 auto; padding:0px; position:relative; top:auto; right:auto;
        box-shadow:none;
    }
    .area-apCourses .m-section.type01.mt-100 {margin-top:40px;}
}

.area-whartonSchoolGraduation .m-title.type01 {font-size:16px; font-weight:400;}
.area-whartonSchoolGraduation .logos {
    display: flex; gap:12px;
    margin-bottom:24px; justify-content: center;
}
.area-whartonSchoolGraduation .logo-wrap {

}
.area-whartonSchoolGraduation .logo .logo {
    border:1px solid #e1e1e1;
}
.area-applyNow .title {text-align: left !important;}
.area-applyNow .m-input-checkbox {
    margin-top:60px;
}
.area-applyNow .m-input-checkbox label {
    display: flex; align-items: center;
    color:#fff;
}
.area-qna .m-section.type01 .section-title {width:64px; position:relative; top:-12px; font-size:40px; font-weight:500; color:#9D1E2F;}

.area-dualEnrollment {}
.area-dualEnrollment .boxes {display:flex; flex-wrap:wrap; margin:-20px;}
.area-dualEnrollment .box-wrap {width:50%; padding:20px;}
.area-dualEnrollment .box {height:100%; padding:40px 30px; border:1px solid #e1e1e1;}
.area-dualEnrollment .box img {display:block; max-width:100%; margin:0 auto; margin-bottom:20px;}
.area-dualEnrollment .box .title {margin-bottom:10px; font-size:20px; font-weight:500; text-align: center;}
.area-dualEnrollment .box .body {margin-bottom:20px; font-size:14px; color:#999999;}
.area-dualEnrollment .box .body:last-of-type {margin-bottom:0;}
.area-dualEnrollment .box .body .primary {font-size:14px;}

@media screen and (max-width:1000px) {
    .area-dualEnrollment .box-wrap {width: 100%;}
    .area-dualEnrollment .box .title {font-size:18px; font-weight:600;}
    .area-dualEnrollment .box .body {margin-bottom:10px;}
}

.area-login .wrap {display:flex;}
.area-login .box-login {display:flex; align-items:center; flex:auto; padding:0 80px; border:1px solid #e1e1e1; border-left:none;}
.area-login .box-login .content {width:100%;}
.area-login .box-login .content .title {margin-bottom:40px; font-size:40px; font-weight:500;}
.area-login .box-login .content .m-btn.type01 {margin-bottom:20px;}
.area-login .box-login .content .links {text-align: right;}
.area-login .box-login .content .link {position:relative; color:#9D1E2F;}
.area-login .box-login .content .link:before {content:""; width:100%; max-width:0; height:1px;
    position:absolute; bottom:0; left:0; background-color:#9D1E2F;
    transition: all .6s cubic-bezier(0.120, 0.870, 0.295, 0.930);
}
.area-login .box-login .content .link:hover:before {max-width:100%;}

@media screen and (max-width:1000px) {
    .area-login img {width:320px;}
    .area-login .box-login {padding:40px;}
    .area-login .box-login .content .title {margin-bottom:20px; font-size:24px;}
}
@media screen and (max-width:768px) {
    .area-login img {display:none;}
    .area-login .box-login {padding:0; border:none;}
}

.area-tuition .body {color:#555555;}

@media screen and (max-width:768px) {
    .area-tuition .m-title.type01 {font-size:18px;}
    .area-tuition .m-title.type01 br {display:none;}
    .area-tuition .body {word-break: keep-all;}
    .area-tuition .body br {display:none;}
}

.area-whartonSchool .section01 {display:flex; align-items:center; height:100vh; position:relative; overflow:hidden;}
.area-whartonSchool .section01 .m-form {background-color:#fff;}
.area-whartonSchool .section01 .visual {height:100%; position:absolute; top:0; left:50%; transform:translateX(-50%);}
.area-whartonSchool .section01 .icon {animation:upAndDown 1s infinite; position:absolute; bottom:40px; left:50%; transform:translateX(-50%); z-index:2; opacity:0.8;}
.area-whartonSchool .section01 .wrap {display:flex; align-items: center; position:relative; z-index:1;}
.area-whartonSchool .section01 .box-text {margin-right:60px;}
.area-whartonSchool .section01 .box-text .title {margin-bottom:20px; font-size:80px; font-weight:600; line-height:90px; color:#fff;}
.area-whartonSchool .section01 .box-text .body {font-size:40px; font-weight:300; color:#fff;}
.area-whartonSchool .section01 .m-form {padding:80px 60px;}
.area-whartonSchool .section01 .m-form .title {font-size:40px; text-align: left;}
.area-whartonSchool .section01.already .m-form {display:none;}
.area-whartonSchool .section01.already .wrap {justify-content: center;}
.area-whartonSchool .section01.already .box-text {margin-right:0; text-align: center;}
@keyframes upAndDown {
    0% {
        opacity:.8;
    }
    25% {
        opacity:.4;
    }
    50% {
        opacity:.8;
    }
    75% {
        opacity:.4;
    }
    100% {
        opacity:.8;
    }
}

.area-whartonSchool .section02 {padding:100px 0;}
.area-whartonSchool .section02 .title {margin-bottom:40px; font-size:60px; line-height:70px; font-weight:600; word-break: keep-all;}
.area-whartonSchool .section02 .body {margin-bottom:20px; font-size:24px; font-weight:300; word-break: keep-all;}

@media screen and (max-width:1000px) {
    .area-whartonSchool .section01 .wrap {flex-wrap:wrap;}
    .area-whartonSchool .section01 .box-text {width:100%; margin-right:0; text-align: center;}
    .area-whartonSchool .section01 .box-text .title {font-size:40px; line-height: 50px;}
    .area-whartonSchool .section01 .box-text .body {font-size:20px; word-break: keep-all;}
    .area-whartonSchool .section01 .m-form {margin:0 auto; margin-top:40px;padding:40px;}
    .area-whartonSchool .section01 .m-form .title {font-size:24px;}
    .area-whartonSchool .section02 {padding:40px 0;}
    .area-whartonSchool .section02 .title br {display:none;}
    .area-whartonSchool .section02 .body br {display:none;}
    .area-whartonSchool .section02 .title {margin-bottom:20px; font-size:24px; line-height: normal;}
    .area-whartonSchool .section02 .body {font-size:16px;}
}

@media screen and (max-width:768px) {
    .area-whartonSchool .section01 .m-form {width:300px; position:absolute; top:35%; left:50%; transform:translate(-50%, -50%);}

}

.area-documents .downloads {display:flex; flex-wrap:wrap; margin:-10px;}
.area-documents .download-wrap {width:50%; padding:10px;}
.area-documents .download {display:block; padding:16px 20px; margin-top:8px; border:1px solid #e1e1e1;}
.area-documents .download:first-of-type {margin-top:0;}
.area-documents .download img {margin-right:16px;}

.area-onlineEsl {}

.area-ccsd img {display:block; margin:0 auto; margin-bottom:40px; max-width:100%;}
.area-ccsd .bodies {}
.area-ccsd .body-wrap {}
.area-ccsd .body {margin-bottom:20px; height:100%; padding:40px; border:1px solid #e1e1e1; font-size:16px; text-align: left; word-break: keep-all;}

@media screen and (max-width:768px) {
    .area-ccsd img {width:200px; margin-bottom:20px;}
    .area-ccsd .body {padding:20px;}
}

.area-apCourses .courses-wrap {margin-bottom:40px;}
.area-apCourses .courses-wrap .title {margin-bottom:20px; font-size:20px; font-weight:500; color:#9D1E2F;}
.area-apCourses .courses {display:flex; flex-wrap:wrap; margin:-8px; }
.area-apCourses .courses:last-of-type {margin-bottom:0;}
.area-apCourses .course-wrap {width:50%; padding:8px;}
.area-apCourses .course {display:block; padding:15px; font-size:18px;  border:1px solid #e1e1e1; text-align: center;
    transition:all .3s;
}
.area-apCourses .course:hover {background-color:#9D1E2F; color:#fff;}

.area-courses .boxes {display:flex; margin:-10px; margin-bottom:40px;}
.area-courses .box-wrap {width:33.33%; padding:10px;}
.area-courses .box-wrap .box {min-height:375px; padding:40px; height:100%;}
.area-courses .box-wrap .box .title {margin-bottom:10px; font-size:20px; font-weight:600;}
.area-courses .box-wrap .box .body {font-size:14px; color:#777; word-break: keep-all;}
.area-courses .box-wrap .box a {display:inline-block; margin-bottom:10px; text-decoration: underline;}
.area-courses .box-wrap:nth-child(1) .box {display:flex; align-items:center; justify-content:center; background-color:#9D1E2F;}
.area-courses .box-wrap:nth-child(1) .box .content {text-align: center;}
.area-courses .box-wrap:nth-child(1) .box .content .count {font-size:60px; font-weight:600;}
.area-courses .box-wrap:nth-child(1) .box .content .count * {display:inline-block; margin-right:8px; font-size:60px; font-weight:600;}
.area-courses .box-wrap:nth-child(1) .box * {color:#fff;}
.area-courses .box-wrap:nth-child(2) .box {background-color:#dbaf47;}
.area-courses .box-wrap:nth-child(2) .box * {color:#fff;}
.area-courses .box-wrap:nth-child(3) .box {background-color:#fff; border:1px solid #e1e1e1;}

@media screen and (max-width:1000px){
    .area-courses .boxes {flex-wrap:wrap;}
    .area-courses .boxes .box-wrap {width:100%;}
    .area-courses .boxes .box-wrap .box {min-height:auto; padding:20px;}
    .area-courses .box-wrap:nth-child(1) .box .content .count {font-size:40px;}
}

.area-admissions .box-video {padding:50px 260px; /*background:url("../img/base-admission.jpg") no-repeat; background-size:cover;*/}
.area-admissions .m-ratioBox-wrap {padding-top:72%; border:none;}
.area-admissions .m-ratioBox-wrap .m-ratioBox:after {display:none;}
.area-admissions .m-ratioBox-wrap video {width:100%; }
.area-admissions .box-img .btn {width:80px; z-index:2; cursor:pointer; box-shadow:0px 3px 6px rgba(0,0,0,0.16); transition:all .3s; border-radius:100%; opacity:0.7;}
.area-admissions .box-img .btn:hover {box-shadow:4px 8px 8px rgba(0,0,0,0.16); transform:translate(-54%, -54%); opacity:1;}
.area-admissions .box-img .thumbnail {z-index:1;}
.area-admissions .m-before-hyphen {
    color:#000 !important;
}
@media screen and (max-width:1000px){
    .area-admissions  .m-ratioBox-wrap {border:1px solid #e1e1e1;}
    .area-admissions .box-video {padding:0; background:none;}
}

.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5, .markdown h6 {
    font-weight: 600;
    margin-bottom: 20px
}

.markdown h1 {
    font-size: 1.5rem;
}

.markdown h2 {
    font-size: 1.25rem;
    font-weight: 400
}

.markdown h3, .markdown h4, .markdown h5, .markdown h6 {
    font-size: 1.125rem
}

.markdown p {
    font-size: 1rem;
    color: var(--90);
    line-height: 1.5;
    margin-bottom: 1.5rem
}

.markdown blockquote {
    background-color: #f5f5f5;
    padding: 5px 15px;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 1rem
}

.markdown blockquote > p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 1rem
}

.markdown blockquote p code {
    background-color: #e5e5e5
}

.markdown ol, .markdown ul {
    margin: 20px 0
}

.markdown ul {
    list-style: disc inside
}

.markdown ol {
    list-style: decimal inside
}

.markdown li {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    list-style: disc;
}

.markdown a {
}

.markdown table {
    width: 100%;
    margin-bottom: 1.5rem
}

.markdown table thead th {
    text-align: left;
    font-size: 1rem;
    border-bottom-width: 1px;
    padding-top: .25rem;
    padding-bottom: .25rem
}

.markdown table tbody td {
    text-align: left;
    font-size: 1rem;
    border-bottom-width: 1px;
    border-color: var(--50);
    padding-top: .5rem;
    padding-bottom: .5rem
}

.markdown pre {
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: auto;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 4px;
    padding: 1rem
}

.markdown pre > code {
    background-color: transparent;
    color: #555;
    line-height: 1.5;
    word-break: normal;
    word-spacing: normal;
    white-space: pre;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    direction: ltr;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    padding: 0 1rem
}

.markdown code, .markdown pre > code {
    font-family: Menlo, monospace, fixed;
    font-size: 14px
}

.markdown code {
    background-color: rgba(0, 0, 0, .05);
    padding: .3rem .5rem;
    border-radius: 3px
}

.markdown-preview {
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
    font-size: .875rem !important
}

.markdown-preview h1, .markdown-preview h2, .markdown-preview h3, .markdown-preview h4, .markdown-preview h5, .markdown-preview h6 {
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: .875rem;
    margin-bottom: .75rem
}

.markdown-preview p {
    margin-bottom: 1rem;
    line-height: 1.5
}

.markdown-preview blockquote {
    margin-bottom: 1rem
}

.markdown-preview blockquote > p {
    margin-top: 10px;
    margin-bottom: 1rem
}

.markdown-preview ol, .markdown-preview ul {
    margin: 20px 0
}

.markdown-preview ul {
    list-style: disc inside
}

.markdown-preview ol {
    list-style: decimal inside
}

.markdown-preview pre {
    margin-top: 20px;
    margin-bottom: 20px
}
.ql-align-center {text-align: center;}
.ql-align-right {text-align: right;}

.area-onlineEsl .box-comment {margin-top:40px;padding:40px; font-size:18px; font-weight:500; text-align: center; word-break: keep-all; border:1px solid #e1e1e1; background-color:#FDFBFA; color:#9D1E2F;}

@media screen and (max-width:768px) {
    .area-onlineEsl .box-comment {padding:20px; font-size:14px; text-align: left;}
    .area-onlineEsl .box-comment br {display:none;}
}

.area-calendar .labels {display:flex; align-content: center; justify-content: flex-start; flex-wrap:wrap; margin-bottom:20px;}
.area-calendar .label {display:flex; margin:8px;}
.area-calendar .label .color {flex:0 0 auto; width:8px; height:8px; position:Relative; top:6px; content:""; border-radius:100%;}
.area-calendar .label .title {margin-left:8px; font-size:14px;}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {padding:5px 10px; color:#fff;}
.fc-h-event {border:none; background-color:#9d1e2f; border-top:4px solid white;}
.fc-icon-chevron-left:before {color:#fff;}
.fc-icon-chevron-right:before {color:#fff;}
.fc-event-time {display:none;}
.fc-daygrid-dot-event .fc-event-title {overflow:visible; white-space: pre-line; font-size:14px;}

@media screen and (max-width:768px) {
    .area-calendar .label .title {margin-left:8px; font-size:12px;}
    .fc-daygrid-dot-event {justify-content: center;}
    .fc-event-title {display:none;}
    .fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start {margin-top:8px;}
    .fc .fc-toolbar-title {font-size:1.4em;}
    .fc-event-title {font-size:14px;}
    .fc .fc-daygrid-day-number {font-size:14px;}
    .fc .fc-col-header-cell-cushion {font-size:14px;}
}


.area-company {padding-top:100px; padding-bottom:100px; text-align:center; background:url("../img/base-company.jpg") no-repeat; background-size:cover; background-position:center;}
.area-company img {display:block; margin:0 auto; margin-bottom:20px;}
.area-company .body {margin-bottom:40px; font-size:20px; color:#fff;}
.area-company .body:last-of-type {margin-bottom:0;}

@media screen and (max-width:1200px) {
    .area-company .body {word-break: keep-all;}
    .area-company .body br {display:none;}
}
@media screen and (max-width:768px) {
    .area-company img {max-width:100%;}
    .area-company .body {margin-bottom:20px; font-size:16px;}
}

.area-summerCamp {}
.area-summerCamp .box-title {margin-bottom:40px;}
.area-summerCamp .box-title .body {font-size:40px; font-weight:500; color:#9D1E2F;}
.area-summerCamp .box-title .title {font-size:60px; font-weight:800; color:#9D1E2F;}
.area-summerCamp .thumbnail {display:block; margin-left:auto;}
.area-summerCamp .box-comment {width:1020px; margin-top:-110px; padding:60px; position:relative; z-index:1; background-color:rgba(157,30,47,0.95);}
.area-summerCamp .box-comment * {font-size:18px; font-weight:400; color:#fff !important;}
.area-summerCamp .box-comment .title {margin-bottom:4px; font-weight:600;}
.area-summerCamp .box-comment .bodies {margin-bottom:30px;}
.area-summerCamp .box-comment .bodies:last-of-type {margin-bottom:0;}
.area-summerCamp .box-comment .body {margin-bottom:30px;}
.area-summerCamp .box-comment .body:last-of-type {margin-bottom:0;}
.area-summerCamp .box-comment .m-before-hyphen:before {top:15px;}
.area-summerCamp .m {display:none;}
@media screen and (max-width:1200px) {
    .area-summerCamp .box-title .title {font-size:40px;}
    .area-summerCamp .box-title .body {font-size:20px;}
    .area-summerCamp .thumbnail {max-width:80%;}
    .area-summerCamp .box-comment {max-width:90%;}
    .area-summerCamp .box-comment br {display:none;}
    .area-summerCamp .box-comment * {word-break: keep-all;}
}
@media screen and (max-width:768px) {
    .area-summerCamp .m {display:block;}
    .area-summerCamp .box-title {margin-bottom:20px; text-align: center;}
    .area-summerCamp .box-title .title {font-size:24px;}
    .area-summerCamp .box-title .body {font-size:16px;}
    .area-summerCamp .thumbnail {max-width:100%;}
    .area-summerCamp .box-comment * {font-size:14px;}
    .area-summerCamp .box-comment {max-width:100%; width:100%; margin-top:20px; padding:40px;}
    .area-summerCamp .box-comment .body {margin-bottom:20px;}
    .area-summerCamp .box-comment .bodies {margin-bottom:20px;}
}

.area-summerProgram {}
.area-summerProgram .box-top {margin-bottom:40px; text-align: center;}
.area-summerProgram .box-top img {width:200px; margin-bottom:40px;}
.area-summerProgram .box-top .body {font-size:18px; font-weight:bold; color:#9D1E2F; word-break: keep-all;}
.area-summerProgram .box-prices-wrap {padding:80px 160px; border:1px solid #e1e1e1;}
.area-summerProgram .box-prices {display:flex; margin:0 -20px;}
.area-summerProgram .box-price {width:50%; margin:0 20px;}
.area-summerProgram .box-price .title {font-size:20px; font-weight:bold; text-align: center;}
.area-summerProgram .box-price .title * {font-size:20px; font-weight:bold;}
.area-summerProgram .box-price .body {width:100%; margin-top:20px; margin-bottom:20px; font-weight:bold; font-size:24px; text-align: center; padding:14px; background-color:#999999; color:#fff;}
.area-summerProgram .box-prices-wrap .comment {font-weight:500; text-align: center;}

@media screen and (max-width:1000px) {
    .area-summerProgram .box-top img {margin-bottom:20px;}
    .area-summerProgram .box-top .body {font-size:14px;}
    .area-summerProgram .box-top .body br {display:none;}
    .area-summerProgram .box-prices-wrap {padding:40px 20px;}
    .area-summerProgram .box-prices {flex-wrap:wrap;}
    .area-summerProgram .box-price {width:100%; margin-top:20px; padding-top:20px; border-top:1px solid #e1e1e1;}
    .area-summerProgram .box-price:first-of-type {padding-top:0; margin-top:0; border-top:none;}
    .area-summerProgram .box-price .body {font-size:18px;}
    .area-summerProgram .box-price .title {font-size:18px;}
    .area-summerProgram .box-price .title * {font-size:18px; word-break: keep-all;}
    .area-summerProgram .box-prices-wrap .comment {font-size:14px; word-break: keep-all;}
}
@media screen and (max-width:768px) {

}

.area-emergency .m-box-img.type01:after {
    content:""; width:100%; height:100%;
    position:absolute; left:0; top:0;
    background-color:rgba(0,0,0,0.3);
}
.area-emergency .m-box-img.type01 img {
    height:auto; width:100%;
    position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);
}
.area-emergency .box-comment {
    margin-top: 40px;
    padding: 40px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
    border: 1px solid #e1e1e1;
    background-color: #FDFBFA;

}
.area-emergency .box-comment .m-title {
    color: #9D1E2F;
}
.area-emergency .box-comment .body:first-of-type {
    margin-top:0;
}
.area-emergency .box-comment .body {
    margin-top:20px;
    text-align: left;
}
.area-emergency .m-box-img.type01 .title {

}

.area-emergency .m-section.type01 .section-title .point {
    margin-bottom:8px;
    font-size: 24px;
    font-weight: bold;
    word-break: keep-all;
}
.area-emergency .m-section.type01 .section-title {
    width:400px;
    font-size:16px;
}
.area-emergency .m-section.type01 .section-body .m-title.type01 {
    font-size:16px;
}

.area-emergency .m-table.type01 td {
    padding:8px; word-break: keep-all;
    white-space: pre-line;
    font-size:14px;
}
.area-emergency .m-table.type01 th {
    padding:8px; word-break: keep-all;
}
@media screen and (max-width:768px) {
    .area-emergency .m-box-img.type01 img {
        width:auto; height:100%;
    }
    .area-emergency .m-section.type01 .section-title {
        width:100%;
    }
    .area-emergency .m-table-wrap {
        max-width:calc(100vw - 40px);
        white-space: nowrap;
    }
    .area-emergency .m-table-wrap * {
        white-space: nowrap;
    }
}

.area-whartonSurvey {}
.area-whartonSurvey .visual {
    position:relative;
}
.area-whartonSurvey .visual img {
    max-width:100%;
}
.area-whartonSurvey .visual .content {
    padding-left:140px;
    position:absolute; top:48%; left:0; transform:translateY(-50%);
}
.area-whartonSurvey .visual .content .title {
    font-size:60px; font-weight:bold; color:#fff;
}
.area-whartonSurvey .visual .content .body {
    font-size:20px; color:#fff; opacity:0.7;
}
.area-whartonSurvey .links-wrap {
    padding-top:40px; margin-top:60px;
    border-top:1px solid #e1e1e1;
}
.area-whartonSurvey .links-wrap > .title {
    margin-bottom:30px;
    font-size:30px; font-weight:bold; text-align: center;
}
.area-whartonSurvey .links-wrap .links {
    display:flex; flex-wrap:wrap;
    margin:-10px;
}
.area-whartonSurvey .links-wrap .link-wrap {
    width:33.33%;
    padding:10px;
}
.area-whartonSurvey .link {
    display:block;
    position:relative;
}
.area-whartonSurvey .link img {
    width:100%;
}
.area-whartonSurvey .link .title {
    position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);
    font-size:24px; font-weight:bold; color:#fff;
}

@media screen and (max-width:768px) {
    .area-whartonSurvey .visual img {
        display:block;
    }
    .area-whartonSurvey .visual:after {
        content:"";
        width:100%; height:100%;
        position:absolute; top:0; left:0;
        background-color:rgba(0,0,0,0.3);
        border-radius:12px;
    }
    .area-whartonSurvey .visual .content {
        width:100%;
        padding:40px;
        left:50%; transform:translate(-50%, -50%);
        text-align: center;
        z-index:2;
    }
    .area-whartonSurvey .visual .content .title {
        margin-bottom:10px;
        font-size:24px;
    }
    .area-whartonSurvey .visual .content .body {
        font-size:14px;
    }
    .area-whartonSurvey .links-wrap > .title {
        font-size:24px;
    }
    .area-whartonSurvey .links-wrap .link-wrap {
        width:100%;
    }
    .area-whartonSurvey .link .title {
        width:100%;
        text-align: center;
    }
}

.area-collegeCounselling .m-box-img.type01 {
    height:auto;
    padding:80px 0;
}
.area-collegeCounselling .m-box-img.type01 .box-text .title {
    margin-bottom:24px;
    font-size:28px; line-height:40px;
}
.area-collegeCounselling .m-box-img.type01 .box-text .body {
    margin:0 80px;
    font-size:18px; line-height:32px; word-break: keep-all;
}
.area-collegeCounselling .m-box-img.type01 .box-text span {
    display: inline-block;
    margin-top:16px;
}

.area-collegeCounselling .fragment {height:100%;}
.area-collegeCounselling .fragments {display:flex; flex-wrap:wrap; margin:-10px; margin-bottom:40px; margin-top:40px;}
.area-collegeCounselling .fragments .box-img {
    content:""; width:100%; height:100%;
    background-size:cover; background-position:center;
    position:relative; overflow:hidden; border:1px solid #e1e1e1;
}
.area-collegeCounselling .fragments .box-img img {width:auto; height:74%; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);}
.area-collegeCounselling .fragment-wrap {width:50%; padding:10px;}
.area-collegeCounselling .fragment-wrap:first-of-type {width:474px;}
.area-collegeCounselling .fragment-wrap:last-of-type {flex:auto;}
.area-collegeCounselling .fragment .content {padding:40px; background-color:#9D1E2F;}
.area-collegeCounselling .fragment .content * {color:#fff;}
.area-collegeCounselling .fragment .greet {margin-bottom:20px; font-size:20px; font-weight:600;}
.area-collegeCounselling .fragment .body {margin-bottom:20px; font-weight:300; word-break: keep-all;}
.area-collegeCounselling .fragment .sign {font-weight:600; text-align: right;}
.area-collegeCounselling .m-section.type01 .section-title {
    width:400px;
    font-size:20px;
}

.m-toggle.type01 {}
.m-toggle.type01 .m-toggle-head {
    display: flex; align-items: center; gap:12px;
    padding:16px 24px;
    background-color:#14284b;
    cursor:pointer;
}
.m-toggle.type01 .m-toggle-head * {
    color:#fff;
}
.m-toggle.type01 .m-toggle-body {
    display: none;
    padding:20px 0;
}
.m-toggle.type01 .m-toggle-body * {
    word-break: keep-all;
}

.area-collegeCounselling .m-toggle-body .body {
    margin-bottom:20px;
}
.area-collegeCounselling .m-toggle-body  .items {
    display:flex; flex-wrap:wrap;
}
.area-collegeCounselling .m-toggle-body .items .item {
    width:50%;
    padding:4px; font-weight:500;
}
.area-collegeCounselling .m-toggle-body .items .item {padding-left:16px; position:relative;}
.area-collegeCounselling .m-toggle-body .items .item:before {content:""; width:3px; height:3px;
    position:absolute; left:0; top:15px;
    background-color:#14284b;
}
.area-collegeCounselling .m-toggle-head.active i {
    transform:rotate(180deg);
}
.area-collegeCounselling .m-toggle-head.active + .m-toggle-body {
    display: block;
}

@media screen and (max-width:1000px){
    .area-collegeCounselling .fragment-wrap:first-of-type {
        width:100%;
        margin-top:6px;
    }
    .area-collegeCounselling .fragment-wrap:first-of-type .box-img {
        height:250px;
    }
    .area-collegeCounselling .m-box-img.type01 {
        padding:40px 0;
    }

    .area-collegeCounselling .m-box-img.type01 .box-text .title {
        padding:0 20px;
        font-size:20px; line-height:32px;
    }

    .area-collegeCounselling .m-box-img.type01 .box-text .title br {
        display: none;
    }
    .area-collegeCounselling .m-box-img.type01 .box-text .body {
        margin:0 20px;
        font-size:14px;
    }
    .area-collegeCounselling .m-box-img.type01 .box-text span {
        word-break: keep-all;
    }
    .area-collegeCounselling .m-toggle-body .items .item {
        width: 100%;
    }
}

@media screen and (max-width:768px){

    .area-collegeCounselling .fragments {flex-wrap:wrap; margin:-5px; margin-bottom:20px;}
    .area-collegeCounselling .fragment-wrap {width:100% !important; padding:5px;}
    .area-collegeCounselling .fragments .box-img img {width:100%; height:auto; position:static; transform:none;}
    .area-collegeCounselling .fragment .content {padding:20px;}
    .area-collegeCounselling .fragment .greet {font-size:18px; margin-bottom:10px;}
    .area-collegeCounselling .fragment .body {margin-bottom:10px; font-size:14px;}
}


/* 설문조사 =========================== */
/* 설문조사 상단 */
.area-applyNow .applyNow-top { background-color: #9d1e2f; padding: 80px 0; }
.area-applyNow .applyNow-top .flex-wrap { display: flex; justify-content: space-between; }

.area-applyNow .applyNow-top .top-txt { color: #fff; font-size: 56px; margin-bottom: 24px; }
.area-applyNow .applyNow-top .bt-txt { color: #fff; font-size: 24px; }
.area-applyNow .applyNow-top .img-wrap { max-width: 100%; width: 320px; }
.area-applyNow .applyNow-top .img-wrap img { width: 100%; }

@media screen and (max-width:1000px) {
    .area-applyNow .applyNow-top { padding: 40px 0; }
    .area-applyNow .applyNow-top .img-wrap { width: 120px; }
    .area-applyNow .applyNow-top .flex-wrap { flex-direction: column-reverse; }
    .area-applyNow .applyNow-top .top-txt { font-size: 32px; }
    .area-applyNow .applyNow-top .bt-txt { font-size: 14px; }
}

.applyNow-list-wrap { display: flex; gap: 32px 20px; flex-wrap: wrap; padding: 40px 0; border-bottom: 2px solid #000; }
.applyNow-list-wrap .applyNow-list-wrap-title { font-size: 32PX; font-weight: bold; }
.applyNow-list-wrap .gap-dashed { border-bottom: 4px dashed #f4f4f4; display: block; width: 100%; }

.applyNow-item-wrap { width: 100%; display: block; }
.applyNow-item-wrap.wd-50 { width: calc((100% - 20px) / 2); }

.applyNow-item-wrap .label-txt { font-size: 20px; font-weight: bold; width: 100%; margin-bottom: 16px; display: flex; gap: 4px; }
.applyNow-item-wrap .label-txt span.num { font-size: unset; font-weight: unset; min-width: fit-content; }
.applyNow-item-wrap .label-txt p { font-size: unset; font-weight: unset; }
.applyNow-item-wrap .label-txt p span { font-size: unset; font-weight: normal; }

.input-list-wrap { display: flex; gap: 20px; flex-wrap: wrap; }
.input-item-type1 { width: 100%; height: 56px; background-color: #f4f4f4; border-radius: 8px; outline: none; padding: 0 20px; }
.input-item-type1.wd-33 { width: calc((100% - 40px) / 3); }
.input-item-type1.wd-50 { width: calc((100% - 20px) / 2); }
.input-item-type1.wd-66 { width: calc(100% - ((100% - 40px) / 3) - 20px); }

.input-radio-list-wrap { display: flex; gap: 20px; }
.radio-box-type1 { width: 100%; display: flex; height: 56px; }
.radio-box-type1 input { display: none; }
.radio-box-type1 label { width: 100%; height: 100%; border: 2px solid #f4f4f4; cursor: pointer; display: flex; justify-content: center; align-items: center; border-radius: 8px; font-weight: 500; color: #00000066; }
.radio-box-type1 input:checked ~ label { background-color: #9D1E2F14; color: #9D1E2F; border: 2px solid #9D1E2F; }


.date-input-wrap { width: 100%; display: flex; border-radius: 8px; background-color: #f4f4f4; }
.date-input-wrap > input { background-color: transparent; }

.applyNow-policys-wrap { margin-top: 40px; background-color: #9d1e2f; padding: 40px 0 80px; }
.applyNow-policys-wrap .applyNow-policys-wrap-title { font-size: 48px; color: #fff; margin-bottom: 20px; }
.applyNow-policys-wrap .policys-list { display: flex; gap: 16px; flex-direction: column; margin-bottom: 40px; }
.applyNow-policys-wrap .policys-list li { display: flex; gap: 16px; }
.applyNow-policys-wrap .policys-list li * { color: #fff; font-size: unset; }
.applyNow-policys-wrap .input-list-wrap { margin-bottom: 40px; }
.applyNow-policys-wrap .txt-wrap p { color: #fff; margin-bottom: 14px; word-break: keep-all; }
.applyNow-policys-wrap .txt-wrap p span { color: #fff; font-weight: bold; font-size: unset; }

.area-applyNow .applyNow-btn-wrap { display: flex; margin-top: 40px; justify-content: center; }
.area-applyNow .applyNow-btn-wrap .applyNow-btn { width: 240px; height: 56px; max-width: 100%; background-color: #fff; border-radius: 8px; font-weight: bold; color: #9d1e2f; }


@media screen and (max-width:1000px) {
    .applyNow-list-wrap { gap: 16px; }
    .applyNow-item-wrap { width: 100% !important; }
    .input-list-wrap { gap: 8px; }
    .input-item-type1 { width: 100% !important; font-size: 14px; height: 40px; border-radius: 4px; padding: 0 16px; }

    .applyNow-item-wrap .label-txt { font-size: 14px; margin-bottom: 8px; }

    .input-radio-list-wrap { gap: 8px; }
    .radio-box-type1 { height: 40px; }
    .radio-box-type1 label { border-radius: 4px; font-size: 12px; }

    .applyNow-list-wrap .applyNow-list-wrap-title { font-size: 20px; }

    .applyNow-policys-wrap .applyNow-policys-wrap-title { font-size: 20px; }
    .applyNow-policys-wrap .policys-list { gap: 8px; }
    .applyNow-policys-wrap .policys-list li { font-size: 12px; gap: 4px; }
    .applyNow-policys-wrap .txt-wrap p { font-size: 14px; }

    .area-applyNow .applyNow-btn-wrap { margin-top: 40px; }
}



/* 설문조사 =========================== 디자이너 버전 */
/* 설문조사 상단 */
/* .applyNow-container { width: 1640px; max-width: 100%; margin: 0 auto; padding: 0 20px; }
.area-applyNow .applyNow-top { background-color: #9d1e2f; padding: 107px 0; }
.area-applyNow .applyNow-top .flex-wrap { display: flex; justify-content: space-between; }

.area-applyNow .applyNow-top .top-txt { color: #fff; font-size: 80px; margin-bottom: 21px; font-weight: 700; word-break: keep-all; }
.area-applyNow .applyNow-top .bt-txt { color: #fff; font-size: 24px; font-weight: 500; }
.area-applyNow .applyNow-top .img-wrap { max-width: 100%; width: 338px; }
.area-applyNow .applyNow-top .img-wrap img { width: 100%; }

@media screen and (max-width:1000px) {
    .area-applyNow .applyNow-top { padding: 40px 0; }
    .area-applyNow .applyNow-top .img-wrap { width: 120px; }
    .area-applyNow .applyNow-top .flex-wrap { flex-direction: column-reverse; }
    .area-applyNow .applyNow-top .top-txt { font-size: 32px; }
    .area-applyNow .applyNow-top .bt-txt { font-size: 16px; }
}

.applyNow-list-wrap { display: flex; gap: 66px 20px; flex-wrap: wrap; padding: 40px 0; border-bottom: 2px solid #000; }
.applyNow-list-wrap .applyNow-list-wrap-title { font-size: 32PX; font-weight: bold; }
.applyNow-list-wrap .gap-dashed { border-bottom: 2px dashed #707070; display: block; width: 100%; }

.applyNow-item-wrap { width: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.applyNow-item-wrap.wd-50 { width: calc((100% - 20px) / 2); }

.applyNow-item-wrap .label-txt { font-size: 32px; font-weight: bold; width: 100%; margin-bottom: 16px; display: flex; gap: 16px; }
.applyNow-item-wrap .label-txt span.num { font-size: unset; font-weight: unset; }
.applyNow-item-wrap .label-txt p { font-size: unset; font-weight: unset; word-break: keep-all; }
.applyNow-item-wrap .label-txt p span { font-weight: normal; font-size: unset; }

.input-list-wrap { display: flex; gap: 20px; flex-wrap: wrap; }
.input-item-type1 { width: 100%; height: 100px; background-color: #F7F7F7; font-size: 32px; border-radius: 8px; outline: none; padding: 0 40px; font-weight: 500; }
.input-item-type1.wd-33 { width: calc((100% - 40px) / 3); }
.input-item-type1.wd-50 { width: calc((100% - 20px) / 2); }
.input-item-type1.wd-66 { width: calc(100% - ((100% - 40px) / 3) - 20px); }

.input-radio-list-wrap { display: flex; gap: 24px; }
.radio-box-type1 { width: 100%; display: flex; height: 100px; }
.radio-box-type1 input { display: none; }
.radio-box-type1 label { width: 100%; height: 100%; border: 2px solid #E4E4E4; cursor: pointer; display: flex; justify-content: center; align-items: center; border-radius: 8px; font-size: 32px; font-weight: 500; color: #00000066; }
.radio-box-type1 input:checked ~ label { background-color: #9D1E2F14; color: #9D1E2F; border: 2px solid #9D1E2F; }


.date-input-wrap { width: 100%; display: flex; border-radius: 8px; background-color: #f4f4f4; }
.date-input-wrap > input { background-color: transparent; }

.applyNow-policys-wrap { margin-top: 40px; background-color: #9d1e2f; padding: 40px 0 80px; }
.applyNow-policys-wrap .applyNow-policys-wrap-title { font-size: 48px; color: #fff; margin-bottom: 20px; }
.applyNow-policys-wrap .policys-list { display: flex; gap: 16px; flex-direction: column; margin-bottom: 40px; }
.applyNow-policys-wrap .policys-list li { display: flex; gap: 16px; font-size: 32px; font-weight: 400; }
.applyNow-policys-wrap .policys-list li * { color: #fff; font-size: unset; word-break: keep-all; }
.applyNow-policys-wrap .input-list-wrap { margin-bottom: 40px; }
.applyNow-policys-wrap .txt-wrap p { color: #fff; margin-bottom: 14px; word-break: keep-all; font-size: 32px; font-weight: 400; }
.applyNow-policys-wrap .txt-wrap p span { color: #fff; font-weight: 700; font-size: unset; }
.applyNow-policys-wrap .txt-wrap p.sm { font-weight: 400; font-size: 26px; }

@media screen and (max-width:1000px) {
    .applyNow-list-wrap { gap: 16px; }
    .applyNow-item-wrap { width: 100% !important; }
    .input-list-wrap { gap: 8px; }
    .input-item-type1 { width: 100% !important; font-size: 14px; height: 40px; border-radius: 4px; }

    .applyNow-item-wrap .label-txt { font-size: 16px; margin-bottom: 8px; }

    .input-radio-list-wrap { gap: 8px; }
    .radio-box-type1 { height: 40px; }
    .radio-box-type1 label { border-radius: 4px; font-size: 12px; }

    .applyNow-list-wrap .applyNow-list-wrap-title { font-size: 20px; }

    .applyNow-policys-wrap .applyNow-policys-wrap-title { font-size: 24px; }
    .applyNow-policys-wrap .policys-list { gap: 8px; }
    .applyNow-policys-wrap .policys-list li { font-size: 12px; }
    .applyNow-policys-wrap .txt-wrap p { font-size: 14px; }
}

 */




.area-k5 {}

/* Hero Section */
.area-k5 .hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.area-k5 .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.area-k5 .hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.area-k5 .hero-description {
    font-size: 1.1rem;
    color: #495057;
    max-width: 1000px; word-break: keep-all;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.area-k5 .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.area-k5 .btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
}

.area-k5 .btn-primary {
    background-color: #9d1e2f;
    color: white;
}

.area-k5 .btn-primary:hover {
    background-color: #7a1724;
}

.area-k5 .btn-secondary {
    background-color: transparent;
    color: #9d1e2f;
    border-color: #9d1e2f;
}

.area-k5 .btn-secondary:hover {
    background-color: #9d1e2f;
    color: white;
}

/* Section Styling */
.area-k5 .section {
    padding: 60px 0;
}

.area-k5 .section-alt {
    background-color: #f8f9fa;
}

.area-k5 .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.area-k5 .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Curriculum Grid - 3x3 Layout */
.area-k5 .curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.area-k5 .curriculum-card {
    background: white;
    padding: 2rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.area-k5 .curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.area-k5 .curriculum-card > * {
    position: relative;
    z-index: 2;
}

.area-k5 .curriculum-card:hover {
    border-color: #9d1e2f;
    transform: translateY(-2px);
}

.area-k5 .curriculum-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.area-k5 .curriculum-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.area-k5 .curriculum-card p {
    color: #f8f9fa;
    line-height: 1.4;
    font-size: 0.9rem;
    word-break: keep-all;
}

/* Individual card background images */
.area-k5 .curriculum-card:nth-child(1) {
    background-image: url('/img/children/1.png');
}

.area-k5 .curriculum-card:nth-child(2) {
    background-image: url('/img/children/2.png?v=2');
}

.area-k5 .curriculum-card:nth-child(3) {
    background-image: url('/img/children/3.png');
}

.area-k5 .curriculum-card:nth-child(4) {
    background-image: url('/img/children/4.png');
}

.area-k5 .curriculum-card:nth-child(5) {
    background-image: url('/img/children/5.png');
}

.area-k5 .curriculum-card:nth-child(6) {
    background-image: url('/img/children/6.png');
}

.area-k5 .curriculum-card:nth-child(7) {
    background-image: url('/img/children/7.png');
}

.area-k5 .curriculum-card:nth-child(8) {
    background-image: url('/img/children/8.png');
}

.area-k5 .curriculum-card:nth-child(9) {
    background-image: url('/img/children/9.png');
}
/* Program Cards - Full Width Layout */
.area-k5 .program-card {
    width: 100%;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e9ecef;
}

.area-k5 .program-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.area-k5 .program-hero {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 2rem;
}

.area-k5 .program-content {
    padding: 0;
    max-width: none;
}

.area-k5 .program-age {
    background: #9d1e2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.area-k5 .program-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.area-k5 .program-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.area-k5 .program-modules h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.area-k5 .modules-list {
    list-style: none;
}

.area-k5 .modules-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.area-k5 .modules-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9d1e2f;
    font-weight: bold;
    font-size: 1.2rem;
}

.area-k5 .modules-list li:last-child {
    border-bottom: none;
}

/* Final CTA Section */
.area-k5 .final-cta {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.area-k5 .final-cta h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.area-k5 .final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.area-k5 .final-cta .btn-primary {
    background-color: #9d1e2f;
    color: white;
}

.area-k5 .final-cta .btn-primary:hover {
    background-color: #7a1724;
}

.area-k5 .final-cta .btn-secondary {
    border-color: white;
    color: white;
}

.area-k5 .final-cta .btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}

/* Overview Box */
.area-k5 .overview-box {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem 0;
}

.area-k5 .overview-box h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-k5 .overview-box p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .area-k5 .hero-content h1 {
        font-size: 2rem;
    }

    .area-k5 .hero-subtitle {
        font-size: 1.1rem;
    }

    .area-k5 .section-title {
        font-size: 1.8rem;
    }

    .area-k5 .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-k5 .program-hero {
        height: 220px;
    }

    .area-k5 .program-title {
        font-size: 1.5rem;
    }

    .area-k5 .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .area-k5 .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .area-k5 .section {
        padding: 40px 0;
    }
}

@media (max-width: 640px) {
    .area-k5 .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* Fast-Track Diploma Section - Main Page */
.section-fast-track {
    background-color: #f8f9fa;
}

.section-fast-track .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-fast-track .fast-track-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-fast-track .header-image {
    margin-bottom: 20px;
}

.section-fast-track .header-image img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.section-fast-track .main-title {
    font-size: 44px;
    font-weight: 600;
    color: #14284b;
    margin-bottom: 20px;
}

.section-fast-track .fast-track-content {
    background: #fff;
    padding: 60px;
    border-radius: 10px;
}

.section-fast-track .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #14284b;
    margin-bottom: 15px;
    text-align: center;
}

.section-fast-track .section-subtitle {
    font-size: 22px;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.section-fast-track .content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.section-fast-track .description {
    flex: 1;
    line-height: 1.8;
    color: #333;
    font-size: 17px;
}

.section-fast-track .description p {
    margin-bottom: 20px;
    word-break: keep-all;
}

.section-fast-track .diploma-image-wrap {
    flex: 0 0 auto;
    max-width: 350px;
}

.section-fast-track .diploma-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-fast-track .description strong {
    color: #9D1E2F;
    font-weight: 600;
}

.section-fast-track .pathway-table {
    margin: 40px 0;
    overflow-x: auto;
}

.section-fast-track .pathway-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-fast-track .pathway-table th,
.section-fast-track .pathway-table td {
    padding: 24px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.section-fast-track .pathway-table th {
    background-color: #14284b;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.section-fast-track .pathway-table td {
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
    font-size: 16px;
}

.section-fast-track .pathway-table td strong {
    color: #9D1E2F;
    font-weight: 600;
}

.section-fast-track .learn-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.section-fast-track .m-btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.section-fast-track .m-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 30, 47, 0.3);
}

/* Responsive Design for Fast-Track Section */
@media screen and (max-width: 1200px) {
    .section-fast-track {
        padding: 60px 0;
    }

    .section-fast-track .fast-track-content {
        padding: 30px;
    }

    .section-fast-track .main-title {
        font-size: 28px;
    }

    .section-fast-track .section-title {
        font-size: 24px;
    }

    .section-fast-track .section-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .section-fast-track {
        padding: 40px 0;
    }

    .section-fast-track .fast-track-content {
        padding: 20px;
    }

    .section-fast-track .main-title {
        font-size: 24px;
    }

    .section-fast-track .section-title {
        font-size: 20px;
    }

    .section-fast-track .section-subtitle {
        font-size: 14px;
    }

    .section-fast-track .content-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .section-fast-track .diploma-image-wrap {
        max-width: 100%;
    }

    .section-fast-track .pathway-table {
        font-size: 14px;
    }

    .section-fast-track .pathway-table th,
    .section-fast-track .pathway-table td {
        padding: 12px;
        font-size: 13px;
    }

    .section-fast-track .pathway-table table {
        min-width: 600px;
    }

    .section-fast-track .description {
        font-size: 14px;
    }

    .section-fast-track .m-btn {
        height:auto !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
}

/* ============================================ */
/* 디자인 버전 2: 모던 카드형 스타일 */
/* ============================================ */
.section-fast-track.version-2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fast-track-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.badge-new {
    display: inline-block;
    background: #9D1E2F;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.main-title-v2 {
    font-size: 42px;
    font-weight: 700;
    color: #14284b;
    margin-bottom: 15px;
}

.subtitle-v2 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 18px;
    font-style: italic;
    color: #9D1E2F;
    font-weight: 600;
}

.fast-track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.info-icon {
    margin-bottom: 30px;
}

.info-icon img {
    width:100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.info-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}

.info-content strong {
    color: #9D1E2F;
}

.pathway-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.pathway-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pathway-card:hover {
    transform: translateY(-5px);
    border-color: #9D1E2F;
}

.pathway-card.college .card-header {
    background: linear-gradient(135deg, #14284b 0%, #1a3558 100%);
}

.pathway-card.career .card-header {
    background: linear-gradient(135deg, #9D1E2F 0%, #c02538 100%);
}

.pathway-card .card-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pathway-icon {
    font-size: 32px;
}

.pathway-card .card-header h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.pathway-card .card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.focus-text {
    font-weight: 600;
    margin-bottom: 20px;
    color: #14284b;
    line-height: 1.6;
    word-break: keep-all;
}

.ideal-for,
.support-list {
    margin-top: 20px;
}

.ideal-for strong,
.support-list strong {
    display: block;
    color: #9D1E2F;
    margin-bottom: 8px;
    font-size: 14px;
}

.ideal-for p {
    color: #555;
    line-height: 1.6;
    word-break: keep-all;
}

.support-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: #555;
    word-break: keep-all;
}

.support-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9D1E2F;
    font-weight: 700;
}

.learn-more-wrap-v2 {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 18px 50px !important;
    font-size: 18px !important;
}

@media (max-width: 1200px) {
    .fast-track-grid {
        grid-template-columns: 1fr;
    }

    .main-title-v2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .main-title-v2 {
        font-size: 26px;
    }

    .subtitle-v2 {
        font-size: 18px;
    }

    .info-card {
        padding: 25px;
    }

    .pathway-card .card-header {
        padding: 20px;
    }

    .pathway-card .card-body {
        padding: 20px;
    }
}

/* ============================================ */
/* 디자인 버전 3: 비주얼 강조형 스타일 */
/* ============================================ */
.section-fast-track.version-3 {
    background: #fff;
    padding-top: 120px;
}

.hero-section {
    display: flex;
    align-items: center; justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(157, 30, 47, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #9D1E2F;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #9D1E2F;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-highlight {
    color: #9D1E2F;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
}

.hero-highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #9D1E2F 0%, #c02538 100%);
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
}

.highlight-icon {
    font-size: 24px;
}

.hero-highlight-box .highlight-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.hero-image {
    flex: 0 0 400px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 30, 47, 0.1) 0%, rgba(20, 40, 75, 0.1) 100%);
    border-radius: 15px;
    z-index: 1;
}

.feature-section {
    margin-bottom: 80px;
}

.feature-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #14284b;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: #9D1E2F;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-icon-line {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon-line svg {
    width: 100%;
    height: 100%;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

.pathway-section-v3 {
    margin-bottom: 60px;
}

.pathway-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #14284b;
    margin-bottom: 50px;
}

.pathway-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pathway-box-v3 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
}

.pathway-box-v3:hover {
    border-color: #9D1E2F;
    transform: translateY(-8px);
}

.pathway-box-v3 .box-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 3px solid #e0e0e0;
}

.pathway-box-v3.college-path .box-header {
    background: linear-gradient(135deg, rgba(20, 40, 75, 0.05) 0%, rgba(20, 40, 75, 0.1) 100%);
}

.pathway-box-v3.career-path .box-header {
    background: linear-gradient(135deg, rgba(157, 30, 47, 0.05) 0%, rgba(157, 30, 47, 0.1) 100%);
}

.box-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9D1E2F 0%, #c02538 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.box-title {
    font-size: 28px;
    font-weight: 700;
    color: #14284b;
    margin: 0;
}

.pathway-box-v3 .box-content {
    padding: 35px;
}

.content-section {
    margin-bottom: 25px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h5 {
    font-size: 16px;
    font-weight: 700;
    color: #9D1E2F;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

.support-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.support-badge {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #14284b;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.support-badge:hover {
    background: #9D1E2F;
    color: #fff;
    border-color: #9D1E2F;
}

.cta-section-v3 {
    text-align: center;
}

.btn-xl {
    padding: 20px 60px !important;
    font-size: 20px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

.btn-xl:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .hero-title {
        font-size: 38px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pathway-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        max-width: 100%;
    }

    .feature-title,
    .pathway-section-title {
        font-size: 28px;
    }

    .pathway-box-v3 .box-header {
        flex-direction: column;
        text-align: center;
    }

    .box-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .box-title {
        font-size: 22px;
    }

    .pathway-box-v3 .box-content {
        padding: 25px;
    }

    .btn-xl {
        padding: 16px 40px !important;
        font-size: 18px !important;
    }
}

/* ============================================ */
/* 배경 이미지 풀 버전 스타일 */
/* ============================================ */
.section-fast-track.hero-fullbg {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    margin-top: -100px;
}

.hero-background {
    /*background-image: url('/img/fasttrack.jpg');*/
    background-image: url('/img/visual03.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 300px 20px;
}

.hero-section-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot-gold {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge-white .badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
}

.hero-title-white {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-white {
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-highlight-box-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #b62336;
    padding: 20px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-highlight-box-gold .highlight-icon {
    font-size: 32px;
}

.hero-highlight-box-gold .highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* 반응형: 태블릿 */
@media screen and (max-width: 1200px) {
    .section-fast-track.hero-fullbg {
        margin-top: -80px;
    }

    .area-main .section01 {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
    }

    .hero-background {
        min-height: 600px;
        clip-path: polygon(0 80px, 100% 0, 100% calc(100% - 80px), 0 100%);
    }

    .hero-content-wrapper {
        padding: 140px 20px;
    }

    .hero-title-white {
        font-size: 44px;
    }

    .hero-subtitle-white {
        font-size: 22px;
    }

    .hero-highlight-box-gold {
        padding: 16px 32px;
    }

    .hero-highlight-box-gold .highlight-text {
        font-size: 18px;
    }

    .hero-highlight-box-gold .highlight-icon {
        font-size: 28px;
    }
}

/* 반응형: 모바일 */
@media screen and (max-width: 768px) {
    .section-fast-track.hero-fullbg {
        margin-top: 0;
    }

    .area-main .section01 {
        clip-path: none;
    }

    .hero-background {
        min-height: 550px;
        background-position: center center;
        clip-path: none;
    }

    .hero-content-wrapper {
        padding: 120px 15px;
    }

    .hero-title-white {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle-white {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-badge-white {
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-badge-white .badge-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .badge-dot-gold {
        width: 6px;
        height: 6px;
    }

    .hero-highlight-box-gold {
        padding: 16px 24px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-highlight-box-gold .highlight-text {
        font-size: 16px;
        text-align: center;
    }

    .hero-highlight-box-gold .highlight-icon {
        font-size: 24px;
    }
}

/* 반응형: 작은 모바일 */
@media screen and (max-width: 480px) {
    .section-fast-track.hero-fullbg {
        margin-top: 0;
    }

    .area-main .section01 {
        clip-path: none;
    }

    .hero-background {
        min-height: 400px;
        clip-path: none;
    }

    .hero-content-wrapper {
        padding: 40px 15px;
    }

    .hero-title-white {
        font-size: 28px;
    }

    .hero-subtitle-white {
        font-size: 16px;
    }

    .hero-highlight-box-gold .highlight-text {
        font-size: 14px;
    }
}


/* ============================================ */
/* Heritage Section Styles */
/* ============================================ */
.section-heritage {
    margin: 0;
    padding: 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.heritage-background {
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    min-height: 1200px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 80px;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}

.heritage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.heritage-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.heritage-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.heritage-subtitle {
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.heritage-btn {
    display: inline-block;
    background: #b62336;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.heritage-btn:hover {
    background: #9d1e2f;
    transform: translateY(-2px);
}

/* Heritage Section 반응형: 태블릿 */
@media screen and (max-width: 1200px) {
    .section-heritage {
        margin-top: -80px;
    }

    .heritage-background {
        min-height: 900px;
        padding-top: 130px;
        clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
    }

    .heritage-title {
        font-size: 44px;
    }

    .heritage-subtitle {
        font-size: 20px;
    }

    .heritage-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Heritage Section 반응형: 모바일 */
@media screen and (max-width: 768px) {
    .section-heritage {
        margin-top: 0;
    }

    .heritage-background {
        min-height: 400px;
        padding-top: 100px;
        clip-path: none;
    }

    .heritage-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .heritage-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .heritage-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Heritage Section 반응형: 작은 모바일 */
@media screen and (max-width: 480px) {
    .section-heritage {
        margin-top: 0;
    }

    .heritage-background {
        padding-top: 80px;
        clip-path: none;
    }

    .heritage-title {
        font-size: 28px;
    }

    .heritage-subtitle {
        font-size: 14px;
    }

    .heritage-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}
