@charset "utf-8";
/* FONT */
/* font-family: 'Noto Sans KR', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/* font-family: 'NanumSquare', sans-serif; */
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
/* font-family: 'NanumBarunGothic', sans-serif; */
@import url("https://cdn.jsdelivr.net/gh/moonspam/NanumBarunGothic@latest/nanumbarungothicsubset.css");
/* font-family: 'Nanum Gothic', sans-serif; */
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");




/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 100%;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #333333;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
button {
    font-family: 'Noto Sans KR', sans-serif;
    outline: none;
    background: none;
    border: none;
    padding: 0;
    cursor:pointer;
    font-size:100%;
}
input {
    padding:0 10px;
    box-sizing:border-box;
}
input, textarea, select {
    padding: 0 10px;
    font-size: inherit;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', '맑은 고딕', helvetica, 'Apple SD Gothic Neo', sans-serif;
    color: #333;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    box-sizing: border-box;
    border:1px solid #cccccc;
    outline: 0;
}
select {
    padding: 0 20px 0 10px;
    background: #fff url(../img/ico/ico_my_select_arrow.png) right 15px center no-repeat;
}
textarea {
    padding: 10px;
    resize: none;
}
input::placeholder,
textarea::placeholder {
    color: #999999;
}
a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
}
legend, caption {
    display: none;
}
.clearfix:after {
    content:'';
    display:block;
    clear: both;
}
input + label {
    display:inline-block;
    cursor:pointer;
}

/* common */
#wrap {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.inner {
    max-width:1200px;
    margin:0 auto;
}
.aside_left, .aside_right { display:none; }
.only_w {
    display:block !important;
}
.only_m {
    display:none !important;
}
.full_ttl {
    width:100%;
    padding-bottom:20px;
    font-size:24px;
    font-weight:700;
    color:#231f20;
    border-bottom:1px solid #959595;
}
.dim {
    display:none;
}
/* //common */

/* scroll custom */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width:2px;
}
/* //scroll custom */

/* pagination */
.next_prev_box {
    text-align:right;
}
.next_prev_box ul {
    font-size:0;
}
.next_prev_box ul li {
    display:inline-block;
    width:40px;
    height:40px;
    box-sizing:border-box;
    vertical-align:middle;
}
.next_prev_box ul li + li {
    margin-left:4px;
}
.next_prev_box ul li a {
    display:block;
    width:100%;
    height:100%;
    font-size:12px;
    color:#333333;
    line-height:38px;
    text-align:center;
    border:1px solid #cbcbcb;
    box-sizing:border-box;
}
.next_prev_box ul li a.on {
    color:#fff;
    background-color:#3d342f;
    border-color:#3d342f;
}
.next_prev_box ul li.single a {
    background:url('../img/ico/ico_pager_single.png') center no-repeat;
}
.next_prev_box ul li.single a.next {
    transform:rotate(180deg);
}
.next_prev_box ul li.double a {
    background:url('../img/ico/ico_pager_double.png') center no-repeat;
}
.next_prev_box ul li.double a.last_page {
    transform:rotate(180deg);
}
/* //pagination */

