@charset "UTF-8";
/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1150px
mobile : 767px ~
         480px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/
/* Font
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 본고딕 */
@font-face {
  font-family: "Noto Sans";
  font-weight: 300;
  src: url("/tpl/webfont/NotoSansKR-Light.eot");
  src: url("/tpl/webfont/NotoSansKR-Light.eot?#iefix") format("embedded-opentype"), url("/tpl/webfont/NotoSansKR-Light.woff") format("woff"), url("/tpl/webfont/NotoSansKR-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 400;
  src: url("/tpl/webfont/NotoSansKR-Regular.eot");
  src: url("/tpl/webfont/NotoSansKR-Regular.eot?#iefix") format("embedded-opentype"), url("/tpl/webfont/NotoSansKR-Regular.woff") format("woff"), url("/tpl/webfont/NotoSansKR-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 700;
  src: url("/tpl/webfont/NotoSansKR-Bold.eot");
  src: url("/tpl/webfont/NotoSansKR-Bold.eot?#iefix") format("embedded-opentype"), url("/tpl/webfont/NotoSansKR-Bold.woff") format("woff"), url("/tpl/webfont/NotoSansKR-Bold.ttf") format("truetype");
}
/* 나눔명조 */
@font-face {
  font-family: "Nanum Myeongjo";
  font-weight: 700;
  src: url("/tpl/webfont/NanumMyeongjoExtraBold.eot");
  src: url("/tpl/webfont/NanumMyeongjoExtraBold.eot?#iefix") format("embedded-opentype"), url("/tpl/webfont/NanumMyeongjoExtraBold.woff") format("woff"), url("/tpl/webfont/NanumMyeongjoExtraBold.ttf") format("truetype");
}
/* 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: "Noto Sans", sans-serif;
}

dl, ul, ol, menu, li {
  list-style: none;
  color: #444;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #444;
  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: "Noto Sans", sans-serif;
  color: inherit;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #444;
}

a:hover, a:active {
  text-decoration: none;
  color: #990000;
}

img {
  max-width: 100%;
}

textarea {
  max-width: 100%;
  resize: none;
}

@media only screen and (min-width: 320px) {
  body {
    min-width: 320px;
    overflow-x: hidden;
  }
}
.hidden {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

#divWMSSLLoading {
  display: none;
}

/* 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: #990000;
}

.back-to-top i {
  color: #fff;
  font-size: 15px;
  display: block;
  line-height: 33px;
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
  position: relative;
  min-width: 1150px;
}

#header {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 90px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-area {
  padding: 0 25px;
  margin: 0 auto;
  width: 1150px;
  box-sizing: border-box;
}

#L_SITE_LOGO {
  float: left;
}

#L_SITE_LOGO h1 {
  margin: 0;
}

#L_SITE_LOGO a {
  line-height: 90px;
}

#L_SITE_LOGO img {
  vertical-align: middle;
}

@media only screen and (max-width: 1590px) {
  #header {
    height: auto;
  }
}
@media only screen and (max-width: 1150px) {
  #wrapper {
    min-width: 320px;
  }
  .header-area {
    width: 100%;
  }
  #L_SITE_LOGO img {
    width: 150px;
  }
}
@media only screen and (max-width: 980px) {
  .header-area {
    position: relative;
    padding: 0;
    height: 65px;
  }
  #L_SITE_LOGO {
    padding: 0 25px;
  }
  #L_SITE_LOGO a {
    display: block;
    line-height: 65px;
  }
  #L_SITE_LOGO img {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .header-area {
    height: 50px;
  }
  #L_SITE_LOGO {
    padding: 0 20px;
  }
  #L_SITE_LOGO a {
    line-height: 50px;
  }
  #L_SITE_LOGO img {
    width: 130px;
  }
}
/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#gnb {
  z-index: 999;
}

.navigation .menu-item > a {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.navigation .menu-item.on > a {
  color: #990000;
}

.navigation .menu-item > a:hover, .navigation .menu-item > a:active, .navigation .menu-item > a:focus {
  text-decoration: none;
  color: #990000;
}

#menuArea {
  width: calc(100% - 240px);
}

@media screen and (max-width: 1150px) {
  .navigation .menu-item > a {
    font-size: 17px;
  }
  #menuArea {
    width: calc(100% - 180px);
  }
}
@media only screen and (min-width: 980px) {
  #menuArea {
    float: right;
  }
  #gnb {
    display: block !important;
  }
  .navigation {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
  }
  .navigation:after {
    content: "";
    display: block;
    clear: both;
  }
  .navigation .menu-item {
    position: relative;
  }
}
@media only screen and (max-width: 980px) {
  #menuArea {
    width: 100%;
    height: 100%;
  }
  #gnb {
    display: none;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background: #fff;
  }
  #gnb {
    position: absolute;
    top: 65px;
    border-bottom: 1px solid #ddd;
  }
  #gnb .navigation .menu-item:last-child a {
    border-bottom: 0;
  }
  nav [data-type=menu-btn] {
    z-index: 1000;
    position: absolute;
    right: 25px;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s all linear;
  }
  nav [data-type=menu-btn] span {
    display: block;
    position: absolute;
    left: 1px;
    width: 22px;
    height: 3px;
    transition: 0.3s all linear;
    background: #000;
  }
  nav [data-type=menu-btn] span:nth-child(1) {
    top: 4px;
    transform: rotate(0deg);
  }
  nav [data-type=menu-btn] span:nth-child(2),
  nav [data-type=menu-btn] span:nth-child(3) {
    top: 11px;
    transform: rotate(0deg);
  }
  nav [data-type=menu-btn] span:nth-child(4) {
    top: 18px;
  }
  nav.open [data-type=menu-btn] span:nth-child(1) {
    left: 50%;
    width: 0;
  }
  nav.open [data-type=menu-btn] span:nth-child(2) {
    transform: rotate(45deg);
  }
  nav.open [data-type=menu-btn] span:nth-child(3) {
    transform: rotate(-45deg);
  }
  nav.open [data-type=menu-btn] span:nth-child(4) {
    left: 50%;
    width: 0;
  }
  .navigation .menu-item > a {
    padding: 0 25px;
    text-align: center;
    width: 100%;
    line-height: 40px;
    font-size: 15px;
    transition: none;
    border-bottom: 1px solid #ddd;
    color: #000;
  }
  .navigation .menu-item:first-child > a {
    border-top: 1px solid #ddd;
  }
}
@media only screen and (max-width: 767px) {
  #gnb {
    top: 50px;
  }
  #btnMenuOpen {
    right: 20px;
  }
  nav [data-type=menu-btn] {
    right: 20px;
  }
  .navigation .menu-item > a {
    padding: 0 20px;
  }
}
/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
  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: #990000;
  border-color: #990000;
  color: #fff;
}

.btn-custom:hover, .btn-custom:focus {
  background-color: #990000;
  border-color: #990000;
  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: #990000;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
  padding: 30px 0px;
  width: 100%;
  background: #1a191f;
  color: #fff;
}

.footer-area {
  margin: 0 auto;
  padding: 0 10%;
  width: 1150px;
  box-sizing: border-box;
  text-align: center;
}

#footer p, #footer li {
  font-size: 13px;
  letter-spacing: 0;
  color: #adadad;
}

.footer-menu {
  margin: 0 auto 30px;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
  padding-left: 20px;
  line-height: 8px;
  border-left: 1px solid #fff;
}

.footer-menu li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.footer-menu li a {
  line-height: 8px;
  font-size: 13px;
  color: #fff;
}

.footer-info {
  text-align: center;
  margin-bottom: 10px;
}

.footer-info span {
  color: #fff;
}

.footer-info + p a {
  color: #adadad;
}

@media only screen and (max-width: 1150px) {
  .footer-area {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area {
    padding: 0 25px;
    box-sizing: border-box;
  }
  .footer-menu li {
    margin-left: 10px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .footer-area {
    padding: 0 20px;
  }
  .footer-menu li {
    margin-left: 5px;
    padding-left: 5px;
  }
}
/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 공통 */
#mainContents {
  z-index: 88;
}

#mainContents h2 {
  line-height: 1;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
  color: #222;
}

