@charset "utf-8";
:root {
  --bs-main-primary: #004f9d;
}
/* ****************** 공통클래스 ********************** */
.main-area {
  max-width: 1100px;
  margin: 0px auto;
  position: relative;
  width: 100%;
}
/* ****************** HEADER ********************** */
#main_header {
  width: 100%;
  z-index: 9;
  position: relative;
  background: var(--bs-white);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
#main_header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
#main_header .headerInner {
  padding: 0px;
}
#main_header h1.logo {
  position: absolute;
  top: 17px;
  left: 100px;
  display: block;
  vertical-align: middle;
  padding: 0;
  z-index: 1;
}
#main_header h1.logo a {
  display: block;
  padding: 0px;
  background: url(../images/main/logo.png);
  text-indent: -99999px;
  width: 194px;
  height: 37px;
}
#main_header nav {
  display: flex;
  justify-content: flex-end;
}
#main_header nav > div {position:relative;}
#main_header nav > div > a {
  padding: 29px 0 29px 52px;
  display: block;
  color: var(--bs-gray-200);
  font-weight: 600;
  font-size: 17.5px;
}
#main_header nav > div:hover > a {
  color: var(--bs-main-primary);
}
#main_header nav > div > a span {
  position: relative;
  display: block;
  padding: 5px 0;
}
#main_header nav > div > a span:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0;
  left: 50%;
  height: 2px;
  background-color: var(--bs-main-primary);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
#main_header nav > div:hover > a span:before {
  width: 100%;
  margin-left: -50%;
}
#main_header nav ul {
	position:absolute;display:none;
	top: 100%;
    left: -70%;
    width:800px;
}
#main_header nav ul.cs-menu {left:-200px;}
#main_header nav ul:before {position:fixed;left:0;top:88px;right:0;top:89px;height:39px;background:var(--bs-white);display:block;content:"";border-top:1px solid #cccccd;z-index:1}
#main_header nav > div:hover ul {display:flex; margin-left:20px;}
#main_header nav ul li {z-index:10;position:relative;padding-left:32px;}
#main_header nav ul li a {display:block;line-height:39px;font-size:15px;color:var(--bs-gray-200);padding:0;}
#main_header nav ul li a:hover {color:var(--bs-main-primary);}
.header-etc-menu {
  position: absolute;
  right: 190px;
  top: 30px;
}
.header-etc-menu a {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--bs-main-primary);
  color: var(--bs-main-primary);
  border-radius: 30px;
  font-weight: 500;
}
.header-etc-menu a.login-btn {
  background: var(--bs-main-primary);
  color: var(--bs-white);
}
/* ******************  메인 비주얼 ********************** */
#mainVisual {
  overflow: hidden;
  width: 100%;
  height: 696px;
  position: relative;
  background: var(--bs-black);
}
#mainVisual .slick-track, #mainVisual .slick-list {
  -webkit-perspective: 2000;
  -webkit-backface-visibility: hidden;
}
#mainVisual .main-visual-list-con, #mainVisual .main-visual-con, #mainVisual .slick-list, #mainVisual .slick-track, .main-visual-item, #mainVisual .slick-slider {
  height: 100%;
}
#mainVisual .slick-track {
  overflow: hidden;
}
/* 메인 비주얼 :: 이미지 */
#mainVisual .main-visual-item {
  position: relative;
}
#mainVisual .main-visual-item .main-visual-pc-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: transform 3000ms ease-in-out;
  -moz-transition: transform 3000ms ease-in-out;
  -o-transition: transform 3000ms ease-in-out;
  -ms-transition: transform 3000ms ease-in-out;
  transition: transform 3000ms ease-in-out;
}
#mainVisual .main-visual-item.active-item .img {
  overflow: hidden;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
}
/* 메인 비주얼 :: 텍스트 */
#mainVisual .main-visual-item .main-visual-txt-con {
  position: absolute;
  top: 120px;
  left: 0px;
  width: 100%;
  z-index: 100;
}
#mainVisual .main-visual-item .main-visual-txt-con h2, #mainVisual .main-visual-item .main-visual-txt-con p {
  opacity: 0;
  filter: Alpha(opacity=0);
  -ms-transform: translateY(-150px);
  -o-transform: translateY(-150px);
  -moz-transform: translateY(-150px);
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
  -webkit-transition: opacity 1.0s, transform 1.0s;
  -moz-transition: opacity 1.0s, transform 1.0s;
  -o-transition: opacity 1.0s, transform 1.0s;
  -ms-transition: opacity 1.0s, transform 1.0s;
  transition: opacity 1.0s, transform 1.0s;
}
/* 메인 비주얼 :: active효과 */
#mainVisual .main-visual-item.active-item .main-visual-pc-img {
  -ms-transform: scale(1.0, 1.0) rotate(0.01deg);
  -o-transform: scale(1.0, 1.0) rotate(0.01deg);
  -moz-transform: scale(1.0, 1.0) rotate(0.01deg);
  -webkit-transform: scale(1.0, 1.0) rotate(0.01deg);
  transform: scale(1.0, 1.0) rotate(0.01deg);
}
#mainVisual .main-visual-item.active-item .main-visual-txt-con h2, #mainVisual .main-visual-item.active-item .main-visual-txt-con p {
  opacity: 1.0;
  filter: Alpha(opacity=100);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
