@charset "UTF-8";

html, body{
    font-family: 'Pretendard';
    font-weight: 500;
    color: #222;
}

html, body p{
    letter-spacing: -0.03em;
}

html, body a{
    font-family: 'Pretendard';
    font-weight: 700;
    color: #222;   
}


.visual{
    width: 100%;
    height: 550px;
    background: url(../../images/main_bg.png) center no-repeat #fff;
    margin-bottom: 90px;
    position: relative;
}

.logo{
    position: absolute;
    top: 40px;
    left: 40px;
}

.visual .title{
    padding-top: 55px;
    padding-bottom: 35px;
    text-align: center;
}

.title img{
    padding-bottom: 25px;
}

.title p{
    font-size: 22px;
    line-height: 32px;
}

.main-deco{
    width: 100%;
    max-width: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;

}

.deco-left{
    position: relative;
    top: -34px;
}

.deco-right{
    position: relative;
    top: -35px;
    left: -25px;
}

.cont-wrap{
    width: calc(100% - 40px);
    max-width: 1600px;
    padding: 65px 0 80px 0;
    margin: 0 auto;
}

.cont-wrap > div{
    width: calc(100% - 40px);
    box-sizing: border-box;
    border-radius: 90px 90px 90px 0;
    padding: 70px 90px 30px 90px;
    background-color: #f3f6fb;
    margin-left: 40px;
    margin-bottom: 60px;
    position: relative;
}

.cont-wrap > div.cont02{
    background-color: #fbf4f3;
}

.cont-wrap > div.cont03{
    background-color: #f4f7f5;
    margin-bottom: 0;
}

.cont-wrap > div.cont02 .cont-tit .title{
    color: #e6604f;
}

.cont-wrap > div.cont03 .cont-tit .title{
    color: #2aa57c;
}

.cont-wrap > div::before{
    content: "";
    display: block;
    position: absolute;
    left: -40px;
    top: 60px;
    width: 90px;
    height: 90px;
    border-radius: 30px;
    background: url(../../images/cont_ic01.png) center 90% no-repeat #d4e3ff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.cont-wrap > div.cont02::before{
    background: url(../../images/cont_ic02.png) center 150% no-repeat #ffd6cf;
}

.cont-wrap > div.cont03::before{
    background: url(../../images/cont_ic03.png) center 110% no-repeat #cff5de;
}

.cont-tit .title{
    font-family: 'Hakgyo_Allimjang';
    font-weight: bold;
    font-size: 40px;
    color: #4e5bd7;
    line-height: 1em;
    padding-bottom: 20px;
}

.cont-tit .m-title{
    font-size: 22px;
}