#mainContents h2:after {
  content: "";
  display: block;
  margin: 30px auto 80px;
  width: 33px;
  height: 3px;
  background: #222;
}

#mainContents section .inner {
  width: 100%;
  padding: 0 20px;
  max-width: 1190px;
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  #mainContents h2 {
    font-size: 40px;
  }
  #mainContents h2:after {
    margin: 20px auto 60px;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents h2 {
    font-size: 30px;
  }
  #mainContents h2:after {
    margin: 15px auto 40px;
  }
}
.section02 > div li img {
  width: 100%;
}

.txt-size {
  width: 80% !important;
}

.section02 .area1 ul {
  display: flex;
  flex-wrap: wrap;
}
.section02 .area1 ul li {
  width: 50%;
  align-self: center;
}
.section02 .area1 ul li:last-child {
  padding: 0 20px 0 0;
}
.section02 .area2 {
  position: relative;
  background: #fff6e5;
  padding-bottom: 24%;
}
.section02 .area2 li:first-child {
  background: url(/images/kor14r-17-0389/section02_area2_bg.jpg) no-repeat center center/cover;
}
.section02 .area2 li:first-child p {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 120px 20px 100px 20px;
}
.section02 .area2 li:first-child p img {
  max-width: 43%;
}
.section02 .area2 li:last-child {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}
.section02 .area3 ul {
  display: flex;
  flex-wrap: wrap;
}
.section02 .area3 ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .section02 .area1 ul {
    flex-direction: column-reverse;
  }

