@font-face {
    src:url("../fonts/210\ M고딕050.ttf");
    font-family: "210Gothic-050";
}

@font-face {
    src:url("../fonts/210\ M고딕070.ttf");
    font-family: "210Gothic-070";
}

@font-face {
    src:url("../fonts/210\ M고딕030.ttf");
    font-family: "210Gothic-030";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-width: 280px;
}

header, main {
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

option {
    text-align: center;
}

.section-wrap-01 {
    display: flex;
    height: 80px;
    position: relative;
}

.locate_mian_btn {
    width: 15px;
    height: 30px;
    background-image: url("../src/main/icon/back_icon.png");
    background-repeat: no-repeat;
    background-size: 15px 30px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.logo {
    width: 140px;
    margin: auto;
}

.section-wrap-02 {
    display: flex;
    margin: 20px 0;
}

.product_selecter {
    margin: 0 auto;
    width: 100%;
    display: flex;
}

.product_selecter select {
    width: 95%;
    height: 45px;
    margin: auto;
    color: white;
    font-family: "210Gothic-050";
    text-align-last: center;
    background: url(../src/main/icon/select_box.png) no-repeat;
    background-size: cover;
    background-color: #0152BD;
}

.product {
    margin: 20px;
}

.product_img {
    width: 100%;
}

.title {
    color: #0152BD;
    font-family: "210Gothic-070";
    font-size: 18px;
}

.product-ko-title, .product-en-title {
    font-family: "210Gothic-070";
    font-size: 20px;
    padding: 10px 0;
    display: inline-block;
}

.product-en-title {
    font-size: 16px;
    color: #9e9e9e;
}

.section-wrap-04 {
    margin: 20px;
}

.product-ko-intro, .product-en-intro {
    font-family: "210Gothic-050";
}

.product-ko-intro {
    margin-bottom: 20px;
}

.product-en-intro {
    color: #9e9e9e;
    margin-bottom: 20px;
}

.product_url {
    text-align: center;
    color: black;
    padding: 10px;
    width: 100%;
    border: 1px solid black;
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-family: "210Gothic-050";
    transition: all 0.3s;
}

.product_url:hover {
    border: 0;
    color: white;
    background-color: #0152BD;
}

@media (min-width:480px){
    body {
        width: 480px;
    }
}