.cont-list{
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cont-list > li{
    width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
}

.cont03 .cont-list > li{
    width: calc((100% - 90px) / 4);
}

.cont-list > li .img-box{
    width: 100%;
    height: 220px;
    border-radius: 50px 50px 50px 0;
}

.cont-list > li.map01 .img-box{
    background-image: url(../../images/cont1_1.png);
    background-position: center 87%;
}

.cont-list > li.map02 .img-box{
    background-image: url(../../images/cont1_2.png);
    background-position: center 76%;
}

.cont-list > li.map03 .img-box{
    background-image: url(../../images/cont1_3.png);
    background-position: center 85%;
}

.cont-list > li.map04 .img-box{
    background-image: url(../../images/cont2_1.png);
    background-position: 80% 40%;
}

.cont-list > li.map05 .img-box{
    background-image: url(../../images/cont2_2.png);
    background-position: center;
}

.cont-list > li.map06 .img-box{
    background-image: url(../../images/cont2_3.png);
    background-position: center 40%;
}

.cont-list > li.map07 .img-box{
    background-image: url(../../images/cont3_1.png);
    background-position: 45% 95%;
}

.cont-list > li.map08 .img-box{
    background-image: url(../../images/cont3_2.png);
    background-position: 30% 90%;
}

.cont-list > li.map09 .img-box{
    background-image: url(../../images/cont3_3.png);
    background-position: 50% 30.5%;
}

.cont-list > li.map10 .img-box{
    background-image: url(../../images/cont3_4.png);
    background-position: 50% 30%;
}

.cont-list .info-tit{
    font-family: 'Hakgyo_Allimjang';
    font-weight: bold;
    font-size: 24px;
    padding: 25px 0 15px 0;
    word-break: keep-all;
}

.cont-list .info-txt{
    word-break: keep-all;
    font-size: 18px;
    line-height: 1.5em;
    padding-bottom: 25px;
}

.cont-list .link a{
    width: 160px;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #d7d7d7;
    border-radius: 22px 24px 0 22px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont-list .link a:after{
    content: "";
    display: inline-block;
    width: 16px;
    height: 14px;
    background:url(../../images/link_arrow_bk.png) center no-repeat;
    margin-left: 10px;
}

.cont-list .link a:hover{
    color: #fff;
    background-color: #3055b3;
    border-color: #3055b3;
}

.cont-list .link a:hover::after{
    background:url(../../images/link_arrow_wh.png) center no-repeat;
}

footer{
    text-align: center;
    background-color: #444;
    padding: 33px;
    color: #fff;
    line-height: 24px;
}

@media all and (max-width: 1280px){
    .cont-list > li .img-box{
        height: 180px;
        border-radius: 40px 40px 40px 0;
    }

    .cont03 .cont-list{
        flex-wrap: wrap;
    }

    .cont03 .cont-list > li{
        width: calc((100% - 60px)/3);
    }
}

@media all and (max-width: 1100px){
    .logo{
        top: 20px;
        left: 20px;
        width: 90px;
    }

    .title img{
        width: 550px;
    }

    .title p{
        font-size: 18px;
        line-height: 1.5em;
    }

    .deco-left, .deco-right{
        display: none;
    }

    .cont-wrap > div{
        padding: 50px 50px 10px 70px;
        border-radius: 75px 75px 75px 0;
    }

    .cont-tit .title{
        font-size: 36px;
        padding-bottom: 16px;
    }

    .cont-tit .m-title{
        font-size: 20px;
    }

    .cont-list{
        padding-top: 30px;
    }

    .cont-list .info-tit{
        font-size: 22px;
        padding: 20px 0 10px 0;
    }

    .cont-list .info-txt{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .cont-list .link a{
        width: 140px;
        padding: 10px;
        font-size: 15px;
    }

    .cont-list .link a:after{
        background-size: 14px;
    }
}

@media all and (max-width: 1040px){
    .cont-list{
        flex-wrap: wrap;
    }

    .cont-list > li, .cont03 .cont-list > li{
        width: calc((100% - 30px) / 2);
    }

    .cont-list > li .img-box{
        height: 200px;
    }

    .cont-list > li.map10 .img-box{
        background-size: cover;
    }
}

@media all and (max-width: 840px){
    .visual{
        height: 450px;
        background-size: cover;
        margin-bottom: 60px;
    }

    .main-deco{
        width: 620px;
        margin: auto;
    }

    .cont-tit .title{
        font-size: 32px;
        padding-bottom: 12px;
    }

    .cont-list{
        padding-top: 20px;
    }

    .cont-wrap > div{
        margin-left: 30px;
        border-radius: 50px 50px 50px 0;
        padding: 40px 35px 15px 55px;
    }

    .cont-wrap > div::before{
        width: 70px;
        height: 70px;
        border-radius: 24px;
        background-size: 80px;
        background-position-y: 110%;
        top: 25px;
        left: -30px;
    }

    .cont-wrap > div.cont02::before{
        background-size: 70px;
        background-position-y: calc(50% + 8px);
    }

    .cont-wrap > div.cont03::before{
        background-size: 74px;
        background-position-y: 100%;
    }

    .cont-list > li, .cont03 .cont-list > li{
        width: calc((100% - 20px) / 2);
    }

    .cont-list .info-tit{
        padding: 15px 0 5px 0;
    }

    .cont-list .info-txt{
        padding-bottom: 10px;
    }
}

@media all and (max-width: 740px){
    .visual{
        height: 460px;
    }

    .cont-wrap{
        max-width: 580px;
    }

    .title img{
        width: 460px;
    }

    .main-deco{
        width: 540px;
        bottom: -60px;
    }

    .cont-tit{
        max-width: 420px;
    }
    .cont-list{
        width: 100%;
        max-width: 420px;
        margin: auto;
    }

    .cont-list > li, .cont03 .cont-list > li{
        width: 100%;
        max-width: 420px;
    }    
}

@media all and (max-width: 600px){
    .logo{
        width: 70px;
    }

    .visual{
        height: 300px;
    }

    .visual .title{
        padding-top: 45px;
        padding-bottom: 25px;
    }

    .title img{
        width: 340px;
        padding-bottom: 20px;
    }

    .title p{
        width: calc(100% - 40px);
        font-size: 16px;
        line-height: 1.3em;
        margin: 0 auto;
    }

    .main-deco{
        width: 360px;
        bottom: -60px;
    }

    .cont-wrap{
        padding-top: 40px;
        padding-bottom: 60px;
        min-width: 320px;
    }

    .cont-wrap > div{
        width: calc(100% - 20px);
        border-radius: 40px 40px 40px 0;
        padding: 30px 25px 10px 45px;
        margin-left: 15px;
        margin-bottom: 45px;
    }

    .cont-wrap > div::before{
        width: 55px;
        height: 55px;
        border-radius: 18px;
        background-size: 60px;
        background-position-y: 10px;
        top: 20px;
        left: -20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .cont-wrap > div.cont02::before{
        background-size: 56px;
        background-position-y: 8px;
    }

    .cont-wrap > div.cont03::before{
        background-size: 56px;
        background-position-y: 12px;
    }

    .cont-tit .title{
        font-size: 28px;
        padding-bottom: 8px;
    }

    .cont-tit .m-title{
        font-size: 18px;
    }

    .cont-list > li .img-box{
        height: 180px;
        border-radius: 30px 30px 30px 0;
    }

    .cont-list .info-tit{
        font-size: 20px;
        padding: 10px 0 5px 0;
    }

    .cont-list .info-txt{
        font-size: 15px;
        line-height: 1.2em;
    }

    .cont-list .link a{
        width: 110px;
        padding: 8px;
    }
}

@media all and (max-width: 490px){
    .visual{
        height: 340px;
    }

    .cont-tit .title{
        font-size: 24px;
    }

    .cont-tit .m-title{
        font-size: 16px;
    }

    .cont-list{
        padding-top: 10px;
    }

    .cont-wrap{
        padding-top: 30px;
    }

    .cont-wrap > div::before{
        display: none;
    }

    .cont-wrap > div{
        width: 100%;
        margin-left: 0;
        padding: 25px 20px 5px 20px;
        border-radius: 30px 30px 30px 0;
        margin-bottom: 30px;
    }
}

@media all and (max-width: 400px){
    .visual{
        height: 320px;
    }

    .logo{
        width: 60px;
    }

    .title img{
        width: 280px;
    }

    .main-deco{
        width: calc(100% - 40px);
    }

    .cont-wrap{
        width: 100%;
    }

    .cont-wrap > div{
        width: calc(100% - 40px);
        margin: 0 auto;
        margin-bottom: 30px;
    }
}