@charset "UTF-8";
/* Font */
@import url(font.css);
/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
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: "Nanum Gothic", sans-serif;
}

dl, ul, ol, menu, li {
  list-style: none;
  color: #353535;
}

body {
  font-family: "Nanum Gothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #353535;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus {
  outline: 0 !important;
}

iframe {
  border: none;
  width: 100%;
}

a {
  font-family: "Nanum Gothic", sans-serif;
  color: inherit;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #562542;
}

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;
  border-radius: 50%;
  background: #27353d;
}

.back-to-top i {
  color: #fff;
  font-size: 15px;
  display: block;
  line-height: 33px;
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
  position: relative;
  min-width: 1200px;
}

#header {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#header > div {
  padding: 0 20px;
  margin: 0 auto;
  width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 90px;
}

#L_SITE_LOGO {
  float: left;
}

#L_SITE_LOGO h1 {
  font-size: 0;
  line-height: 0;
}

#L_SITE_LOGO a {
  line-height: 90px;
}

#L_SITE_LOGO img {
  vertical-align: middle;
}

#menuArea {
  float: right;
}

@media only screen and (max-width: 1200px) {
  #wrapper {
    min-width: 320px;
  }
  #header > div {
    width: 100%;
  }
}

@media only screen and (max-width: 980px) {
  #header > div {
    height: 65px;
  }
  #L_SITE_LOGO a {
    display: block;
    line-height: 65px;
  }
  #L_SITE_LOGO img {
    width: 160px;
  }
  #menuArea {
    float: none;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  #header > div {
    padding: 0 10px;
    height: 50px;
  }
  #L_SITE_LOGO a {
    line-height: 50px;
  }
  #L_SITE_LOGO img {
    width: 130px;
  }
}

/* Login (로그인 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
@media only screen and (min-width: 980px) {
  .login-menu {
    padding-top: 20px;
  }
  .login-menu ul {
    text-align: right;
    line-height: 0;
    font-size: 0;
  }
  .login-menu li {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #bbb;
    line-height: 8px;
    font-size: 10px;
  }
  .login-menu li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .login-menu li a {
    line-height: 8px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 980px) {
  .login-menu ul {
    margin: 0 -5px;
    padding: 50px 10px 10px;
    text-align: center;
  }
  .login-menu ul:after {
    content: "";
    display: block;
    clear: both;
  }
  .login-menu li {
    float: left;
    margin: 0 5px;
    width: calc(33.33% - 10px);
  }
  .login-menu li a {
    display: block;
    padding: 8px 5px;
    text-align: center;
    width: 100%;
    line-height: 1;
    font-size: 13px;
    color: #fff;
    border: 1px solid #aaa;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#gnb {
  z-index: 11000;
}

.m-menu-open, .m-menu-close, .gnb-bg {
  display: none;
}

.navigation .menu-item > a {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #666;
}

.sub-menu {
  display: none;
}

@media only screen and (min-width: 980px) {
  #gnb {
    display: block !important;
  }
  .navigation {
    margin-top: 25px;
  }
  .navigation:after {
    content: "";
    display: block;
    clear: both;
  }
  .navigation .menu-item {
    position: relative;
    float: left;
    margin-left: 70px;
  }
  .navigation .menu-item:first-child {
    margin-left: 0;
  }
  .navigation .menu-item > a {
    padding-bottom: 23px;
    line-height: 1;
  }
  .navigation .menu-item:hover > a, .navigation .menu-item:active > a {
    color: #562542;
  }
  .sub-menu {
    position: absolute;
    left: 50%;
    margin-left: -100px;
    min-width: 200px;
    border-top: 2px solid #562542;
    border-bottom: 2px solid #562542;
  }
  .sub-menu li {
    text-align: center;
    line-height: 35px;
    border-top: 1px solid #562542;
  }
  .sub-menu li:first-child {
    border-top: 0;
  }
  .sub-menu li a {
    position: relative;
    display: block;
    padding: 0 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    color: #666;
    background: #fff;
  }
  .sub-menu li a:hover, .sub-menu li a:active {
    color: #fff;
	background: #bcbebf; /*#677177;*/
  }
  .sub-menu li a:hover:after, .sub-menu li a:active:after {
    position: absolute;
    top: 12px;
    right: -10px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #677177;
  }
}

@media only screen and (max-width: 1200px) {
  .sub-menu ul {
    margin: 0 auto;
    width: 100%;
  }
}

@media only screen and (max-width: 980px) {
  #gnb {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 50px;
    width: 80%;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #27353d;
  }
  .m-menu-open {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -17.5px;
    padding: 9px 8px;
    width: 40px;
    height: 35px;
    cursor: pointer;
    border-radius: 5px;
    background: #27353d;
  }
  .m-menu-open span {
    display: block;
    margin-top: 4px;
    width: 24px;
    height: 3px;
    background: #fff;
  }
  .m-menu-open span:first-child {
    margin-top: 0;
  }
  .m-menu-close {
    z-index: 1000;
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
  }
  .m-menu-close span {
    position: absolute;
    top: 50%;
    left: 3px;
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m-menu-close span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .navigation {
    border-top: 1px solid #5d7482;
  }
  .navigation .menu-item > a {
    padding: 0 20px;
    width: 100%;
    line-height: 45px;
    font-size: 15px;
    -webkit-transition: none;
    transition: none;
    border-bottom: 1px solid #5d7482;
    color: #fff;
  }
  .navigation .menu-item.on > a {
    background: #562542;
  }
  .sub-menu {
    width: 100%;
    background: #39454c;
  }
  .sub-menu li {
    border-bottom: 1px solid #4c5a63;
  }
  .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) {
  .m-menu-open {
    margin-top: -15px;
    right: 10px;
    padding: 8px;
    width: 35px;
    height: 30px;
  }
  .m-menu-open span {
    width: 20px;
    height: 2px;
  }
  .m-menu-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .m-menu-close span {
    left: 2px;
    width: 25px;
    height: 2px;
  }
}

