@charset "utf-8";

/*
    common
 */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, small, strike, strong,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
article, aside, footer, header, hgroup,
menu, nav, output, ruby, section {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
html {
    font-size: 16px;
}
body {
    font-family: 'AppleSDGothicNeoR00', 'Apple SD Gothic Neo R00', 'Apple SD 산돌고딕 Neo', 'Gothic A1', 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-weight: 400;
}
ol, ul {
    list-style: none;
}
a {
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
}
section {
    position: relative;
}
button {
    border: 0;
    outline: 0;
}
input {
    border: 0;
    outline: 0;
}
textarea {
    border: 0;
    outline: 0;
    padding: 0;
}
select {
    outline: 0;
    border: 0;
    background-color: transparent;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;

}
/*
    header
*/
header {
    width: 100%;
    height: 60px;
    background-color: #4586C9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}
header .header_inner {
    position: relative;
    width: 100%;
    height: 100%;
}
header .btn_back {
    width: 45px;
    height: 45px;
    padding: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -22.5px;
    z-index: 10;
}
header .header_title {
    width: 100%;
    height: 100%;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}
.bg_gradient {
    background: #4586c9;
    background: -moz-linear-gradient(top,  #4586c9 0%, #58aff2 100%);
    background: -webkit-linear-gradient(top,  #4586c9 0%,#58aff2 100%);
    background: linear-gradient(to bottom,  #4586c9 0%,#58aff2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4586c9', endColorstr='#58aff2',GradientType=0 );
}
.bg_ffe800 { background-color: #FFE800; }
.block { display: block !important; }
.font_0 { font-size: 0 !important; }
.font_14 { font-size: 0.875rem; }
.color_black { color: #000 !important; }
.color_white { color: #fff !important; }
.color_red { color: #ED1C24 !important; }
.color_434343 { color: #434343 !important }
.color_4586c9 { color: #4586C9 !important; }
.checkbox_input { display: none !important; }
.text_center { text-align: center !important; }
.clear_both:after { clear: both; }
input::-webkit-input-placeholder { color: rgba(255, 255, 255, .3); }
input::-ms-input-placeholder { color: rgba(255, 255, 255, .3); }

/*
    swiper arrow image custom
*/
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: 0.7 !important;
}
.swiper-button-next, .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    background-color: rgba(0, 0, 0, .3) !important;
    background-image: url('../images/btn_back_w.png') !important;
    -webkit-background-size: contain !important;
    background-size: contain !important;
}
.swiper-button-next {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
/*
    Popup
*/
.popup_wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: auto;
    background: rgba(0, 0, 0, 0.3);
}
.popup_wrap:before {
    display: inline-block;
    width: 0;
    height: 100%;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
    content: "";
    font-size: 0;
}
.popup_upper {
    display: inline-block;
    width: 95%;
    position: relative;
    vertical-align: middle;
    background-color: #fff;
    letter-spacing: -1px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: popup_show 0.3s linear 0s 1;
    -moz-animation: popup_show 0.3s linear 0s 1;
    -o-animation: popup_show 0.3s linear 0s 1;
    animation: popup_show 0.3s linear 0s 1;
}
.popup_content {
    padding: 10% 7%;
}
.popup_btn {
    width: 100%;
    font-size: 0;
    border-top: 1px solid #D4D4D4;
}
.popup_btn > p {
    display: inline-block;
    width: 50%;
    padding: 5% 0;
    text-align: center;
    color: #434343;
    font-size: 1rem;
}
.popup_btn > .cancel {
    border-right: 1px solid #D4D4D4;
    color: #9F9F9F !important;
}
@-webkit-keyframes popup_show {
    0% {
        -webkit-transform: translate3d(0, -40px, 0);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes popup_show {
    0% {
        -moz-transform: translate3d(0, -40px, 0);
        opacity: 0.3;
    }
    100% {
        -moz-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-o-keyframes popup_show {
    0% {
        -o-transform: translate3d(0, -40px, 0);
        opacity: 0.3;
    }
    100% {
        -o-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes popup_show {
    0% {
        transform: translate3d(0, -40px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@media only screen and (max-width: 320px) {
    html {
        font-size: 14px;
    }
}

/* ANIMATION - ROTATE */
@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
/* ANIMATION - ROTATE REVERSE */
@-webkit-keyframes rotate_reverse {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0deg); }
}
@-moz-keyframes rotate_reverse {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0deg); }
}
@-ms-keyframes rotate_reverse {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0deg); }
}
/* ANIMATION - SCALE UP */
@-webkit-keyframes scaleUp {
    from { -webkit-transform: scale(0.1); opacity: 1; }
    to { -webkit-transform: scale(2.0); opacity: 0; }
}
@-moz-keyframes scaleUp {
    from { -moz-transform: scale(0.1); opacity: 1; }
    to { -moz-transform: scale(2.0); opacity: 0; }
}
@-ms-keyframes scaleUp {
    from { -ms-transform: scale(0.1); opacity: 1; }
    to { -ms-transform: scale(2.0); opacity: 0; }
}