@charset "utf-8";
@import url(fonts.css);
@import url(default.css);

body, button{font-family: 'NotoSansKR', sans-serif; font-size:16px; line-height:1.7; color:#555; font-weight:400; box-sizing: border-box;}
a{text-decoration:none; color:#555; box-sizing: border-box;}
a:hover{text-decoration:none;}

ul, li{
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

/* contents */
body{
    background-color: #fbfcff;
}
.intro_page{
    width: 100%;
    height: 100%;
    background-color: #fbfcff;
    padding-bottom: 50px;
    box-sizing: border-box;
}
.container{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.logo{
    padding-top: 40px;
}
.links{
    padding-top: 140px;
}
.links > ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.links li.item{
    position: relative;
    height: 350px;
    background-color: #fefefe;
    border-radius: 30px 0;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    transition: .4s;
}
.links li.item a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 25px;
    cursor: pointer;
    background-image: url(../images/item0.png);
    background-position: 90% 90%;
    background-repeat: no-repeat;
    background-size: 130px auto;
}
.links li.item:nth-child(2) a{
    background-image: url(../images/item1.png);
    background-size: 100px auto;
}
.links li.item:nth-child(3) a{
    background-image: url(../images/item2.png);
    background-size: 100px auto;
}
.links li.item:nth-child(4) a{
    background-image: url(../images/item3.png);
    background-size: 100px auto;
}
.links li.item:nth-child(5) a{
    background-image: url(../images/item4.png);
    background-size: 100px auto;
}
.links li.item .item_tit{
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 2rem;
}
.links li.item .item_text{
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: -1px;
    word-break: keep-all;
}
.links li.item:hover{
    background-color: #18a5ae;
    margin-top: -15px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.links li.item:hover span{
    color: #fff;
}
.intro_page p{
    position: relative;
    width: 430px;
    height: 155px;
    line-height: 1.2;
    margin: 60px auto;
    padding: 30px 73px;
    background: #eff5ff;
    border-radius: 10px;
    box-sizing: border-box;
}
.intro_page p img{
    display: inline-block;
    width: 100px;
    position: relative;
    vertical-align: middle;
}
.intro_page p > span{
    display: inline-block;
    vertical-align: middle;
}
.intro_page p > span > span{
    display: block;
    font-size: 1.3rem;
}
.intro_page p > span > strong{
    color:#000;
    font-size: 2.2rem;
}

@media (width <= 1450px){
    .intro_page{
        height: 100%;
    }
    .container{
        width: 100%;
    }
    .links{
        padding-top: 50px;
    }
    .links li.item:hover{
        background-color: #fefefe;
        margin-top: 0;
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    }
    .links li.item:hover span{
        color: #333;
    }
    .links li.item a{
        background-position: 90% 90%;
    }
    .links li.item .item_tit{
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .links li.item .item_text{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .intro_page p{
        margin: 33px auto;
    }
}
@media (width <= 1200px){
    .links > ul{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (width <= 998px){
    .links > ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .links li.item{
        height: 300px;
    }
}

@media (width <= 768px){
    .logo a img{
        width: 200px;
    }
    .links li.item{
        width: 100%;
        height: 210px;
    }
    .links > ul{
        grid-template-columns: 1fr;
    }
    .links li.item a{
        background-size: 90px auto;
        background-position: 95% center;
    }
    .links li.item:nth-child(2) a,
    .links li.item:nth-child(3) a,
    .links li.item:nth-child(4) a,
    .links li.item:nth-child(5) a{
        background-size: 80px auto;
        background-position: 90% center;
    }

    .links li.item .item_tit{
        margin-bottom: 40px;
    }
    .links li.item .item_text{
        line-height: 0.9rem;
    }
    .intro_page p{
        width: 100%;
        padding-left: 26%;
        margin-top: 20px;
    }
}

@media (width <= 600px){
    .intro_page p{
        padding-left: 18%;
    }
}

@media (width <= 480px){
    .intro_page p{
        padding-right: 0;
        padding-left: 5%;
    }
}