@charset "UTF-8";
@import url(font.css);
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
    opacity: 0;
  }
  to {
    width: 100%;
    left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes bgAniWidth {
  0% {
    width: 60%;
    left: calc(50% - 30%);
  }
  to {
    width: 100%;
    left: 0;
  }
}

.bgAniWidth {
  -webkit-animation-name: bgAniWidth;
  animation-name: bgAniWidth;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes fadeInBig {
  from {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.fadeInBig {
  -webkit-animation-name: fadeInBig;
  animation-name: fadeInBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* Font */
/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1220px
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;
}

body, th, td, input, select, textarea, button {
  font-family: 'Roboto', 'NotoSansKR', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #111;
  letter-spacing: -0.03em;
}

dl, ul, ol, menu, li {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
}

:focus {
  outline: 0 !important;
}

iframe {
  border: none;
  width: 100%;
}

a {
  color: inherit;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #227353;
}

img {
  max-width: 100%;
}

textarea {
  max-width: 100%;
  resize: none;
}

input, select, button, textarea {
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 320px) {
  body {
    overflow-x: hidden;
  }
}

.hidden {
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

::-moz-selection {
  background: #99c05e;
  color: #111;
  text-shadow: none;
}

::selection {
  background: #99c05e;
  color: #111;
  text-shadow: none;
}

::-moz-selection {
  background: #227353;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #227353;
  color: #fff;
  text-shadow: 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;
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 100%;
}

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#header #header_in {
  position: relative;
  width: 1300px;
  margin: 0 auto;
  height: 100px;
}

@media screen and (max-width: 1220px) {
  #header #header_in {
    width: 100%;
    padding: 0 20px;
  }
}

#header #L_SITE_LOGO {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10000;
}

#header #L_SITE_LOGO h1 a {
  display: block;
  width: 210px;
  height: 54px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#header #L_SITE_LOGO h1 a img {
  vertical-align: top;
}

#header #L_SITE_LOGO.on h1 a {
  background: url(/images/kor06r-22-0454/common/logo_on.png) no-repeat 0 0;
}

#header #L_SITE_LOGO.on h1 a img {
  display: none;
}

#header .nav-btn {
  display: none;
}


#header .header-right{
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
    gap: 20px;
}

#header .util-menu {
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

#header.fixed .util-menu{
	border: 1px solid #888;
}

#header .util-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .util-menu li {
  position: relative;
}

#header .util-menu li:not(:first-child) {
  padding-left: 15px;
}

#header .util-menu li:not(:last-child) {
  padding-right: 15px;
}

#header .util-menu li:not(:last-child):after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
}

#header .util-menu li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255);
}

#header .util-menu li a:hover {
  color: #fff;
  font-weight: 400;
}


#header .t-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .t-sns li:not(:first-child) {
  padding-left: 5px;
}

#header .t-sns li:not(:last-child) {
  padding-right: 5px;
}

#header .m-menu-open, #header .m-menu-close, #header .gnb-bg {
  display: none;
}

#header #gnb {
  z-index: 1000;
}

#header #gnb .navigation {
  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;flex-direction:row;gap:50px;
}

#header #gnb .navigation li.menu-item {}

#header #gnb .navigation li.menu-item a.menu-link {
  display: block;
  text-align: center;
  line-height: 100px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #header #gnb .navigation li.menu-item a.menu-link {
    font-size: 16px;
  }
}

#header #gnb .navigation li.menu-item a.menu-link span {
  display: inline-block;
  z-index: 500;
  line-height: 98px;
}

#header #gnb .navigation li.menu-item a.menu-link:hover {
  font-weight: 500;
  color: #111;
}

#header #gnb .navigation li.menu-item a.menu-link:hover span {
  border-bottom: 1px solid #227353;
}

#header #gnb .navigation li.menu-item.on a.menu-link span {
  border-bottom: 1px solid #227353;
}

#header #gnb .navigation li.menu-item .sub-menu {
  display: none;
}

#header #gnb .navigation li.menu-item .sub-menu ul {
  display: block;
  position: absolute;
  width: 100%;
  top: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header #gnb .navigation li.menu-item .sub-menu ul li:not(:first-child) {
  margin-left: 30px;
}