/* popup */
.pop {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.7);
    z-index:99;
}
.pop .pop_cont {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.pop .pop_cont .pop_close {
    position:absolute;
    top:-79px;
    right:0;
    width:53px;
    height:53px;
    background:url('../img/btn/btn_pop_close.png') center no-repeat;
    background-size:cover;
}
/* //popup */


/* datepicker */
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    display: none;
    position: relative;
    margin-top: 10px;
    background: #fff;
    border: solid 1px #dddddd;
    border-radius: 5px;
    z-index: 99999 !important;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all:before {
    position: absolute;
    top: -1px;
    left: 20px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 1px #ddd;
    border-radius: 0px;
    border-left: solid 1px #ddd;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table {
    background: #fff;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table thead tr th {
    width: 32px;
    line-height: 24px;
    height: 24px;
    text-align: center;
    padding-right: 5px;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table thead tr th span {
    font-size: 10.1px;
    font-weight: 300;
    color: #999999;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table tbody tr td {
    text-align: center;
    color: #666666;
    font-size: 12px;
    width: 35px;
    line-height: 35px;
    height: 35px;
    padding-right: 0px;
    background: #ffffff;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table tbody tr td a {
    display: block;
    margin: 1px;
    border-radius: 50%;
    color: #666666;
    font-size: 12px;
    font-weight: 300;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table tbody tr td a:hover {
    background-color: #414d58;
    color: #fff;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table tbody tr td a.ui-state-default.ui-state-active {
    border: solid 1px #414d58;
}
.ui-datepicker-title {
    display: table;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.ui-datepicker-title span {
    text-align: center;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}
.ui-datepicker-title span.ui-datepicker-year {
    font-weight: 300;
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    position: relative;
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a.ui-datepicker-prev {
    text-indent: -9999px;
    position: absolute;
    background: url("../img/btn/calandar_left.png")no-repeat center;
    width: 6px;
    height: 10px;
    left: 10px;
    top: 6px;
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a.ui-datepicker-next {
    text-indent: -9999px;
    position: absolute;
    background: url("../img/btn/calandar_right.png")no-repeat center;
    width: 6px;
    height: 10px;
    right: 10px;
    top: 6px;
}
.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all table tbody tr td.ui-datepicker-unselectable.ui-state-disabled {
    background: #fff;
    color: #cecece;
}
input.date_form :-ms-input-placeholder {
    color: #333333;
}
input.date_form::-webkit-input-placeholder {
    color: #333333;
}
input.date_form::-moz-placeholder {
    color: #333333;
}
button.ui-datepicker-trigger {
    display: none;
}
img.ui-datepicker-taigger {
    margin-left: 10px;
    margin-top: 1px;
}
.date_form {
    background: url("../img/ico/ico_date.png") right 10px center no-repeat;
}
.date_form.date_form3 {
    background: none;
}
.ui-datepicker-trigger {
    margin-left: 10px;
}

/* header */

.header_top {
    background-color:#e6e9ee;
    border-bottom:1px solid #c7ced8;
}
.header_top .left {
    float:left;
    font-size:0;
}
.header_top .right {
    float:right;
    font-size:0;
}
.header_top span {
    display:inline-block;
    position:relative;
    padding-right:27px;
    font-weight:300;
    font-size:12px;
    color:#333333;
    line-height:33px;
}
.header_top span:after {
    content:'';
    display:block;
    position: absolute;
    top:50%;
    right:11px;
    transform:translateY(-50%);
    width:1px;
    height:16px;
    opacity: .4;
    background-color: #959595;
}
.header_top span:last-of-type:after {
    display:none;
}
.header_top em {
    font-weight:500;
    color:#f27935;
}
.header_top .bookmark button {
    padding-left:15px;
    font-weight:400;
    font-size:12px;
    background:url('../img/ico/ico_star_off.png') left center no-repeat;
}
.header_top .bookmark.active button {
    background:url('../img/ico/ico_star_on.png') left center no-repeat;
}
.header_top form {
    padding:3px 0;
}
.header_top form * {
    vertical-align: middle;
}
.header_top .input_wrap {
    display:inline-block;
}
.header_top .input_wrap + .input_wrap {
    margin-left:6px;
}
.header_top .input_wrap input {
    width:151px;
    height:27px;
    padding:0 11px;
    font-size:12px;
    border:1px solid #cccccc;
    box-sizing:border-box;
    border-radius:2px;
}
.header_top .input_wrap input::placeholder {
    color:#777777;
}
.header_top .input_wrap.checkbox {
    margin-right:16px;
}
.header_top .input_wrap.checkbox input {
    display:none;
}
.header_top .input_wrap.checkbox input + label {
    display:inline-block;
    padding-left:26px;
    font-weight:300;
    font-size:12px;
    color:#333333;
    line-height: 27px;
    background:url('../img/ico/ico_checkbox_20x20.png') left top 4px no-repeat;
}
.header_top .input_wrap input[type="checkbox"]:checked + label {
    background:url('../img/ico/ico_checkbox_on_20x20.png') left top 4px no-repeat;
}
.header_top form button {
    width:54px;
    height:27px;
    margin-left:6px;
    font-weight:300;
    font-size:12px;
    color:#ffffff;
    background-color:#5ac2d8;
    border-radius:2px;
}

.header_middle {
    padding:30px 0 17px;
}
.header_middle .logo {
    float:left;
}
.header_middle .cart_link {
    float:right;
    margin-right:17px;
}
.header_middle .cart_link img {
    margin:0 auto;
}
.header_middle .cart_link > a {
    display:inline-block;
    position:relative;
}
.header_middle .cart_link > a + a {
    margin-left: 35px;
}
.header_middle .cart_link .txt {
    display:block;
    margin-top:7px;
    font-size:15px;
}
.header_middle .cart_link .num {
    display:block;
    position:absolute;
    top:-5px;
    right:0;
    width:22px;
    height:22px;
    font-size:15px;
    color:#fff;
    line-height:20px;
    text-align:center;
    letter-spacing:-0.025em;
    background-color:#f27935;
    border-radius:50%;
}
.header_bot {
    position:relative;
}
.main_menu {
    height:60px;
    border-top:1px solid #e1e1e1;
    border-bottom:2px solid #7f7f7f;
    box-sizing:border-box;
}
#category {
    float:left;
    position:relative;
    cursor:pointer;
}
#category button {
    width:204px;
    height:57px;
    border-left:1px solid #e1e1e1;
    border-right:1px solid #e1e1e1;
    box-sizing:border-box;
}
#category button span {
    display:inline-block;
    padding:0 62px 0 33px;
    font-size:16px;
    background:
        url('../img/btn/btn_category.png') left center no-repeat,
        url('../img/btn/btn_category_arrow.png') right center no-repeat;
}
#category.active button span {
    color:#08a9cb;
    background:
    url('../img/btn/btn_category_on.png') left center no-repeat,
    url('../img/btn/btn_category_close.png') right center no-repeat;
}
#category.active:after {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 2px);
    height:100%;
    border: 1px solid #5ac2d8;
    border-bottom: 3px solid #fff;
    top: -1px;
    left: 0;
    z-index: 99999;
}
#gnb_web {
    float:left;
}
#gnb_web .gnb_list {
    font-size:0;
    margin-left:68px;
}
#gnb_web .gnb_list li {
    display:inline-block;
}
#gnb_web .gnb_list li + li {
    margin-left:55px;
}
#gnb_web .gnb_list li a {
    display:block;
    font-size:16px;
    line-height:57px;
}
#gnb_web .gnb_list > li:hover > a {
    font-weight:700;
}
#gnb_web .gnb_list .gnb_list_depth {
    display:none;
    position:absolute;
    top:57px;
    left:0;
    width:100%;
    white-space:nowrap;
    z-index: 1;
    text-align:center;
    background-color:#414d58;
}
#gnb_web .gnb_list .gnb_list_depth li {
    color:#ffffff;
}
#gnb_web .gnb_list .gnb_list_depth li:hover a {
    font-weight:500;
}
.sec_login {
    float:right;
}
.sec_login ul {
    font-size:0;
}
.sec_login ul li {
    display:inline-block;
    position:relative;
    margin:0 10px;
}
.sec_login ul li a {
    display:block;
    font-size:15px;
    color:#666666;
    line-height:57px;
}
.sec_login ul li:after {
    content:'';
    display:block;
    position:absolute;
    top:52%;
    left:calc(100% + 10px);
    transform:translateY(-50%);
    width:1px;
    height:15px;
    background-color:#666666;
}
.sec_login ul li:last-of-type:after {
    display:none;
}
.menu_wrap_inner {
    position:relative;
    max-width:1200px;
    margin:0 auto;
}
.open_menu {
    display:none;
    position:absolute;
    top:-1px;
    width:100%;
    min-height:500px;
    padding:30px 36px;
    box-sizing:border-box;
    z-index:9999;
    background-color:#fff;
    border:1px solid #5ac2d8;
}
.open_menu .box {
    float:left;
}
.open_menu .box + .box {
    margin-left:55px;
}
.open_menu .box .name {
    display:block;
    font-size:15px;
    font-weight:700;
    color:#333333;
}
.open_menu .cg_list {
    margin-top:25px;
}
.open_menu .cg_list li a {
    display:block;
    font-size:15px;
    font-weight:100;
    line-height:2;
}
/* //header */

