@charset 'utf-8';
/* 1. 웹폰트 또는 외부 CSS 연결 */
@import url('font.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

/* 2. 초기화 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
*:before, *:after {
    box-sizing: border-box;
}
html {}
body {
    background-color: #fff;
    font-family: 'NanumSquare', 'Malgun Gothic', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Godo', 'NanumSquare', 'Malgun Gothic', sans-serif;
}
input, select, textarea {
    font-family: 'NanumSquare', 'Malgun Gothic', sans-serif;
    font-size: 15px;
    color: #333;
}
a {
    text-decoration: none;
    color: #333;
}
ol, ul {
    list-style-type: none;
}
img {
    border: 0;
    vertical-align: top;
}
p {
    margin: 1em 0;
}
table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
}
th, td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
th {
    border-bottom-color: #ddd;
    background-color: #f8f8f8;
}

/* 3. 공용클래스 */
.wrap {
    width: 100%;
    max-width: 1560px;
    padding: 0 1%;
    margin: auto;
}
.sound-only {  /*blind로 바꿔써도 됨*/
    position: absolute;
    left: -9999em;
    top: -9999em;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}
.table {
    display: table;
    width: 100%;
}
.tc {
    display: table-cell;
    vertical-align: middle;
}
.center {
    text-align: center;
}

/* 4. 자주 사용하는 글자색과 배경 */
.godo {
    font-family: 'Godo', 'Malgun Gothic', sans-serif;
}
.wh, .wh:hover, .wh a, .wh a:hover {
    color: #fff !important;
}
.bk, .bk:hover, .bk a, .bk a:hover {
    color: #000 !important;
}

/* 5. 공통영역별 설계 */

/* 스킵영역 */
#skip {}
#skip a {
    position: fixed;
    left: 0;
    top: -50px;
    display: block;
    width: 100%;
    background-color: #5f659d;
    text-align: center;
    line-height: 48px;
    color: #fff;
    z-index: 9999;
    transition: top 0.2s;
}
#skip a:focus {
    top: 0;
}

/* 헤더영역 */
#header {
    /* display: none; */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    z-index: 100;
}
.bg-wh {
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: 300px;
    background-color: #fff;
}
#header .wrap {
    position: relative;
}
.logo {
    float: left;
    width: 331px;
    margin-top: 15px;
}
.logo a {
    display: block;
    padding-top: 18.12%;
    background: url('../images/logo.png') center center/contain no-repeat;
}

.bg-shadow {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
#gh-gnb {
    float: left;
    margin-left: 133px;
}
#gh-gnb a {
    display: block;
}
#gh-gnb .depth1{
    position: relative;
    float: left;
}
#gh-gnb .depth1 > a {
    position: relative;
    padding: 0 32px;
    line-height: 90px;
    font-size: 1.4em;
    font-weight: 700;
    color: #000;
    font-family: 'Godo', 'Malgun Gothic', sans-serif;
}
#gh-gnb .depth1 > a:after { /*동그라미*/
    display: none;
    position: absolute;
    left: 50%;
    bottom: 10px;
    margin-left: -5px;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #01c283;
}
#gh-gnb .depth1.active > a:after {
    display: block;
}
#gh-gnb .depth2 {
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: 300px;
    padding-top: 32px;
    text-align: center;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 2;
}

#gh-gnb .depth2 li {}
#gh-gnb .depth2 li a {
    color: #777;
}
.util-menu {
    float: right;
    margin-top: 20px;
    margin-right: 30px;
}
.util-menu a {
    float: left;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 100%;
    border: 1px solid #ddd;
    text-align: center;
    text-indent: -9999em;
    background-position: center center;
    background-repeat: no-repeat;
}
.btn-login { /* 배경이미지 */
    background-image: url('../images/login.gif');
}
.btn-search {
    /* 배경이미지 */
    background-image: url('../images/more.gif');
}

.circle-img {
    position: absolute;
    left: calc(50% - 670px);
    top: 50px;
    width: 190px;
    height: 190px;
    background-image: url('../images/circle1.jpg');
}



/* 푸터 */
#footer {
    padding: 50px 0 100px;
    background-color: #333;
    color: #b5b2b2;
}
#footer .wrap {
    position: relative;
    padding-left: 320px;
}

.ft-menu {
    padding: 1.5em 0;
}
.ft-menu a {
    color: #fff;
}
.ft-menu li {
    float: left;
    padding: 0 1em;
    border-right: 1px solid rgba(255,255,255,0.15);
    line-height: 0.8;
}
.ft-menu li:first-child {
    padding-left: 0;
}
.ft-menu li:last-child {
    border: 0;
}
.ft-logo {
    position: absolute;
    left: 40px;
    top: 0;
    opacity: 0.6;
}
.ft-logo img {
    width: 240px;
}
.ft-info {
    font-size: 0.9em;
    line-height: 1.8;
}


/* 컨테이너영역 */
#gh-container {
    padding-top: 0;
}
#gh-container .fp-tableCell {
    padding-top: 90px;
}
#footer .fp-tableCell {
    padding-top: 0;
}