#header #gnb .navigation li.menu-item .sub-menu ul li:not(:last-child) {
  margin-right: 30px;
}

#header #gnb .navigation li.menu-item .sub-menu ul a {
  display: block;
  font-size: 16px;
  color: #111;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #header #gnb .navigation li.menu-item .sub-menu ul a {
    font-size: 15px;
  }
}

#header #gnb .navigation li.menu-item .sub-menu ul a:hover {
  font-weight: 500;
  color: #227353;
}

#header #gnb .navigation li.menu-item .sub-menu.sub-menu-one ul li {
  margin-left: 70px;
}

#header #gnb .navigation li.menu-item .sub-menu:before {
  content: '';
  display: inline-block;
  width: 200vw;
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  position: absolute;
  bottom: -80px;
  left: -100vw;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

#header .m-menu-open {
  display: block;
}

#header.fixed, #header.on, #header.none {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ededed;
}

#header.fixed #L_SITE_LOGO h1 a, #header.on #L_SITE_LOGO h1 a, #header.none #L_SITE_LOGO h1 a {
  background: url(/images/kor06r-22-0454/common/logo_on.png) no-repeat 0 0;
}

#header.fixed #L_SITE_LOGO h1 a img, #header.on #L_SITE_LOGO h1 a img, #header.none #L_SITE_LOGO h1 a img {
  display: none;
}

#header.fixed .util-menu li:not(:last-child):after, #header.on .util-menu li:not(:last-child):after, #header.none .util-menu li:not(:last-child):after {
  background: #888;
}

#header.fixed .util-menu li a, #header.on .util-menu li a, #header.none .util-menu li a {
  color: #888;
}

#header.fixed .util-menu li a:hover, #header.on .util-menu li a:hover, #header.none .util-menu li a:hover {
  color: #227353;
}

#header.on .util-menu, #header.none .util-menu{
	border: 1px solid #888;
}

#header.on .util-menu:hover, #header.none .util-menu:hover{
	border: 1px solid #227353;
}

#header.fixed #gnb .navigation li.menu-item a.menu-link, #header.on #gnb .navigation li.menu-item a.menu-link, #header.none #gnb .navigation li.menu-item a.menu-link {
  color: #111;
}

@media screen and (max-width: 1220px) {
  #header #L_SITE_LOGO {
    left: 20px;
  }
  #header .util-menu {
    right: 200px;
    top: 38px;
  }
  #header .util-menu li:not(:last-child):after {
    background: #fff;
  }
  #header .util-menu li a {
    color: #fff;
  }
  #header .util-menu li a:hover {
    color: #227353;
  }
  #header .t-sns {
    right: 20px;
  }
}

