@charset "UTF-8";

.point1 {
    color: #034ea0 !important;
}

.point2 {
    color: #d12233 !important;
}

.point3 {
    color: #3e9841 !important;
}

.point4 {
    color: #4c90db !important;
}

.va_wrap {
    text-align: center;
    white-space: nowrap;
}

.va_wrap img {
    vertical-align: middle;
    display: inline-block;
    *display: inline;
    zoom: 1;
    max-width: 100%;
    max-height: 100%;
}

.va {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

.va_tt {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    width: auto;
    height: auto;
    white-space: normal;
}

.wrapper {
    margin: 0 auto;
    width: 94%;
    max-width: 1400px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .wrapper {
        width: 92%;
    }
}

.wrapper2 {
    margin: 0 auto;
    width: 94%;
    max-width: 1200px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .wrapper2 {
        width: 92%;
    }
}

.wrapper2.small {
    max-width: 1000px;
}

.cl {
    clear: both !important;
    display: block;
}

/*박스라인*/
.line_ani,
.line_ani_wrap {
    position: relative;
    z-index: inherit;
}

.line_ani .line {
    position: absolute;
    width: 0;
    height: 0;
}

.line_ani .line.lineT {
    right: 0;
    top: 0;
    transition: width 0.3s;
}

.line_ani .line.lineL {
    left: 0;
    top: 0;
    transition: height 0.3s;
}

.line_ani .line.lineB {
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.line_ani .line.lineR {
    right: 0;
    bottom: 0;
    transition: height 0.3s;
}

.line_ani:hover .lineT,
.line_ani:hover .lineB {
    width: 100%;
    height: 4px;
}

.line_ani:hover .lineR,
.line_ani:hover .lineL {
    width: 4px;
    height: 100%;
}

/* // 헤더    ---------------------------------------------------------------*/
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

#header.scroll {
    background: #fff;
    border-bottom-color: #ddd;
}

#header.scroll .logo_box {
    top: 15px;
}

#header.scroll .logo_box a {
    width: 171px;
    height: 54px;
    background: url(../images/inc/logo_color.png) no-repeat center;
}

#header.scroll .gnb_area .depth .depth01 > a {
    color: #303030;
    font-size: 1.125em;
    font-weight: 500;
    height: 80px;
    line-height: 80px;
}

#header.scroll .fb_link,
#header.scroll .ins_link {
    top: 28px;
} /* add 200205.LeeJiYoung */

#header.scroll .fb_link .xi,
#header.scroll .ins_link .xi{
    color: #303030;
} /* add 200205.LeeJiYoung */

#header.scroll .nav_btn span {
    background: #222;
}

#header.on {
    background: #fff;
}

#header.on .logo_box a {
    background: url(../images/inc/logo_color.png) no-repeat center;
}

#header.on .gnb_area .depth .depth01 a {
    color: #303030;
}

#header.on .fb_link .xi,
#header.on .ins_link .xi {
    color: #303030;
} /* add 200205.LeeJiYoung */

#header .logo_box {
    position: absolute;
    left: 0;
    top: 17px;
}

@media screen and (max-width: 1024px) {
    #header .logo_box {
        position: static;
        left: auto;
        top: auto !important;
        text-align: center;
        padding: 15px 0;
    }
}

#header .logo_box a {
    width: 203px;
    height: 64px;
    display: inline-block;
    background: url(../images/inc/logo.png) no-repeat center;
    background-size: contain !important;
}

#header .header_bn{position:absolute !important; top:0 !important; right:-212px !important;}
#header.scroll .header_bn img{height:80px;}

@media screen and (max-width: 1024px) {
    #header .logo_box a {
        width: 171px !important;
        height: 54px !important;
    }
}

@media screen and (max-width: 1700px) {
	#header .header_bn{display:none;}
}

@media screen and (max-width: 768px) {
    #header .logo_box a {
        width: 127px !important;
        height: 40px !important;
    }
}

#header .gnb_area {
    margin-right: 8%;
    /* 200205수정[margin-right:3%;]LeeJiYoung */
    transition: 0.3s;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    #header .gnb_area {
        display: none;
    }
}

#header .gnb_area .depth {
    display: inline-block;
}

#header .gnb_area .depth .depth01 {
    display: inline-block;
    position: relative;
    margin: 0 10px;
}

#header .gnb_area .depth .depth01 > a {
    font-size: 1.188em;
    font-weight: 700;
    color: #fff;
    display: block;
    padding: 0 10px;
    height: 100px;
    line-height: 100px;
    letter-spacing: -0.5px;
    position: relative;
}

#header .gnb_area .depth .depth01 > a:before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #4c90db;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

#header .gnb_area .depth .depth01 > a.on:before,
#header .gnb_area .depth .depth01 > a.active:before {
    left: 0;
    width: 100%;
}

#header .gnb_area .depth .depth02 {
    display: none;
    position: absolute;
    left: -15%;
    bottom: auto;
    width: 130%;
    padding: 10px 0;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-sizing: border-box;
}

#header .gnb_area .depth .depth02 > li a {
    display: inline-block;
    color: #666;
    padding: 8px 0;
    font-size: 0.938em;
}

#header .gnb_area .depth .depth02 > li a:hover {
    text-decoration: underline;
}

#header .gnb_area .depth .m_guide {
    display: none;
}

#header .fb_link {
    position: absolute;
    /* right: 35px; */
	right: 70px;
    top: 38px;
}

#header .ins_link {
    position: absolute;
    /* right: 0px; */
	right: 35px;
    top: 39px;
} /* add 200205.LeeJiYoung */

#header .blog_link {
    position: absolute;
    right: 0px;
    top: 39px;
}

@media screen and (max-width: 1024px) {
    #header .fb_link {
        top: 31px !important;
    } 
    
    #header .ins_link {
        top: 33px !important;
    } /* add 200205.LeeJiYoung */
}

@media screen and (max-width: 768px) {
    #header .fb_link {
        right: 30px;
        top: 26px !important;
    } 
    
    #header .ins_link {
        right: 0px;
        top: 27px !important;
    } /* add 200205.LeeJiYoung */
}

#header .fb_link .xi,
#header .ins_link .xi,
#header .blog_link .xi{
    font-size: 25px;
    color: #fff;
    transition: 0.3s;
} /* add 200205.LeeJiYoung */

#header .nav_btn {
    display: none;
}

/*아이콘 이미지 교체*/
#header .fb_link .xi:before{
	content:none !important;
}
#header .fb_link .xi{
	width:25px;
	height:25px;
	display:block;
	background:url('../images/icon/icon_sns.png') -37px -109px no-repeat;
	background-size:400%;
}

#header .ins_link .xi:before{
	content:none !important;
}
#header .ins_link .xi{
	width:25px;
	height:25px;
	display:block;
	background:url('../images/icon/icon_sns.png') -37px -63px no-repeat;
	background-size:400%;
}

#header .blog_link .xi:before{
	content:none !important;
}
#header .blog_link .xi{
	width:25px;
	height:25px;
	display:block;
	background:url('../images/icon/icon_sns.png') -37px -15px no-repeat;
	background-size:400%;
}



@media screen and (max-width: 1024px) {
    #header .nav_btn {
        display: inline-block;
        position: absolute;
        left: 0;
        top: 34px;
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
    #header .nav_btn {
        top: 27px;
    }
}

#header .nav_btn span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 9px 0 0;
}

#header .nav_btn span.bar_t {
    margin: 0;
}

.nav_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
}

.gnb_mobile {
    background: #ffffff;
    left: -100%;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 80%;
    max-width: 450px;
    height: 100%;
    z-index: 99999999;
    overflow: inherit;
}

