
@charset "utf-8";

.sub_div {
    width: 100%;
    margin: 0 0 5%;
    padding: 3% 0;
    background-color: #246fca;
    text-align: right;
}

.sub_div span {
    display: block;
    color: #fff;
    font-size: 14px;
    width: 90%;
}

.sub_content {
    width: 80%;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

.sub_content_div {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8% 0 0;
}

.tit { font-size: 36px; margin: 0 0 5%}
.c_box {width: 80%; margin: 0 auto; text-align: center;}
.f_box {width: 80%; margin: 0 auto; text-align: left;}
span { font-weight: bold; font-size: 12px;}
.s_tit {
	width: 60%;
    text-align: center;
}
.s_tit h1 {
    font-size: 28px;
    text-align: center;
}
.s_g_con {
	width:100%;
    text-align: center;
}
.s_gnb {
	font-size: 18px;
    width: 100%;
    height: 100%;
    margin: 50px auto;
}
.s_gnb > li {
	width: 60%;
    margin: 1% auto;
    text-align: center;
    border: 1px solid #666;
    border-radius: 10px;
}
.s_gnb > li > a {
    letter-spacing: 1.4px;
    color: #333;
	font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    display: block;
    height: 100%;
    padding: 10px 0;
}





@media all and (max-width:767px) {
    .sub_content {
        width: 100%;
        flex-direction: column;
    }
    .sub_content_div {
        width: 100%;
        margin: 0 auto;
        display: none;
    }
    .c_box {
        width: 100%;
    }
}