#mainVisual .main-visual-item.active-item.item1 .main-visual-pc-img {
  background: url(../images/main/visual_01.jpg) no-repeat center center;
  background-size: cover;
}
#mainVisual .main-visual-item.active-item.item2 .main-visual-pc-img {
  background: url(../images/main/visual_01.jpg) no-repeat center center;
  background-size: cover;
}
#mainVisual h2 {
  color: var(--bs-white);
  font-size: 55px;
  font-weight: 300;
  margin-bottom: 20px;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  transition-delay: 0.3s;
  word-break: keep-all;
  line-height: 1.4em;
}
#mainVisual p {
  color: var(--bs-white);
  line-height: 1.4em;
  font-size: 17px;
  font-weight: 300;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  transition-delay: 0.8s;
  word-break: keep-all;
}
#mainVisual .slide-arrow {
  position: absolute;
  top: 190px;
  z-index: 100;
}
#mainVisual .prev-arrow {
  left: 190px;
}
#mainVisual .next-arrow {
  right: 190px;
}
.main-btn-area {
  display: flex;
  margin-top: 40px;
  gap: 10px
}
.main-btn-area a {
  display: block;
  padding: 8px 15px;
  background: #1087f1 url("../images/main/btn_visual_arrow.png") no-repeat 135px 50%;
  color: var(--bs-white);
  min-width: 170px;
  font-size: 17px;
}
.main-btn-area a + a {
  background-color: #303948;
}
/* ******************  메인 section01 ********************** */
#section01 {
  display: flex;
  background: #f5f5f5;
  margin-top: -200px;
  position: relative;
}
.notice-area {
  width: 50%;
  padding: 50px 40px;
}
.notice-area h4 {
  font-size: 25px;
  font-weight: 700;
  color: #02010c;
  margin-bottom: 20px;
}
.notice-area li {
  padding: 5px 0;
}
.notice-area li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notice-area li p span {
  display: block;
  font-size: 13px;
  color: var(--bs-gray-600);
  text-align: left;
  font-weight: 400;
}
.notice-area li a > p {
  text-align: center;
}
.notice-area li a > p:first-child {
  font-size: 45px;
  font-weight: 200;
  color: #02010c;
  width: 55px;
}
.notice-area li a > p + p {
  width: 35px;
}
.notice-area li a div {
  width: 350px;
}
.notice-area li .notice-subject {
  font-size: 18px;
  color: var(--bs-black);
  font-weight: 500;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.notice-area li .notice-content {
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.member-area {
  background: var(--bs-main-primary);
  padding: 50px 50px;
  width: 50%;
}
.member-area h4 {
  font-weight: 300;
  font-size: 25px;
  color: var(--bs-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.member-area h4 strong {
  font-weight: 700;
}
.member-form > p {
  margin-bottom: 9px;
}
.member-form > p input {
  border: 0;
  padding: 10px 5px 10px 50px;
  background: var(--bs-white) url("../images/main/ico_login_id.png") no-repeat 0 50%;
  border-radius: 0;
  width: 100%;
  height: 39px
}
.member-form > p + p input[type=password] {
  background-image: url("../images/main/ico_login_pw.png");
}
.member-form > p + p input[type=text] {
  background-image: url("../images/main/ico_login_pw.png");
}
.member-form label {
  color: var(--bs-white);
}
.login-etc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-etc a {
  color: var(--bs-white);
  display: inline-block;
  margin-left: 10px;
  background: url("../images/main/ico_login_link.png") no-repeat center left;
  padding-left: 15px;
}
.member-form button {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--bs-white);
  color: var(--bs-white);
  line-height: 48px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}
.login-area {
  display: flex;
  margin-top: 30px;
}
.login-area > div {
  width: 50%;
  text-align: center;
  color: var(--bs-white);
  background: url("../images/main/ico_login_member.png") no-repeat center top;
  padding-top: 60px;
  border-right: 1px solid #4165bc;
  font-size: 15px;
}
.login-area > div:last-child {
  background: url("../images/main/ico_login_info.png") no-repeat center top;
  border-right: 0;
}
.login-area > div p.label {
  color: #96afed;
  margin-bottom: 5px;
}
.login-btn-area {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}
.login-btn-area a {
  display: block;
  width: 48%;
  text-align: center;
  padding: 10px;
  border: 1px solid #96afed;
  color: #96afed;
  font-size: 16px;
  font-weight: 600;
}
.login-btn-area a + a {
  background: #96afed;
  color: #2c53b0;
}
#section02 {
  padding: 100px 0;
}
#section02 ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-left: 1px solid #e1e1e1;
}
#section02 li {
  border-right: 1px solid #e1e1e1;
  flex: 1;
  padding-bottom: 50px;
  background: url("../images/main/sec01_more.png") no-repeat center bottom;
}
#section02 li:hover {
  background-image: url("../images/main/sec01_more_over.png");
  cursor: pointer;
}
#section02 li .title {
  padding: 25px 0;
  color: var(--bs-gray-200);
  font-weight: 700;
  font-size: 23px;
}
#section02 li p {
  color: var(--bs-gray-900);
  line-height: 1.4;
}
#section03 {
  padding: 100px 0;
  background: url("../images/main/section03_bg.jpg") no-repeat center center;
  background-attachment: fixed;
  text-align: center;
  color: var(--bs-white);
  background-size: cover;
}
#section03 h4 {
  font-weight: 600;
  font-size: 22px;
  color: #faa646;
  margin-bottom: 30px;
}
#section03 p {
  line-height: 1.4;
  font-weight: 300;
  font-size: 40px;
}
#section04 {
  padding: 80px 0;
  text-align: center;
}
#section04 h4 {
  font-weight: 300;
  font-size: 42px;
  color: var(--bs-gray-200);
  margin-bottom: 55px;
}
#section04 .slider-item {
  padding: 0 14px;
  border-right: 1px solid #eaeaea;
}
#section04 .slider-item img {
  max-width: 100%;
}
#section04 p.title {
  font-weight: 300;
  line-height: 1.4;
  font-size: 21px;
  color: var(--bs-gray-700);
  margin: 30px 0 20px 0;
}
#section04 p.title strong {
  font-size: 28px;
  color: var(--bs-gray-400);
}
#section04 p {
  color: var(--bs-gray-900);
  line-height: 1.4;
}
#section04 .slide-arrow {
  position: absolute;
  top: 70px;
  z-index: 1;
}
#section04 .prev-arrow {
  left: -100px;
}
#section04 .next-arrow {
  right: -100px;
}
#section05 {
  padding: 0;
  background: var(--bs-black) url("../images/main/section05.jpg") no-repeat;
  background-size: cover;
}
#section05 .main-area {
  display: flex;
  align-items: center;
}
#section05 .main-area > div {
  width: 50%;
}
#section05 .main-area > div:first-child {
  padding: 60px 0;
}
#section05 h4 {
  font-size: 45px;
  color: var(--bs-white);
  margin-bottom: 25px;
}
#section05 p {
  font-size: 20px;
  color: var(--bs-white);
  line-height: 1.5;
  margin-bottom: 25px;
}
#section05 p.tel {
  margin-bottom: 0;
  font-size: 40px;
  color: #f47735;
  font-weight: 700;
}
#main_footer {
  padding: 60px 100px;
  display: flex;
  justify-content: space-between;
}
#main_footer h1 {
  background: url("../images/main/main_footer.png");
  width: 194px;
  height: 37px;
  text-indent: -9999px;
}
#main_footer > p {
  width: 180px;
}
#main_footer > div {
  width: calc(100% - 376px);
  padding: 0 30px;
}
#main_footer > div p {
  font-size: 15px;
  line-height: 1.5;
}
#main_footer > div p em {
  color: #9d7557;
}
#main_footer > div p span {
  display: inline-block;
  padding: 0 15px;
  position: relative;
}
#main_footer > div p span:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  height: 50%;
  width: 1px;
  background: #e5e5e5;
  transform: translateY(-50%);
  top: 50%;
}
#main_footer > div p span.no:before {
  display: none;
}
#main_footer > div a {
  font-size: 15px;
  color: var(--bs-gray-200);
  display: inline-block;
  padding: 0 15px;
  position: relative;
  font-weight: 500;
}
#main_footer > div p:has(a) {
  margin-bottom: 10px;
}
#main_footer > div a:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  height: 50%;
  width: 1px;
  background: #b2b2b2;
  transform: translateY(-50%);
  top: 50%;
}
#main_footer > div a:first-child:before {
  display: none;
}