@media screen and (max-width: 980px) {
  #header .util-menu {
    top: 16px;
	border: 1px solid #888;
  }
  #header .t-sns {
    top: 30px;
    right: 60px;
  }
  #header #gnb {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  #header #gnb .navigation.mobile {
    display: block;
    padding-top: 100px;
  }
  #header #gnb .navigation.mobile li.menu-item {
    width: 100%;
  }
  #header #gnb .navigation.mobile li.menu-item:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
  }
  #header #gnb .navigation.mobile li.menu-item a.menu-link {
    position: relative;
    text-align: left;
    line-height: 25px;
    padding: 10px 20px;
  }
  #header #gnb .navigation.mobile li.menu-item a.menu-link span {
    line-height: 25px;
    color: #111;
    font-weight: 500;
  }
  #header #gnb .navigation.mobile li.menu-item a.menu-link:hover span {
    border: none;
  }
  #header #gnb .navigation.mobile li.menu-item.on a.menu-link {
    color: #111;
  }
  #header #gnb .navigation.mobile li.menu-item.on a.menu-link span {
    border: none;
  }
  #header #gnb .navigation.mobile li.menu-item.on a.menu-link:after {
    display: none;
  }
  #header #gnb .navigation.mobile li.menu-item .sub-menu ul {
    position: relative;
    top: 0;
    display: block;
  }
  #header #gnb .navigation.mobile li.menu-item .sub-menu ul li {
    margin: 0 0 5px 0;
  }
  #header #gnb .navigation.mobile li.menu-item .sub-menu ul a {
    padding: 5px 33px;
    font-size: 14px;
  }
  #header #gnb .navigation.mobile li.menu-item .sub-menu:before {
    display: none;
  }
  #header .m-menu-open {
    display: block;
    position: absolute;
    top: 40px;
    right: 20px;
    display: block;
    width: 32px;
    height: 22px;
    cursor: pointer;
  }
  #header .m-menu-open span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    top: 0;
    right: 0;
  }
  #header .m-menu-open span:nth-child(2) {
    width: 32px;
    top: 10px;
  }
  #header .m-menu-open span:nth-child(3) {
    top: 20px;
  }
  #header .m-menu-close {
    display: block;
    position: absolute;
    top: 33px;
    right: 16px;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  #header .m-menu-close span {
    display: block;
    position: absolute;
    width: 2px;
    height: 30px;
    background: #000;
    top: 0;
    left: calc(50% - 1px);
  }
  #header .m-menu-close span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header .m-menu-close span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header.fixed .m-menu-open span, #header.on .m-menu-open span, #header.none .m-menu-open span {
    background: #000;
  }
  
  #header .header-right{
	position: relative;
	justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  #header {
    height: 70px;
  }
  #header #header_in {
    height: 70px;
  }
  #header #L_SITE_LOGO h1 a {
    width:134px;height:35px;
  }
  #header #L_SITE_LOGO h1 a img {
    width: 134px;
    height:35px;
  }
  #header #L_SITE_LOGO.on h1 a {
    background-size: 134px 35px;
  }
  #header .t-sns {
    top: 15px;
  }
  #header #gnb .navigation.mobile {
    padding-top: 70px;
  }
  #header.fixed #L_SITE_LOGO h1 a, #header.on #L_SITE_LOGO h1 a, #header.none #L_SITE_LOGO h1 a {
    background-size: 134px 35px;
  }
  #header .m-menu-open {
    top: 24px;
  }
  #header .m-menu-close {
    top: 17px;
  }
}

