@charset "UTF-8";
/************* font *****************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.serif {
  font-family: "Noto Serif KR", serif;
}
.deco {
  font-family: "PT Serif", serif;
  font-style: normal;
}
.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/************inner size*************/
.inner {
  padding: 0 70px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
body {
  font-family: "Pretendard", sans-serif;
}
section {
  overflow: hidden;
  margin-bottom: 100px;
}
/*********topbtn***********/
.topbtn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: #666;
  z-index: 999;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  display: none;
}
.topbtn:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.topbtn:hover:before {
  top: 50%;
}
/**********common************/
.video_wrap {
  position: absolute;
  width: 100%;
  height: 0%;
  padding-top: 56.25%;
  left: 0;
  top: 0;
}
.video_wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000040;
  left: 0;
  top: 0;
  z-index: 1;
}
.video_wrap iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
main {
  overflow: hidden;
}
/************header***********/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.5s ease; 
  white-space: nowrap;
  background: transparent;
}
header .inner {
  position: relative;  
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  transition: all .5s;
  height: 130px;
}
header.on {
  background: #fff;
}
header.on .inner {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
header .header_logo {
  text-align: center;
}
header .header_logo a img {
  transition: all 0.5s;
  width: 180px;
}
nav .nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
nav .nav_item {
  position: relative;
}
nav .nav_item > a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: block;
  transition: 0.3s;
  height: 100px;
  line-height: 100px;
}
nav .nav_item > a.on {
  color: var(--point-red) !important;
  font-weight: 700;
}
nav .nav_dropdown {
  position: absolute;
  width: 200vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background: #eee;
  padding: 15px 0;
  display: none;
  text-align: center;
  justify-content: center;
  gap: 10px;
  align-items: center;
  height: 60px;
  transition: all .3s;
  opacity: 0;
}
nav .nav_dropdown.on {
  display: flex;
  opacity: 1;
}
nav .nav_dropdown a {
  display: block;
  padding: 5px 20px;
  font-size: 16px;
  transition: all 0.3s;
  color: #333;
  font-weight: 300;
  transition: all .3s;
  border-bottom: 1px solid transparent;
}
nav .nav_dropdown a:hover {
  border-color: var(--point-orange);
  color: var(--point-orange);
}
header .header_call {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--point-red);
  border-radius: 50px;
  padding: 8px 15px;
}
header .header_call span {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}
header.on .nav_item > a {
  color: #222;
}
header.on .lang_btns a {
  color: #333;
}
header.on .lang_btns a span {
  border-color: #333;
}
header.on .nav_item > a:before {
  background: #222;
}
header.sub_on .nav_item > a {
  color: #222;
}
header.sub_on .lang_btns a {
  color: #333;
}
header.sub_on .lang_btns a span {
  border-color: #333;
}
header.sub_on .nav_item > a:before {
  background: #222;
}
header.sub_on {
  background: #fff;
}
header.sub_on .inner {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
/*****fixedbtn****/
.fixedbtn {
  position: fixed;
  right: 0;
  bottom: 10%;
  justify-content: center;
  display: none;
  width: 250px;
  z-index: 999;
}
.fixed_box {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0 0 0 30px;
}
.fixedbtn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 30px 20px;
  width: 70%;
}
.fixedbtn a h3 {
  font-weight: 900;
  font-size: 18px;
  margin-top: 10px;
}
.fixedbtn a p {
  font-size: 14px;
}
.fixedbtn a img {
  width: 28px;
  transition: all .3s;
}
.fixed_box a .call {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed_box a .call img {
  margin-right: 10px;
}
.fixed_box a:nth-of-type(1) {
  background: #fae301;
  border-radius: 30px 0 0 0;
  color: #371d1e;
}
.fixed_box a:nth-of-type(1) img {
  width: 40px;
}
.fixed_box a:nth-of-type(2) {
  background: var(--main-color);
}
.fixed_box a:nth-of-type(3) {
  background: #332928;
  width: 100%;
  align-items: end;
}
.fixed_box a:hover img {
  transform: translateY(-10px);
}
/***************footer***************/
footer {
  background: #333;
  padding: 30px 0;
  color: #fff;
}
footer .footer_logo {
  margin-right: 50px;
  width: 200px;
}
footer > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_content {
  width: 100%;
}
.footer_content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
}
.footer_content p span {
  padding: 0 15px;
}
.footer_content small {
  display: block;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #666;
  font-size: 11px;
  text-align: right;
}
/*.main common*/
.title {
  margin-bottom: 50px;
}
.title h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
  display: inline-block;
  padding: 0 100px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;

}
.title h3 {
  color: #bf1035;
  font-size: 20px;
}
.title p {
  font-size: 16px;
  line-height: 1.5;
}
.more {
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  padding: 10px 40px;
  border: 1px solid #999;
  border-radius: 3px;
  text-align: center;
  color: #333;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: #222;
  transition: all 0.3s;
  z-index: 1;
}
.more:hover {
  color: #fff;
}
.more:hover:before {
  top: 0;
  z-index: -1;
}
.location_table {
  border-color: #bbb;
  color: #333;
  width: 100%;
}
.location_table th {
  background: #999;
  color: #fff;
}
.location_table th,
.location_table td {
  padding: 15px;
  text-align: center;
  font-size: 18px;
}
.location_search {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.location_search a {
  text-align: center;
  padding: 10px 50px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.location_search a img {
  height: 25px;
}
.location_search a span {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
}
.location_search a:nth-child(2) {
  margin: 0 50px;
}
.location_search a:nth-child(1) span {
  color: #03cf5d;
}
.location_search a:nth-child(2) span {
  color: #0089ff;
}
.location_search a:nth-child(3) span {
  color: #dd4436;
}
/*****************visual****************/
.visual {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  overflow: hidden;
  height: 100vh;
}
.visual .visual_slide {
  position: relative;
  height: 100%;
}
.visual .visual_slide .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s;
}
.visual .visual_slide .swiper-slide-active > img {
  transform: translate(-50%, -50%) scale(1.03);
}
.visual .visual_slide .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.visual .visual_txt {
  position: relative;
  width: 1440px;
  margin: -150px auto 0;
  color: #fff;
  z-index: 999;
}
.visual .visual_slide .swiper-slide-active .visual_txt {
  animation: visual_txt 1.5s 1 normal;
}
@keyframes visual_txt {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.visual .visual_txt h2 {
  font-size: 48px;
  margin: 20px 0;
  font-weight: 400;
}
.visual .visual_txt h2 strong {
  color: var(--point-red);
  font-weight: 900;
}
.visual .visual_txt h3 {
  font-size: 20px;
  font-weight: 400;
}
.visual .visual_txt h3 strong {
  font-weight: 600;
}
.visual .swiper-pagination.swiper-num {
  position: absolute;
  width: 1440px;
  display: flex;
  justify-content: start;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 151px;
  gap: 50px;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet{
  background: none;
  width: auto;
  height: auto;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  position: relative;
  text-align: left;
  transition: all .5s;
  width: 110px;
  margin: 0 0 0 -50px !important;    
}
.swiper-pagination.swiper-num .swiper-pagination-bullet .line {
  display: block;
  width: 0;
  height: 5px;
  background: #fff;
  opacity: 0;
  margin: auto;
  margin-top: 15px;
  position: relative;
  left: 0;
  transition: all .5s;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet .line::before {
  position: absolute;
  content: '';
  width: 0;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--point-red);
  z-index: 9;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet-active .line {
  opacity: 1;
  width: 110px;  
  left: -37%;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet-active .line::before {
  animation: visual_line 5.5s 1 ease-in-out;
}
@keyframes visual_line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.visual .visual_btn {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: end;
  z-index: 99;
  padding-right: 300px;
  align-items: stretch;
}
.visual .visual_btn::before {
  position: absolute;
  content: '';
  height: 1px;
  background: #fff;
  width: 100%;
  top: -1px;
  right: 300px;
}
.visual .visual_btn::after {
  position: absolute;
  content: '';
  height: 100vh;
  right: 300px;
  bottom: 0;
  width: 1px;
  background: #fff;
}
.visual .visual_btn img {
  vertical-align: bottom;
}
.visual .visual_btn a:first-child img {
  vertical-align: middle;
  height: 150px;
}
.visual_btn .btn_inquiry img {
  width: 32px;
}
.visual .visual_btn .btn_inquiry {
  background: var(--point-orange);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 200px;
  align-items: center;
  height: 150px;

}
/******business*******/
.business {
  position: relative;
  height: 80vh;
}
.business::before {
  position: absolute;
  content: '';
  width: 30%;
  height: 620px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/img/businessbg.jpg);
  border-radius: 0 0 100px 0;
  z-index: 0;
}
.business::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 60vh;
  background: #f4f4f4;
  border-radius: 100px 0 0 100px;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.tab_container {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}

/* 1. 왼쪽 탭 메뉴 스타일 */
.tab_menu {
  width: 10%;
  color: #fff;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tab_item {
  padding: 15px 30px;
  width: 190px;
  text-align: left;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.5; /* 비활성화된 메뉴는 흐리게 */
  transition: opacity 0.3s;
  box-shadow: 0 5px rgba(0,0,0,0);
}

.tab_item.active {
  opacity: 1; /* 활성화된 메뉴는 선명하게 */
  background: var(--point-orange);
  box-shadow: 0 5px rgba(0,0,0,0.05);
}

/* 이미지와 내용을 감싸는 요소에 애니메이션 효과를 위한 초기 및 최종 상태 정의 */
.animated_item {
  opacity: 0;
  transform: translateY(150px); /* 아래에서 위로 올라오는 효과 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated_item.fade_in {
  opacity: 1;
  transform: translateY(0);
}

/* 2. 오른쪽 탭 콘텐츠 영역 스타일 */
main .tab_content_area {
  display: flex;
  width: 90%;
}

.tab_image_wrap {
  width: 40%;
  padding-right: 30px;
  position: relative;
}

.tab_image_wrap::before {
  content: 'Business';
  color: #999;
  position: absolute;
  right: 30px;
  top: -30px;
  font-size: 18px;
}

.tab_image_wrap img {
  width: 100%;
  height: auto;
  display: block;
  height: 60vh;
}

main .tab_content {
  width: 60%;
  display: none; /* 기본적으로 모든 내용을 숨김 */
  padding: 20vh 0 0 5vw;
}

main .tab_content.active {
  display: block; /* 활성화된 내용만 표시 */
}

.business_title {
  font-size: 54px;
  color: var(--point-orange);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.business_title::before {
  position: absolute;
  content: '';
  width: 15vw;
  height: 3px;
  background: var(--point-orange);
  bottom: 0;
  left: -20%;
}
main .tab_content p {
  font-size: 24px;
  color: #666;
  line-height: 2em;
}
main .tab_content .more_link {
  width: 250px;
  height: 50px;
  border-top: 1px solid #847e66;
  border-bottom: 1px solid #847e66;
  margin-top: 30px;
  display: inline-block;
  line-height: 50px;
  color: #847e66;
  font-size: 18px;
  position: relative;
  transition: all .5s;
  text-align: center;
}
main .tab_content .more_link::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--point-orange);
  transition: all .3s;
  z-index: -1;
}
main .tab_content .more_link span {
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 24px;
  transform: translateY(-50%);
  color: #fff;
}
main .tab_content .more_link:hover {
  color: #fff;
  border-color: #fff;
}
main .tab_content .more_link:hover::before {
  width: 100%;
}

/******about********/
.about {
  background: url(/img/aboutbg.jpg) no-repeat center / cover fixed;
  padding: 100px 0;
}
.about_cont {
  max-width: 1440px;
  margin: 0 auto;
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.about_title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 60px;
}
.about_title h2 {
  font-size: 70px;
  font-weight: 900;
}
.about_title p {
  font-size: 24px;
  line-height: 1.6em;
}
.about_btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.about_btn a {
  font-size: 70px;
  display: block;
  font-weight: 900;
  color: #fff;
  transition: all .5s;
  position: relative;
}
.about_btn a .line {
  position: absolute;
  width: 100px;
  height: 2px;
  background: #fff;
  right: 0px;
  bottom: 0px;
  transition: all .5s;
  opacity: 0;
}
.about_btn a .line::before {
  position: absolute;
  content: '';
  background: #fff;
  height: 2px;
  width: 15px;
  right: 0;
  bottom: 5px;
  transform: rotate(45deg);
  transition: all .5s;
}
.about_btn a:hover {
  color: #666;
}
.about_btn a:hover .line {
  right: -30px;
  background: #666;
  opacity: 1;
}
.about_btn a:hover .line::before {
  background: #666;
}

/***consult*****/
.consult {
  background: url(/img/constultbg.jpg) no-repeat center / cover;
  padding: 100px 0;
  margin-bottom: 0;
}
.consult_title {
  margin-bottom: 50px;
}
.consult_title p {
  color: var(--point-orange);
  font-weight: 500;
}
.consult_title h2 {
  color: #fff;
  font-size: 40px;
}
.consult_form {
  width: 50%;
}
