@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900&display=swap&subset=korean');

/* reset */
body {overflow-x: hidden;}
* {margin: 0; padding: 0; box-sizing: border-box;}
ul,ol {list-style: none;}
hr {display: none;}
h1 {margin: 0;}
a {text-decoration: none;}
b {font-weight: 700;}
button {border: none; background: none; text-indent: -9999px;}
img {border: none;}
html {font-size: 0.625em;}
body {font-family: 'Noto Sans KR', sans-serif; line-height: 1;}
.clear:after {content: ""; clear: both; display: block;}
.blind {position: absolute; top: -9999px; left: -9999px;}

/* header */
#headCompanySelect {
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  outline: 0 none;
  background: white;
  opacity: 0.5;
}
#headCompanySelect option {
  background: black;
  color: #fff;
  padding: 3px 0;
}

.navWrap {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 60px;
    border-bottom: 1px solid #fff;
    transition: all 0.7s;
    z-index: 10;
}
.navWrap h1 {
    text-indent: -9999px; overflow: hidden;
}
.navWrap h1 a {
    display: block;
    width: 147px; height: 33px;
    background: url(../img/header_logo.png) no-repeat center/contain;
    margin: 13px auto 0;
}
header .button {
    position: absolute;
    top: 21px; right: 24px;
}
.navWrap .lang {
	position: absolute;
	top:16px; left:21px;
}
.navWrap .lang a {
	display: block;
    width: 65px; height: 30px;
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    text-align: center;
    line-height: 27px;
}
.button span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.7s;
}
.button span:nth-child(2) {margin: 6px 0;}
.navInner {
    width: 100%; height: 100%;
    position: fixed;
    top: 60px; left: 0;
    transform: translateX(100%); opacity: 0.7;
    transition: all 0.5s ease-in-out;
}
.quick_button {display: none;}
/* navwrap.on */
.navWrap.on {background: #fff; border-bottom-color: #dbdbdb; position: fixed;}
.navWrap.on .navInner {
    display: block;
    background: #fff;
    transform: translateX(0); opacity: 1;
}
.navWrap.on .button span {background: #299324;}
.navWrap.on .button span:nth-child(2){opacity: 0;}
.navWrap.on .button span:first-child {
    transform: translateY(6px) rotate(225deg);
}
.navWrap.on .button span:last-child {
    transform: translateY(-10px) rotate(-225deg);
}
.gnb > li {border-bottom: 1px solid #dbdbdb;}
.gnb > li > a {
    display: block;
    position: relative;
    width: 100%;
    padding: 17px 40px;
    font-size: 1.8rem; color: #2c2c2c;
}
.gnb > li > a:after {
    position: absolute;
    content: "";
    right: 19px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 8px;
    background: url(../img/main_nav_under.png) no-repeat center/cover;
}
.subWrap {
    display: none;
    margin: 10px 0 10px;
}
.subWrap li a {
    display: block;
    padding-left: 50px;
    height: 50px; line-height: 50px;
    font-size: 1.6rem; color: #555;
    white-space: pre;
}
.gnb > li > a.on:after {background-image: url(../img/main_nav_up.png);}

/* footer */
footer {
    padding: 16px 5.875% 19px;
    background: #142310;
    font-size: 1.2rem; color: #a29b9b;
}
footer .upper a {
    display: inline-block;
    width: 32%;
    margin-bottom: 14px;
    color: #ccc;
    text-align: center;
    border-right: 1px solid #ccc;
}
footer .upper a:last-child {border: none;}
footer .lower span {
    line-height: 18px;
    white-space: pre-line;
}
footer .lower i {
    font-style: normal; font-size: 0.9rem;
}