.gnb_mobile.on {
    left: 0;
    transition: 0.5s;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.gnb_mobile .nav_btn_off {
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    position: absolute;
    right: -32px;
    top: 10px;
    z-index: 10000;
}

.gnb_mobile .nav_btn_off .xi {
    line-height: 30px;
    font-size: 18px;
    color: #fff;
}

.gnb_mobile .m_top {
    padding: 25px 0;
    text-align: center;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .gnb_mobile .m_top img {
        width: 150px;
    }
}

.gnb_mobile .depth .depth01 {
    text-align: left;
}

.gnb_mobile .depth .depth01:first-child > a {
    border-top: 1px solid #dadada;
}

.gnb_mobile .depth .depth01 > a {
    background-image: url(../images/nav/nav_down.png);
    background-position: 95% center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    border-bottom: 1px solid #dadada;
    color: #222;
    display: block;
    padding: 13px 0 13px 15px;
    font-size: 12px;
}

.gnb_mobile .depth .depth01 > a.no {
    background-image: none;
}

.gnb_mobile .depth .depth01 > a.selected1 {
    background-image: url(../images/nav/nav_up2.png);
}

.gnb_mobile .depth .depth01 .depth02 {
    background: #f6f6f6;
}

.gnb_mobile .depth .depth01 .depth02 li {
    border-bottom: 1px solid #ededed;
}

.gnb_mobile .depth .depth01 .depth02 li a {
    position: relative;
    border-bottom: 0;
    color: #333;
    font-size: 12px;
    display: block;
    padding: 10px 0 10px 15px;
}

.gnb_mobile .depth .depth01 .depth02 li:last-child {
    border-bottom-color: #dadada;
}

/* // 메인    ---------------------------------------------------------------*/
.main_visu_wrap {
    position: relative;
}

.main_visu_wrap .item {
    height: 979px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1280px) {
    .main_visu_wrap .item {
        height: 800px;
    }
}

@media screen and (max-width: 1024px) {
    .main_visu_wrap .item {
        height: 700px;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .item {
        height: 530px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .item {
        height: 340px;
    }
}

.main_visu_wrap .flex-control-nav {
    position: absolute;
    bottom: 150px;
    z-index: 10;
    left: 0;
    width: 100%;
    margin-left: -30px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .main_visu_wrap .flex-control-nav {
        bottom: 70px;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-control-nav {
        bottom: 50px;
        margin-left: -17px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .flex-control-nav {
        bottom: 25px;
        margin-left: -11px;
    }
}

.main_visu_wrap .flex-control-nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-control-nav li {
        margin: 0 5px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .flex-control-nav li {
        margin: 0 3px;
    }
}

.main_visu_wrap .flex-control-nav li a {
    display: block;
    font-size: 0;
    width: 17px;
    height: 17px;
    box-sizing: border-box;
    border-radius: 17px;
    border: 3px solid #fff;
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-control-nav li a {
        width: 13px;
        height: 13px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .flex-control-nav li a {
        width: 11px;
        height: 11px;
        border-width: 2px;
    }
}

.main_visu_wrap .flex-control-nav li a.flex-active {
    width: 50px;
    border: none;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-control-nav li a.flex-active {
        width: 40px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .flex-control-nav li a.flex-active {
        width: 30px;
    }
}

.main_visu_wrap .flex-pauseplay {
    position: absolute;
    bottom: 149px;
    left: 50%;
    margin-left: 70px;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    .main_visu_wrap .flex-pauseplay {
        bottom: 70px;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-pauseplay {
        bottom: 49px;
        margin-left: 65px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .flex-pauseplay {
        bottom: 25px;
        margin-left: 50px;
    }
}

.main_visu_wrap .flex-pauseplay a {
    display: block;
    font-size: 0;
    width: 15px;
    height: 20px;
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-pauseplay a {
        width: 12px;
        height: 17px;
        background-size: contain !important;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .flex-pauseplay a {
        width: 10px;
        height: 13px;
    }
}

.main_visu_wrap .flex-pauseplay a.flex-pause {
    background: url(../images/main/flex-pause.png) no-repeat center;
}

.main_visu_wrap .flex-pauseplay a.flex-play {
    background: url(../images/main/flex-play.png) no-repeat center;
}

.main_visu_wrap .slog_wrap {
    position: absolute;
    left: 0;
    top: 35%;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.main_visu_wrap .slog_wrap p {
    color: #fff;
    animation: fadeInUp 1s both 1.0s;
    -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
    /* Safari 4.0 - 8.0 */
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.main_visu_wrap .slog_wrap p.t1 {
    font-size: 2.188em;
    font-family: "BMDOHYEON", sans-serif;
    margin-bottom: 10px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    animation-delay: 0.6s;
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .slog_wrap p.t1 {
        font-size: 1.875em;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .slog_wrap p.t1 {
        font-size: 1.5em;
    }
}

.main_visu_wrap .slog_wrap p.t2 {
    animation-delay: 0.8s;
}

@media screen and (max-width: 1024px) {
    .main_visu_wrap .slog_wrap p.t2 img {
        width: 520px;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .slog_wrap p.t2 img {
        width: 380px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .slog_wrap p.t2 img {
        width: 300px;
    }
}

.main_visu_wrap .slog_wrap p.t3 {
    animation-delay: 1.0s;
}

@media screen and (max-width: 1024px) {
    .main_visu_wrap .slog_wrap p.t3 img {
        width: 520px;
    }
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .slog_wrap p.t3 img {
        width: 380px;
    }
}

@media screen and (max-width: 500px) {
    .main_visu_wrap .slog_wrap p.t3 img {
        width: 300px;
    }
}

.main_visu_wrap .slog_wrap p.t4 {
    animation-delay: 1.2s;
    font-size: 1.250em;
    font-weight: 500;
    margin-top: 15px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .main_visu_wrap .slog_wrap p.t4 {
        display: none;
    }
}

section .main_title {
    font-family: "BMDOHYEON", sans-serif;
    font-size: 2.813em;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
section .main_title.mb10 {
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
    section .main_title {
        margin-bottom: 40px;
        font-size: 2.5em;
    }
}

@media screen and (max-width: 768px) {
    section .main_title {
        margin-bottom: 30px;
        font-size: 2.125em;
    }
}

@media screen and (max-width: 500px) {
    section .main_title {
        margin-bottom: 25px;
    }
}

section.sec_bnr {
    background: url(../images/main/bnr_bg.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr {
        background: none;
        padding: 0;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .wrapper {
        width: 100%;
    }
}

section.sec_bnr .cont_area {
    /* margin-top: -70px; */
	margin-top: 100px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area {
        margin-top: 0;
    }
}

section.sec_bnr .cont_area .top_bnr {
    text-align: center;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr {
        background: #f6f6f6;
    }
}

section.sec_bnr .cont_area .top_bnr .oper_bx {
    width: 40%;
    /*max-width: 490px;*/
    display: inline-block;
    background: #034ea0;
    padding: 33px 0 32px;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .oper_bx {
        display: block;
        width: 100%;
        max-width: none;
    }
}

section.sec_bnr .cont_area .top_bnr .oper_bx .nowtime {
    font-family: "Open Sans", sans-serif;
    font-size: 1.875em;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .oper_bx .nowtime {
        font-size: 1.813em;
    }
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .top_bnr .oper_bx .nowtime {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .oper_bx .nowtime span {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .oper_bx .nowtime span {
        display: inline;
    }
}

section.sec_bnr .cont_area .top_bnr .oper_bx .txt {
    font-size: 1.125em;
    color: #fdba31;
    line-height: 30px;
}

section.sec_bnr .cont_area .top_bnr .oper_bx .txt span {
    display: inline-block;
    background: #003167;
    color: #fff;
    font-size: 15px;
    padding: 3px 13px 4px;
    border-radius: 50px;
    margin-left: 5px;
    line-height: normal;
}

section.sec_bnr .cont_area .top_bnr .time_bx {
    width: 40%;
    /*max-width: 480px;*/
    float: left;
    background: #fff;
    padding: 41px 0 44px;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .time_bx {
        padding: 27px 0;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .time_bx {
        float: none;
        width: 100%;
        max-width: none;
        margin: 10px 0;
    }
}

section.sec_bnr .cont_area .top_bnr .time_bx > div {
    display: inline-block;
    width: 45%;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div {
        display: block;
        width: auto;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div {
        display: inline-block;
    }
}

section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime {
    position: relative;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime {
        padding-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime {
        padding-right: 11%;
        margin-bottom: 0;
    }
}

section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    right: 11%;
    top: 0;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime:before {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div.opentime:before {
        display: block;
    }
}

section.sec_bnr .cont_area .top_bnr .time_bx > div .tt {
    font-size: 1.125em;
    color: #555;
    margin-bottom: 8px;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .time_bx > div .tt {
        margin-bottom: 5px;
    }
}

section.sec_bnr .cont_area .top_bnr .time_bx > div .time {
    color: #034ea0;
    font-family: "Open Sans", sans-serif;
    font-size: 1.563em;
    font-weight: 700;
    letter-spacing: -1px;
}

section.sec_bnr .cont_area .top_bnr .time_bx > div .day {
    font-size: 1.563em;
    font-weight: 600;
    letter-spacing: -0.5px;
}

section.sec_bnr .cont_area .top_bnr .tbl_bx {
    width: 20%;
    max-width: 430px;
    float: right;
    position: relative;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx {
        float: none;
        width: 100%;
        max-width: none;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st thead {
    display: none;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st thead {
        display: table-header-group;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st thead th {
    background: #4386d1;
    color: #fff;
    border-right: 1px solid #ccc;
    padding: 12px 0;
    font-size: 1em;
}

@media screen and (max-width: 500px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st thead th {
        font-size: 0.938em;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st thead th:last-child {
    border-right: none;
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr td {
    background: #fff;
    padding: 12px 0;
    border: 1px solid #ccc;
    font-size: 1.125em;
    color: #333;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr td {
        font-size: 1em;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr td {
        background: #eee;
    }
}

@media screen and (max-width: 500px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr td {
        font-size: 0.938em;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr td:last-child {
    border-right: none;
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr:nth-child(even) td {
    background: #eee;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr:nth-child(even) td {
        background: #fff;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .tbl_st tbody tr:last-child td {
        border-bottom: none;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .nowIcon {
    font-size: 0.938em;
    color: #fff;
    letter-spacing: -0.5px;
    display: inline-block;
    width: 100px;
    padding: 26px 0 36px;
    background-repeat: no-repeat;
    position: absolute;
    top: -75px;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .top_bnr .tbl_bx .nowIcon {
        display: none;
    }
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .nowIcon.st1 {
    background-image: url(../images/main/bnricon1.png);
    left: 54%;
}

section.sec_bnr .cont_area .top_bnr .tbl_bx .nowIcon.st2 {
    background-image: url(../images/main/bnricon2.png);
    left: 84%;
}

section.sec_bnr .cont_area .bot_bnr {
    margin-top: 10px;
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx {
    float: left;
    width: 42.9%;
    max-width: 600px;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx {
        float: none;
        width: 100%;
        max-width: none;
    }
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th {
    background: #4386d1;
    color: #fff;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 14px 5px;
    font-size: 0.938em;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th {
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th {
        padding: 12px 0;
    }
}

@media screen and (max-width: 500px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th {
        font-size: 0.938em;
    }
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th:last-child {
    border-right: none;
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st thead th.bor_n {
    border-bottom: none;
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td {
    background: #fff;
    font-size: 0.938em;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    color: #333;
    padding: 14px 5px;
    text-align: center;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td {
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td {
        padding: 14px 0;
    }
}

@media screen and (max-width: 500px) {
    section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td {
        font-size: 0.938em;
    }
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td:last-child {
    border-right: none;
}

section.sec_bnr .cont_area .bot_bnr .tbl_bx .tbl_st tbody td.bg2 {
    background: #e0efff;
}

section.sec_bnr .cont_area .bot_bnr .link_bx {
    float: right;
    width: 56.5%;
    max-width: 790px;
    box-sizing: border-box;
    padding: 21px 0;
    background: #fff;
    font-size: 0;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx {
        float: none;
        width: 100%;
        max-width: none;
        padding: 12px 0;
    }
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx {
        padding: 0 4%;
    }
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca {
    display: inline-block;
    width: 29.5%;
    margin: 0 1.3%;
    font-size: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 245px;
    box-sizing: border-box;
    padding: 0 10px;
}

@media screen and (max-width: 1280px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca {
        height: 239px;
        font-size: 15px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca {
        font-size: 12px;
        width: 100%;
        display: block;
        margin: 10px 0;
        height: 140px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca {
        height: 120px;
    }
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.75;
    transition: 0.3s ease;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca:hover:before {
    opacity: 1;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st1 {
    background-image: url(../images/main/bnr_loca1.jpg);
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st1 {
        background-image: url(../images/main/bnr_loca1_m.jpg);
    }
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st1:before {
    background: #c2903f;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st2 {
    background-image: url(../images/main/bnr_loca2.jpg);
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st2 {
        background-image: url(../images/main/bnr_loca2_m.jpg);
    }
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st2:before {
    background: #518fd5;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st3 {
    background-image: url(../images/main/bnr_loca3.jpg);
}

@media screen and (max-width: 768px) {
    section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st3 {
        background-image: url(../images/main/bnr_loca3_m.jpg);
    }
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca.st3:before {
    background: #3e9841;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca p {
    color: #fff;
    position: relative;
    z-index: 1;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca p.tt {
    font-size: 1.563em;
    font-weight: 600;
    margin-bottom: 10px;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca p.txt {
    font-size: 1.125em;
}

section.sec_bnr .cont_area .bot_bnr .link_bx .loca p.arr {
    margin-top: 10px;
}

section.sec_panorama {
    background: url(../images/main/panorama_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}

@media screen and (max-width: 1024px) {
    section.sec_panorama {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama {
        padding: 60px 0;
        background: #cbd8e9;
    }
}

@media screen and (max-width: 500px) {
    section.sec_panorama {
        padding: 45px 0;
    }
}

section.sec_panorama .slideWrap {
    background: #fff;
    padding: 80px 60px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1280px) {
    section.sec_panorama .slideWrap {
        padding: 80px 45px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_panorama .slideWrap {
        padding: 50px 40px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama .slideWrap {
        padding: 35px 25px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_panorama .slideWrap {
        padding: 25px 15px;
    }
}

section.sec_panorama .item {
    padding: 0 20px;
    outline: none;
}

@media screen and (max-width: 768px) {
    section.sec_panorama .item {
        padding: 0 10px;
    }
}

section.sec_panorama .item .imgBx {
    float: right;
    width: 52%;
    text-align: right;
}

@media screen and (max-width: 768px) {
    section.sec_panorama .item .imgBx {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
}

section.sec_panorama .item .imgBx a {
    display: block;
}

section.sec_panorama .item .txtBx {
    float: left;
    width: 48%;
}

@media screen and (max-width: 1024px) {
    section.sec_panorama .item .txtBx {
        box-sizing: border-box;
        padding-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama .item .txtBx {
        float: none;
        width: 100%;
    }
}

section.sec_panorama .item .txtBx .title a {
    font-family: "BMDOHYEON", sans-serif;
    font-size: 2.5em;
    letter-spacing: -0.5px;
    color: #101010;
}

@media screen and (max-width: 768px) {
    section.sec_panorama .item .txtBx .title a {
        font-size: 2em;
    }
}

@media screen and (max-width: 500px) {
    section.sec_panorama .item .txtBx .title a {
        font-size: 1.750em;
    }
}

section.sec_panorama .item .txtBx .sm_tit {
    display: block;
    font-size: 1.250em;
    font-weight: 500;
    margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {
    section.sec_panorama .item .txtBx .sm_tit {
        margin-bottom: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama .item .txtBx .sm_tit {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_panorama .item .txtBx .des {
        display: none;
    }
}

section.sec_panorama .item .txtBx .des a {
    display: inline-block;
    padding-right: 50px;
    color: #555;
    font-size: 1.125em;
    line-height: 26px;
    height: 182px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    font-weight: 300;
}

@media screen and (max-width: 1280px) {
    section.sec_panorama .item .txtBx .des a {
        height: 156px;
        -webkit-line-clamp: 6;
    }
}

section.sec_panorama .item .txtBx .des a:hover {
    text-decoration: underline;
}

section.sec_panorama .slick-arrow {
    cursor: pointer;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 80px;
    background: #4c90db;
    color: #fff;
    font-size: 1.063em;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 10;
}

@media screen and (max-width: 1280px) {
    section.sec_panorama .slick-arrow {
        width: 70px;
        height: 70px;
        line-height: 70px;
        margin-top: -35px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_panorama .slick-arrow {
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin-top: -30px;
        font-size: 13px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_panorama .slick-arrow {
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin-top: -22px;
        font-size: 11px;
    }
}

section.sec_panorama .slick-arrow.prev {
    left: -40px;
}

@media screen and (max-width: 1280px) {
    section.sec_panorama .slick-arrow.prev {
        left: -3%;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama .slick-arrow.prev {
        left: -4%;
    }
}

section.sec_panorama .slick-arrow.next {
    right: -40px;
}

@media screen and (max-width: 1280px) {
    section.sec_panorama .slick-arrow.next {
        right: -3%;
    }
}

@media screen and (max-width: 768px) {
    section.sec_panorama .slick-arrow.next {
        right: -4%;
    }
}

section.sec_event {
    background: url(../images/main/event_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    section.sec_event {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    section.sec_event {
        padding: 60px 0;
        overflow: hidden;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event {
        padding: 45px 0;
    }
}

section.sec_event .slideWrap {
    margin: 0 -15px;
}

@media screen and (max-width: 1280px) {
    section.sec_event .slideWrap {
        padding: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_event .slideWrap {
        margin: 0 -10px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .slideWrap {
        padding: 0;
        margin: 0;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .item {
        margin: 0 5px;
    }
}

section.sec_event .item a {
    display: block;
    margin: 0 15px;
}

@media screen and (max-width: 768px) {
    section.sec_event .item a {
        margin: 0 10px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .item a {
        margin: 0;
    }
}

section.sec_event .item a:hover .pic .img_src {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    section.sec_event .item a:hover .pic .img_src {
        transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
    }
}

section.sec_event .item .pic {
    overflow: hidden;
    position: relative;
}

section.sec_event .item .pic .img_src {
    display: block;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
    padding-top: 100%;
}

section.sec_event .item .pic .title {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 40px;
    padding: 10px 20px 0;
    font-size: 1rem;
}

section.sec_event .item .title {
    text-align: left;
    padding: 25px 20px;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    section.sec_event .item .title {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .item .title {
        padding: 15px 10px;
    }
}

section.sec_event .item .title p {
    font-size: 1.250em;
    font-weight: 500;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1024px) {
    section.sec_event .item .title p {
        font-size: 1.125em;
        line-height: 20px;
        height: 40px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .item .title p {
        font-size: 1em;
        line-height: 17px;
        height: 34px;
    }
}

section.sec_event .slick-arrow {
    font-size: 90px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -45px;
    z-index: 10;
}

@media screen and (max-width: 1280px) {
    section.sec_event .slick-arrow {
        font-size: 70px;
        margin-top: -35px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_event .slick-arrow {
        font-size: 60px;
        margin-top: -30px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_event .slick-arrow {
        font-size: 45px;
        margin-top: -23px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .slick-arrow {
        font-size: 35px;
        margin-top: -17px;
    }
}

section.sec_event .slick-arrow.prev {
    left: -6%;
}

@media screen and (max-width: 1280px) {
    section.sec_event .slick-arrow.prev {
        left: -3%;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .slick-arrow.prev {
        left: -6%;
    }
}

section.sec_event .slick-arrow.next {
    right: -6%;
}

@media screen and (max-width: 1280px) {
    section.sec_event .slick-arrow.next {
        right: -3%;
    }
}

@media screen and (max-width: 500px) {
    section.sec_event .slick-arrow.next {
        right: -6%;
    }
}

section.sec_event .more_btn {
    display: inline-block;
    background: #4c90db;
    color: #fff;
    padding: 15px 35px;
    margin-top: 60px;
    border-radius: 60px;
    font-size: 1.250em;
    font-weight: 500;
    transition: 0.3s;
}

@media screen and (max-width: 1024px) {
    section.sec_event .more_btn {
        margin-top: 45px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_event .more_btn {
        margin-top: 30px;
        font-size: 1.063em;
        padding: 13px 25px;
    }
}

section.sec_event .more_btn:hover {
    background: #034ea0;
}

section.sec_insta {
    padding: 100px 0;
}

@media screen and (max-width: 1024px) {
    section.sec_insta {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    section.sec_insta {
        padding: 60px 0;
    }
}

@media screen and (max-width: 500px) {
    section.sec_insta {
        padding: 45px 0;
    }
}

section.sec_insta .insta_list {
    margin: -2px -2px 0 0;
}

section.sec_insta .insta_list .item {
    float: left;
    width: 16.66%;
}

@media screen and (max-width: 1024px) {
    section.sec_insta .insta_list .item {
        width: 25%;
    }
}

@media screen and (max-width: 768px) {
    section.sec_insta .insta_list .item {
        width: 33.33%;
    }
}

section.sec_insta .insta_list .item a {
    display: block;
    margin: 2px 2px 0 0;
}

section.sec_insta .insta_list .item a .img_src {
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
    padding-top: 100%;
}

section.sec_board {
    padding: 100px 0 150px;
    background: url(../images/main/board_bg.jpg) no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    section.sec_board {
        padding: 75px 0 120px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_board {
        padding: 55px 0 70px;
        background: #bdebe8;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board {
        padding: 40px 0;
    }
}

section.sec_board .board_tit {
    color: #303030;
    font-weight: 700;
    font-size: 1.250em;
    font-family: "Open Sans", sans-serif;
    padding-bottom: 23px;
    letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
    section.sec_board .board_tit {
        font-size: 1.313em;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .board_tit {
        padding-bottom: 10px;
    }
}

section.sec_board .cus {
    float: right;
    width: 46%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus {
        float: none;
        width: 100%;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .cus {
        margin-bottom: 35px;
    }
}

section.sec_board .cus .board_tit {
    margin-right: 4%;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus .board_tit {
        margin-right: 0;
    }
}

section.sec_board .cus .infobx {
    padding: 25px 0 0;
    position: relative;
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus .infobx {
        padding: 15px 0 0;
    }
}

section.sec_board .cus .infobx .tel {
    display: inline-block;
    font-size: 2.188em;
    font-family: "Open Sans", sans-serif;
    color: #2f918b;
    letter-spacing: -0.5px;
}

@media screen and (max-width: 1280px) {
    section.sec_board .cus .infobx .tel {
        font-size: 2em;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus .infobx .tel {
        display: block;
    }
}

section.sec_board .cus .infobx .tel a {
    font-weight: 700;
    color: #303030;
}

section.sec_board .cus .infobx .time {
    position: absolute;
    right: 4%;
    top: 27px;
    background: #51b3ad;
    color: #fff;
    font-size: 1.063em;
    border-radius: 50px;
    padding: 0 22px;
    height: 44px;
    line-height: 44px;
}

@media screen and (max-width: 1280px) {
    section.sec_board .cus .infobx .time {
        height: 40px;
        line-height: 40px;
        font-size: 1em;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus .infobx .time {
        display: inline-block;
        position: static;
        right: auto;
        top: auto;
        margin-top: 15px;
    }
}

section.sec_board .cus .quick_icon {
    text-align: left;
    margin-top: 55px;
}

@media screen and (max-width: 1024px) {
    section.sec_board .cus .quick_icon {
        margin-top: 25px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .cus .quick_icon {
        margin-top: 17px;
    }
}

section.sec_board .cus .quick_icon li {
    display: inline-block;
    margin: 0 2px;
}

section.sec_board .cus .quick_icon li a {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: #fff;
    text-align: center;
    font-size: 1.250em;
    font-weight: 500;
    -webkit-transition: transform 0.2s linear;
    -moz-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
}

@media screen and (max-width: 1280px) {
    section.sec_board .cus .quick_icon li a {
        width: 132px;
        height: 132px;
        font-size: 1.125em;
    }
}

@media screen and (max-width: 768px) {
    section.sec_board .cus .quick_icon li a {
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .cus .quick_icon li a {
        font-size: 1em;
        width: 95px;
        height: 95px;
    }
}

section.sec_board .cus .quick_icon li a:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

section.sec_board .cus .quick_icon li .icon {
    height: 50px;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    section.sec_board .cus .quick_icon li .icon {
        height: 30px;
    }

    section.sec_board .cus .quick_icon li .icon img {
        height: 30px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .cus .quick_icon li .icon {
        height: 25px;
    }

    section.sec_board .cus .quick_icon li .icon img {
        height: 25px;
    }
}

section.sec_board .news {
    position: relative;
    float: left;
    width: 50%;
}

@media screen and (max-width: 1024px) {
    section.sec_board .news {
        float: none;
        width: 100%;
    }
}

section.sec_board .news .more_btn {
    font-size: 15px;
    color: #666;
    position: absolute;
    right: 0;
    top: 5px;
}

@media screen and (max-width: 768px) {
    section.sec_board .news .more_btn {
        font-size: 13px;
        top: 3px;
    }
}

section.sec_board .news .more_btn i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
}

@media screen and (max-width: 768px) {
    section.sec_board .news .more_btn i {
        font-size: 13px;
        margin: 0 0 0 2px;
        vertical-align: baseline;
    }
}

section.sec_board .news .board_list_wrap .list {
    display: block;
    margin-top: 4px;
    padding: 0 22px;
    background: #fff;
    height: 67px;
    line-height: 67px;
    transition: 0.3s;
}

@media screen and (max-width: 1280px) {
    section.sec_board .news .board_list_wrap .list {
        height: 60px;
        line-height: 60px;
    }
}

@media screen and (max-width: 1024px) {
    section.sec_board .news .board_list_wrap .list {
        height: 55px;
        line-height: 55px;
    }
}

@media screen and (max-width: 768px) {
    section.sec_board .news .board_list_wrap .list {
        height: 45px;
        line-height: 45px;
    }
}

@media screen and (max-width: 500px) {
    section.sec_board .news .board_list_wrap .list {
        height: auto;
        line-height: normal;
        padding: 10px 15px;
    }
}

section.sec_board .news .board_list_wrap .list:first-child {
    margin-top: 0;
}

section.sec_board .news .board_list_wrap .list:hover {
    background: #034ea0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

section.sec_board .news .board_list_wrap .list:hover .title {
    color: #fff;
}

section.sec_board .news .board_list_wrap .list .title {
    font-size: 1.063em;
    color: #555;
    font-weight: 300;
    float: left;
    width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
}

@media screen and (max-width: 500px) {
    section.sec_board .news .board_list_wrap .list .title {
        float: none;
        width: 100%;
        display: block;
        margin-bottom: 3px;
    }
}

section.sec_board .news .board_list_wrap .list .date {
    float: right;
    font-size: 0.875em;
    font-weight: 300;
    color: #999;
}

@media screen and (max-width: 500px) {
    section.sec_board .news .board_list_wrap .list .date {
        float: none;
        font-size: 0.938em;
    }
}

.right_nav {
    position: fixed;
    right: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    width: 70px;
}

@media screen and (max-width: 1520px) {
    .right_nav {
        right: 10px;
        width: 50px;
        border-radius: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .right_nav {
        display: none;
    }
}

.right_nav .progress_bar {
    padding: 40px 0;
    background-color: rgba(0, 9, 31, 0.6);
    border-radius: 70px;
}

.right_nav .progress_bar .bar {
    position: relative;
    margin: 0 auto;
    width: 3px;
    background-image: url(../images/main/nav_bar.png);
    background-size: cover;
    background-position: top center;
    display: block;
    height: 300px;
}

.right_nav .progress_bar .now {
    width: 100%;
    background-color: #494d51;
    position: absolute;
    top: 0;
    left: 0;
}

.right_nav .progress_bar .now .img {
    position: absolute;
    left: 50%;
    bottom: -14px;
    margin-left: -15px;
    max-width: none;
    animation-name: now;
    -webkit-animation-name: now;
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.right_nav .progress_bar .now .tip {
    white-space: nowrap;
    position: absolute;
    right: 30px;
    bottom: -18px;
    height: 31px;
    line-height: 31px;
    border-radius: 31px;
    padding: 0 15px;
    letter-spacing: -1.5px;
    font-size: 15px;
    font-weight: 600;
    background-color: #dfdfdf;
    color: #222;
}

/*푸터*/
#footer {
    background: #fff;
    border-top: 1px solid #ddd;
    position: relative;
    padding: 40px 0 55px;
}

@media screen and (max-width: 1024px) {
    #footer {
        padding: 30px 0 35px;
    }
}

@media screen and (max-width: 768px) {
    #footer {
        padding: 20px 0 30px;
    }
}

#footer .f_logo {
    float: left;
    width: 20%;
}

@media screen and (max-width: 1280px) {
    #footer .f_logo {
        width: 24%;
    }
}

@media screen and (max-width: 1024px) {
    #footer .f_logo {
        float: none;
        width: auto;
        text-align: center;
        margin-bottom: 25px;
    }

    #footer .f_logo img {
        width: 180px;
    }
}

@media screen and (max-width: 768px) {
    #footer .f_logo img {
        width: 160px;
    }
}

@media screen and (max-width: 500px) {
    #footer .f_logo {
        margin-bottom: 18px;
    }

    #footer .f_logo img {
        width: 130px;
    }
}

#footer .f_copy {
    width: 77%;
    float: right;
}

@media screen and (max-width: 1280px) {
    #footer .f_copy {
        width: 74%;
    }
}

@media screen and (max-width: 1024px) {
    #footer .f_copy {
        float: none;
        width: auto;
        text-align: center;
    }
}

#footer .f_copy .menu li {
    display: inline-block;
    margin-right: 20px;
}

@media screen and (max-width: 1024px) {
    #footer .f_copy .menu li {
        margin: 0 10px;
    }
}

#footer .f_copy .menu li a {
    font-size: 15px;
    color: #999;
    font-weight: 500;
    position: relative;
}

@media screen and (max-width: 768px) {
    #footer .f_copy .menu li a {
        font-size: 13px;
    }
}

#footer .f_copy .menu li a.priv {
    color: #555;
}

#footer .f_copy .menu li a:before {
    content: "";
    width: 1px;
    height: 15px;
    background: #ddd;
    position: absolute;
    right: -11px;
    top: 4px;
}

@media screen and (max-width: 1024px) {
    #footer .f_copy .menu li a:before {
        display: none;
    }
}

#footer .f_copy .menu li:last-child a:before {
    display: none;
}

#footer .f_copy .copy {
    margin-top: 10px;
}

#footer .f_copy .copy li {
    display: inline-block;
    color: #888;
    font-size: 13px;
    margin: 3px 15px 0 0;
    line-height: 1.6;
    position: relative;
}

@media screen and (max-width: 1024px) {
    #footer .f_copy .copy li {
        margin: 3px 5px 0;
    }
}

@media screen and (max-width: 768px) {
    #footer .f_copy .copy li {
        font-size: 11px;
    }
}

#footer .f_copy .copy li.copy {
    display: block;
}

#footer .f_copy .copy li:before {
    content: "";
    width: 1px;
    height: 13px;
    background: #ddd;
    position: absolute;
    right: -9px;
    top: 4px;
}

@media screen and (max-width: 1024px) {
    #footer .f_copy .copy li:before {
        display: none;
    }
}

#footer .f_copy .copy li.n_bar:before {
    display: none;
}

.sub_visu_wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.sub_visu_wrap.sub_cablecar {
    background-image: url(../images/sub/sub_visu1.v2.jpg);
}

.sub_visu_wrap.sub_facility {
    background-image: url(../images/sub/sub_visu2.200602.jpg);
}

.sub_visu_wrap.sub_utilize {
    background-image: url(../images/sub/sub_visu3.200602.jpg);
}

.sub_visu_wrap.sub_tour {
    background-image: url(../images/sub/sub_visu4.jpg);
}

.sub_visu_wrap.sub_event {
    background-image: url(../images/sub/sub_visu5.jpg);
}

.sub_visu_wrap.sub_cs {
    background-image: url(../images/sub/sub_visu5.v2.jpg);
}

.sub_visu_wrap.sub_guide {
    background-image: url(../images/sub/sub_visu6.jpg);
}

.sub_reservation{
	background:url(../images/sub/sub_visu2.200602.jpg);

	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
	}

.sub_visu_wrap .wrapper2 {
    height: 500px;
}

@media screen and (max-width: 1024px) {
    .sub_visu_wrap .wrapper2 {
        height: 420px;
    }
}

@media screen and (max-width: 768px) {
    .sub_visu_wrap .wrapper2 {
        height: 320px;
    }
}

@media screen and (max-width: 500px) {
    .sub_visu_wrap .wrapper2 {
        height: 280px;
    }
}

.sub_visu_wrap .title {
    font-family: "BMDOHYEON", sans-serif;
    font-size: 2.375em;
    letter-spacing: -0.5px;
    color: #fff;
    padding: 65px 0 13px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
    .sub_visu_wrap .title {
        padding: 65px 0 0;
    }
}

.sub_visu_wrap .txt {
    font-size: 1.250em;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
    .sub_visu_wrap .txt {
        display: none;
    }
}

.sub_menu_wrap {
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 500px) {
    .sub_menu_wrap .wrapper2 {
        width: 95%;
    }
}

.sub_menu_wrap .depth .depth01 > a {
    display: none;
}

.sub_menu_wrap .depth .depth02 {
    display: none;
}

.sub_menu_wrap .depth .depth02.ea2 li {
    width: 50%;
}

.sub_menu_wrap .depth .depth02.ea3 li {
    width: 33.33%;
}

.sub_menu_wrap .depth .depth02.ea4 li {
    width: 25%;
}

.sub_menu_wrap .depth .depth02.ea5 li {
    width: 20%;
}

.sub_menu_wrap .depth .depth02 li {
    float: left;
    text-align: center;
}

.sub_menu_wrap .depth .depth02 li a {
    display: block;
    font-size: 1.250em;
    font-weight: 500;
    line-height: 68px;
    border-right: 1px solid #ccc;
}

@media screen and (max-width: 1024px) {
    .sub_menu_wrap .depth .depth02 li a {
        line-height: 58px;
    }
}

@media screen and (max-width: 768px) {
    .sub_menu_wrap .depth .depth02 li a {
        line-height: 50px;
    }
}

@media screen and (max-width: 500px) {
    .sub_menu_wrap .depth .depth02 li a {
        line-height: 45px;
        font-weight: normal;
        font-size: 11px;
        letter-spacing: -0.5px;
    }
}

.sub_menu_wrap .depth .depth02 li a.on {
    background: #034ea0;
    color: #fff;
    border-color: #034ea0;
}

.sub_menu_wrap .depth .depth02 li:first-child a {
    border-left: 1px solid #ccc;
}

.sub_con {
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
    .sub_con {
        padding-top: 60px;
    }
}

@media screen and (max-width: 500px) {
    .sub_con {
        padding-top: 40px;
    }
}

.sub_con .sub_tit {
    font-size: 2.5em;
    font-weight: 500;
    text-align: center;
    position: relative;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    color: #101010;
}

.sub_con .sub_tit:before {
    content: "";
    width: 26px;
    height: 2px;
    background: #bbb;
    position: absolute;
    left: 50%;
    margin-left: -13px;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .sub_con .sub_tit {
        font-size: 2em;
        padding-bottom: 15px;
    }
}

.sub_con .sub_txt {
    font-size: 1.125em;
    color: #666;
    font-weight: 300;
    text-align: center;
    line-height: 1.6;
    margin-top: 30px;
    letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
    .sub_con .sub_txt {
        margin-top: 20px;
        padding: 0 8%;
    }

    .sub_con .sub_txt br {
        display: none;
    }
}

.sub_con .doc {
    padding: 50px 0 120px;
    min-height: 500px;
}

@media screen and (max-width: 1024px) {
    .sub_con .doc {
        padding: 40px 0 100px;
    }
}

@media screen and (max-width: 768px) {
    .sub_con .doc {
        min-height: 200px;
        padding: 30px 0 80px;
    }
}

@media screen and (max-width: 500px) {
    .sub_con .doc {
        padding: 25px 0 50px;
    }
}

.top_tit {
    font-size: 1.250em;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .top_tit {
        margin-bottom: 10px;
    }
}

.top_tit.mt {
    margin-top: 70px;
}

@media screen and (max-width: 768px) {
    .top_tit.mt {
        margin-top: 45px;
    }
}

.top_tit.lag {
    font-size: 1.5em;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .top_tit.lag {
        font-size: 1.313em;
        margin-bottom: 15px;
    }
}

/* 케이블카 소개 */
.introd_wrap .tbox {
    margin: 40px 0 70px;
}

@media screen and (max-width: 768px) {
    .introd_wrap .tbox {
        margin: 20px 0 45px;
    }
}

.introd_wrap .tbox .tt {
    font-size: 2.813em;
    color: #034ea0;
    font-weight: 300;
    margin-right: 50px;
    float: left;
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    .introd_wrap .tbox .tt {
        font-size: 2.5em;
        margin-right: 5%;
    }
}

@media screen and (max-width: 768px) {
    .introd_wrap .tbox .tt {
        font-size: 2.188em;
        margin-right: 0;
        float: none;
    }
}

.introd_wrap .tbox .txt {
    display: table-cell;
    color: #555;
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.5;
}

.introd_wrap .tbox .txt strong {
    color: #222;
    font-weight: 700;
    display: block;
    font-size: 1.188em;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .introd_wrap .tbox .txt {
        display: block;
        margin-top: 15px;
        font-size: 1.063em;
    }
}

.introd_wrap .imgbx2 {
    padding-top: 80px;
    border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
    .introd_wrap .imgbx2 {
        padding-top: 50px;
    }
}

.introd_wrap .imgbx2 > div {
    width: 49%;
}

@media screen and (max-width: 500px) {
    .introd_wrap .imgbx2 > div {
        float: none;
        width: 100%;
    }

    .introd_wrap .imgbx2 > div.right {
        margin-top: 10px;
    }
}

.introd_wrap .imgbx4 {
    overflow: hidden;
}

.introd_wrap .imgbx4 ul {
    margin: 0 -3px 0 0;
}

@media screen and (max-width: 768px) {
    .introd_wrap .imgbx4 ul {
        margin: -5px -5px 0 0;
    }
}

.introd_wrap .imgbx4 ul li {
    float: left;
    width: 25%;
}

@media screen and (max-width: 768px) {
    .introd_wrap .imgbx4 ul li {
        width: 50%;
    }
}

.introd_wrap .imgbx4 ul li .inner {
    margin: 0 3px 0 0;
}

@media screen and (max-width: 768px) {
    .introd_wrap .imgbx4 ul li .inner {
        margin: 5px 5px 0 0;
    }

    .introd_wrap .imgbx4 ul li .inner img {
        width: 100%;
    }
}

/* 케이블카 ci */
.ci_wrap .symbol_info {
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .ci_wrap .symbol_info {
        margin-bottom: 40px;
    }
}

.ci_wrap .symbol_info .symbol {
    float: left;
    margin-right: 6%;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .symbol_info .symbol {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .ci_wrap .symbol_info .symbol {
        float: none;
        margin-right: 0;
        width: 40%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .ci_wrap .symbol_info .symbol {
        width: 45%;
    }
}

.ci_wrap .symbol_info .info {
    display: table-cell;
}

@media screen and (max-width: 768px) {
    .ci_wrap .symbol_info .info {
        display: block;
        margin-top: 20px;
        text-align: center;
    }
}

.ci_wrap .symbol_info .info .tt {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.ci_wrap .symbol_info .info .txt {
    color: #555;
    font-weight: 300;
    font-size: 1.125em;
    line-height: 1.4;
}

.ci_wrap .line_top {
    padding: 60px 0;
    border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
    .ci_wrap .line_top {
        padding: 45px 0;
    }
}

.ci_wrap .line_top .sign_bx {
    width: 48.5%;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .line_top .sign_bx {
        width: 100%;
        float: none;
    }

    .ci_wrap .line_top .sign_bx.right {
        margin-top: 30px;
    }
}

.ci_wrap .line_top .sign_bx .tit {
    font-size: 1.250em;
    font-weight: 600;
    margin-bottom: 20px;
}

.ci_wrap .line_top .sign_bx ul {
    margin: -30px -10px 0 0;
    overflow: hidden;
}

.ci_wrap .line_top .sign_bx ul li {
    float: left;
    width: 50%;
}

.ci_wrap .line_top .sign_bx ul li .inner {
    margin: 30px 10px 0 0;
    text-align: center;
}

.ci_wrap .line_top .sign_bx ul li .inner .ci {
    border: 1px solid #ddd;
    height: 150px;
    padding: 15px;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .line_top .sign_bx ul li .inner .ci {
        height: 120px;
    }
}

@media screen and (max-width: 768px) {
    .ci_wrap .line_top .sign_bx ul li .inner .ci {
        height: 100px;
        padding: 10px 15px;
    }
}

.ci_wrap .line_top .sign_bx ul li .inner .tt {
    margin-top: 15px;
    color: #555;
    font-size: 1.125em;
}

@media screen and (max-width: 768px) {
    .ci_wrap .line_top .sign_bx ul li .inner .tt {
        margin-top: 10px;
    }
}

.ci_wrap .color_bx .tit {
    font-size: 1.250em;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx .tit {
        margin-bottom: 10px;
    }
}

.ci_wrap .color_bx ul {
    overflow: hidden;
}

.ci_wrap .color_bx ul li {
    float: left;
    width: 25%;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .color_bx ul li {
        width: 33.33%;
    }
}

.ci_wrap .color_bx ul li .color {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .color_bx ul li .color {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx ul li .color {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 5px;
        float: none;
    }
}

.ci_wrap .color_bx ul li .color.c1 {
    background: #034ea0;
}

.ci_wrap .color_bx ul li .color.c2 {
    background: #d12233;
}

.ci_wrap .color_bx ul li .color.c3 {
    background: #3e9841;
}

.ci_wrap .color_bx ul li .color.c4 {
    background: #575756;
}

.ci_wrap .color_bx ul li .color.c5 {
    background: #1c1c1b;
}

.ci_wrap .color_bx ul li .color.c6 {
    background: #b49759;
}

.ci_wrap .color_bx ul li .color.c7 {
    background: #a8a9ac;
}

.ci_wrap .color_bx ul li .info {
    display: table-cell;
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx ul li .info {
        display: block;
    }
}

.ci_wrap .color_bx ul li .info .t1 {
    font-size: 0.938em;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx ul li .info .t1 {
        font-size: 1em;
    }
}

.ci_wrap .color_bx ul li .info .t2 {
    font-size: 0.938em;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx ul li .info .t2 {
        font-size: 1em;
    }
}

.ci_wrap .color_bx2 {
    margin-top: 70px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .color_bx2 {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx2 {
        margin-top: 0;
    }
}

.ci_wrap .color_bx2 .color_bx {
    float: left;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .ci_wrap .color_bx2 .color_bx {
        float: none;
        width: 100%;
        margin-top: 30px;
    }
}

.ci_wrap .color_bx2 .color_bx ul li {
    width: 50%;
}

.ci_wrap .ci_down {
    margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
    .ci_wrap .ci_down {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .ci_wrap .ci_down {
        margin: -30px 0 10px;
    }
}

/* 코스안내 */
.course_wrap .course {
    text-align: center;
}

.course_wrap .course.mt {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #ccc;
}

@media screen and (max-width: 1024px) {
    .course_wrap .course.mt {
        margin-top: 60px;
        padding-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .course_wrap .course.mt {
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .course_wrap .course .pc {
        display: none;
    }
}

.course_wrap .course .mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .course_wrap .course .mobile {
        display: block;
    }
}

.course_wrap .course .mobile .start {
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
    .course_wrap .course .mobile .start {
        margin-bottom: 12px;
    }
}

.course_wrap .course .mobile .start > div {
    display: inline-block;
    vertical-align: middle;
}

.course_wrap .course .mobile .start > div.icon {
    width: 50px;
}

.course_wrap .course .mobile .start > div.title {
    text-align: left;
    margin-left: 10px;
}

.course_wrap .course .mobile .start > div.title p {
    color: #4c90db;
    font-size: 1.313em;
    font-weight: 600;
    margin-bottom: 5px;
}

.course_wrap .course .mobile .start > div.title span {
    font-size: 1.125em;
    color: #555;
    font-weight: 300;
}

.course_wrap .course .mobile .course_list {
    text-align: left;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 2;
}

@media screen and (max-width: 500px) {
    .course_wrap .course .mobile .course_list {
        font-weight: normal;
    }
}

.course_wrap .course .mobile .course_list .arr {
    display: inline-block;
    margin: 0 5px;
    width: 8px;
    height: 11px;
    background: url(../images/sub/course_arr.png) no-repeat center;
    background-size: contain;
}

.course_wrap .course .mobile .course_list .arr2 {
    background: url(../images/sub/course_arr2.png) no-repeat center;
    background-size: contain;
}

/* 이용요금 */
.tbl_sm {
    text-align: right;
    color: #666;
    margin-top: -30px;
    margin-bottom: 10px;
}

.tbl_bx .tbl_st2 thead th {
    background: #4386d1;
    color: #fff;
    border: 1px solid #ccc;
    padding: 14px 5px;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .tbl_bx .tbl_st2 thead th {
        font-size: 1em;
        padding: 12px 5px;
    }
}

.tbl_bx .tbl_st2 thead th.bg1 {
    background: #034ea0;
}

.tbl_bx .tbl_st2 tbody th {
    background: #f6f6f6;
    border: 1px solid #ccc;
    padding: 14px 5px;
    font-size: 1.125em;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .tbl_bx .tbl_st2 tbody th {
        padding: 12px 5px;
        font-size: 1em;
    }
}

.tbl_bx .tbl_st2 tbody th .light {
    font-weight: 300;
    color: #444;
    margin: 10px 0;
}

@media screen and (max-width: 500px) {
    .tbl_bx .tbl_st2 tbody th .light {
        margin: 5px 0;
    }
}

.tbl_bx .tbl_st2 tbody th .detail_bt {
    display: inline-block;
    color: #4c90db;
    border-bottom: 1px solid #4c90db;
    font-weight: 300;
}

.tbl_bx .tbl_st2 tbody td {
    background: #fff;
    font-size: 1.125em;
    border: 1px solid #ccc;
    color: #555;
    padding: 14px 5px;
    text-align: center;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .tbl_bx .tbl_st2 tbody td {
        padding: 12px 5px;
        font-size: 1em;
    }
}

.tbl_bx .tbl_st2 tbody td.bg2 {
    background: #e0efff;
}

.tbl_bx .tbl_st2 tbody td ul li {
    margin: 5px 0;
    color: #555;
    padding-left: 12px;
    position: relative;
}

.tbl_bx .tbl_st2 tbody td ul li:before {
    content: "";
    width: 3px;
    height: 3px;
    background: #555;
    position: absolute;
    left: 0;
    top: 11px;
}

.tbl_bx .tbl_st2 tbody .text_left {
    padding-left: 20px;
}

@media screen and (max-width: 768px) {
    .tbl_bx .tbl_st2 tbody .text_left {
        padding-left: 12px;
    }
}

.tbl_bx.wide {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-y: hidden;
}

.tbl_bx.wide .tbl_st2 {
    min-width: 500px;
}
@media screen and (max-width: 500px) {
    .tbl_bx.wide .tbl_st2 {
        min-width: 600px;
    }
}
.comm_ul {
    margin-top: 20px;
}

.comm_ul li {
    margin: 5px 0;
    line-height: 1.4;
    font-size: 1.125em;
    font-weight: 300;
    color: #333;
    padding-left: 12px;
    position: relative;
}

@media screen and (max-width: 500px) {
    .comm_ul li {
        padding-left: 8px;
    }
}

.comm_ul li:before {
    content: "";
    width: 3px;
    height: 3px;
    background: #034ea0;
    position: absolute;
    left: 0;
    top: 11px;
}

@media screen and (max-width: 768px) {
    .comm_ul li:before {
        top: 8px;
    }
}

@media screen and (max-width: 500px) {
    .comm_ul li:before {
        width: 2px;
        height: 2px;
    }
}

/* 이용방법 */
.util_wrap.line {
    border-top: 1px solid #ccc;
    padding-top: 60px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .util_wrap.line {
        padding-top: 40px;
        margin-top: 35px;
    }
}

.util_wrap ul {
    overflow: hidden;
}

.util_wrap ul li {
    float: left;
    width: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .util_wrap ul li {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }
}

.util_wrap ul li.w100 {
    width: 100%;
}

.util_wrap ul li .icon {
    float: left;
}

@media screen and (max-width: 1024px) {
    .util_wrap ul li .icon {
        width: 85px;
    }
}

@media screen and (max-width: 768px) {
    .util_wrap ul li .icon {
        width: 75px;
    }
}

.util_wrap ul li .txt {
    display: table-cell;
    vertical-align: middle;
    height: 100px;
    padding: 0 20px;
    font-size: 1.125em;
    color: #555;
    font-weight: 300;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    .util_wrap ul li .txt {
        height: 85px;
    }
}

@media screen and (max-width: 768px) {
    .util_wrap ul li .txt {
        padding: 0 0 0 15px;
        height: 75px;
    }
}

.util_wrap ul li .txt.st2 {
    vertical-align: top;
}

.util_wrap ul li .txt span {
    display: block;
    margin: 5px 0;
    line-height: 1.4;
    font-weight: 300;
    padding-left: 12px;
    position: relative;
}

@media screen and (max-width: 500px) {
    .util_wrap ul li .txt span {
        padding-left: 8px;
    }
}

.util_wrap ul li .txt span:first-child {
    margin-top: 15px;
}

.util_wrap ul li .txt span:before {
    content: "";
    width: 3px;
    height: 3px;
    background: #034ea0;
    position: absolute;
    left: 0;
    top: 11px;
}

@media screen and (max-width: 768px) {
    .util_wrap ul li .txt span:before {
        top: 8px;
    }
}

@media screen and (max-width: 500px) {
    .util_wrap ul li .txt span:before {
        width: 2px;
        height: 2px;
    }
}

/* 오시는길 */
.map_wrap > div {
    width: 48.5%;
}

@media screen and (max-width: 768px) {
    .map_wrap > div {
        width: 100%;
        float: none;
    }

    .map_wrap > div.right {
        margin-top: 30px;
    }
}

.map_wrap > div .txt {
    margin: -10px 0 30px;
    color: #444;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .map_wrap > div .txt {
        font-size: 1.063em;
        margin: -5px 0 20px;
    }
}

@media screen and (max-width: 500px) {
    .map_wrap > div .txt {
        margin: -5px 0 15px;
    }
}

.map_wrap .mapbx {
    width: 100%;
    height: 320px;
}

@media screen and (max-width: 768px) {
    .map_wrap .mapbx {
        height: 280px;
    }
}

@media screen and (max-width: 500px) {
    .map_wrap .mapbx {
        height: 250px;
    }
}

.map_wrap .roughmap_lebel_text,
.map_wrap .wrap_controllers {
    display: none !important;
}

.line_top {
    padding: 50px 0 60px;
    border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
    .line_top {
        padding: 40px 0 45px;
    }
}

.line_top.mt {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .line_top.mt {
        margin-top: 45px;
    }
}

/* 주변관광 */
.pic3_wrap {
    overflow: hidden;
    margin: 0 -20px 0 0;
}

@media screen and (max-width: 1024px) {
    .pic3_wrap {
        margin: 0 -10px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .pic3_wrap {
        margin: 0 -5px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .pic3_wrap {
        margin: -5px 0 0;
    }
}

.pic3_wrap .pic {
    float: left;
    width: 33.33%;
}

@media screen and (max-width: 500px) {
    .pic3_wrap .pic {
        float: none;
        width: 100%;
    }
}

.pic3_wrap .pic .inner {
    margin: 0 20px 0 0;
}

@media screen and (max-width: 1024px) {
    .pic3_wrap .pic .inner {
        margin: 0 10px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .pic3_wrap .pic .inner {
        margin: 0 5px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .pic3_wrap .pic .inner {
        margin: 5px 0 0 0;
    }

    .pic3_wrap .pic .inner img {
        width: 100%;
    }
}

.pic2_wrap {
    margin: 0 -20px 0 0;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .pic2_wrap {
        margin: 0 -10px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .pic2_wrap {
        margin: -5px 0 0;
    }
}

.pic2_wrap .pic {
    float: left;
}

@media screen and (max-width: 1024px) {
    .pic2_wrap .pic {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .pic2_wrap .pic {
        width: 100%;
        float: none;
    }
}

.pic2_wrap .pic .inner {
    margin: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
    .pic2_wrap .pic .inner {
        margin: 0 10px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .pic2_wrap .pic .inner {
        margin: 5px 0 0;
    }

    .pic2_wrap .pic .inner img {
        width: 100%;
    }
}

.tour_tbox {
    margin-top: 20px;
}

.tour_tbox .tt {
    font-size: 1.250em;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour_tbox .txt {
    line-height: 1.4;
    font-size: 1.125em;
    color: #555;
    font-weight: 300;
}

.course_bx {
    background: #f0f0f0;
    padding: 25px 30px 30px;
    border-radius: 5px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .course_bx {
        padding: 15px 20px 20px;
        margin-top: 30px;
    }
}

.course_bx .tt {
    color: #4c90db;
    font-size: 1.250em;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .course_bx .tt {
        line-height: 27px;
    }
}

.course_bx .tt .icon {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    line-height: normal;
}

@media screen and (max-width: 768px) {
    .course_bx .tt .icon {
        width: 18px;
    }
}

.course_bx .txt {
    font-size: 1.063em;
    font-weight: 500;
    line-height: 1.5;
}

.course_bx .txt .arr {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 11px;
    background: url(../images/sub/course_arr.png) no-repeat center;
}

@media screen and (max-width: 768px) {
    .course_bx .txt .arr {
        width: 8px;
        height: 9px;
        background-size: contain;
    }
}

.img_board_list {
    overflow: hidden;
}

.img_board_list ul {
    margin: -30px -30px 0 0;
}

@media screen and (max-width: 768px) {
    .img_board_list ul {
        margin: -30px -15px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .img_board_list ul {
        margin: -20px 0 0 0;
    }
}

.img_board_list li {
    float: left;
    width: 33.33%;
}

@media screen and (max-width: 1024px) {
    .img_board_list li {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .img_board_list li {
        width: 100%;
    }
}

.img_board_list li .inner {
    display: block;
    margin: 30px 30px 0 0;
    border: 1px solid #ddd;
    position: relative;
}

@media screen and (max-width: 768px) {
    .img_board_list li .inner {
        margin: 30px 15px 0 0;
    }
}

@media screen and (max-width: 500px) {
    .img_board_list li .inner {
        margin: 20px 0 0 0;
    }
}

.img_board_list li .inner:before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 1;
    border: 0 solid #034ea0;
    -webkit-transition: border-width 0.3s;
    -o-transition: border-width 0.3s;
    transition: border-width 0.3s;
}

.img_board_list li .inner .img_box {
    overflow: hidden;
    position: relative;
}

.img_board_list li .inner .img_box .img_src {
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
    padding-top: 66.66667%;
    transition: 0.3s;
}

.img_board_list li .inner .txt_box {
    padding: 25px 20px;
}

@media screen and (max-width: 768px) {
    .img_board_list li .inner .txt_box {
        padding: 15px 10px;
    }
}

.img_board_list li .inner .txt_box .tit {
    font-size: 1.125em;
    color: #222;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 15px;
}

.img_board_list li .inner .txt_box .des {
    font-size: 0.938em;
    color: #888;
    margin: 15px 0;
    height: 60px;
    line-height: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
    .img_board_list li .inner .txt_box .des {
        margin: 10px 0 15px;
        height: 48px;
        line-height: 16px;
    }
}

.img_board_list li .inner .txt_box .date {
    font-size: 0.875em;
    color: #999;
}

.img_board_list li .inner .type_t.type_notice {
    display: inline-block;
    padding: 7px 25px 8px;
    color: #fff;
    background: #034ea0;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    .img_board_list li .inner .type_t.type_notice {
        font-size: 12px;
    }
}

.img_board_list li .inner:hover .img_src {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.img_board_list li .inner:hover:before {
    border-width: 3px;
}

.guide_wrap {
    border: 1px solid #ddd;
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .guide_wrap {
        padding: 20px 15px;
    }
}

.guide_tbox {
    line-height: 1.7;
}

.guide_tbox .tit {
    margin-bottom: 15px;
    color: #1d1d1d;
}

.guide_tbox .txt {
    color: #555;
    margin-bottom: 30px;
}

.guide_tbox .txt:last-of-type {
    margin-bottom: 0;
}

.email_txt_box {
    text-align: center;
    line-height: 1.7;
    padding: 30px;
    background: #f3f3f3;
    border: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
    .email_txt_box {
        padding: 20px 15px;
    }

    .email_txt_box br {
        display: none;
    }
}

.pop-con {
    padding: 0;
    max-width: 1000px;
    width: 90%;
}

.sub_visu_wrap.sub_media {
    background-image: url(../images/sub/sub_visu6.v2.jpg);
}


/*2022-02-07 온라인 예약 추가*/
.rez_wrap{
	margin-bottom: 60px;
	text-align:center;
}
.rez_wrap .rez_btnBox li{display:inline-block; margin:10px; border:1px solid #ddd; cursor:pointer;}
.rez_wrap .rez_btnBox li.rez_01 .imgBox{ width:540px; height:520px; background:url(../images/sub/rez/03_01_01.png);}
.rez_wrap .rez_btnBox li.rez_02 .imgBox{ width:540px; height:520px; background:url(../images/sub/rez/03_02_01.png);}
.rez_wrap .rez_btnBox li .bottom_btnBox{display:flex; justify-content: space-between; padding:10px;}
.rez_wrap .rez_btnBox li .bottom_btnBox span{display:flex; align-items:center; font-weight:600; font-size:1.25em;}

@media screen and (max-width: 1024px) {
.rez_wrap .rez_btnBox li.rez_01 .imgBox{ width:430px; height:414px; background:url(../images/sub/rez/03_01_01.png);}
.rez_wrap .rez_btnBox li.rez_02 .imgBox{ width:430px; height:414px; background:url(../images/sub/rez/03_02_01.png);}
}

@media screen and (max-width: 768px) {
.rez_wrap .rez_btnBox li.rez_01 .imgBox{ width:320px; height:308px; background:url(../images/sub/rez/03_01_01.png);}
.rez_wrap .rez_btnBox li.rez_02 .imgBox{ width:320px; height:308px; background:url(../images/sub/rez/03_02_01.png);}
}


.rez_wrap.blue_rud{background:#d3d9e7; border-radius:20px; padding:20px;}
.rez_wrap .guide_box{
	text-align:left;
	border:1px solid #709dd8;
	border-radius:20px;
	background:#fff;
	padding:50px 0;	
}
.rez_wrap .guide_box .rez_bottomBtn button{width:25% !important; text-align:center;}


.cabinList{display:flex; flex-wrap:wrap;}
.cabinList li{flex:1 1 40%; margin:10px; border:1px solid #ddd; cursor:pointer;}
.cabinList li:hover{border:1px solid #709dd8;}
.cabinList li .bottom_btnBox{display:flex; justify-content: space-between; padding:10px;}
.cabinList li .bottom_btnBox span{display:flex; align-items:center; font-weight:600; font-size:1.25em;}
.cabinList li .bottom_btnBox .tit{font-weight:600; margin-right:10px;}

@media screen and (max-width: 1280px){
	.gnb_area{ font-size:14px !important;}
	#header .gnb_area .depth .depth01{ margin:0 5px !important; }
}


/*main quickmenu*/
.quick_rez{
	position: fixed;	
	display: block;    
    top: 13%;
    right: 100px;
	text-align:center;	
	z-index:999;
}
.quick_rez a{
	display:block;
	width:70px;
	height:127px;
	background:url(../images/main/02_03.png) no-repeat;
	padding-top:58px;
}
.quick_rez p{ color:#fff;font-size:1.25em; }
.quick_rez p:first-child{font-size:1em;}

@media screen and (max-width: 1520px){
	.quick_rez{ top: 11%; right:0px;}
}

@media screen and (max-width: 1024px) {
	.quick_rez{display:none;}
}



/* popup */
@media screen and (max-width: 768px) {
	.modal_wrap{width:85% !important; height:auto !important;}	
	#divRealContent{width:100% !important; height:auto !important; overflow:hidden;}
	.modal-body img{width:100% !important; height:auto !important;}
}


/* main insta */
@media screen and (max-width: 768px) {

	.instaPC{display:none;}

	.instaMobile{display:block; height:550px;}
}
@media screen and (min-width: 768px) {
	.instaPC{display:block;}

	.instaMobile{display:none;}
}
.m-event-partner{display:none;}
/*main 제휴할인*/
@media screen and (max-width: 768px) {
.m-event-partner{display:block;}
}