@charset "UTF-8";

/*******************************************************************************
                                    layout
********************************************************************************/
.sparta * {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}
.arrowBox .col {position: relative;}
.arrowBox .col + .col::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    aspect-ratio: 4 / 6;
    background: #C6CDDB;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.section-title {
    position: relative;
    padding: 2.2rem 0;
    background: #E80720;
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translate(-50%);
    aspect-ratio: 36 / 24;
    width: 1.8rem;
    background: #E80720;
    clip-path: polygon(0 0, 50% 100%, 100% 0%);
}
.section-title > strong {
    position: relative;
    z-index: 1;
    font-weight: 900;
}
.section-title > strong::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    background: #000;
    height: 50%;
    width: 100%;
    z-index: -1;
}
.section-title > span {
    display: block;
    color: #FFCB64;
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .section-title {
        padding: 16px 0;
        font-size: calc(1rem + 2.5002vw);
    }
    .section-title > span {
        font-size: calc(1rem + 0.2778vw);
    }
    .arrowBox .col + .col::before {
        right: 50%;
        top: auto;
        bottom: 100%;
        transform: translate(50%,2px) rotate(90deg);
    }
}
/*******************************************************************************
                                sparta-section1
********************************************************************************/
.sparta-section1 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section1-bg.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section1 > div > span {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: .4rem 1.6rem;
    border-radius: 3rem;
    background: #000000;
    color: #FFCB64;
    font-size: 1.6rem;
    font-weight: 700;
}
.sparta-section1 h1 {
    margin-bottom: 2.6rem;
    text-shadow: -2px 0px #000, 0px 2px #000, 2px 0px #000, 0px -2px #000, 0 .7rem #000;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    font-size: 5.5rem;
}
.sparta-section1 h1 > strong {
    display: block;
    color: #FFCB64;
}
.sparta-section1 p {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
}
.sparta-section1-con {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 1.2rem;
    margin-bottom: 3rem;
}
.sparta-section1-con .col {
    grid-column: 2 / 4;
    padding: 0.8rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 70%);
}
.sparta-section1-con .col:last-child {
    grid-column: 4 / 6;
}
.sparta-section1-con .col::before {
    background: linear-gradient(to left, #ACACAC, #5C5C5C) !important;
}
.sparta-section1-con .col dt {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: #0047EE;
    font-weight: 700;
}
.sparta-section1-con .col:last-child dt {
    color: #E80720;
}
.sparta-section1-con .col dd {
    padding-top: 8px;
    border-top: 1px solid #C6CDDB;
    font-size: 1.1rem;
    color: #000;
}
.sparta-section1-textBox {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: left;
}
.sparta-section1-textBox .img {
    display: block;
    aspect-ratio: 112 / 100 ;
    width: 5rem;
    margin-right: 2rem;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section1-img.png') no-repeat center center;
    background-size: cover;
}
.sparta-section1-textBox .text dt  {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.sparta-section1-textBox .text dd  {
    font-size: 1.1rem;
}
.sparta-section1-textBox .text dd span  {
    color: #F8102A;
    font-weight: 700;
}
@media (max-width: 1200px) {
    .sparta-section1-con {
        grid-template-columns: repeat(2,1fr);
    }
    .sparta-section1-con .col {
        grid-column: 1 span;
    }
    .sparta-section1-con .col:last-child {
        grid-column: 1 span;
    }
}
@media (max-width: 768px) {
    .sparta-section1 > div > span {
        font-size: calc(1rem + 1.9446vw);
    }
    .sparta-section1 h1 {
        margin-bottom: 4rem;
        font-size: calc(1rem + 14.1678vw);
    }
    .sparta-section1 p {
        font-size: calc(1rem + 1.389vw);
    }
    .sparta-section1-con {
        grid-gap: 1.2rem;
        margin-bottom: 3rem;
    }
    .sparta-section1-con .col {
        padding: 8px;
        border-radius: 12px;
    }
    .sparta-section1-con .col dt {
        font-size: calc(1rem + 0.8334vw);
    }
    .sparta-section1-con .col dd {
        padding-top: 8px;
        font-size: 1rem;
    }
    .sparta-section1-textBox .img {
        width: 15%;
        margin-right: .5rem;
    }
    .sparta-section1-textBox .text dt  {
        font-size: calc(1rem + 0.2778vw);
    }
    .sparta-section1-textBox .text dd  {
        font-size: calc(1rem + -0.2778vw);
    }
    .sparta-section1 .arrowBox .col + .col::before {
        right: 100%;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
}
/*******************************************************************************
                                sparta-section 공통
********************************************************************************/
.sparta-section-con {
    margin-bottom: 4rem;
    text-align: left;
}
.sparta-section-con:last-child,
.sparta-section-con.last {
    margin-bottom: 0;
}
.sparta-section-con h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
}
.sparta-section-con > ul {
    margin-top: 1rem;
    padding-left: .8rem;
}
.sparta-section-con ul > li {
    position: relative;
    font-size: 1rem;
}
.sparta-section-con ul > li::before {
    content: '· ';
    position: absolute;
    right: 100%;
    top: 0;
    margin-right: 0.2rem;
}
.sparta-section-con > p > span,.sparta-section-con > ul > li > span {color: #E80720;}
.sparta-section-con > p {
    margin-top: 1rem;
    font-size: 1rem;
}
.sparta-section-con > table {
    margin-top: 2rem;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: center;
}
.sparta-section-con > table td,
.sparta-section-con > table th {
    padding: 1rem;
    border: 1px solid #C6CDDB;
    font-size: 1rem;
}
.sparta-section-con > table th {
    background: #EBF1FC;
}
.sparta-section-con > table td {
    font-weight: 400;
}
.sparta-section-con > table td ul > li {
    display: inline-block;
}

.sparta-section-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1.2rem;
    margin-top: 2rem;
}
.sparta-section-grid .col {
    border: 1px solid #C6CDDB;
    text-align: center;
    background: #fff;
}
.sparta-section-grid .col .title-box {
    padding: 1.5rem 0;
    background: #F2F2F2;
}
.sparta-section-grid .col .title-box > span {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: .1rem 0.6rem .3rem;
    background: #E80720;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.sparta-section-grid .col .title-box > h4 {
    font-size: 1.1rem;
    color: #000;
}
.sparta-section-grid .col .textBox {
    padding: 0.8rem;
    text-align: left;
}
.sparta-section-grid .col .textBox > p {
    font-size: .9rem;
}
.sparta-section-grid .col .textBox  > li {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sparta-section-con {
        margin-bottom: 40px;
    }
    .sparta-section-con h3 {
        font-size: calc(1rem + 1.389vw);
    }
    .sparta-section-con > ul {
        margin-top: 8px;
    }

    .sparta-section-con > p {
        margin-top: 8px;
        font-size: calc(1rem + 0.2778vw);
    }
    .sparta-section-con > table {
        margin-top: 16px;
    }
    .sparta-section-con > table td,
    .sparta-section-con > table th {
        padding: 10px 4px;
        font-size: calc(1rem + 0.2778vw);
    }
    .sparta-section-con > table th dd small {
        font-size: calc(1rem + -0.2778vw);
    }
    .sparta-section-con ul > li {
        font-size: calc(1rem + 0.2778vw);
    }
    .sparta-section-grid {
        grid-template-columns: repeat(1,1fr);
    }
    .sparta-section-grid .col .title-box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 14px;
    }
    .sparta-section-grid .col .title-box > span {
        margin-bottom: 0;
        margin-right: 1rem;
        padding: 2px 8px 4px;
        font-size: calc(1rem + 0.2778vw);
    }
    .sparta-section-grid .col .title-box > h4 {
        font-size: calc(1rem + 0.8334vw);
    }
    .sparta-section-grid .col .textBox {
        padding: 14px;
    }
    .sparta-section-grid .col .textBox > p,
    .sparta-section-grid .col .textBox  > li {
        font-size: calc(1rem + 0.2778vw);
    }
}
/*******************************************************************************
                                sparta-section2
********************************************************************************/
.sparta-section2 {
    background: #F4F2F2;
}
.sparta-section4-imgBox,
.sparta-section2-imgBox {
    width: 100%;
    aspect-ratio: 1080 / 176;
    margin-bottom: 4rem;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section2-img.png') no-repeat center center;
    background-size: cover;
}

.schoolList .listTitle{
    background-color: #EBF1FC;
    text-align: center;
    font-weight: bold;
    margin-top: 4rem;
    padding: 1.6rem 0;
    border: 1px solid #C6CDDB;
    border-bottom: none;
}
.schoolList .boxWrap{
    display: flex;
    border: 1px solid #C6CDDB;
}
.schoolList .boxWrap .box{
    background-color: #fff;
    width: 50%;
}
.schoolList .boxWrap .box .title{
    font-weight: bold;
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #C6CDDB;
}
.schoolList .boxWrap .box + .box{
    border-left: 1px solid #C6CDDB;
}
.schoolList .boxWrap .box .title em{
    color: #E80720;
}
.schoolList .boxWrap .box .info{
    text-align: left;
    padding: 1.2rem 1rem;
    line-height: 1.5;
}
.schoolList .boxWrap .box .info p{
    position: relative;
    padding-left: 0.5em;
}
.schoolList .boxWrap .box .info p::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
}
@media (max-width: 768px) {
    .sparta-section4-imgBox,
    .sparta-section2-imgBox {
        aspect-ratio: 328 / 99;
        background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section2-img-mo.png') no-repeat center center;
        background-size: cover;
    }
    .schoolList .listTitle{
        font-size: 1.07rem;
        padding: 0.7rem 0;
    }
    .schoolList .boxWrap{
        display: block;
    }
    .schoolList .boxWrap .box{
        width: 100%;
    }
    .schoolList .boxWrap .box .title{
        font-size: 1.23rem;
    }
    .schoolList .boxWrap .box .info{
        font-size: 1.07rem;
    }
    .schoolList .boxWrap .box + .box{
        border-left: none;
        border-top: 1px solid #C6CDDB;
    }
    .schoolList .boxWrap .box .info p::before{
        width: 2px;
        height: 2px;
        top: 0.7rem;
    }
}
/*******************************************************************************
                                sparta-section3
********************************************************************************/
.sparta-section3 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section3-bg.jpg') no-repeat right bottom;
    background-size: cover;
}
.sparta-section3-imgBox {
    position: relative;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1080 / 584;
    margin-top: 2rem;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section3-img-250305.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section3-imgBox::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(0,0,0,1 ) url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/camp-canada/camp-canada-schedule-icon01-220422.png') no-repeat center center;
    background-size: 1.6rem;
    opacity: 1;
}
.sparta-section3-imgBox > a {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    width: 100%;
    height: 100%;
    transform: translate(-50%,-50%);
}
/*******************************************************************************
                                sparta-section4
********************************************************************************/
.sparta-section4 {
    background: #F8FAFF;
}
.sparta-section4 .section-title {background: #0047EE;}
.sparta-section4 .section-title::before {background: #0047EE;}
.sparta-section4-imgBox {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section4-img.png') no-repeat center center;
    background-size: cover;
}
.sparta-section4 .sparta-section-con > p > span {color: #0047EE;}
.sparta-section4 .sparta-section-grid {
    grid-template-columns: repeat(4,1fr);
}
.sparta-section4 .sparta-section-grid .col .title-box > span {background: #0047EE;}
@media (max-width: 768px) {
    .sparta-section4 .sparta-section-grid {
        grid-template-columns: repeat(1,1fr);
    }
    .sparta-section4-imgBox {
        background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/sparta/sparta-section4-img-mo.png') no-repeat center center;
        background-size: cover;
    }
}
/*******************************************************************************
                                sparta-section5
********************************************************************************/
.sparta-section5 {
    background: #EFEFEF;
}
.sparta-section5 h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding: 0 1rem;
    color: #000;
    font-weight: 900;
    font-size: 2.7rem;
}
.sparta-section5 h2::before,
.sparta-section5 h2::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    aspect-ratio: 108 / 177;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-icon1.png') no-repeat center center;
    background-size: cover;
}
.sparta-section5 h2::after {
    right: auto;
    left: 100%;
    transform: rotateY(180deg);
}
.sparta-section5 h2 > span {
    display: inline-block;
    max-width: 12rem;
    width: 100%;
    aspect-ratio: 237 / 40;
    margin: 0 auto;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-icon2.png') no-repeat center center;
    background-size: cover;
}
.sparta-section5 h2 strong {
    color: #E80720;
    font-weight: 900;
}
.sparta-section5 h2 > small {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
}
.sparta-section5 h2 > small > strong {
    font-weight: 700;
}

.sparta-section5-con > li {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.2rem;
    margin-bottom: 2rem;
    background: #fff;
}
.sparta-section5-con > li:last-child {
    margin-bottom: 0;
}
.sparta-section5-con > li > span {
    position: absolute;
    right: 1.2rem;
    top: 0;
    display: inline-block;
    padding: .4rem 0.5rem .9rem;
    background: #E80720;
    clip-path: polygon(100% 0%, 100% 44%, 100% 100%, 50% calc(100% - .5rem), 0 100%, 0 0);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}
.sparta-section5-con > li .imgBox {
    grid-column: 5 span;
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-img1.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section5-con > li .imgBox.img2 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-img2.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section5-con > li .imgBox.img3 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-img3.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section5-con > li .imgBox.img4 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-img4.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section5-con > li .imgBox.img5 {
    background: url('https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/popup/sparta-section5-img5.jpg') no-repeat center center;
    background-size: cover;
}
.sparta-section5-con > li .textBox {
    grid-column: 7 span;
    padding: 1.2rem 1.2rem 1.2rem 0;
    text-align: left;
}
.sparta-section5-con > li .textBox h3 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}
.sparta-section5-con > li .textBox p {
    font-size: 0.8rem;
    color: #666666;
    padding: .4rem 0;
}
.sparta-section5-con > li .textBox p + p {
    border-top: 1px solid #C5C5C5;
    color: #000;
}
.sparta-section5-con > li .textBox p strong {
    color: #FF1A34;
}
@media (max-width: 768px) {
    .sparta-section5 h2 {
        width: 76%;
        font-size: calc(1rem + 3.0558vw);
    }
    .sparta-section5 h2::before,
    .sparta-section5 h2::after {
        height: auto;
        width: 12%;
        top: auto;
        bottom: 0;
    }
    .sparta-section5 h2 > small {
        font-size: calc(1rem + 0.8334vw);
    }
    .sparta-section5-con > li {
        grid-template-columns: repeat(1, 1fr);
    }
    .sparta-section5-con > li > span {
        right: 16px;
        padding: 4px 4px 12px;
        font-size: 14px;
    }
    .sparta-section5-con > li .imgBox {
        aspect-ratio: 328 / 218;
        grid-column: 1 span;
    }
    .sparta-section5-con > li .textBox {
        grid-column: 1 span;
        padding: 16px;
    }
    .sparta-section5-con > li .textBox h3 {
        margin-bottom: 8px;
        font-size: 18px;
    }
    .sparta-section5-con > li .textBox p {
        font-size: 16px;
        padding: 8px 0;
    }
    .sparta-section5-con > li .textBox p + p {
        font-size: 14px;
    }
}


/*******************************************************************************
                            대한민국 교육브랜드 대상
********************************************************************************/
.sparta-section7 {background: #112037;}
.sparta-section7-con {margin-bottom: 30px;}
.sparta-section7-img {aspect-ratio: 2 / 3;width: 25.5556vw;margin: 0 auto 20px;background: url("https://s3.ap-northeast-2.amazonaws.com/img.edmuhak.com/uhak/r/v1/programs/fashion-design/fashion-design-img04-240627.png") no-repeat center center;background-size: cover;}
.sparta-section7-text > span {display: inline-block;}
.sparta-section7-text > span > img {width: 90%;margin: 0 auto 10px;}
.sparta-section7-text > p {color: #C3C3C3;font-size: 14px;}
.sparta-section7-link > div {margin-bottom: 8px;}
.sparta-section7-link > div > a {font-size: 18px;color: #FFFFFF;}
@media (min-width: 768px) {
    .sparta-section7-con {display: flex;justify-content: center;align-items: center;margin-bottom: 3rem;}
    .sparta-section7-img {width: 8.2407vw;margin: 0;}
    .sparta-section7-text {text-align: left;}
    .sparta-section7-text > span {display: inline-block;width: 100%;}
    .sparta-section7-text > span > img {width: 100%;max-width: 405px;margin: 0 auto 1rem 0;}
    .sparta-section7-text > p {font-size: .9rem;}
    .sparta-section7-link {display: flex;justify-content: center;}
    .sparta-section7-link > div {margin: 0 1rem;}
    .sparta-section7-link > div > a {font-size: 1.4rem;}
}