.txt-size {
  width: 100% !important;
}

  .section02 .area1 ul li {
    width: 100%;
  }
  .section02 .area1 ul li:first-child img {
    max-width: 80%;
  }
  .section02 .area1 ul li:last-child {
    padding: 60px 10%;
  }
  .section02 .area2 {
    padding-bottom: 40%;
  }
  .section02 .area2 li:first-child p {
    padding: 80px 20px 100px 20px;
    text-align: center;
  }
  .section02 .area2 li:first-child p img {
    max-width: 60%;
  }
  .section02 .area2 li:last-child {
    left: unset;
    transform: unset;
    right: 20px;
    width: calc(100% - 40px);
  }
  .section02 .area3 ul li {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .section02 .area2 li:first-child p {
    padding: 60px 20px 40px 20px;
  }
}

.section03 .area1 ul {
  display: flex;
  flex-wrap: wrap;
}
.section03 .area1 ul li {
  width: 50%;
}
.section03 .area1 ul li:first-child {
  align-self: center;
  text-align: right;
  padding: 40px;
}
.section03 .area1 ul li:first-child img {
  max-width: 60%;
}
.section03 .area1 ul li:last-child img {
  width: 100%;
}
.section03 .area2 {
  padding: 120px 40px;
  background: url(/images/kor14r-17-0389/section03_area2_bg.jpg) no-repeat center center/cover;
}
.section03 .area2 ul {
  display: flex;
  flex-wrap: wrap;
}
.section03 .area2 ul li {
  width: 50%;
  align-self: center;
}
.section03 .area2 ul li:first-child {
  text-align: right;
  padding: 0 20px;
}
.section03 .area2 ul li:last-child {
  margin-left: -40px;
}
.section03 .area2 ul li img {
  max-width: 80%;
}
@media screen and (max-width: 1150px) {
  .section03 .area2 ul li img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section03 .area1 ul li {
    width: 100%;
  }
  .section03 .area1 ul li:first-child {
    text-align: center;
  }
  .section03 .area2 {
    padding: 80px 20px;
  }
  .section03 .area2 ul li {
    width: 100%;
  }
  .section03 .area2 ul li:first-child {
    text-align: center;
  }
  .section03 .area2 ul li:last-child {
    margin: 40px 0 0 0;
    text-align: center;
  }
  .section03 .area2 ul li img {
    max-width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .section03 .area2 {
    padding: 60px 20px;
  }
}

.section04 .area1 {
  position: relative;
}
.section04 .area1:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/images/kor14r-17-0389/section04_area1_bg.jpg) no-repeat center center/cover;
  z-index: -2;
}
.section04 .area1:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: #006d64;
  z-index: -1;
}
.section04 .area1 ul {
  display: flex;
  flex-wrap: wrap;
}
.section04 .area1 ul li {
  align-self: center;
}
.section04 .area1 ul li:first-child {
  width: calc(50% - 90px);
}

