@charset "utf-8";
/* CSS Document */

/*
First Write : 2019-03-25
Last Update : 2019-04-11
Author: Jcode
*/

/* S : Common Set */
@media (min-width: 1025px) {/* 최소 1024 ~ 최대 -------------------------------------------------------- */
body {width: 600px;}
}

/* Basic Set */
body {
    margin: 0;
    padding: 0;
    /*font-size: 1rem; */
    font-family: "맑은고딕", Malgun Gothic, "돋움", Dotum, "굴림", Gulim, Helvetica, Apple Gothic, Arial, sans-serif;
    color: #333333;
    line-height: 1.2;
    -webkit-text-size-adjust: none; /* 가로세로 전환시 폰트사이즈 고정 */
}

html {
    -webkit-user-select: none;
}

li, article, section {
    display: block;
    overflow: hidden;
}

/* Link Set */
a:link {color: #333333; text-decoration: none;}
a:visited {color: #333333; text-decoration: none;}
a:hover {color: #333333; text-decoration: none;}
a:active {color: #333333; text-decoration: none;}
a:focus {color: #333333; text-decoration: none;}

a, button {border: 0; outline: 0;}

.link_white:link {color: #ffffff; text-decoration: none;}
.link_white:visited {color: #ffffff; text-decoration: none;}
.link_white:hover {color: #ffffff; text-decoration: none;}
.link_white:active {color: #ffffff; text-decoration: none;}
.link_white:focus {color: #ffffff; text-decoration: none;}

/* 타이틀 숨김 */
.blind {position: absolute; left: -9999px; width: 0; height: 0; font-size: 0; line-height: 0;}
.hidden {display: none;}

legend, nav > h1, section > h1, .searcharea h1, .foot_textnav > h1, table caption, .sns_footer > h1, .sns_channel > h1 {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
}

/* margin style */
.mgin15 {margin: 0 15px;}

/* form style */
input, select {
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* 이미지 블럭 */
.imgblock {
    display: block;
    border: none;
    background: none;
    /*border: 1px solid blue;*/
}
.imgblock_in {
    display: block;
    text-indent: -9999px;
    background-color: transparent;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    /*border: 1px solid pink;*/
}
/* E : Common Set */


/* S : Header */
/* 로고영역 */
#header .logoarea {
    position: relative;
}
#header .logoarea h1 {
    width: 140px;
    margin: 0 auto;
}
#header .logoarea h1 .imgblock_in {
    width: 104px;
    height: 26px;
    margin: 0 auto;
    padding: 14px 0;
    background-image: url(../images_mo/logo.png);
    background-position: center;
}
#header .logoarea .btn_allnav, #header .logoarea .btn_search  {
    position: absolute;
    top: 0;
}
#header .logoarea .btn_allnav {
    left: 0;
}
#header .logoarea .btn_allnav .imgblock {
    padding: 19px 16px 18px 16px;
}
#header .logoarea .btn_allnav .imgblock_in {
    width: 22px;
    height: 16px;
    background-image: url(../images_mo/ico_allmenu.png);
}
#header .logoarea .btn_search {
    right: 0;
}
#header .logoarea .btn_search .imgblock {
    padding: 16px 16px 14px 16px;
}
#header .logoarea .btn_search .imgblock_in {
    width: 24px;
    height: 24px;
    background-image: url(../images_mo/ico_search.png);
}

/* 메뉴영역 */
#header .gnb {
    padding: 2px 0;
    overflow-x : auto;
    overflow-y : hidden;
    border-bottom: 2px solid #df0000;
    /*background-color: #fff;*/
    /*border: 1px solid blue;*/
}
#header .gnb ul {
    width: 680px;
}
#header .gnb ul li {
    float: left;
}
#header .gnb ul li a {
    display: inline-block;
    padding: 14px 14px;
}
#header .gnb ul li a.menu_on span {
    padding: 4px 10px 5px 10px;
    background-color: #df0000;
    color: #fff;
}
#header .gnb_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* border: 1px solid hotpink; */
    background-color: #ffffff
}

/* 검색영역 */
#header .searcharea {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #d7dae2;
    background-color: #f1f2f4;
}
#header .searcharea .inputbox {
    position: relative;
    margin: 8px 44px 7px 10px;
    padding: 4px 60px 4px 10px;
    border: 1px solid #d6d7db;
    -webkit-border-radius: 30px;
    -o-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #fff;
}
#header .searcharea input {
    width: 100%;
    padding: 6px;
    border: none;
    font-size: 1rem;
}
#header .searcharea .btn_search {
    position: absolute;
    right: 2px;
    top: 2px;
    margin: 0;
}
#header .searcharea .btn_search .imgblock {
    padding: 6px 10px;
}
#header .searcharea .btn_search .imgblock_in {
    width: 22px;
    height: 22px;
    background-image: url(../images_mo/ico_search1.png);
}
#header .searcharea .btn_close {
    position: absolute;
    right: 2px;
    top: 4px;
    margin: 0;
}
#header .searcharea .btn_close .imgblock {
    padding: 15px 12px;
}
#header .searcharea .btn_close .imgblock_in {
    width: 18px;
    height: 18px;
    background-image: url(../images_mo/ico_close.png);
}
/* E : Header */

/* S : Footer */
#footer p {
    padding: 18px 0;
    border-top: 1px solid #e2e2e2;
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    background-color: #eee;
}
/* E : Footer */

/* S : Layout */
#wrap {
    background-color: #fff;
}
#container {
    margin-bottom: 20px;
    min-height: 200px;
}
/* E : Layout */