@charset "UTF-8";

@font-face { font-family: KopubWorld Bold; src: url(../fonts/KoPubWorld\ Dotum\ Bold.ttf);}
@font-face { font-family: KopubWorld Light; src: url(../fonts/KoPubWorld\ Dotum\ Light.ttf); }

/*
* Create : 윤혜인
* Create Date : 2022-06-17
* Last Update : 2022-06-20
* Ver 1.10
* Modify : 윤혜인
*/
body{
    font-style: normal;
    font-family: "KopubWorld Light", sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.5;
    color: #222;
}
.skip{
    display: none;
}

#wrap{
    width: 980px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* header */
header h1{
    font-family: "KopubWorld Bold", sans-serif;
}
.util-box{
    display: flex;
    justify-content: flex-end;
}
.util-box a{
    width: 33px;
    height: 29px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
}
.util-box a.home{
    background-image: url(../images/icon_home.gif);
}
.util-box a.contact{
    background-image: url(../images/icon_contact.gif);
}
/* header - nav */
nav {
    position: relative;
    margin-top: 20px;
}
nav ol{
    display: flex;
    justify-content: space-between;
}
nav ol > li{
    width: 100%;
    margin-right: 8px;
}
nav ol > li:last-child{
    margin: 0;
}
nav ol > li a{
    text-decoration: none;
    color: #222;
}
nav ol > li > a{
    font-family: "KopubWorld Bold",sans-serif;
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ddd;
    background-size: cover;
}
.sub-nav{
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid;
}
nav ol > li.active .sub-nav{
    display: block;
}
.sub-nav ul{
    display: flex;
    flex-wrap: wrap;
}
.sub-nav ul li{
    position: relative;
}
.sub-nav ul li a{
    display: block;
    height: 47px;
    line-height: 47px;
    padding: 0 20px;
}
nav ol > li:first-child .sub-nav ul li a{
    padding: 0 26.9px;
}
.sub-nav ul li::before{
    content: "";
    width: 1px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #ddd;
}
.sub-nav ul li:last-child::before{
    display: none;
}
/* nav-active 배경/글씨색 */
nav ol > li.active:nth-child(1) > a{
    /* background-image: url(../images/1.png); */
    background-color: #1f4e68;
    color: #fff;
}
nav ol > li.active:nth-child(1) .sub-nav li.active a{
    font-family: "KopubWorld Bold",sans-serif;
    color:#1f4e68;
}
nav ol > li.active:nth-child(2) > a {
    /* background-image: url(../images/2.png); */
    background-color: #1f4e68;
    color: #fff;
}
nav ol > li.active:nth-child(2) .sub-nav li.active a {
    font-family: "KopubWorld Bold", sans-serif;
    color: #1f4e68;
}
nav ol>li:nth-child(3)>a {
    letter-spacing: -1px;
}
nav ol>li.active:nth-child(3)>a {
    /* background-image: url(../images/3.png); */
    background-color: #008749;
    letter-spacing: -1px;
    color: #fff;
}
nav ol > li.active:nth-child(3) .sub-nav li.active a{
    font-family: "KopubWorld Bold",sans-serif;
    color:#008749;
}
nav ol > li.active:nth-child(4) > a{
    /* background-image: url(../images/4.png); */
    background-color: #ee7800;
    color: #fff;
}
nav ol > li.active:nth-child(4) .sub-nav li.active a{
    font-family: "KopubWorld Bold",sans-serif;
    color:#ee7800;
}
nav ol > li.active:nth-child(5) > a{
    /* background-image: url(../images/5.png); */
    background-color: #6356a3;
    color: #fff;
}
nav ol > li.active:nth-child(5) .sub-nav li.active a{
    font-family: "KopubWorld Bold",sans-serif;
    color:#6356a3;
}

/* main */
#container{
    padding: 30px 0px;
    margin-top:50px
}
#container.big-margin{
    margin-top: 100px;
}
#container.small-margin{
    margin-top: 30px;
}
.img-box{
    width: 100%;
}
.img-box img{
    width: 100%;
}
#content h2{
    font-family: "KopubWorld Bold",sans-serif;
    font-size: 25px;
    margin-bottom: 25px;
}
#content.chap01 h2{
    color: #163b8b;
}
#content.chap02 h2{
    color: #008749;
}
#content.chap03 h2{
    color: #ee7800;
}
#content.chap04 h2{
    color: #6356a3;
}
#content.chap05 h2{
    color: #ad005a;
}
#content h3{
    font-family: "KopubWorld Bold",sans-serif;
    margin-bottom: 15px;
}
#content p{
    word-break: keep-all;
    text-align: justify;
    font-size: 18px;
    line-height: 2;
}

/* btn-box */
.btn-box div{
    display: flex;
    justify-content: flex-end;
}
.btn-box a{
    width: 190px;
    height: 70px;
    font-size: 0;
    margin-bottom: 8px;
    background-size: cover;
}
.btn-box a.kor_view{
    background-image: url(../images/kor.png);
}
.btn-box a.eng_view{
    background-image: url(../images/eng.png);
}
.btn-box a.detail_view{
    background-image: url(../images/detail.png);
}