/* fix banner */
#h_fix {
    display:none;
    position:fixed;
    top:25%;
    right:0;
    width:120px;
    box-shadow: -3px 2px 5px 0px rgba(0, 0, 0, 0.06);
    border-radius:10px 0 0 10px;
    background-color:#ffffff;
    text-align:center;
    z-index:9999;
}
#h_fix .fix_top {
    padding:40px 0;
    background-color:#414d58;
    border-radius:10px 0 0 0;
}
#h_fix .fix_top p {
    font-size:15px;
    font-weight:500;
    color:#ffffff;
}
#h_fix .fix_top a {
    display:inline-block;
    padding-top:10px;
    font-size:14px;
    font-weight:500;
    color:#95d5e2;
}
#h_fix .fix_list {
    position:relative;
}
#h_fix .fix_list li {
    border-bottom:1px solid #e1e1e1;
}
#h_fix .fix_list li a {
    display:block;
    padding:24px 0 22px;
}
#h_fix .fix_list li span {
    display:block;
    margin-top:10px;
    font-size:14px;
    font-weight:500;
    color:#777777;
}
#h_fix .top_btn button {
    width:100%;
    padding:10px 0;
}
#h_fix .top_btn button span {
    display:block;
    font-size:14px;
    font-weight:500;
    color:#414d58;
    letter-spacing: 0;
    padding-top:11px;
    background:url('../img/ico/ico_left_arrow_top.png') center top no-repeat;
}
/* //fix banner */