/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
  font-family: "Nanum 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 .2s ease-out;
  transition: all .2s ease-out;
  text-transform: uppercase;
  background-color: #562542;
  border-color: #562542;
  color: #fff;
}

.btn-custom:hover, .btn-custom:focus {
  background-color: #447774;
  border-color: #447774;
  color: #fff;
}

.btn-custom-outline {
  border-radius: 3px;
  padding: 0.8em 1.8em;
  color: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .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: #562542;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
  padding: 25px 0px;
  width: 100%;
  background: #39373a;
  color: #fff;
}

.footer-area {
  margin: 0 auto;
  padding: 0 10%;
  width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

#footer p, #footer li {
  font-size: 12px;
  letter-spacing: 0;
}

.footer-menu {
  margin: 0 auto 1em;
}

.footer-menu li {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  line-height: 8px;
  border-left: 1px solid #fff;
  color: #fff;
}

.footer-menu li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.footer-menu li a {
  line-height: 8px;
  font-size: 12px;
  color: #fff;
}

.footer-info {
  text-align: center;
  margin-bottom: 10px;
}

.footer-info span {
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .footer-area {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-area {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media only screen and (max-width: 480px) {
  .footer-area {
    padding: 0 10px;
  }
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
  padding-top: 90px;
}

.carousel-inner > .item {
  height: 750px;
}

.carousel-inner > .main-img01 {
  background: url("/images/kor09r-17-0380/main/main_visual01.png") no-repeat center center/cover;
}

.carousel-inner > .main-img02 {
  background: url("/images/kor09r-17-0380/main/main_visual02.png") no-repeat center center/cover;
}

.carousel-inner > .main-img03 {
  background: url("/images/kor09r-17-0380/main/main_visual03_1.png") no-repeat center center/cover;
}

.main-visual .carousel-caption {
  top: 70%;
  left: 0;
  right: 0;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-shadow: none;
  color: #fff;
  padding: 0;
}

.main-visual .carousel-caption p {
  font-family: 'Nanum Square';
}

.main-visual .carousel-caption .slogan {
  line-height: 1.4;
  font-size: 48px;
}

.main-visual .carousel-caption .slogan + p {
  margin-top: 25px;
  line-height: 1.2;
  font-size: 36px;
}

.main-visual .more-btn {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: 50px;
  text-align: center;
  font-family: 'Nanum Square';
  line-height: 50px;
  font-size: 18px;
  border: 1px solid #fff;
}

.main-visual .more-btn:hover, .main-visual .more-btn:active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.main-visual .carousel-control {
  background: none;
  text-shadow: none;
}

.main-visual .carousel-control, .main-visual .carousel-control:focus, .main-visual .carousel-control:hover {
  opacity: 1;
}

.main-visual .carousel-indicators {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 25px;
  left: 0;
  gap: 10px;
  margin: 0;
}

.main-visual .carousel-indicators li {
  opacity: .3;
  width: 20px;
  height: 20px;
  background: #27353d;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.main-visual .carousel-indicators li.active {
  opacity: 1;
}

@media screen and (max-width: 980px) {
  .main-visual {
    padding-top: 65px;
  }
  .carousel-inner > .item {
    height: 600px;
  }
  .main-visual .carousel-caption .slogan {
    font-size: 40px;
  }
  .main-visual .carousel-caption .slogan + p {
    font-size: 28px;
  }
  .main-visual .more-btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .main-visual {
    padding-top: 50px;
  }
  .carousel-inner > .item {
    height: 400px;
  }
  .main-visual .carousel-caption {
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .main-visual .carousel-caption .slogan {
    font-size: 25px;
  }
  .main-visual .carousel-caption .slogan + p {
    margin-top: 15px;
    font-size: 16px;
  }
  .main-visual .more-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-contents {
  padding: 65px 0;
  margin: 0 auto;
  width: 1200px;
}

.main-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.main-contents ul li {
  position: relative;
  width: calc((100% - 40px) / 3);
  background: #ededed;
  padding-bottom: 60px;
}

.main-contents ul li .more-btn {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
background: #81074E; /*#562542;*/
}

.main-contents ul li .more-btn:hover {
  background: #673b55;
}

.main-contents .img-frame {
  position: relative;
  padding-bottom: 52%;
  width: 100%;
  overflow: hidden;
}

.main-contents .img-frame img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-contents .img-frame:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.main-contents .txt-frame {
  padding: 20px;
}

.main-contents li h3 {
  font-family: 'Nanum Square';
  font-weight: bold;
  line-height: 1;
  font-size: 20px;
  color: #222;
}

.main-contents li p {
  margin: 10px 0 20px;
  letter-spacing: -0.025em;
  font-size: 17px;
  word-break: keep-all;
  color: #555;
font-family:nanum square;
}

@media screen and (max-width: 1200px) {
  .main-contents {
    padding: 65px 20px;
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .main-contents li p {
    min-height: 72px;
  }
}

@media screen and (max-width: 767px) {
  .main-contents {
    padding: 40px 10px;
  }
  .main-contents ul li {
    width: 100%;
    padding-bottom: 0;
  }
  .main-contents ul li .more-btn {
    position: relative;
    bottom: unset;
    left: unset;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
  .main-contents .img-frame {
    padding-bottom: 35%;
  }
  .main-contents li p {
    min-height: 0;
    font-size: 15px;
  }
}
