@font-face {
    src:url("../fonts/210\ M고딕050.ttf");
    font-family: "210Gothic-050";
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "210Gothic-050";
}

body {
    width: 100%;
    min-width: 280px;
}

.search_wrap, .diractory_wrap{
    width: 100%;
}

.search_box {
    position: relative;
    display: flex;
}

.search_box input {
    width: 100%;
    height: 45px;
    margin: 30px 10px 0;
    background-image: url('../src/search_icon.svg');
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 98% 50%;
    border: 1px solid #9e9e9e;
    border-radius: 15px;
    font-size: 16px;
}

.diractory_wrap {
    display: flex;
    flex-direction: column;
}

.dir_list {
    height: 127px;
    margin: 10px;
    display: flex;
    border: 1px solid #9e9e9e;
}

.dir_img {
    width: 30%;
    display: flex;
    margin: 0 3vw;
}

.dir_img img {
    width: 100%;
    margin: auto;
}
.dir_description {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.dir_title {
    margin: auto 5px 10px 0;
}

.ko_title {
    font-size: 16px;
}

.dir_description a {
    text-decoration: none;
    width: 60%;
    min-width: 130px;
    border: 1px solid #4C4C4C;
    text-align: center;
    color: black;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 12px;
    transition: all 0.5s;
}

.dir_description a:hover {
    background-color: #0152BD;
    color: white;
}

.en_title {
    font-size: 14px;
    color: #9e9e9e;
    margin-top: 5px;
    display: inline-block;
}

@media (min-width:480px){
    body {
        width: 480px;
    }
}

@media (max-width:320px){
    .ko_title {
        font-size: 14px;
    }
    .en_title {
        font-size: 12px;
    }

    .dir_description a {
        font-size: 12px;
    }
}