/* footer */
#footer {
    border-top:1px solid rgba(41,41,41,.5);
}
#footer .f_menu {
    height:70px;
    border-bottom:1px solid rgba(41,41,41,.1);
    box-sizing:border-box;
}
.f_menu ul {
    font-size:0;
}
.f_menu li {
    display:inline-block;
    position:relative;
}
.f_menu li:after {
    content:'';
    display:block;
    position:absolute;
    top:52%;
    left:calc(100% + 23px);
    transform: translateY(-50%);
    width:1px;
    height:17px;
    background-color:#b8b7b7;
}
.f_menu li:last-of-type:after {
    display:none;
}
.f_menu li + li {
    margin-left:48px;
}
.f_menu li a {
    display:block;
    font-size:17px;
    line-height:69px;
}
.f_info {
    padding:38px 0 50px;
}
.f_info .f_logo {
    float:left;
    margin-right:40px;
}
.f_info .f_cont {
    float:left;
}
.f_info .f_cont address {
    font-size:0;
}
.f_info .f_cont span {
    display:inline-block;
    font-size:14px;
    color:#808080;
    line-height:1.7;
}
.f_info .f_cont span + span {
    margin-left:5px;
}
.f_info .f_button {
    display:inline-block;
    margin-left:5px;
}
.f_info .f_button a {
    display:inline-block;
    padding:0 10px;
    font-size:13px;
    color:#ffffff;
    line-height:22px;
    text-align:center;
    border-radius:20px;
    background-color:#a1a1a1;
}
.f_info .f_button a + a {
    margin-left:3px;
}
.f_info .copyright {
    margin-top:30px;
    font-size:14px;
    color:#a6a6a6;
}
.f_info .f_ico {
    float:right;
}
/* //footer */

