@charset "UTF-8";
/* Font */
@import url(font.css);
/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1160px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/
/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
  font-family: "Malgun Gothic", sans-serif;
}

dl, ul, ol, menu, li {
  list-style: none;
  color: #0e0e0e;
}

body {
  font-family: "Malgun Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
  color: #0e0e0e;
  letter-spacing: -1px;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:focus {
  outline: 0 !important;
}

iframe {
  border: none;
  width: 100%;
}

a {
  font-family: "Malgun Gothic", sans-serif;
  color: inherit;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #feaf02;
}

img {
  max-width: 100%;
}

textarea {
  max-width: 100%;
  resize: none;
}

@media only screen and (min-width: 320px) {
  body {
    overflow-x: hidden;
  }
}
.hidden {
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.parallax {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}

/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.animationload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

.loader {
  width: 200px;
  height: 200px;
  font-size: 24px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(/images/basic_resp/img/preloader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.back-to-top {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: none;
  text-align: center;
  z-index: 10000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #e65b43;
}

.back-to-top i {
  color: #fff;
  font-size: 15px;
  display: block;
  line-height: 33px;
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
  position: relative;
  min-width: 320px;
}

#header {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.54);
}

#header.sub-header {
  background: rgba(51, 51, 51, 0.75);
}

#header > div {
  padding: 0 20px;
  margin: 0 auto;
  width: 1160px;
  box-sizing: border-box;
  height: 150px;
}

#L_SITE_LOGO {
  padding-top: 30px;
  text-align: center;
}

#L_SITE_LOGO img {
  vertical-align: middle;
}