/* 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 .2s ease-out;
  transition: all .2s ease-out;
  text-transform: uppercase;
  background-color: #509591;
  border-color: #509591;
  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: #509591;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
  position: relative;
  background: #333;
  width: 100%;
}

.footer-area {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 70px 0 50px 0;
}

@media screen and (max-width: 1220px) {
  .footer-area {
    width: 100%;
    padding: 0 20px;
  }
}

.footer-area .footer-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.footer-area .footer-info:after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #707070;
  position: absolute;
  top: 0;
  left: 50%;
}

.footer-area .footer-info .infoL {
  width: 50%;
  padding-right: 40px;
}

.footer-area .footer-info .infoL .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-area .footer-info .infoL .footer-menu li:not(:last-child) {
  margin-right: 30px;
}

.footer-area .footer-info .infoL .footer-menu li a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .footer-area .footer-info .infoL .footer-menu li a {
    font-size: 15px;
  }
}

.footer-area .footer-info .infoL .footer-menu li a:hover {
  color: #99c05e;
}

.footer-area .footer-info .infoL p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-area .footer-info .infoL p span {
  word-break: keep-all;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.footer-area .footer-info .infoL p span:not(:last-child) {
  margin-right: 15px;
}

.footer-area .footer-info .infoL p span a:hover {
  color: #99c05e;
}

.footer-area .footer-info .infoL p span.dash {
  position: relative;
}

.footer-area .footer-info .infoL p span.dash:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  right: -10px;
  content: '';
  font-size: 14px;
}

.footer-area .footer-info .infoR {
  width: 50%;
  padding-left: 40px;
}

.footer-area .footer-info .infoR p, .footer-area .footer-info .infoR dd {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .footer-area .footer-info .infoR p, .footer-area .footer-info .infoR dd {
    font-size: 15px;
  }
}

.footer-area .footer-info .infoR dt {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  margin: 30px 0 15px 0;
}

@media screen and (max-width: 767px) {
  .footer-area .footer-info .infoR dt {
    font-size: 26px;
  }
}

.back-to-top {
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff url(/images/kor06r-22-0454/common/btnTop_arrow.png) no-repeat center center;
  top: -35px;
  left: calc(50% - 35px);
  border-radius: 50%;
  border: 4px solid #333;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1220px) {
  .footer-area {
    padding: 70px 20px 50px 20px;
  }
}

@media screen and (max-width: 980px) {
  .footer-area .footer-info {
    display: block;
  }
  .footer-area .footer-info:after {
    display: none;
  }
  .footer-area .footer-info .infoL {
    width: 100%;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-area .footer-info .infoR {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .footer-area .footer-info .infoR dt {
    margin: 10px 0 5px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-area {
    padding: 50px 20px 30px 20px;
  }
  .footer-area .footer-info {
    margin-top: 20px;
  }
  .footer-area .footer-info .infoL .footer-menu {
    margin-bottom: 15px;
  }
  .back-to-top {
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
  position: relative;
}

.main-visual .carousel-inner .item {
  height: 800px;
}

.main-visual .carousel-inner .main-img01 {
  background: url("/images/kor06r-22-0454/main/visual_01.png") no-repeat center center/cover;
}

.main-visual .carousel-inner .main-img02 {
  background: url("/images/kor06r-22-0454/main/visual_02.png") no-repeat center center/cover;
}

.main-visual .carousel-inner .main-img03 {
  background: url("/images/kor06r-22-0454/main/visual_03.png") no-repeat center center/cover;
}

.main-visual .carousel-caption {
  width: 1200px;
  top:45%;
  left: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align:center;padding:0;right:auto;bottom:auto;}

.main-visual .carousel-caption p{font-size:46px;line-height:1.3;color:#fff;font-weight:400;}
.main-visual .carousel-caption strong{font-size:60px;line-height:1.3;color:#fff;font-weight:600;display:block;margin-top:10px;}
.main-visual .carousel-caption p,.main-visual .carousel-caption strong{text-shadow:3px 4px 4px rgba(0,0,0,0.7);}
.main-visual .carousel-caption br{display:none;}

.main-visual .carousel-caption .visual-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  padding-right: 60px;
  line-height: 27px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .main-visual .carousel-caption .visual-btn {
    font-size: 15px;
  }
}

.main-visual .carousel-caption .visual-btn:after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 27px;
  background: url(/images/kor06r-22-0454/main/visual_arrow.png) no-repeat 0 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.main-visual .carousel-caption .visual-btn:hover {
  color: #227353;
}

.main-visual .carousel-caption .visual-btn:hover:after {
  -webkit-transform: translate3d(10px, 0, 0);
          transform: translate3d(10px, 0, 0);
}

.main-visual .carousel-indicators {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  text-align: left;
  bottom: unset;
}

@media screen and (max-width: 1220px) {
  .main-visual .carousel-indicators {
    width: 100%;
    padding: 0 20px;
  }
}

.main-visual .carousel-indicators li {
  display: block;
  position: relative;
  border: none;
  font-size: 14px;
  color: #fff;
  opacity: .6;
  font-weight: 700;
  text-indent: 0;
  width: 52px;
  height: auto;
  text-align: left;
  margin: 0;
  background: none;
}

.main-visual .carousel-indicators li:after {
  content: '';
  display: inline-block;
  width: 21px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 10px;
  right: 0;
  opacity: 0;
}

.main-visual .carousel-indicators li:not(:last-child) {
  margin-bottom: 30px;
}

.main-visual .carousel-indicators li.active {
  opacity: 1;
}

.main-visual .carousel-indicators li.active:after {
  opacity: 1;
  background: #fff;
}

@media screen and (max-width: 1220px) {
  .main-visual .carousel-caption {
    width: 100%;padding:0 20px;
  }
  .main-visual .carousel-caption br{display:block;}
}

@media screen and (max-width: 980px) {
  .main-visual .carousel-inner .item {
    height: 700px;
  }
  .main-visual .carousel-indicators {
    top: 42%;
  }
}

@media screen and (max-width: 767px) {
  .main-visual .carousel-inner .item {
    height: 600px;
  }
  .main-visual .carousel-caption p{font-size:30px;}
  .main-visual .carousel-caption strong{font-size:40px;}
  .main-visual .carousel-indicators {
    top: unset;
    bottom: 40px;
  }
  .main-visual .carousel-indicators li {
    display: inline-block;
    width: calc(100% / 3 - 10px);
  }
  .main-visual .carousel-indicators li:after {
    width: 100%;
    bottom: 0;
    opacity: .6;
  }
}

@media screen and (max-width: 600px) {
  .main-visual .carousel-inner .main-img01 {
    background-position: 55% center;
  }
  .main-visual .carousel-caption p{font-size:24px;}
  .main-visual .carousel-caption strong{font-size:36px;}
  .main-visual .carousel-inner .main-img02 {
    background-position: 0 center;
  }
  .main-visual .carousel-inner .main-img03 {
    background-position: 60% center;
  }
}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.container {
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.container .inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  .container .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.container .tit {
  font-size: 60px;
  color: #111;
  font-weight: 500;
  letter-spacing: 10px;
  text-transform: uppercase;line-height:1.3;word-break:keep-all;
}

.container .tit-s {
  font-size: 38px;
  line-height: 45px;
  letter-spacing: 0;
  font-weight: 400;
}

.container .tit-txt {
  font-size: 20px;
  line-height: 1.3em;
}

.container .btn-more {
  display: block;
  position: relative;
  width: 180px;
  height: 48px;
  padding-left: 30px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 48px;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: left;
  margin: 0 auto;
}

.container .btn-more:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #000;
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
}

.container .btn-more:hover, .container .btn-more:focus {
  background-color: #000;
  border: 1px solid #000 !important;
  color: #fff;
}

.container .btn-more:hover:after, .container .btn-more:focus:after {
  background: #fff;
}

.container .btn-more.btn-more-trans {
  border: 1px solid #fff;
  color: #fff;
}

.container .btn-more.btn-more-trans:hover, .container .btn-more.btn-more-trans:focus {
  background-color: #fff;
  border: 1px solid #fff !important;
  color: #000 !important;
}

.container .btn-more.btn-more-trans:hover:after, .container .btn-more.btn-more-trans:focus:after {
  background: #000;
}

.container .btn-more.btn-more-trans:after {
  background: #fff;
}

.container > section:nth-child(even) {
  margin: 110px 0;
}

@media screen and (max-width: 767px) {
  .container .tit {
    font-size: 50px;
    letter-spacing: 0px;
  }
  .container .tit-s {
    font-size: 28px;
    line-height: 35px;
  }
  .container .tit-txt {
    font-size: 18px;
  }
  .container .btn-more {
    width: 120px;
    height: 40px;
    padding-left: 15px;
    font-size: 12px;
    line-height: 40px;
  }
  .container .btn-more:after {
    width: 7px;
    right: 15px;
  }
  .container > section:nth-child(even) {
    margin: 80px 0;
  }
}

@media screen and (max-width: 600px) {
  .container .tit {
    font-size: 40px;
  }
}

.news .tit {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .news .tit {
    margin-bottom: 70px;
  }
}

.movie .tit-txt {
  margin: 50px 0 40px 0;
}

.movie .movie-module-wrap {
  margin-top: 60px;
}

.movie .movie-module-wrap iframe {
  width: 100% !important;
  height: 550px !important;
}

@media screen and (max-width: 767px) {
  .movie .tit-txt {
    margin: 30px 0 20px 0;
  }
  .movie .movie-module-wrap {
    margin-top: 40px;
  }
  .movie .movie-module-wrap iframe {
    height: 350px !important;
  }
}

.qna {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.qna * {
  color: #fff !important;
}

.qna .qna-bg {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: url(/images/kor06r-22-0454/main/qna_bg.png) no-repeat center center;
  z-index: -1;
}

.qna .tit-txt {
  margin: 60px 0;
}

.qna .faq-accordion {
  width: 700px;
  margin: 0 auto 40px;
}

.qna .faq-accordion > div.faq-in:not(:last-child) {
  margin-bottom: 5px;
}

.qna .faq-accordion .question {
  display: block;
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  padding: 25px 40px 25px 90px;
  padding-left: 90px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .qna .faq-accordion .question {
    font-size: 16px;
  }
}

.qna .faq-accordion .question:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 26px;
  background: url(/images/kor06r-22-0454/main/ico-comment.svg) no-repeat center center;
  position: absolute;
  top: calc(50% - 13px);
  left: 40px;
  background-size: 30px 26px;
}

@media screen and (max-width: 767px) {
  .qna {
    padding: 80px 0;
  }
  .qna .tit-txt {
    margin: 40px 0;
  }
  .qna .faq-accordion {
    width: 100%;
    margin: 0 auto 20px;
  }
  .qna .faq-accordion .question {
    padding: 20px 20px 20px 50px;
  }
  .qna .faq-accordion .question:before {
    left: 20px;
    width: 23px;
    height: 20px;
    top: calc(50% - 10px);
    background-size: 20px 23px;
  }
}

.m-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 50px;
}

.m-news .item {
  width: calc((100% - 60px) / 3);
}

.m-news .news-img {
  position: relative;
  width: 100%;
  height: 350px;
}

.m-news .news-txt {
  text-align: left;
}

.m-news .news-txt dt {
  font-size: 22px;
  color: #111;
  font-weight: 400;
  margin: 40px 0 10px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .m-news .news-txt dt {
    font-size: 20px;
  }
}

.m-news .news-txt dd {
  font-size: 16px;
  color: #111;
  font-weight: 300;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 24px;
  height: 48px;
}

@media screen and (max-width: 767px) {
  .m-news .news-txt dd {
    font-size: 15px;
  }
}

@media screen and (max-width: 980px) {
  .m-news .news-img {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .m-news {
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .m-news .item {
    width: 250px;
    margin-bottom: 20px;
  }
  .m-news .item:not(:last-child) {
    margin-right: 20px;
  }
  .m-news .news-img {
    height: 200px;
  }
  .m-news .news-txt dt {
    margin: 20px 0 5px 0;
  }
}

.m-board {
  border-top: 2px solid #227353;
  margin-bottom: 50px;
}

.m-board .list-area {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.m-board a {
  display: block;
  text-align: left;
}

.m-board a dt {
  font-size: 18px;
  color: #111;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .m-board a dt {
    font-size: 16px;
  }
}

.m-board a dd {
  font-size: 16px;
  color: #848484;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .m-board a dd {
    font-size: 15px;
  }
}

.m-board a:hover dt {
  color: #227353;
}

@media screen and (max-width: 767px) {
  .m-board {
    margin-bottom: 30px;
  }
  .m-board .list-area {
    padding: 20px 10px;
  }
  .m-board a dd {
    line-height: 24px;
    margin-top: 5px;
  }
}

.box-banner {
  position: relative;
  width: 1200px;
  color: #fff;
  padding: 64px 20px;
  min-height: 430px;
  margin: 50px auto 80px;
  z-index: 500;
}

.box-banner .ico img {
  width: auto;
  height: 70px;
}

.box-banner dt {
  font-size: 45px;
  margin-top: 35px;
  font-weight: 500;
}

.box-banner dd {
  margin-bottom: 30px;
}

.box-banner .box-banner-bg {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: url(/images/kor06r-22-0454/main/box-banner-bg.png) no-repeat center center/cover;
  z-index: -1;
}
.container .t_cont{box-sizing:border-box;}
.container .t_cont h3,
.container .t_cont h4,
.container .t_cont h5,
.container .t_cont p{line-height:1.5;word-break:keep-all;font-weight:400;}
.container .t_cont strong{font-weight:600;}
.container .t_cont h3{font-size:48px;}
.container .t_cont h4{font-size:36px;}
.container .t_cont h5{font-size:24px;}
.container .t_cont p{font-size:20px;}
.container .t_cont span.image{display:block;margin-top:10px;}

.container .box-banner .t_cont{margin-top:50px;}




@media screen and (max-width: 1220px) {
  .box-banner {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .box-banner {
    min-height: unset;
    margin: 30px auto 40px;
  }
  .box-banner .ico img {
    height: 50px;
  }
  .box-banner dt {
    font-size: 35px;
    margin-top: 25px;
  }
  .box-banner dd {
    margin-bottom: 20px;
  }
	.container .t_cont h3{font-size:36px;}
	.container .t_cont h4{font-size:24px;}
	.container .t_cont h5{font-size:20px;}
	.container .t_cont p{font-size:18px;}

	.container .box-banner .t_cont{margin-top:30px;}
}

.apart {
  background: url(/images/kor06r-22-0454/main/apart_img.png) no-repeat bottom center;
  padding-bottom:400px;
  margin-bottom: 0 !important;
}

.apart .tit-s {
  margin: 50px 0 20px 0;
}

.apart .tit-txt {
  margin-bottom: 40px;
}

.apart .inner {
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .apart {
    padding-bottom:320px;
  }
  .apart .tit-s {
    margin: 30px 0 15px 0;
  }
  .apart .tit-txt {
    margin-bottom: 30px;
  }
}

.premium {
  background: url(/images/kor06r-22-0454/main/premium_bg.png) no-repeat center center/cover;
  padding: 110px 0;
}

.premium * {
  color: #fff !important;
}

.premium .cArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 90px;
}

.premium .cArea > div {
  width: 50%;
}

.premium .cArea > div dd {
  font-size: 30px;
  font-weight: 400;
  margin-top: 30px;
}
.premium .icon_cont{width:800px;margin:90px auto 0 auto;gap:50px;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;}
.premium .icon_cont .obj{flex:1;text-align:center;}
.premium .icon_cont .obj span.image{width:130px;height:130px;border-radius:50%;margin:0 auto;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,0.3);background-color:rgba(0,0,0,0.2);}
.premium .icon_cont .obj span.image img{display:block;max-width:100%;margin:0 auto;}
.premium .icon_cont .obj p{margin-top:20px;font-size:18px;font-weight:500;word-break:keep-all;}

@media screen and (max-width: 980px) {
  .premium .icon_cont{width:100%;margin:50px auto 0 auto;gap:30px;}
}


@media screen and (max-width: 767px) {
  .premium .cArea > div dd {
    font-size: 26px;
  }
	.premium .icon_cont .obj span.image{width:100px;height:100px;}
	.premium .icon_cont .obj span.image img{width:60px;}
	.premium .icon_cont .obj p{margin-top:10px;font-size:16px;}
	.premium .icon_cont .obj p br{display:none;}
}

.premium .cArea > div ul {
  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;
  margin-top: 40px;
}

.premium .cArea > div ul li {
  width: 180px;
}

.premium .cArea > div ul li a {
  display: inline-block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: left;
  border-bottom: 2px solid #fff;
  padding-left: 50px;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .premium .cArea > div ul li a {
    font-size: 16px;
  }
}

.premium .cArea > div ul li a img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(106%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(106%) contrast(101%);
  height: 20px;
  width: auto;
  vertical-align: text-top;
  margin-right: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.premium .cArea > div ul li a:hover img {
  -webkit-filter: invert(72%) sepia(36%) saturate(509%) hue-rotate(42deg) brightness(93%) contrast(89%);
          filter: invert(72%) sepia(36%) saturate(509%) hue-rotate(42deg) brightness(93%) contrast(89%);
}

@media screen and (max-width: 980px) {
  .premium .cArea > div {
    width: calc(50% - 20px);
  }
  .premium .cArea > div ul {
    width: 100%;
  }
  .premium .cArea > div ul li {
    width: 50%;
  }
  .premium .cArea > div ul li a {
    text-align: center;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .premium {
    padding: 80px 0;
  }
  .premium .cArea {
    margin-top: 40px;
  }
  .premium .cArea > div dt img {
    width: 160px;
    height: auto;
  }
  .premium .cArea > div dd {
    margin-top: 15px;
  }
  .premium .cArea > div ul {
    margin-top: 10px;
  }
  .premium .cArea > div ul li a {
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 600px) {
  .premium {
    background-position: 30% center;
  }
  .premium .cArea > div {
    width: 100%;
  }
  .premium .cArea > div ul li {
    max-width: 180px;
  }
  .premium .cArea .areaR {
    margin-top: 25px;
  }
}


		