/* responsive */

@media screen and (max-width:1200px) {
    .inner {
        padding: 0 10px;
        box-sizing:border-box;
    }
}

@media screen and (max-width:1024px) {

    /* header */
    #gnb_web .gnb_list {
        margin-left:30px;
    }
    #gnb_web .gnb_list li + li {
        margin-left:30px;
    }
    #gnb_web .gnb_list li a {
        font-size:15px;
    }
    .open_menu {
        padding:20px 18px;
    }
    .open_menu .box + .box {
        margin-left:35px;
    }

    /* footer */
    .f_info .f_cont {
        margin-top:20px;
    }


}

@media screen and (max-width:850px) {

    .only_w {
        display:none !important;
    }
    .only_m {
        display:block !important;
    }
    .only_meb {
        display:none;
    }

    #h_fix {
        display:none;
    }

    /* header */
    #header {
        height:50px;
        border-bottom: 1px solid rgba(0,0,0,.5);
        box-sizing:border-box;
    }
    .header_top {
        display:none;
    }
    .header_middle {
        position:relative;
        height:50px;
        padding:0;
        text-align:center;
        box-sizing: border-box;
    }
    .header_middle .logo {
        display:inline-block;
        float:none;
        width:100px;
        line-height:50px;
    }
    .header_middle .cart_link {
        float:none;
        position:absolute;
        top:50%;
        right:0;
        transform: translateY(-50%) translateZ(0);
        margin-right:10px;
    }
    .header_middle .cart_link img {
        width:22px;
    }
    .header_middle .cart_link .txt {
        display:none;
    }
    .header_middle .cart_link > a + a {
        margin-left:6px;
    }
    .header_middle .cart_link .num {
        right:-5px;
        width:14px;
        height:14px;
        font-size:10px;
        line-height:12px;
    }
    .header_middle .ham_btn {
        position: absolute;
        top:0;
        left:0;
    }
    .header_middle .ham_btn button {
        width:50px;
        height:50px;
        background:url('../img/btn/btn_ham_mo.png') center no-repeat;
        background-size:21px;
    }
    .main_menu {
        display:none;
    }
    .open_menu {
        display:block;
        position:fixed;
        top:0;
        left:-100%;
        width:280px;
        height:100%;
        padding:0;
        border:none;
        z-index:999;
        overflow-y:auto;
        transition: all .5s;
    }
    .open_menu.active {
        left:0;
        transition: all .5s;
    }
    .open_menu .ham_top {
        width:100%;
        height:50px;
        background-color:#414d58;
        text-align:right;
    }
    .open_menu .ham_top button {
        width:50px;
        height:50px;
        background:url('../img/btn/btn_ham_close.png') center no-repeat;
        background-size:16px;
    }
    .open_menu .ham_mid {
        padding:20px 13px;
    }
    .open_menu .login_button {
        font-size:0;
    }
    .open_menu .login_button button {
        width:calc(50% - 2px);
        height:30px;
        font-size:14px;
        color:#ffffff;
        border-radius:3px;
    }
    .open_menu .login_button button + button {
        margin-left:4px;
    }
    .open_menu .login_button .login_btn {
        background-color:#099dff;
    }
    .open_menu .login_button .join_btn {
        background-color:#959595;
    }
    .open_menu .user_info .welcome {
        margin-bottom:13px;
        font-size:14px;
        color:#414d58;
    }
    .open_menu .user_info dl {
        display:flex;
        align-items: center;
        font-size:14px;
        color:#414d58;
        line-height:1.4;
    }
    .open_menu .user_info dl dt {
        margin-right:auto;
    }
    .open_menu .user_info dl dd {
        margin-left:auto;
    }
    .open_menu .user_info em {
        color:#0085ff;
    }
    .open_menu .user_info_button {
        padding-top:18px;
        font-size:0;
    }
    .open_menu .user_info_button button {
        width:calc(50% - 4px);
        height:32px;
        font-size:14px;
        color:#000000;
        border-radius:3px;
        border:1px solid #bfbfbf;
    }
    .open_menu .user_info_button button + button {
        margin-left:8px;
    }
    .open_menu .user_info_button em {
        color:#0097b7;
    }
    .open_menu .box {
        float:none;
    }
    .open_menu .box + .box {
        margin-left:0;
    }
    .open_menu .box .name {
        display:block;
        position:relative;
        padding:0 10px;
        font-size:16px;
        color:#333333;
        line-height:40px;
        border-bottom:1px solid rgba(65,77,88,.2);
    }
    .open_menu .box .name:after {
        content:'';
        display:block;
        position: absolute;
        top:0;
        right:0;
        width:40px;
        height:40px;
        background:url('../img/ico/ico_open_menu_arrow_mo.png') center no-repeat;
        background-size:10px;
        transition: all .3s;
    }
    .open_menu .box.active .name:after {
        transform:rotate(180deg);
        transition: all .3s;
    }
    .open_menu .box:first-of-type .name {
        border-top:1px solid rgba(65,77,88,.2);
    }
    .open_menu .cg_list {
        display:none;
        margin:0;
        padding:10px 18px 15px;
        background-color:#f8f8f8;
        border-bottom: 1px solid rgba(65,77,88,.2);
    }
    .open_menu .cg_list li a {
        font-size:14px;
        font-weight:400;
        line-height:2.2;
    }
    .open_menu .cg_list li a:before {
        content:'-';
        display:inline-block;
        margin-right:3px;
    }
    .header_bot .dim {
        display:none;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:rgba(0,0,0,.7);
        z-index:998;
    }

    /* footer */
    #footer .f_menu {
        height:auto;
        border-bottom:none;
    }
    .f_menu .inner {
        padding:0;
    }
    .f_menu li {
        width:33.33%;
        border-right:1px solid #bfbfbf;
        border-bottom:1px solid #bfbfbf;
        margin-top:-1px;
        box-sizing:border-box;
    }
    .f_menu li:after {
        display:none;
    }
    .f_menu li:nth-of-type(3n+0) {
        border-right:none;
    }
    .f_menu li + li {
        margin-left:0;
    }
    .f_menu li a {
        font-size:13px;
        line-height:30px;
        text-align:center;
    }
    .f_info {
        padding:13px 14px 30px;
    }
    .f_info .f_logo {
        display:none;
    }
    .f_info .f_cont {
        float:none;
    }
    .f_info .f_ico {
        display:none;
    }
    .f_info .f_cont span {
        margin-right:3px;
        line-height:1.5;
    }
    .f_info .f_cont span + span {
        margin-left:0;
    }
    .f_info .f_button {
        display:none;
    }
    .f_info .copyright {
        margin-top:25px;
        line-height: 1.4;
    }

    /* common - popup */
    .pop .pop_cont {
        width:90%;
    }
    .pop .pop_cont .pop_close {
        top:-55px;
        width:40px;
        height:40px;
    }

    /* common - pager */
    .next_prev_box {
        text-align: center;
    }
    .next_prev_box ul li {
        width:30px;
        height: 30px;
        margin-bottom:4px;
    }
    .next_prev_box ul li a {
        line-height: 28px;
    }

    /* common - date picker */
    .date_form {
        background:url('../img/ico/ico_date_mo.png') right 7px center no-repeat;
        background-size:14px;
    }

}


@media screen and (max-width:360px) {

    /* footer */
    .f_menu li a {
        font-size:12px;
    }

} 