.section04 .area1 ul li:last-child {
  width: calc(50% + 90px);
  padding: 12% 0 10% 0;
}
.section04 .area1 ul li:last-child img {
  max-width: 75%;
}
.section04 .area2 {
  display: flex;
  flex-wrap: wrap;
}
.section04 .area2 > div {
  width: 50%;
}
.section04 .area2 > div:nth-child(2) img {
  width: 100%;
}
.section04 .area2 ul {
  height: 100%;
}
.section04 .area2 ul li {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 50%;
  padding: 0 80px;
}
.section04 .area2 ul li:last-child {
  background: #e5ffec;
}
.section04 .area2 ul li img {
  align-self: center;
  max-width: 65%;
}
@media screen and (max-width: 980px) {
  .section04 .area1 ul li:last-child img {
    max-width: 85%;
  }
  .section04 .area2 ul li img {
    max-width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .section04 .area1:after {
    height: 12%;
  }
  .section04 .area1 ul {
    flex-direction: column-reverse;
  }
  .section04 .area1 ul li:first-child {
    width: 100%;
    margin-top: -25%;
    text-align: center;
  }
  .section04 .area1 ul li:first-child img {
    max-width: 80%;
    margin-left: unset;
  }
  .section04 .area1 ul li:last-child {
    width: 100%;
    text-align: center;
    padding: 80px 0 60px 0;
  }
  .section04 .area1 ul li:last-child img {
    max-width: 80%;
  }
  .section04 .area2 > div {
    width: 100%;
  }
  .section04 .area2 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .section04 .area2 ul li {
    width: 50%;
    justify-content: center;
    height: unset;
    padding: 80px 20px;
  }
}
@media screen and (max-width: 480px) {
  .section04 .area2 ul li {
    width: 100%;
    padding: 60px 20px;
  }
}

.section05 {
  padding: 90px 0 170px;
}
.section05 .movie {
  border-top: 2px solid #222;
  padding: 40px 0;
}
@media screen and (max-width: 980px) {
  .section05 {
    padding: 70px 0 120px;
  }
  .section05 .movie iframe {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .section05 {
    padding: 50px 0;
  }
  .section05 .movie iframe {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .section05 .movie iframe {
    height: 300px;
  }
}

.section06 {
  padding: 90px 0 170px;
  background: #f9f9f9;
}
.section06 .gallery-wrap li {
  background: #fff;
}
@media screen and (max-width: 980px) {
  .section06 {
    padding: 70px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .section06 {
    padding: 50px 0;
  }
}

.section07 {
  padding: 90px 0 170px;
}
@media screen and (max-width: 980px) {
  .section07 {
    padding: 70px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .section07 {
    padding: 50px 0;
  }
}

/* Main Visual  - section01 (메인 비주얼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
  padding-top: 90px;
}

.main-visual .carousel-caption {
  top: 50%;
  left: 5%;
  right: 5%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main-visual .main-slogan {
  line-height: 1.3;
  font-weight: 600;
  font-size: 36px;
}

.main-visual .main-slogan strong {
  margin: 15px 0 40px;
  display: block;
  font-family: "Nanum Myeongjo";
  line-height: 1;
  font-weight: 700;
  font-size: 100px;
}

.main-visual .sub-slogan {
  display: inline-block;
  padding: 5px 10px;
  width: auto;
  line-height: 1.4;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  background: #000;
}

.main-visual .carousel-indicators {
  bottom: 70px;
}

.main-visual .carousel-indicators li {
  margin: 0 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 0;
}

.main-visual .carousel-indicators li.active {
  margin: 0 4px;
  width: 40px;
  height: 20px;
  background: #990000;
  box-sizing: border-box;
}

.main-visual .carousel-inner > .item > a > img, .main-visual .carousel-inner > .item > img, .main-visual .img-responsive, .main-visual .thumbnail a > img, .main-visual .thumbnail > img {
  width: 100%;
}

@media screen and (max-width: 980px) {
  .main-visual {
    padding-top: 65px;
  }
  .main-visual .main-slogan {
    font-size: 26px;
  }
  .main-visual .main-slogan strong {
    margin: 10px 0 35px;
    font-size: 72px;
  }
  .main-visual .sub-slogan {
    font-size: 17px;
  }
  .main-visual .carousel-indicators {
    bottom: 45px;
  }
  .main-visual .carousel-indicators li {
    width: 15px;
    height: 15px;
  }
  .main-visual .carousel-indicators li.active {
    width: 30px;
    height: 15px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    padding-top: 50px;
  }
  .main-visual .main-slogan {
    font-size: 19px;
  }
  .main-visual .main-slogan strong {
    margin: 10px 0 35px;
    font-size: 50px;
  }
  .main-visual .sub-slogan {
    font-size: 14px;
  }
  .main-visual .carousel-indicators {
    bottom: 25px;
  }
  .main-visual .carousel-indicators li {
    margin: 0 2px;
    width: 12px;
    height: 12px;
  }
  .main-visual .carousel-indicators li.active {
    margin: 0 2px;
    width: 24px;
    height: 12px;
  }
}


		