@media only screen and (max-width: 1160px) {
  #header > div {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  #header > div {
    height: 100px;
  }
  #L_SITE_LOGO {
    padding-top: 0;
  }
  #L_SITE_LOGO h1 {
    line-height: 0;
    font-size: 0;
  }
  #L_SITE_LOGO a {
    line-height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #header > div {
    padding: 0 10px;
    height: 70px;
  }
  #L_SITE_LOGO a {
    line-height: 70px;
  }
  #L_SITE_LOGO a img {
    height: 36px;
  }
}
/* Login (로그인 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.login-menu {
  position: relative;
  top: -50px;
}

.login-menu ul {
  text-align: right;
  font-size: 0;
  line-height: 0;
}

.login-menu li {
  display: inline-block;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #dadada;
}

.login-menu li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.login-menu li a {
  letter-spacing: 0;
  font-size: 12px;
  line-height: 8px;
  color: #dadada;
}

@media only screen and (max-width: 980px) {
  .login-menu {
    position: static;
  }
  .login-menu ul {
    padding: 20px 10px 15px;
    text-align: center;
  }
  .login-menu ul:after {
    content: "";
    display: block;
    clear: both;
  }
  .login-menu li {
    float: left;
    display: block;
    margin: 0 5px;
    padding: 0;
    width: calc(33.33% - 10px);
    border: 0;
  }
  .login-menu li:first-child {
    margin: 0 5px;
  }
  .login-menu li a {
    display: block;
    padding: 8px 5px;
    width: 100%;
    border: 1px solid #5a5a5a;
    box-sizing: border-box;
    line-height: 1;
  }
}
/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#menuArea {
  width: 100%;
}

#gnb {
  z-index: 11000;
}

.m-menu-open, .m-menu-close, .gnb-bg {
  display: none;
}

.navigation .menu-item > a {
  display: block;
  padding-bottom: 14px;
  letter-spacing: 0;
  font-family: "Nanum Square";
  font-weight: 100;
  font-size: 20px;
  color: #dadada;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  transition-property: none;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.sub-menu {
  display: none;
}

@media only screen and (min-width: 980px) {
  #gnb {
    display: block !important;
  }
  .navigation {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .navigation .menu-item:hover > a, .navigation .menu-item:active > a {
    color: #feaf02;
    background: url("/images/kor12r-17-0378/common/menu_bg.gif") repeat-x left bottom;
  }
  .sub-menu {
    position: absolute;
  }
  .sub-menu ul:before {
    z-index: -1;
    position: absolute;
    left: -100vw;
    content: "";
    display: block;
    width: 200vw;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
  }
  .sub-menu ul:after {
    content: "";
    display: block;
    clear: both;
  }
  .sub-menu li {
    float: left;
    padding: 0 15px;
    transform: rotate(0.04deg);
  }
  .sub-menu li:first-child {
    padding-left: 0;
  }
  .sub-menu li a {
    font-family: "Nanum Square";
    font-weight: 300;
    font-size: 16px;
    box-sizing: border-box;
    line-height: 50px;
    color: #dadada;
  }
  .sub-menu li a:hover, .sub-menu li a:active {
    color: #feaf02;
  }
}
@media only screen and (max-width: 1160px) {
  .sub-menu ul {
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  #menuArea {
    height: 100%;
  }
  #gnb {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 100px;
    width: 80%;
    height: 100%;
    box-sizing: border-box;
    background: #222;
  }
  .m-menu-open {
    display: block;
    position: absolute;
    top: 35px;
    right: 20px;
    cursor: pointer;
  }
  .m-menu-open img {
    width: 38px;
  }
  .m-menu-close {
    z-index: 1000;
    display: block;
    position: absolute;
    top: 35px;
    right: 20px;
    cursor: pointer;
  }
  .m-menu-close img {
    width: 30px;
  }
  .navigation {
    border-top: 1px solid #5a5a5a;
  }
  .navigation .menu-item > a {
    padding: 0 20px;
    width: 100%;
    line-height: 50px;
    font-size: 15px;
    transition: none;
    border-bottom: 1px solid #5a5a5a;
    color: #fff;
    transform: rotate(0.04deg);
  }
  .navigation .menu-item.on > a {
    border-left: 4px solid #feaf02;
  }
  .sub-menu {
    width: 100%;
    background: #5f5848;
  }
  .sub-menu li {
    border-bottom: 1px solid #353237;
  }
  .sub-menu li a {
    display: block;
    padding: 0 20px;
    line-height: 40px;
    font-size: 13px;
    color: #fff;
  }
  .sub-menu li a:before {
    display: inline-block;
    content: "";
    position: relative;
    top: -4px;
    margin-right: 7px;
    width: 5px;
    height: 1px;
    background: #fff;
  }
  .gnb-bg {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 767px) {
  #gnb {
    padding-top: 70px;
  }
  .m-menu-open {
    top: 24px;
  }
  .m-menu-close {
    top: 24px;
  }
  .m-menu-open img {
    width: 24px;
  }
  .m-menu-close img {
    width: 20px;
  }
}
/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
  font-family: "Malgun Gothic", sans-serif;
  text-transform: uppercase;
  border-radius: 0;
  line-height: 24px;
}

.btn:focus, .btn:active {
  outline: none;
  color: #fff;
}

.btn-custom {
  border-radius: 3px;
  padding: 0.8em 1.8em;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
  background-color: #e65b43;
  border-color: #e65b43;
  color: #fff;
}

.btn-custom:hover, .btn-custom:focus {
  background-color: #00208e;
  border-color: #00208e;
  color: #fff;
}

.btn-custom-outline {
  border-radius: 3px;
  padding: 0.8em 1.8em;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
  background-color: transparent;
  border-color: #fff;
}

.btn-custom-outline:hover, .btn-custom-outline:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
}

.btn-bar a {
  margin-right: 10px;
}

.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 3px;
  height: 38px;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #e65b43;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
  padding: 25px 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #323232;
  color: #989898;
}

.footer-menu {
  margin-bottom: 15px;
  font-size: 0;
  line-height: 0;
}

.footer-menu li {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  line-height: 8px;
  border-left: 1px solid #969696;
  color: #989898;
}

.footer-menu li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.footer-menu li a {
  line-height: 8px;
  letter-spacing: 0;
  font-weight: bold;
  font-size: 12px;
  color: #989898;
}

.footer-info {
  margin: 0 auto;
  width: 980px;
  letter-spacing: 0;
  font-size: 12px;
  color: #989898;
}

.footer-info span {
  color: #6b6b6b;
}

.footer-info > p {
  margin-top: 10px;
}

@media only screen and (max-width: 980px) {
  .footer-info {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .footer-menu li {
    margin-left: 6px;
    padding-left: 6px;
  }
}
/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
  z-index: 888;
  width: 100%;
  height: 730px;
  background: url("/images/kor15r-17-0379/main/main_visual.png") no-repeat center top/cover;
  position: relative;
}

.main-visual > div {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.main-visual dl {
  margin-bottom: 50px;
  opacity: 0.2;
  color: #fff;
}
.main-visual dl dt {
  font-size: 90px;
  font-family: "Nanum Square";
  font-weight: 400;
  line-height: 1;
}
.main-visual dl dd {
  font-family: "Nanum Square";
  font-weight: 300;
  font-size: 107px;
  line-height: 1;
}
.main-visual p {
  margin-bottom: 20px;
  font-family: "Nanum Square";
  line-height: 1;
  font-size: 40px;
  color: #fff;
}
.main-visual p span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

@media only screen and (max-width: 1160px) {
  .main-visual > div {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  .main-visual {
    height: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .main-visual {
    height: 450px;
  }
  .main-visual dl {
    margin-bottom: 30px;
  }
  .main-visual dl dt {
    font-size: 60px;
  }
  .main-visual dl dd {
    font-size: 74px;
  }
  .main-visual p {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .main-visual p span {
    margin-bottom: 5px;
    font-size: 15px;
  }
}
/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-contents {
  background: #666;
}

.main-contents ul {
  margin: 0 auto;
  width: 1160px;
}

.main-contents ul:after {
  content: "";
  display: block;
  clear: both;
}

.main-contents li {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

.main-contents li:nth-child(1), .main-contents li:nth-child(3) {
  border-right: 1px solid #666;
}

.main-contents li:nth-child(1), .main-contents li:nth-child(2) {
  border-bottom: 1px solid #666;
}

.main-contents .img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-contents .img-frame img {
  width: 100%;
}

.main-contents .img-frame img:first-child {
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease;
}

.main-contents li:hover .img-frame img, .main-contents li:active .img-frame img {
  opacity: 1;
}

.main-contents .txt-frame {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 55px;
  width: 100%;
  height: 125px;
  transform: translateY(-50%);
}

.main-contents .txt-frame:after {
  content: "";
  display: block;
  clear: both;
}

.main-contents h3 {
  float: left;
  font-family: "Nanum Square";
  line-height: 1;
  font-size: 50px;
  color: #fff;
}

.main-contents h3 span:before {
  content: "";
  display: block;
  margin: 20px 0 5px;
  width: 50px;
  height: 1px;
  background: #fff;
}

.main-contents h3 span {
  font-size: 25px;
}

.main-contents .more-btn {
  float: right;
}

@media only screen and (max-width: 1160px) {
  .main-contents ul {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  .main-contents .txt-frame {
    padding: 0 30px;
    height: 95px;
  }
  .main-contents h3 {
    font-size: 32px;
  }
  .main-contents h3 span:before {
    margin: 15px 0 4px;
  }
  .main-contents h3 span {
    font-size: 20px;
  }
  .main-contents .more-btn {
    width: 95px;
  }
}
@media only screen and (max-width: 680px) {
  .main-contents .txt-frame {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 680px) {
  .main-contents li {
    float: none;
    width: 100%;
  }
  .main-contents li:nth-child(1), .main-contents li:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #666;
  }
}