@charset "utf-8";

/* Common CSS - Header, Footer, All Layout */

/* For Layout */

#wrap{
    position: relative;
}

.layout{
    width: 1200px;
    margin: 0 auto;
}

/* Header */

#header{
    width: 100%;
}

#header .header_top{
    background: #0774b7;
}

.header_top .layout{
    overflow: hidden;
}

.header_top .layout > div{
    float: right;
    overflow: hidden;
}

.header_top ul,
.header_top .search_box{
    float: left;
}

.header_top ul{
    overflow: hidden;
}

.header_top ul li{
    float: left;
}

.header_top ul li a{
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 8px 11px;
    text-transform: uppercase;
}

.header_top .search_box input{
    vertical-align: middle;
    transition: .5s;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 0;
    width: 0;
}

.header_top .search_box input[type='text']{
    border: none;
}

.header_top .search_box input[type='submit']{
    border: none;
    background: #019fdf;
    color: #fff;
}

.header_top .search_box input.on{
    opacity: 1;
    filter: alpha(opacity=100);
}

.header_top .search_box input[type='submit'].on{
    padding: 2px 5px;
    width: auto;
}

.header_top .search_box input[type='text'].on{
    padding: 4px 0 3px 10px;
    width: 180px;
}

.header_top .search_box a{
    display: inline-block;
    vertical-align: middle;
    padding: 7px;
    background: #019fdf;
}

.header_bot{
    position: relative;
    height: 108px;
}

.header_bot .layout{
    /* overflow: hidden; */
    position: relative;
}

.header_bot .logo{
    float: left;
}

.header_bot .logo a{
    display: block;
    height: 48px;
    padding: 30px 0;
}

.header_bot .gnb_wrap{
    position: absolute;
    right: 0;
}

/* .header_bot .gnb_wrap > ul{
    overflow: hidden;
} */

.header_bot .gnb_wrap li a{
    text-transform: uppercase;
}

.header_bot .gnb_wrap > ul > li{
    float: left;
    position: relative;
}

.header_bot .gnb_wrap > ul > li > a{
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: #333;
    padding: 42px 33px;
}

.header_bot .gnb_wrap .s_menu{
    position: absolute;
    width: 100%;
    height: 260px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

.header_bot .gnb_wrap .s_menu li a{
    display: block;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 10px 0;
    color: #333;
}

.header_bot .dropdown_bg{
    position: absolute;
    width: 100%;
    height: 260px;
    background: #fff;
    top: 108px;
    left: 0;
    z-index: 99;
    display: none;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.1);
}

/* Gnb Hover Style */

.gnb_wrap > ul > li:hover > a{
    color: #0774b7;
    background: #f4f4f4;
}

.gnb_wrap > ul > li:hover .s_menu{
    background: #0774b7;
}

.gnb_wrap > ul > li:hover .s_menu a{
    color: #fff;
}

.gnb_wrap > ul > li:hover .s_menu a:hover{
    text-decoration: underline;
}

/* footer */

#footer{
	padding: 45px 0;
	border-top: 1px solid #ddd;
}

#footer .layout{
	background: url(../images/common/ft_logo.png) right center no-repeat;
}

#footer .ft_menu{
	overflow: hidden;
} 

#footer .ft_menu li{
	list-style: none;
	float: left;
	margin-bottom: 0;
}

#footer .ft_menu li a{
	display: block;
	padding: 0 20px;
	color: #999;
    position: relative;
    font-size: 14px;
}

#footer .ft_menu li:first-child a{
	padding-left: 0;
}

#footer .ft_menu li a::before{
	content: '';
	position: absolute;
	width: 1px;
	height: 11px;
	background: #ddd;
	top: 6px;
	left: 0;
}

#footer .ft_menu li:first-child a::before{
	display: none;
}

#footer .ft_menu li a:hover{
	text-decoration: underline;
}

#footer address{
	margin: 35px 0 0 0;
}

#footer address p{
	font-size: 14px;
	color: #999;
	margin-bottom: 0;
}
#footer address .copyright{
	text-transform: uppercase;
	margin-top: 5px;
}

#footer address .copyright span{
	color: #666;
}

/* Go to Top */

.go_top{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    bottom: 30px;
    right: 30px;
    background: #dfdfdf;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    transition: background .5s;
}

.go_top:hover{
    background: #333;
}