<meta charset="utf-8">
.main_visual { height: 100vh; }
.swiper { margin: 0; width: 100%; height: 1000px; }



.scroll-scale-wrap {
  width: 100%;
  max-width: 1200px;  /* 필요에 맞게 조절 */
  margin: 0px auto; /* 위아래 여백: 스크롤 느낌용 */
  overflow: visible;
	
}

.scroll-scale-img {
  width: 100%;
  display: block;
  transform: scale(0.2);       /* 기본은 살짝 작게 */
  opacity: 0;   
	border-radius: 30px;/* 처음엔 안 보이게 */
  transition:
    transform 0.4s ease-out,
    opacity 0.4s ease-out;
}

/* 활성화될 때 클래스가 붙습니다 */
.scroll-scale-img.is-visible {
  opacity: 1;
}

@media (max-width: 1600px) {
	.scroll-scale-img {
 
	border-radius: 0px;

}
}




.full-img-wrap{
  width:100%;
  text-align:center;
 
  box-sizing:border-box;
}

.full-img-wrap img{
  width:100%;
  max-width:1000px;
  height:auto; /* 이미지 비율 그대로 */
  display:block;
	border-radius: 10px;
  margin:0 auto; /* 중앙정렬 */
}

@media (max-width: 1000px) {
	.full-img-wrap img{
  
	border-radius: 0px;

}

}

.full-img-wrap01{
  width:100%;
  text-align:center;
 
  box-sizing:border-box;
}

.full-img-wrap01 img{
  width:100%;
  max-width:1200px;
  height:auto; /* 이미지 비율 그대로 */
  display:block;
	border-radius: 10px;
  margin:0 auto; /* 중앙정렬 */
}

@media (max-width: 1200px) {
	.full-img-wrap img{
  
	border-radius: 0px;

}
}






.full-gray-section {
    width: 100%;
    background: #ebeae5;
    padding: 50px 0; /* 위아래 50px */
}







.vetx-dot-before {
  position: relative;
  padding-left: 18px;
	padding-bottom: 15px;
  display: block; /* span도 줄바꿈 되게 */
}

.vetx-dot-before::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  background: #2a2f45;
  border-radius: 50%;
}






/* 탭 전체 */
.vtabs-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 탭 버튼 영역 */
.vtabs-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 3px solid #21305c; /* 탭 아래 선 */
  gap: 5px; /* 탭 사이 간격 */
}

/* 비활성 탭 – 밝은 회색 세로 그라데이션 */
.vtabs-btn {
  flex: 1;
  padding: 16px 0;
  font-size: 27px;
  font-weight: 700;
  color: #333;
  background: linear-gradient(to bottom, #f2f2f7, #e6e6ec);
  border: none;
  border-radius: 10px 10px 0 0; /* 상단 좌우 둥글게 */
  cursor: pointer;
  transition: 0.25s ease;
}

/* 활성 탭 – 다크블루 세로 그라데이션 */
.vtabs-btn.active {
  color: #fff;
  background:#334577;
}

/* 콘텐츠 영역 */
.vtabs-content {
  padding: 10px;
}

.vtabs-panel {
  display: none;
  animation: vtabs-fade 0.3s ease;
}

.vtabs-panel.show {
  display: block;
}

.vtabs-panel h4 { font-size: 35px;}
.vtabs-panel p  { font-size: 20px; margin-top: 10px;}



/* 전체 풀사이즈 영역 */
.vfullx-wrap {
  width: 100%;
  display: flex;
  background: #fff;
	border-bottom: 1px solid rgba(181,181,181,1.00);
  padding: 0px 0 20px 0;
}

/* 좌측 40% – 배경 이미지 */
/* 공통 영역 */

.vfullx-left01 { width: 40%; background-image: url('../img/check_y01.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center;
background-repeat: no-repeat; } 

.vfullx-left02 { width: 40%; background-image: url('../img/check_y02.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center; 
background-repeat: no-repeat; } 

.vfullx-left03 { width: 40%; background-image: url('../img/check_y03.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center; 
background-repeat: no-repeat; }



/*메인 텍스트 효과*/
.rotate-word {
  position: relative;
  display: inline-block;
  animation: slideIn 0.6s ease forwards;
  white-space: nowrap;
}

/* 좌측 → 우측 슬라이드 인 */
@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* 단어가 사라질 때(우측으로 빠짐) */
.slide-out {
  animation: slideOut 0.6s ease forwards;
}

@keyframes slideOut {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(40px); }
}
/*메인 텍스트 효과*/



/* 우측 50% – 목록 */
.vfullx-right {
  width: 50%;
  padding: 40px 40px;
  display: flex;
  align-items: center;
	
}

/* 리스트 기본 스타일 */
.vfullx-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 앞에 동그란 점 */
.vfullx-dot {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.5em;
  color: #2a2f45;
}

.vfullx-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px; /* 글자 중앙정렬 */
  width: 6px;
  height: 6px;
  background: #2a2f45;
  border-radius: 50%;
}



/* 모바일 */
@media (max-width: 900px) {
  .vfullx-wrap {
    flex-direction: column;
  }
  .vfullx-left {
    width: 100%;
    height: 250px;
  }
  .vfullx-right {
    width: 100%;
    padding: 30px 20px;
  }
	
	
	/* 앞에 동그란 점 */
.vfullx-dot {
  padding-left: 10px !important;
	  font-size: 15px !important;
}

.vfullx-dot::before {
  top: 8px !important; /* 글자 중앙정렬 */
  width: 4px !important;
  height: 4px !important;
}
	
	
}











/* 전체 탭 영역 */
.x3tab-wrap {
  width: 100%;
  background: #fff;
  padding-top: 40px;
}

/* 내부 1200px 정렬 */
.x3tab-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
	border-bottom: 1px solid #ccc; /* ★ 탭 아래 1px 라인 */
}

/* 기본 탭 버튼 */
.x3tab-btn {
  flex: 1;
  padding: 18px 0;
 
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #444;                   /* 비활성 텍스트 */
  cursor: pointer;
  border-radius: 10px 10px 0 0;  /* 위쪽 좌·우 둥글게 */
  transition: 0.25s ease;
	margin-right: 10px;
	
	 background: linear-gradient(
    to bottom,
    #f3f3f3 0%,
    #e5e5e5 100%
  );
	
}


/* 마지막 탭 오른쪽 마진 제거 */
.x3tab-btn:last-child {
  margin-right: 0;
}


/* 활성화된 탭 */
.x3tab-btn.active {
  color: #fff;

  background: linear-gradient(
    to bottom,
    #2e427f 0%,
    #1e2d5c 100%
  );
}

/* 콘텐츠 영역 */
.x3tab-content {
  max-width: 1200px;
  margin: 30px auto;
}

.x3tab-panel {
  display: none;
  padding: 20px 0;
  font-size: 18px;
}

.x3tab-panel.show {
  display: block;
}





@keyframes vtabs-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}










@media (max-width: 1024px) {
	




/* 탭 전체 */
.vtabs-wrap {
  margin: 20px auto;
}

/* 탭 버튼 영역 */
.vtabs-nav {
  margin-bottom: 10px;
  border-bottom: 2px solid #21305c; /* 탭 아래 선 */
  gap: 5px; /* 탭 사이 간격 */
	padding: 0px 20px;
}

/* 비활성 탭 – 밝은 회색 세로 그라데이션 */
.vtabs-btn {
  flex: 1;
  padding: 5px 0;
  font-size: 20px;
  border-radius: 5px 5px 0 0; /* 상단 좌우 둥글게 */
}


/* 콘텐츠 영역 */
.vtabs-content {
  padding: 20px;
}

.vtabs-panel h4 { font-size: 25px;}
.vtabs-panel p  { font-size: 18px; margin-top: 0px;}



.vfullx-left01 { width: 40%; background-image: url('../img/check_y01.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center;
background-repeat: no-repeat; } 

.vfullx-left02 { width: 40%; background-image: url('../img/check_y02.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center; 
background-repeat: no-repeat; } 

.vfullx-left03 { width: 40%; background-image: url('../img/check_y03.jpg'); 
background-size: contain; /* 이미지 전체 보이기 */
  background-repeat: no-repeat;
background-position: center; 
background-repeat: no-repeat; }







/* 우측 50% – 목록 */
.vfullx-right {
  padding: 20px 20px;
	font-size: 15px !important;
}

.vfullx-right li { font-size: 20px;}

/* 앞에 동그란 점 */
.vfullx-dot {
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 18px;
}

.vfullx-dot::before {
  top: 12px; /* 글자 중앙정렬 */
  width: 6px;
  height: 6px;
}

	




/* 전체 탭 영역 */
.x3tab-wrap {
  padding-top: 30px;
}

/* 내부 1200px 정렬 */
.x3tab-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
	border-bottom: 1px solid #ccc; /* ★ 탭 아래 1px 라인 */
}

/* 기본 탭 버튼 */
.x3tab-btn {
  flex: 1;
  padding: 18px 0;
 
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #444;                   /* 비활성 텍스트 */
  cursor: pointer;
  border-radius: 10px 10px 0 0;  /* 위쪽 좌·우 둥글게 */
  transition: 0.25s ease;
	margin-right: 10px;
	
	 background: linear-gradient(
    to bottom,
    #f3f3f3 0%,
    #e5e5e5 100%
  );
	
}


/* 마지막 탭 오른쪽 마진 제거 */
.x3tab-btn:last-child {
  margin-right: 0;
}


/* 활성화된 탭 */
.x3tab-btn.active {
  color: #fff;

  background: linear-gradient(
    to bottom,
    #2e427f 0%,
    #1e2d5c 100%
  );
}

/* 콘텐츠 영역 */
.x3tab-content {
  max-width: 1200px;
  margin: 30px auto;
}

.x3tab-panel {
  display: none;
  padding: 20px 0;
  font-size: 18px;
}

.x3tab-panel.show {
  display: block;
}

	
	
	
	
	
}	
	
	
	
/* 모바일 */
@media (max-width: 900px) {
  .vfullx-wrap {
    flex-direction: column;
  }
  .vfullx-left {
    width: 100%;
    height: 200px;
  }
  .vfullx-right {
    width: 100%;
    padding: 20px 20px;
  }
}








/* 모바일 */
@media (max-width: 768px) {

	
	.vtabs-btn {
  flex: 1;
  padding: 0px 0;
  font-size: 16px;
  border-radius: 5px 5px 0 0; /* 상단 좌우 둥글게 */
}
	
	
	.vfullx-right li { font-size: 15px; line-height: 1.3em;}
	
	
}









/* 전체 배경 박스 */
.uniqtable-full-wrap {
  width: 100%;
  background: #ebeae5;
  padding: 50px 0;
}

/* 안쪽 최대 1200px */
.uniqtable-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}



.uniqtable-inner .title { width: 100%}
.uniqtable-inner .title h1 { text-align: center; font-size: 42px; line-height: 1.5em; padding-top: 50px; margin-bottom: 30px; }
.uniqtable-inner .title h2 {  display: none;}



/* 720px 이하에서만 가로 스크롤 */
.uniqtable-table-scroll {
  width: 100%;
  overflow-x: hidden;
}



/* 표 컨테이너 */
.uniqtable-table {
  width: 100%;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 각 줄 */
.uniqtable-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; /* 칸 사이 10px */
}

/* 공통 셀 */
.uniqtable-cell {
  position: relative;
  padding: 10px 5px 10px 30px; /* 점 영역 고려 */
  font-size: 16px;
  color: #333;
  background: #fff;
  text-align: left;
  line-height: 1.5;
  word-break: break-all;
  border-radius: 4px;
}

/* 동그란 점 */
.uniqtable-cell .dot {
  width: 4px;
  height: 4px;
  position: absolute;
  left: 16px;
  top: 22px;
  border-radius: 50%;
  background: #000;
}

/* 헤더는 점 제거 */
.uniqtable-row.header .uniqtable-cell .dot {
  display: none;
}

/* 헤더 색상 3종 */




.uniqtable-row.header .header-1 {
  background: linear-gradient(135deg, #7cb628 0%, #408638 100%);
  color: #fff;
  text-align: center;
  font-weight: 700;

}

.uniqtable-row.header .header-2 {
  background: linear-gradient(135deg, #217bc1 0%, #0f4495 100%);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.uniqtable-row.header .header-3 {
  background: linear-gradient(135deg, #a48360 0%, #6c4923 100%);
  color: #fff;
  text-align: center;
  font-weight: 700;
}


/* 헤더 전체 공통 폰트 크기 & 아이콘 크기 */
.uniqtable-row.header .uniqtable-cell {
  font-size: 30px;        /* ← 여기서 글자 크기 조절 */
}

.uniqtable-row.header .uniqtable-cell i {
  font-size: 22px;        /* ← 아이콘 크기 조절 */
  vertical-align: middle; /* 아이콘 수직 정렬 */
}

/* 내용 셀 공통 폰트 크기 */
.uniqtable-cell {
    font-size: 18px;
}


/* 내용 줄 색상 */
.uniqtable-row.white .uniqtable-cell {
  background: #ffffff;
}

.uniqtable-row.gray .uniqtable-cell {
  background: #f0f0f0;
}







@media (max-width: 1024px) {
	


/* 안쪽 최대 1200px */
.uniqtable-inner {
  padding: 10px;
}



.uniqtable-inner .title h1 { font-size: 30px; padding-top: 20px; margin-bottom: 20px; }





/* 표 컨테이너 */
.uniqtable-table {
  gap: 7px;
}

/* 각 줄 */
.uniqtable-row {
  gap: 7px; /* 칸 사이 10px */
}

/* 공통 셀 */
.uniqtable-cell {
  position: relative;
  padding: 10px 5px 10px 25px; /* 점 영역 고려 */
  font-size: 12px !important;
  line-height: 1.3;
}

/* 동그란 점 */
.uniqtable-cell .dot {
  width: 4px;
  height: 4px;
  position: absolute;
  left: 16px;
  top: 15px;
  border-radius: 50%;
  background: #000;
}

/* 헤더는 점 제거 */
.uniqtable-row.header .uniqtable-cell .dot {
  display: none;
}

/* 헤더 색상 3종 */






/* 헤더 전체 공통 폰트 크기 & 아이콘 크기 */
.uniqtable-row.header .uniqtable-cell {
  font-size: 20px;        /* ← 여기서 글자 크기 조절 */
}

.uniqtable-row.header .uniqtable-cell i {
  font-size: 22px;        /* ← 아이콘 크기 조절 */
  vertical-align: middle; /* 아이콘 수직 정렬 */
}

/* 내용 셀 공통 폰트 크기 */
.uniqtable-cell {
    font-size: 18px;
}


/* 내용 줄 색상 */
.uniqtable-row.white .uniqtable-cell {
  background: #ffffff;
}

.uniqtable-row.gray .uniqtable-cell {
  background: #f0f0f0;
}	
}












/* 강제로 모바일에서 가로 스크롤바를 항상 노출 */
@media (max-width: 640px) {
	
	
	

	
	
  .uniqtable-table-scroll {
    overflow-x: scroll;           /* auto → scroll 로 변경 */
    scrollbar-width: thin;        /* 파이어폭스용 */
  }
	
	
/* 표 컨테이너 */
.uniqtable-table { gap: 5px;}

/* 각 줄 */
.uniqtable-row {gap: 5px;}
	

	
	.uniqtable-inner .title h1 { text-align: center; font-size: 20px; line-height: 1.4em; padding-top: 0px; margin-bottom: 0px; }
	.uniqtable-inner .title h2 { display: block; text-align: center; font-size: 15px; line-height: 1.2em; font-weight: 400;  margin-bottom: 30px;}

  /* 크롬, 사파리, 엣지용 스크롤바 강제 표시 */
  .uniqtable-table-scroll::-webkit-scrollbar {
    height: 8px;
  }
  .uniqtable-table-scroll::-webkit-scrollbar-track {
    background: #ddd;
  }
  .uniqtable-table-scroll::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
  }
}







/* 전체 래퍼 */
.uniqbox-wrap01 {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

/* 안쪽 1200px 박스 */
.uniqbox-inner01 {
    max-width: 1200px;
    margin: 0 auto;
}

/* 좌/우 구성 */
.uniqbox-row01 {
    display: flex;
    width: 100%;
    gap: 0;
}

/* 좌측 30% */
.uniqbox-left01 {
    width: 30%;
    background: #3e455f;
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 20px;
    line-height: 1.5;
    box-sizing: border-box;

    /* ★ 세로 중앙정렬 추가 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 우측 70% */
.uniqbox-right01 {
    width: 70%;
    background: #ffffff;
    color: #000;
    text-align: left;
    padding: 30px;
    font-size: 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

/* 하단 텍스트 */
.uniqbox-bottomtxt01 {
    text-align: center;
    font-size: 20px;
    padding: 30px 0;
    line-height: 1.5;
    color: #333;
}

/* 반응형 (모바일 전체 100%) */
@media (max-width: 640px) {
    .uniqbox-row01 {
        flex-direction: column;
    }


	
	
	.uniqbox-wrap01 {
    padding: 15px;
}

/* 안쪽 1200px 박스 */
.uniqbox-inner01 {
    max-width: 1200px;
    margin: 0 auto;
}



/* 좌측 30% */
.uniqbox-left01 {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    line-height: 1.4;
}

/* 우측 70% */
.uniqbox-right01 {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
	width: 100%;
}

/* 하단 텍스트 */
.uniqbox-bottomtxt01 {
    text-align: center;
    font-size: 17px;
    padding: 10px 0;
    line-height: 1.5;
    color: #333;
}
	
	
	
	
	
}







/* 전체 영역 */
.video-full {
  position: relative;
  width: 100%;
  height: 400px; /* 원하는 높이 */
  overflow: hidden;
}

/* 영상 컨테이너 */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 배경 영상 */
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 핵심: 영역 꽉 채우기 */
}

/* 텍스트 뒤 검정 딤 */
.video-dim {
  position: absolute;
  left: 0;
  bottom: 0; /* 정확히 video-full의 아래에 붙음 */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* 텍스트 */
.video-overlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
  width: 100%;
	padding: 0 20px 50px 30px;
}

.vo-title {
  font-size: 32px;
  line-height: 1.3em;
  max-width: 400px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 18px; /* 선과 제목 간격 */
}

.vo-title::after {
  content: "";
  display: block;
  width: 80px;   /* 가로 100px */
  height: 3px;    /* 두께 5px */
  background: #fff;
  margin-top: 20px; /* 제목과 선 사이 간격 */
}

.vo-desc {
  font-size: 16px;
	padding-top: 0px;
	line-height: 1.5em;
  opacity: 0.9;
	color: rgba(255,255,255,0.8);
	max-width: 500px;
}





@media screen and (max-width: 768px){
	
/* 전체 영역 */
.video-full {
  height: 250px; 

}


/* 텍스트 */
.video-overlay {
  left: 10px;
  bottom: 20px;
	padding: 0 20px 30px 10px;
}

.vo-title {
  font-size: 20px;
  margin-bottom: 6px;
  padding-bottom: 10px; /* 선과 제목 간격 */
}

.vo-title::after {
  width: 40px;   /* 가로 100px */
  height: 2px;    /* 두께 5px */
	background:  rgba(255,255,255,0.5);
}

.vo-desc {
  font-size: 12px !important;
}
	
}









/* 전체 섹션 */
.hcg-section {
  width: 100%;
  background: #d4c9bc;
  padding: 100px 20px 100px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* 타이틀 */
.hcg-title {
  font-size: 42px;
  color: #2a2f45;
  margin-bottom: 50px;
  font-weight: 700;
}

/* 3×2 그리드 */
.hcg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 내부 박스 */
.hcg-box {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 30px 20px;
  color: #2a2f45;
  text-align: center;
}

/* 아이콘 */
.hcg-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

/* 박스 타이틀 */
.hcg-box-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* 박스 내용 */
.hcg-box-desc {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5em;
	color: rgba(42, 47, 69, 0.8);
}



@media (max-width: 1024px) {
	
/* 전체 섹션 */

/* 타이틀 */
.hcg-title {
  font-size: 25px;
  margin-bottom: 50px;
}

/* 3×2 그리드 */
.hcg-grid {
  gap: 10px;
}

/* 내부 박스 */
.hcg-box {
  padding: 20px 15px;
}

/* 아이콘 */
.hcg-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

/* 박스 타이틀 */
.hcg-box-title {
  font-size: 20px;
  margin-bottom: 10px;
}

/* 박스 내용 */
.hcg-box-desc {
  font-size: 16px;
  line-height: 1.3em;

}

	
	
}





/* 모바일 2열 전환 */
@media (max-width: 768px) {

	
	
	.hcg-section {
  padding: 30px 15px 30px 15px;
}

/* 타이틀 */
.hcg-title {
  font-size: 20px;
  margin-bottom: 30px;
}

/* 3×2 그리드 */
.hcg-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* 내부 박스 */
.hcg-box {
  border-radius: 3px;
  padding: 10px 10px;
}

/* 아이콘 */
.hcg-icon {
  font-size: 25px;
  margin-bottom: 15px;
}

/* 박스 타이틀 */
.hcg-box-title {
  font-size: 20px;
  margin-bottom: 10px;
}

/* 박스 내용 */
.hcg-box-desc {
  font-size: 14px;
}
	
	

	
}






/* 건강검진 장비소개 */
.xgp-health-section {
  width: 100%;
  background: #f9f7f5;
  padding: 100px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* 타이틀 */
.xgp-health-title {
  font-size: 42px;
  color: #2a2f45;
  margin-bottom: 50px;
  font-weight: 700;
}

/* 3×2 그리드 */
.xgp-health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 내부 박스 */
.xgp-health-box {
  border: 1px solid #dfd9d4;
	background: rgba(255,255,255,1.00);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  color: #2a2f45;
}

/* 이미지 영역 */
.xgp-health-img {
  width: 80%;
  margin: 0 auto 20px;
}

.xgp-health-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 박스 타이틀 */
.xgp-health-box-tit {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* 박스 내용 */
.xgp-health-box-desc {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5em;
  color: rgba(42, 47, 69, 0.9);
}




@media (max-width: 1024px) {

.xgp-health-title {
  font-size: 25px;
  margin-bottom: 30px;

}
	
	
	/* 3×2 그리드 */
.xgp-health-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
	
	
	

}





/* 모바일 2열 전환 */
@media (max-width: 768px) {
  .xgp-health-grid {
    grid-template-columns: repeat(2, 1fr);
	  gap: 10px;
  }
	


.xgp-health-section {
  padding: 50px 15px;
}

/* 타이틀 */
.xgp-health-title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* 내부 박스 */
.xgp-health-box {
  border-radius: 5px;
  padding: 12px 7px;
}

/* 이미지 영역 */
.xgp-health-img {
  width: 70%;
  margin: 0 auto 10px;
}



/* 박스 타이틀 */
.xgp-health-box-tit {
  font-size: 18px;
line-height: 1.3em;
  margin-bottom: 10px;
}

/* 박스 내용 */
.xgp-health-box-desc {
  font-size: 12px !important;
  line-height: 1.4em;
}
	
	
	
	
	
	
	
	
}
























/* 모바일 폰트/패딩 조정 */
@media (max-width: 480px) {
  .uniqtable-cell {
    font-size: 12px; letter-spacing: -1px;
    padding: 7px 7px 7px 18px;
  }
  .uniqtable-cell .dot {
    top: 13px;
    left: 8px;
  }
}







/* ===========================
   건강검진 순서 (정상 작동 버전)
   옵션 2: 모든 박스 화살표 표시 + 마지막 박스만 제거
=========================== */

/* 전체 영역 */
.checkflow-wrap {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  font-family: "Noto Sans KR", sans-serif;
}

/* 제목 */
.checkflow-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.checkflow-desc {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* 그리드 */
.checkflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
  justify-items: center;
}

/* 각 박스 */
.checkflow-box {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 40px 25px;
  width: 100%;
  max-width: 330px;
  position: relative;
}

/* 번호 원형 */
.cf-num {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 18px auto;
}

/* 타이틀 */
.cf-title {
  font-size: 20px;
	line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
}

/* 설명 */
.cf-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ---------------------------
   화살표 표시 기본 규칙
---------------------------- */
.checkflow-box::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 22px;
  height: 22px;
  border-right: 3px solid #999;
  border-bottom: 3px solid #999;
  opacity: 0.7;
}

/* 마지막 박스만 화살표 제거 */
.checkflow-box.last::after {
  display: none !important;
}


.checkflow-grid .checkflow-box:last-child::after {
  display: none !important;
}





@media (max-width: 1280px) {
.checkflow-box::after {
  
  right: -10px;
  top: 50%;
  width: 10px;
  height: 10px;
}
}











/* ---------------------------
   반응형 (900px 이하)
---------------------------- */
@media (max-width: 900px) {

  .checkflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 기본적으로 화살표는 모두 표시 */
  .checkflow-box::after {
    display: block;
  }

  /* 마지막 박스만 제거 */
  .checkflow-box.last::after {
    display: none !important;
  }
}

/* ---------------------------
   반응형 (600px 이하: 한 줄씩)
   → 화살표 필요 없음
---------------------------- */
@media (max-width: 600px) {


	
	.checkflow-wrap {
  margin: 30px auto;
}

/* 제목 */
.checkflow-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.checkflow-desc {
  font-size: 10px;
  margin-bottom: 30px;
}

/* 그리드 */
.checkflow-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
}

/* 각 박스 */
.checkflow-box {
  padding: 15px 5px;
}

/* 번호 원형 */
.cf-num {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* 타이틀 */
.cf-title {
  font-size: 16px;
  margin-bottom: 10px;
}

/* 설명 */
.cf-text {
  font-size: 13px !important;
}

/* ---------------------------
   화살표 표시 기본 규칙
---------------------------- */
.checkflow-box::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  opacity: 0.7;
	display: block !important;
}

/* 마지막 박스만 화살표 제거 */
.checkflow-box.last::after {
  display: none !important;
}


.checkflow-grid .checkflow-box:last-child::after {
  display: none !important;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}




























/* 관절센터 */

/* 전체 섹션 */
.orphx-section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  background: #fff;
}

.orphx-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* 좌측 이미지 카드 */
.orphx-visual {
  width: 38%;
  min-width: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #0aa0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.orphx-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 우측 리스트 영역 */
.orphx-content {
  width: 62%;
  position: relative;
  padding: 18px 0;
}

/* 상단/하단 블랙 라인 */
.orphx-content::before,
.orphx-content::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
}
.orphx-content::before { top: 0; }
.orphx-content::after  { bottom: 0; }

/* 리스트 기본 */
.orphx-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 각 항목 */
.orphx-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}
.orphx-item:last-child {
  border-bottom: none;
}

/* 체크 아이콘 (CSS로) */
.orphx-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  position: relative;
}
.orphx-check::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 14px;
  border-right: 3px solid #45b6d8;
  border-bottom: 3px solid #45b6d8;
  transform: rotate(45deg);
}

/* 텍스트 */
.orphx-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  font-weight: 500;
  word-break: keep-all;
}

/* 하이라이트 텍스트 */
.orphx-hl {
  background: rgba(120, 180, 210, 0.28);
  padding: 2px 4px;
  border-radius: 4px;
}

/* 반응형 */
@media (max-width: 1024px) {
  .orphx-inner {
    flex-direction: column;
  }
  .orphx-visual,
  .orphx-content {
    width: 100%;
  }
  .orphx-visual {
    min-width: auto;
    height: 320px;
  }
  .orphx-text {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .orphx-section {
    padding: 40px 16px;
  }
  .orphx-visual {
    height: 240px;
    border-radius: 12px;
  }
  .orphx-item {
    padding: 14px 0;
  }
  .orphx-text {
    font-size: 16px;
  }
}



/* 관절센터 */













.main_visual .swiper-slide:nth-child(1n) { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main_banner_img01.jpg); background-position: center; background-size: cover; }
.main_visual .swiper-slide:nth-child(2n) { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main_banner_img02.jpg); background-position: center; background-size: cover; }
.main_visual .swiper-slide.video-slide,
.main_visual .swiper-slide.youtube-slide { background-image: none; }
.main_visual .swiper-slide .visual-tit { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #fff; text-align: center; position: relative; z-index: 2; opacity: 1; padding: 0 20px; }
.main_visual .swiper-slide .title { display: block; font-weight: 200; transition: opacity 0.75s ease 0.75s; line-height: 30px; font-size: 50px; margin-bottom: 20px; letter-spacing: -2px }
.main_visual .swiper-slide .subtitle { display: block; font-weight: 500; color: rgba(255,255,255,0.6); transition: opacity 0.75s ease 0.75s;  font-size: 13px; line-height: 1.2em; margin-bottom: 30px; letter-spacing: 15px }
.main_visual .swiper-slide .description { font-size: 18px; color: #fff; transition: opacity 0.75s ease 0.75s; border: 1px solid rgba(255,255,255,0.4); border-radius: 5px; margin-top: 30px; text-align: center; padding: 5px 20px; }
.main_visual .swiper-slide .description:hover { border: 1px solid #3a65d8; background: #3a65d8  }








/*두번째*/
.highlight-box {
  position: relative;
  display: inline-block;
}

.highlight-box p {
    margin: 0;
    line-height: 1.2; /* 행간 줄이기 */
    display: inline-block; /* 박스 형태 유지 */
}


.highlight-box::before {
  content:"";
  position:absolute;
  inset: 50% 0 0 0;     /* 글자 하단 40%만 칠해지도록 자동 영역 */
  background: rgba(58,101,216,.6);
  z-index:0;
  width:0%;

  transition: width 1s ease;
}

.highlight-box.aos-animate::before {
  width:100%;          /* 자동으로 텍스트의 폭 만큼 채워짐 */
}

.highlight-text {
  position:relative;
  z-index:1;
  color:#fff;
  opacity:0;
  transform:translateY(15px);
  transition: opacity 1s ease, transform 1s ease;
	font-size: 50px; font-weight: 700;
	 margin: 0; 
    line-height: 1.1;
    display: inline-block;
}

.highlight-box.aos-animate .highlight-text {
  opacity:1;
  transform:translateY(0);
}


/*두번째*/


@media (max-width: 1280px) {

.main_visual .swiper-slide .title { font-weight: 400; line-height: 1.2em; font-size:30px !important; top: 20px !important;}
		.highlight-text {
  
			font-size: 30px !important; }
	
	
.main_visual .swiper-slide .highlight-text { font-size:30px !important;}
	
	

.main_visual .swiper-slide .subtitle { font-size: 13px; margin-bottom: 10px; letter-spacing: 10px }
.main_visual .swiper-slide .description { font-size: 18px; padding: 3px 20px; }
	

	
	
}






@media (max-width: 520px) {

.main_visual .swiper-slide .title { font-weight: 400; line-height: 1.5em; font-size: 22px !important; top: 20px !important;}

.main_visual .swiper-slide .subtitle { font-size: 10px; margin-bottom: 10px; letter-spacing: 3px }
.main_visual .swiper-slide .description { font-size: 18px; padding: 3px 20px; }
	
.main_visual .swiper-slide .highlight-text { font-size:22px !important;}
	
	
}



   /* ▼ 마우스 커서가 적용될 영역 */
  /* 동그란 ↔ 커서 */
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    /* 전환 지연 제거 — 즉각 반응 */
    transition: none;
  }
  .custom-cursor::before {
    content: "↔";
  }


  /* 특정 영역에서만 기본 커서 숨김 (투명 PNG 트릭) */
  .cursor-area {
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIHWP4////fwAJ+AL+FgQ1NAAAAABJRU5ErkJggg=="), auto;
  }

.cursor-area .more-btn:hover {
  cursor: pointer !important;
}



.all_div { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px;}




.main_visual .swiper-pagination { position: absolute; bottom: 80px; right: 48%; font-size: 16px; color: #fff; display: flex; align-items: center; }
.main_visual .swiper-pagination .current { font-size: 16px; margin: 0 10px; }
.main_visual .swiper-pagination .total { font-size: 16px; opacity: 0.8; margin: 0 10px; }
.main_visual .swiper-pagination .prev, .swiper-pagination .next { cursor: pointer; font-size: 28px; }

.video-background,
#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide::before,
.youtube-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}


.youtube{ position:relative; padding-top:66.25%; width:100%; height:100%; margin:0 auto; margin-bottom:50px; background:#FFF; }
.youtube01{ position:absolute; top:0; left:0; width:100%; height:100%;}



.sns005 ul {
    display:flex;
    width:90%;
	

}

.sns005 li {
    width:50%;
    text-align:center;
    padding:10px 0;
    font-weight:600;
    font-size:15px;
    list-style:none;
	margin-top: 10px;
}

.sns005 .left001{
    background:#42A414;
    color:#fff;
}

.sns005 .right001{
    background:#FDD400;
    color:#000;
}

.sns005 li a{
    display:block;
    width:100%;
    height:100%;
    color:inherit;
    text-decoration:none;
}



/* 반응형 미디어 쿼리 */
@media screen and (max-width: 1200px) {
    .main_visual .swiper-slide .title {
        font-size: 60px;
        margin-bottom: 18px;
    }

    .main_visual .swiper-slide .description {
        font-size: 16px;
    }

    .main_visual .swiper-pagination {
        bottom: 60px;
        right: 60px;
    }
}

@media screen and (max-width: 992px) {
    .main_visual .swiper-slide .title {
        font-size: 50px;
        margin-bottom: 16px;
    }

    .main_visual .swiper-slide .description {
        font-size: 15px;
    }

    .main_visual .swiper-pagination {
        bottom: 50px;
        right: 50px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 18px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .main_visual {
        height: 80vh;
    }

    .swiper {
        height: 80vh;
    }

    .main_visual .swiper-slide .title {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .main_visual .swiper-slide .description {
        font-size: 14px;
    }

    .main_visual .swiper-pagination {
        bottom: 40px;
        right: 40px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 16px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .main_visual {
        height: 80vh;
    }

    .swiper {
        height: 80vh;
    }

    .main_visual .swiper-slide .title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .main_visual .swiper-slide .description {
        font-size: 12px;
    }

    .main_visual .swiper-pagination {
        bottom: 30px;
        right: 30px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 14px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 18px;
    }
}



.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 20px; }

.container02 { width: 100%; max-width: 1400px; margin: 0 auto; padding: 20px; }

.section .content { position:relative; overflow:hidden; }

.section .content_img {
    width: 100%;
    height: 240px; /* 원하는 높이 */
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}



.section .c .swiper {
    height: auto !important;    /* 높이를 내용에 맞춤 */
}

/* 화살표 컨테이너의 .arrow 스팬에 아이콘 폰트 적용 */
.c .header .nav .arrow-wrap .arrow::before {
    /* Font Awesome 아이콘 폰트를 사용하도록 지정 */
    font-family: "FontAwesome" !important;
    font-weight: 900; /* 아이콘을 더 굵게 표시하여 선명하게 함 */
    font-size: 20px;  /* 아이콘 크기 조정 */
    color: #333;      /* 화살표 기본 색상 */
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

/* 이전(prev) 버튼에 왼쪽 화살표 아이콘 삽입 */
.c .header .nav .prev .arrow::before {
    /* Font Awesome 왼쪽 꺾쇠(chevron-left) 코드 */
    content: '\f053';
}

/* 다음(next) 버튼에 오른쪽 화살표 아이콘 삽입 */
.c .header .nav .next .arrow::before {
    /* Font Awesome 오른쪽 꺾쇠(chevron-right) 코드 */
    content: '\f054';
}

/* 호버(마우스 올렸을 때) 시 화살표 색상 변경 */
.c .header .nav .arrow-wrap:hover .arrow::before {
    /* .arrow-wrap에 hover 시 배경이 바뀌므로, 화살표 색상을 흰색으로 변경하여 대비를 높입니다. */
    color: #fff;
}


@media (max-width: 768px) {
    .section .c {
        display: flex;
        flex-direction: column; /* 세로 배치 */
        gap: 20px; /* 필요 시 간격 */
		 height: 600px;
		
		
		
		
    }

    .section .header,
    .section .swiper {
        width: 100%; /* 각 요소 가로 꽉 채우기 */
		
    }
	
	
	.section .content_img {
    height: 150px; /* 원하는 높이 */

}
	
	
}


@media (max-width: 640px) {

		
		.container02 { padding: 20px 0; }
		
		
    }




.section01 { width: 100%; padding: 200px 0; }
.section01 .section-title { font-size: 32px; font-weight: bold; margin-bottom: 40px; position: relative; padding-bottom: 15px; }
.section01 .section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: #e0e0e0; }
.section01 .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; min-height: 600px; }
.section01 .main-news { grid-column: 1; grid-row: 1; position: sticky; top: 20px; }
.section01 .main-news .news-image { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; transition: all 0.3s ease; }
.section01 .news-list { grid-column: 2; display: flex; flex-direction: column; gap: 30px; height: 100%; }
.section01 .news-item { display: grid; grid-template-columns: auto 120px; gap: 20px; align-items: center; cursor: pointer; }
.section01 .news-item:hover { opacity: 0.8; }
.section01 .news-item img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; }
.section01 .news-category { color: #ff4b4b; font-size: 14px; text-transform: uppercase; margin-bottom: 8px; display: inline-block; }
.section01 .news-title { font-size: 32px; font-weight: 600; color: #000; text-decoration: none; margin-bottom: 12px; display: block; line-height: 1.3; }
.section01 .news-item .news-title { font-size: 18px; margin-bottom: 8px; font-weight: 500; color: #555; }
.section01 .news-meta { font-size: 14px; color: #666; display: flex; gap: 15px; align-items: center; }
.section01 .news-meta span::before { content: '|'; margin-right: 15px; color: #ddd; }
.section01 .news-meta span:first-child::before { display: none; }


    @media (max-width:1200px) {
        .section01 .container {
            padding: 30px 15px;
        }

        .section01 .news-grid {
            gap: 30px;
        }
    }

    @media (max-width:768px) {
        .section01 .news-grid {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .section01 .main-news {
            grid-column: auto;
            grid-row: auto;
            position: relative;
        }

        .section01 .news-list {
            grid-column: auto;
        }

        .section01 .section-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .section01 .news-title {
            font-size: 20px;
        }
    }

    @media (max-width:576px) {
        .section01 .news-item {
            grid-template-columns: 1fr;
        }

        .section01 .news-item img {
            width: 100%;
            height: 200px;
            order: -1;
        }
		
		
    }



.section02 .company-info { text-align: center; display: inline-block; margin: auto; padding-top: 100px; width: 100%; }
.section02 .company-info01 { text-align: center; display: inline-block; margin: auto; width: 100%; }
.section02 .title-group { font-size: 50px; font-weight: 700; margin-bottom: 20px; color: #333; letter-spacing: -2px }
.section02 .sub-copy { font-size: 18px; letter-spacing: -1px; color: #666; font-weight: 500; max-width: 600px; line-height: 1.5; word-break: keep-all; margin: 0 auto 20px auto; display: block; }
.section02 .bar001 { background: #3A65D8; padding: 15px 40px; max-width: 400px;   border-radius: 100px; color: #FFFFFF; font-size: 20px; font-weight: 600; margin: 0 auto;}


@media (max-width: 767px) {
.section02 .company-info { padding-top: 50px;}
.section02 .title-group { font-size: 30px; font-weight: 700; margin-bottom: 20px;  }
.section02 .sub-copy { font-size: 14px;  margin: 0 auto 15px auto; display: block; }
.section02 .bar001 { padding: 10px 20px;   font-size: 14px; max-width: 300px;}
	
	
}

/*메인 유튜브 */

/* 전체 섹션 */
.youtube-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

/* 내부 최대폭 & 중앙 정렬 */
.youtube-section .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 좌우 배치 */
.youtube-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

/* 왼쪽 설명 */
.yt-left {
    width: 35%;
}

.yt-left .tit {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.yt-left h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.yt-left .txt {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.yt-left a {
    display: inline-block;
    padding: 10px 35px;
    border: 1px solid #777;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
.yt-left a:hover {
    background: #3A65D8;
    color: #fff;
}

/* 오른쪽 영상 */
.yt-right {
    width: 65%;
    position: relative;
    padding-top: 36%;
}
.yt-right iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

/* 썸네일 리스트 */
.yt-thumbs {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.yt-thumbs li {
    width: 210px;
    flex-shrink: 0;
    cursor: pointer;
}
.yt-thumbs img {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.2);
    transition: .2s;
}
.yt-thumbs li.on img {
    outline: 8px solid #3A65D8;
    outline-offset: -8px;
}

/* 반응형 */
@media(max-width: 992px){
    .youtube-top {
        flex-direction: column;
    }
    .yt-left, .yt-right {
        width: 100%;
    }
    .yt-right {
        padding-top: 56%;
    }
	
	.yt-thumbs {
    gap: 5px;
}
	
	
	 .yt-thumbs li {
        width: 90px;   /* 모바일용 썸네일 너비 */
        margin-right: 5px;
    }

    .yt-thumbs li img {
        width: 100%;
        height: auto;
    }
	
	
}

/*메인유튜브 */















/* 이미지 슬라이드 시작 */
.sec_all { width: 100%; display: inline-block;}
.section08 { text-align: center; display: inline-block; margin: auto; padding: 0px 0 80px 0; width: 100%; }
.bg001 {background: #EBEAE5;}
.bg003 {background: #f8f8f8;}
.bg002 {background-image: url(../img/gg_m_bg.jpg); background-position: center; background-size: cover;  }


.pd_t10 {padding-top: 10px;}
.pd_t20 {padding-top: 20px;}
.pd_t30 {padding-top: 30px;}
.pd_t40 {padding-top: 40px;}
.pd_t50 {padding-top: 50px;}
.pd_t60 {padding-top: 60px;}
.pd_t70 {padding-top: 70px;}
.pd_t80 {padding-top: 80px;}
.pd_t90 {padding-top: 90px;}
.pd_t100 {padding-top: 100px;}

.pd_b10 { padding-bottom: 10px;}
.pd_b20 { padding-bottom: 20px;}
.pd_b30 { padding-bottom: 30px;}
.pd_b40 { padding-bottom: 40px;}
.pd_b50 { padding-bottom: 50px;}
.pd_b60 { padding-bottom: 60px;}
.pd_b70 { padding-bottom: 70px;}
.pd_b80 { padding-bottom: 80px;}
.pd_b90 { padding-bottom: 90px;}
.pd_b100 { padding-bottom: 100px;}


.mg_t10 { margin-top: 10px;}
.mg_t20 { margin-top: 20px;}
.mg_t30 { margin-top: 30px;}
.mg_t40 { margin-top: 40px;}
.mg_t50 { margin-top: 50px;}
.mg_t60 { margin-top: 60px;}
.mg_t70 { margin-top: 70px;}
.mg_t80 { margin-top: 80px;}
.mg_t90 { margin-top: 90px;}
.mg_t100 { margin-top: 100px;}


.mg_b10 { margin-bottom: 10px;}
.mg_b20 { margin-bottom: 20px;}
.mg_b30 { margin-bottom: 30px;}
.mg_b40 { margin-bottom: 40px;}
.mg_b50 { margin-bottom: 50px;}
.mg_b60 { margin-bottom: 60px;}
.mg_b70 { margin-bottom: 70px;}
.mg_b80 { margin-bottom: 80px;}
.mg_b90 { margin-bottom: 90px;}
.mg_b100 { margin-bottom: 100px;}


.section09 {max-width:1400px; width: 100%;
  margin:0 auto;     /* 중앙 정렬 핵심 */
  padding:0 20px;}


.section10 { width: 100%; background: #fff; display: inline-block; top: 3px; position: relative; }
.section10 .box3 { width: 100%; max-width: 1400px; margin: 0 auto; padding: 70px 20px; }
.section10 .box3 .left01 { float: left; width: 33.3%; border-right: 1px solid #C4C4C4;  }
.section10 .box3 .left02 { float: left; width: 33.3%; border-right: 1px solid #C4C4C4; padding-left: 30px; padding-right: 20px;}
.section10 .box3 .left03 { float: right; width: 33.3%; padding-left: 0px;}
.section10 .box3::after{
    content:"";
    display:block;
    clear:both;
}
.section10 .box3 .box_s { width: 98%; float: left; display: inline-block; color: #333}
.section10 .box3 .box_s h1 { font-size: 25px;}
.section10 .box3 .box_s h2 { font-size: 18px; color: #515151; font-weight: 500; padding-top: 30px; letter-spacing: -1px;}
.section10 .box3 .box_s h3 { font-size: 18px; background: #163b9e; padding: 5px 10px; color: #FFFFFF; text-align: center; margin-top: 30px; letter-spacing: -1px;}


.section10 .box3 .box_s .box_s02 { width: 100%; padding-top: 30px;}
.section10 .box3 .box_s .box_s02 li { padding: 10px 0;}
.section10 .box3 .box_s .box_s02 span { width: 100%; display: inline-block; font-size: 15px; padding-top: 5px; color: #F9320D; }
.section10 .box3 .box_s .box_s02 .left{float: left; width: 26%; font-size: 16px; line-height: 20px; font-weight: 800; background: url('../img/dot.png') no-repeat -4px 10px; padding-left: 15px; }
.section10 .box3 .box_s .box_s02 .right{float: left; width: 69%; font-size: 16px; line-height: 20px; letter-spacing: -1px; font-weight: 500; color: #909090}

.section10 .box3 .box_b { width: 100%;}
.section10 .box3 .box_b img { width: 100%;}
.section10 .box3 .box_b .left {float: left; width: 55%; }
.section10 .box3 .box_b .left img { width: 110%; margin-top: 60px; margin-left: 10px;}
.section10 .box3 .box_b .right {float: left; width: 45%; }


@media (max-width:1500px){

.section10 .box3 .left01 { width: 33%;}
.section10 .box3 .left02 {width: 33.5%; padding-left: 10px; padding-right: 10px;}
.section10 .box3 .left03 { width: 33%; padding-left: 10px;}
	
.section10 .box3 .box_s { width: 100%;}	
.section10 .box3 .box_b .left {float: left; width: 0%; }
.section10 .box3 .box_b .left img { display: none;}
.section10 .box3 .box_b .right {float: left; width: 100%; }


.section10 .box3 .box_s h1 { font-size: 20px;}	
.section10 .box3 .box_s h2 { font-size: 15px; padding-top: 10px;}
.section10 .box3 .box_s h3 { margin-top: 10px; }
	
.section10 .box3 .box_s .box_s02 .left{font-size: 14px; line-height: 18px; font-weight: 700; background: url('../img/dot.png') no-repeat 0px 15px; background-size: 10px 10px; padding-left: 10px; }
.section10 .box3 .box_s .box_s02 .right{width: 73%; font-size: 13px; letter-spacing: -1; line-height: 18px; }		
	
	
	
}



@media (max-width:768px){
	
	.section10 .box3 { padding: 50px 10px 10px 10px; }
.section10 .box3 .left01 { width: 100%; border-right:none;  }
.section10 .box3 .left02 { width: 100%; border-right:none; margin-top: 50px;  padding-left: 0px; padding-right: 0px;}
.section10 .box3 .left03 { width: 100%; border-right:none;  margin-top: 50px; padding-left: 0px;}
	
.section10 .box3 .box_s .box_s02 {padding-top: 10px;}
.section10 .box3 .box_s .box_s02 li { padding: 5px 0;}
.section10 .box3 .box_s .box_s02 span { font-size: 13px; padding-top: 3px; }
.section10 .box3 .box_s h1 { font-size: 20px;}	
.section10 .box3 .box_s h2 { font-size: 15px; padding-top: 10px;}
.section10 .box3 .box_s h3 { margin-top: 10px; }
	
.section10 .box3 .box_s .box_s02 .left{font-size: 14px; line-height: 18px; font-weight: 700; background: url('../img/dot.png') no-repeat 0px 9px; background-size: 10px 10px; padding-left: 10px; }
.section10 .box3 .box_s .box_s02 .right{width: 73%; font-size: 13px; letter-spacing: -1; line-height: 18px; }	
	
.section08 { padding: 0px 0 30px 0; }
}





.img_box_rv {position:relative; width: 100%; max-width:700px; margin: 0 auto; padding: 30px 20px; display: inline-block;}
.img_box_rv img {width: 100%; height:auto; display: inline-block; margin-bottom: 30px;}







.spark-dot {
  position:absolute;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#3a65d8;

  /* 위치를 % 로 주면 이미지 크기에 연동됨 */
  top:77%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */

  animation: sparkle 1.4s infinite ease-in-out;
}

.spark-dot02 {
  position:absolute;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#3a65d8;

  /* 위치를 % 로 주면 이미지 크기에 연동됨 */
  top:57%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */

  animation: sparkle 1.4s infinite ease-in-out;
}


.spark-dot03 {
  position:absolute;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#3a65d8;

  /* 위치를 % 로 주면 이미지 크기에 연동됨 */
  top:42%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */

  animation: sparkle 1.4s infinite ease-in-out;
}



.spark-dot04 {
  position:absolute;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#3a65d8;

  /* 위치를 % 로 주면 이미지 크기에 연동됨 */
  top:23%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */

  animation: sparkle 1.4s infinite ease-in-out;
}







@keyframes sparkle {
  0%   {opacity:.2; transform:scale(.8);}
  50%  {opacity:1;  transform:scale(1.2);}
 100%  {opacity:.2; transform:scale(.8);}
}
	  




@media screen and (max-width: 720px) { 
	
	.img_box_rv {padding: 10px 20px;}
	
	
	
	.spark-dot {
  width:30px;
  height:30px;

  top:70%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */
}

.spark-dot02 {
  width:30px;
  height:30px;
  top:54%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */
}


.spark-dot03 {
  width:30px;
  height:30px;
  top:38%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */
}



.spark-dot04 {
  width:30px;
  height:30px;
  top:19%;     /* 세로 위치 → 이미지 높이 대비 % */
  left:55%;    /* 가로 위치 → 이미지 폭 대비 % */
}

	
	
}





.grid-5x2{
  display:grid;
  grid-template-columns:repeat(5,1fr); /* 가로 5칸 */
  grid-template-rows:repeat(2,minmax(100px,auto)); /* 세로 2칸 */
  gap:50px; /* 칸 사이 간격 */
}

.grid-5x2 .cell{
  display:flex; align-items:center; justify-content:center;
}

/* 공통 박스 */
.grid-5x2 .cell .cell_box{width:100%; margin:0 auto;}

/* 이미지 공통 스타일 (중복 제거) */
.grid-5x2 .cell .cell_box .cell_img{
  background-position:center;
  background-size:cover;
  padding:70px;               /* 오타 수정 */
  border:1px solid rgba(255, 255, 255, 0.3); border-radius: 10px;
  transition:background-image .25s ease; /* 부드러운 전환 */
}

/* 기본 이미지 (1~10) */
.grid-5x2 .cell .cell_box .cell_img01{background-image:url(../img/cell_icon01.png);}
.grid-5x2 .cell .cell_box .cell_img02{background-image:url(../img/cell_icon02.png);}
.grid-5x2 .cell .cell_box .cell_img03{background-image:url(../img/cell_icon03.png);}
.grid-5x2 .cell .cell_box .cell_img04{background-image:url(../img/cell_icon04.png);}
.grid-5x2 .cell .cell_box .cell_img05{background-image:url(../img/cell_icon05.png);}
.grid-5x2 .cell .cell_box .cell_img06{background-image:url(../img/cell_icon06.png);}
.grid-5x2 .cell .cell_box .cell_img07{background-image:url(../img/cell_icon07.png);}
.grid-5x2 .cell .cell_box .cell_img08{background-image:url(../img/cell_icon08.png);}
.grid-5x2 .cell .cell_box .cell_img09{background-image:url(../img/cell_icon09.png);}
.grid-5x2 .cell .cell_box .cell_img10{background-image:url(../img/cell_icon10.png);}

/* hover 시 on이미지로 교체 */
.grid-5x2 .cell .cell_box:hover .cell_img01{background-image:url(../img/cell_icon01_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img02{background-image:url(../img/cell_icon02_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img03{background-image:url(../img/cell_icon03_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img04{background-image:url(../img/cell_icon04_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img05{background-image:url(../img/cell_icon05_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img06{background-image:url(../img/cell_icon06_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img07{background-image:url(../img/cell_icon07_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img08{background-image:url(../img/cell_icon08_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img09{background-image:url(../img/cell_icon09_on.jpg);}
.grid-5x2 .cell .cell_box:hover .cell_img10{background-image:url(../img/cell_icon10_on.jpg);}

/* 제목 텍스트 */
.grid-5x2 .cell .cell_box h1{
  color:#fff; font-size:25px; font-weight:600; text-align:center; padding:10px 0 5px;
}
.grid-5x2 .cell .cell_box h2{
  color:#859ab6; font-size:17px; font-weight:500; text-align:center;
}

/* (선택) 모바일에서 3열 */
@media (max-width:1024px){
  .grid-5x2{
    grid-template-columns: repeat(4, 1fr) !important; /* ← 가로 3칸 */
    grid-template-rows: unset !important; /* ← 강제 2줄 제한 해제 */
    gap: 10px; /* 모바일 간격 축소 추천 */
  }

  /* 모바일에서 아이콘 크기도 자동 조정 */
  .grid-5x2 .cell .cell_box .cell_img{
    padding: 50px !important;
  }

  /* 모바일 제목·부제 조금 축소 */
  .grid-5x2 .cell .cell_box h1{
    font-size: 15px !important; line-height: 18px;
  }
  .grid-5x2 .cell .cell_box h2{
    font-size: 12px;  !important; line-height: 14px; letter-spacing: -1px; height: 50px;
  }
}


/* (선택) 모바일에서 3열 */
@media (max-width:768px){
  .grid-5x2{
    grid-template-columns: repeat(3, 1fr) !important; /* ← 가로 3칸 */
    grid-template-rows: unset !important; /* ← 강제 2줄 제한 해제 */
    gap: 10px; /* 모바일 간격 축소 추천 */
  }

  /* 모바일에서 아이콘 크기도 자동 조정 */
  .grid-5x2 .cell .cell_box .cell_img{
    padding: 50px !important;
  }


  /* 모바일 제목·부제 조금 축소 */
  .grid-5x2 .cell .cell_box h1{
    font-size: 15px !important; line-height: 18px;
  }
  .grid-5x2 .cell .cell_box h2{
    font-size: 12px;  !important; line-height: 14px; letter-spacing: -1px; height: 50px;
  }
}


.roll-box{
    width:100%;
    max-width:1200px;  /* JS의 slideWidth와 동일 */
    margin:0 auto;
    position:relative;
    overflow:hidden;
    user-select:none;
	border-radius: 20px;
  }
  .roll-box .slides{
    display:flex;
    transition:transform .6s;
    will-change:transform;
  }
  .roll-box .slide{
    position:relative;         /* 텍스트 박스 올리기 위해 */
    width:1200px;              /* JS slideWidth와 동일 */
    height:600px;              /* 원하는 높이 */
    flex:none;
  }
  .roll-box .slide img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    /* 아래 3줄: 이미지 드래그/선택/클릭 영향 차단(텍스트 가리기 방지) */
    pointer-events:none;
    -webkit-user-drag:none;
  }
  /* 텍스트가 반드시 보이게 */
  .roll-box .text-box{
    position:absolute;
    left:30px;
    bottom:30px;
    z-index:2;               /* 이미지(기본 z-index: auto) 위로 */
    color:#fff;
  }
  .roll-box .text-box .title{
    font-size:50px;
    font-weight:700;
    line-height:1.3;
    text-shadow:0 2px 10px rgba(0,0,0,.6);
  }
  .roll-box .text-box .sub{
    margin-top:8px;
    font-size:25px;
    opacity:.95;
    text-shadow:0 2px 10px rgba(0,0,0,.6);
  }
  /* 좌우 버튼 */
  .roll-box .btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px; height:44px;
    line-height:44px;
    text-align:center;
    font-size:28px; font-weight:700;
    background:rgba(0,0,0,.35);
    color:#fff;
    border-radius:50%;
    cursor:pointer;
    z-index:3;
    transition:background .2s;
  }
  .roll-box .btn:hover{ background:rgba(0,0,0,.55); }
  .roll-box .btn.prev{ left:12px; }
  .roll-box .btn.next{ right:12px; }

  /* 중앙 하단 페이지 표시 */
  .roll-box .pager{
    position:absolute;
    left:50%; bottom:14px;
    transform:translateX(-50%);
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    color:#fff;
    background:rgba(0,0,0,.45);
    z-index:3;
}





@media screen and (max-width: 1280px) { 
	

.roll-box{
	border-radius: 0px;
  }
  .roll-box .slide{
    position:relative;         /* 텍스트 박스 올리기 위해 */
    width:1200px;              /* JS slideWidth와 동일 */
    height:400px;              /* 원하는 높이 */
    flex:none;
  }

  .roll-box .text-box{
    left:20px;
    bottom:20px;
  }
  .roll-box .text-box .title{
    font-size:30px;
  }
  .roll-box .text-box .sub{
    margin-top:5px;
    font-size:20px;
  }
  /* 좌우 버튼 */
  .roll-box .btn{
    width:35px; height:35px;
    line-height:35px;
    font-size:20px;
  }
  .roll-box .btn.prev{ left:10px; }
  .roll-box .btn.next{ right:10px; }

  /* 중앙 하단 페이지 표시 */
  .roll-box .pager{
    bottom:10px;
    font-size:12px;
}	
	
}









@media screen and (max-width: 720px) { 
	

  .roll-box .slide{         
    height:200px;        
  }
	
	
  .roll-box .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    /* 아래 3줄: 이미지 드래그/선택/클릭 영향 차단(텍스트 가리기 방지) */
    pointer-events:none;
    -webkit-user-drag:none;
  }
	
	
  .roll-box .text-box{
    left:15px;
    bottom:20px;
  }
  .roll-box .text-box .title{
    font-size:18px;
  }
  .roll-box .text-box .sub{
    margin-top:2px;
    font-size:14px;
  }
  /* 좌우 버튼 */
  .roll-box .btn{
    width:35px; height:35px;
    line-height:35px;
    font-size:20px;
  }
  .roll-box .btn.prev{ left:10px; }
  .roll-box .btn.next{ right:10px; }

  /* 중앙 하단 페이지 표시 */
  .roll-box .pager{
    bottom:10px;
    font-size:12px;
}	
	
}






/* 전체 슬라이더 박스 */
.gx-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 500px;
	border-radius: 10px;
}




/* 내부 슬라이드 Wrapper */
.gx-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

/* 개별 슬라이드 */
.gx-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.gx-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 좌측 하단 텍스트 */
.gx-textbox {
  position: absolute;
  left: 50px;
  bottom: 70px;
  z-index: 3;
  color: #fff;
}

.gx-title {
  font-size: 35px;
  font-weight: 700;
}

.gx-desc {
  font-size: 20px;
  margin-top: 15px;
	color: rgba(255,255,255,0.8) !important;
}

/* 이미지 하단 그라데이션 */
.gx-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 2;
}








/* 좌우 버튼 */
.gx-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; /* ← 유지해도 됨 */
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  color: transparent;   /* 텍스트 숨김 */
  font-size: 0;         /* 텍스트 숨김 */
}

/* 화살표 넣기 */
.gx-nav.gx-prev::before {
  content: '‹';
}

.gx-nav.gx-next::before {
  content: '›';
}

/* 화살표 스타일 */
.gx-nav::before {
  font-size: 30px;
  color: #fff;
  position: relative;
  top: -3px;     /* ★★ 원하는 만큼 조절하면 화살표만 움직임 */
}

/* Hover */
.gx-nav:hover {
  border-color: #fff;
  transform: translateY(-50%) scale(1.08);
  background: rgba(255,255,255,0.08);
}



.gx-prev { left: 20px; }
.gx-next { right: 20px; }

/* 페이지 번호 */
.gx-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  color: #fff;
  z-index: 5;
}



@media (max-width: 1280px) {
  .gx-slider {
    border-radius: 0px;
  }
	
	.gx-title {
  font-size: 18px !important;
}

.gx-desc {
  font-size: 14px !important;
  margin-top: 0px;
}
	
	
}




@media (max-width: 768px) {
	
	
	.gx-nav {
  width: 30px;
  height: 30px;
}

/* 화살표 스타일 */
.gx-nav::before {
  font-size: 20px;
  top: -1px;
	left: 5px;
}
	
	
	
	
	
  .gx-slider {
    height: 250px;
  }
	
	
/* 좌측 하단 텍스트 */
.gx-textbox {
  left: 20px;
  bottom: 35px;
}



/* 이미지 하단 그라데이션 */
.gx-gradient {
  height: 40%;
}

/* 좌우 버튼 */
.gx-nav {

  font-size: 40px;
}

.gx-prev { left: 10px; }
.gx-next { right: 10px; }

/* 페이지 번호 */
.gx-pagination {
  bottom: 10px;
  font-size: 12px;
	
}
}







/*모달*/

.modal-overlay{
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,.6);
  z-index:900;
}






.modal-box{
  display:none;
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%,-50%) scale(.8);
  width:1200px; max-width:95%;
  height:700px;
  background:#fff;
  z-index:901;
  transition:.3s;
  opacity:0;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 0 20px rgba(0,0,0,.4);
}
.modal-box.show{
  transform:translate(-50%,-50%) scale(1);
  opacity:1;
}

.modal-inner{
  display:flex;
  width:100%; height:100%;
}

.modal-left{ width:50%; height:100%; }
.modal-left img{ width:100%; height:100%; object-fit:cover; }

.modal-right{
  width:50%;
  padding:30px 30px;
  overflow-y:auto;
margin-top:20px;
  margin-bottom:20px;
}
.modal-right h3{ font-size: 17px; border: 1px solid #606060; color: #606060; padding: 5px 0px; width: 200px; text-align: center; border-radius: 100px; margin-bottom: 20px; }
 
	
.modal-right .md001 { font-size: 35px; color: #000000; font-weight: 600;}
.modal-right .md002 { background: #3A65D8; color: #FFFFFF; font-size: 30px; padding: 5px 10px; border-radius: 5px;}
.modal-right .md003 { font-size: 25px; color: #FF4F00; font-weight: 600; padding: 30px 0 0 0;}
.modal-right .md004 { font-size: 25px; color: #FF4F00; font-weight: 600; margin: 30px 0 0 0; display: block;}	





.modal-right p{
  position:relative;
  padding-left:14px;
}

.modal-right p::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#000;
}

/* 점 제거용 */
.modal-right p.no-dot{
  padding-left:0;
}

.modal-right p.no-dot::before{
  content:none;
}




@media(max-width:700px){
  .modal-box{
    height:600px;
  }

	
.modal-right .md001 { font-size: 22px !important;}
.modal-right .md002 { font-size: 14px !important; padding: 5px 10px; border-radius: 2px;}
.modal-right .md003 { font-size: 14px !important; padding: 10px 0 0 0;}
.modal-right .md004 { font-size: 14px !important; padding: 10px 0 0 0;}	
.modal-right p { font-size: 14px !important; padding-left: 10px;}	


  .modal-inner{
    flex-direction:column;
  }

  .modal-left{
    width:100%;
    height:300px;
  }

  .modal-right{
    width:100%;
    height:calc(100% - 200px);
    overflow-y:scroll;
    -webkit-overflow-scrolling:touch;
  }


  .modal-right::-webkit-scrollbar{
    width:8px;                         /* ← 이거 추가 */
  }
	
	
	.section .content,
  .sec-about1 .content{
    overflow:visible !important;
  }
	


.modal-right::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.4);
  border-radius:3px;
}
	
	
	
}
/*모달*/





















.slid_wrap { width: 100%; overflow: hidden; }
.slid_wrap .swiper-container { width: 100%; height: 596px; margin: 0 auto; position: relative; overflow: visible; }
.slid_wrap .swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.slid_wrap .slide-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slid_wrap .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.slid_wrap .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); }
.slid_wrap .slide-content { position: absolute; bottom: 50px; left: 30px; right: 0; z-index: 1; color: #fff; text-align: left; padding: 0 20px; }
.slid_wrap .slide-content h2 { font-size: 32px; margin-bottom: 10px; line-height: 1.5; }
.slid_wrap .slide-content p { font-size: 18px; color: #fff; opacity: 0.8; font-weight: 400; }
.slid_wrap .swiper-button-next, .slid_wrap .swiper-button-prev { color: white; z-index: 10;}
.slid_wrap .swiper-pagination { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; z-index: 10; }
.slid_wrap .swiper-pagination-bullet { width: 12px; height: 12px; background: white; opacity: 0.5; }
.slid_wrap .swiper-pagination-bullet-active { opacity: 1; background: #007aff; }

    @media (max-width: 1024px) {
        .slid_wrap .swiper-container {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .slid_wrap .swiper-container {
            height: 300px;
        }

        .slid_wrap .slide-content h2 {
            font-size: 20px;
        }

        .slid_wrap .slide-content p {
            font-size: 14px;
        }

        .slid_wrap .slide-content {
            bottom: 30px;
            left: 10px
        }

        .slid_wrap .swiper-pagination-bullet {
            width: 8px;
            height: 8px
        }
    }

    /* 이미지 슬라이드 끝*/



/* 이미지 슬라이드 시작 */
.slid_wrap2 { width: 100%; overflow: hidden; }
.slid_wrap2 .swiper-container { width: 100%; height: 596px; margin: 0 auto; position: relative; overflow: visible; }
.slid_wrap2 .swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.slid_wrap2 .slide-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slid_wrap2 .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.slid_wrap2 .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0); }
.slid_wrap2 .slide-content { position: absolute; bottom: 50px; left: 30px; right: 0; z-index: 1; color: #fff; text-align: left; padding: 0 20px; }
.slid_wrap2 .slide-content h2 { font-size: 32px; margin-bottom: 10px; line-height: 1.5; }
.slid_wrap2 .slide-content p { font-size: 18px; color: #fff; opacity: 0.8; font-weight: 400; }
.slid_wrap2 .swiper-button-next, .slid_wrap2 .swiper-button-prev { color: white; z-index: 10; }
.slid_wrap2 .swiper-button-next { padding-right: 200px;}
.slid_wrap2 .swiper-button-prev { padding-left: 200px;}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px;
}


.slid_wrap2 .swiper-pagination { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; z-index: 10; }
.slid_wrap2 .swiper-pagination-bullet { width: 12px; height: 12px; background: white; opacity: 0.5; }
.slid_wrap2 .swiper-pagination-bullet-active { opacity: 1; background: #007aff; }




    @media (max-width: 1024px) {
        .slid_wrap2 .swiper-container {
            height: 400px;
        }
		
		.slid_wrap2 .swiper-button-next { padding-right: 100px;}
.slid_wrap2 .swiper-button-prev { padding-left: 100px;}
		
.slid_wrap2 .swiper-button-next,
.slid_wrap2 .swiper-button-prev {
    width: 30px;
    height: 30px;
}
.slid_wrap2 .swiper-button-next:after,
.slid_wrap2 .swiper-button-prev:after {
    font-size: 20px;
}	
		
		
		
		
	
}


    @media (max-width: 768px) {
        .slid_wrap2 .swiper-container {
            height: 200px;
        }

        .slid_wrap2 .slide-content h2 {
            font-size: 20px;
        }

        .slid_wrap2 .slide-content p {
            font-size: 14px;
        }

        .slid_wrap2 .slide-content {
            bottom: 30px;
            left: 10px
        }
		
		
		
		
.slid_wrap2 .slide-content {bottom: 30px; left: 20px; padding: 0 10px; }
.slid_wrap2 .slide-content h2 { font-size: 18px; margin-bottom: 3px;  }
.slid_wrap2 .slide-content p { font-size: 14px;  }
		
		
		
		
		
		
		
		
		
		

        .slid_wrap2 .swiper-pagination-bullet {
            width: 8px;
            height: 8px
        }
		
		
		
			.slid_wrap2 .swiper-button-next { padding-right: 40px;}
.slid_wrap2 .swiper-button-prev { padding-left: 40px;}
		
    }

    /* 이미지 슬라이드 끝*/



/* 섹션 컨테이너 */
.map-section {
    padding: 60px 0;
	width: 100%; 
    height: 300px;
	
}



.map-section02 {
    padding: 60px 0;
	width: 100%; 
    height: 600px;
}




.con-box{
  width:100%;
  max-width:1200px;
  margin:20px auto; /* 상하20px + 가운데정렬 */
  padding:0 0px 50px 0px;     /* 좌우도 20px */
  font-size:18px;
  line-height:30px;
  color:#333;
	word-break: break-all;
}


.con-box img{
 width:100%;
  height:auto;      /* 중요 */
  display:block;
}




/* 700px 이하일때 좌우 여백 10px */
@media (max-width:700px){
  .con-box{
    padding:0px 20px; 30px 20px;
  }
}



.hero-box02{
  width:100%;
  height:500px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* 검정 오버레이 */
.hero-box02::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.3);
  z-index:1;
}

/* 내부 콘텐츠는 오버레이 위 */
.hero-box02 > *{
  position:relative;
  z-index:2;
}







/* ================================
   ★ HERO BOX 기본 레이아웃 
   ================================ */
.hero-box{
  width:100%;
  height:500px;
	padding: 0 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;

  /* 배경 이미지 (페이지별 클래스에서 세팅) */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* ================================
   ★ 검정 반투명 오버레이 
   ================================ */
.hero-box::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  z-index:1; /* 텍스트보다 뒤 */
}

/* ================================
   ★ HERO 내부 텍스트는 항상 오버레이 위로 
   ================================ */
.hero-box > *{
  position:relative;
  z-index:2;
}

/* ================================
   ★ 텍스트 스타일 
   ================================ */
.hero-title{
  font-size:40px;
  font-weight:700;
  color:#fff;
	z-index: 1;
}

.hero-sub{
 color: rgba(255,213,108,1);
	z-index: 1;
	font-family:'OngleipWFontList', sans-serif; font-size: 35px; line-height: 45px; margin-top: 20px;  letter-spacing: -1px;
}


.hero-sub01{
  margin-top:30px;
  font-size:22px;
  line-height:1.2em;
  color: rgba(255,255,255,0.8);
	z-index: 1;
}

.hero-sub-desc{
  margin-top:20px;
  font-size:18px;
  line-height:25px;
  color:rgba(255,255,255,0.6);
	z-index: 1;
}

/* ================================
   ★ 페이지별 배경 이미지 지정 
   ================================ */
.hero-bg-01 { background-image:url('../img/img_bg01.jpg'); }
.hero-bg-02 { background-image:url('../img/img_bg02.jpg'); }
.hero-bg-03 { background-image:url('../img/img_bg03.jpg'); }
.hero-bg-04 { background-image:url('../img/img_bg04.jpg'); }
.hero-bg-05 { background-image:url('../img/img_bg05.jpg'); }
.hero-bg-06 { background-image:url('../img/img_bg06.jpg'); }
.hero-bg-07 { background-image:url('../img/img_bg07.jpg'); }






 @media (max-width: 980px) {
	
	 
.hero-box{
  height:300px;
	padding: 0 10px;

}	 
	 
.hero-box02{
  height:300px;
	padding: 0 10px;

}	 
	 
	 
	 
.hero-title{
  font-size:18px;
}


.hero-sub{
	font-family:'OngleipWFontList', sans-serif; font-size: 18px; line-height: 25px; margin-top: 10px; }	 
	 
	 
	 
.hero-sub01{
  margin-top:10px;
  font-size:13px;
  line-height:1.5em;
}

.hero-sub-desc{
  margin-top:10px;
  font-size:13px;
  line-height:18px;
}	 
}





/* 퀵메뉴 전체 컨테이너 */
.quick-btn-box {
    position: fixed; /* 화면에 고정 */
    right: 10px; /* 오른쪽에서 20px 간격 */
    bottom: 160px; /* 아래에서 20px 간격 */
    z-index: 999; /* 다른 요소 위에 표시 */
    width: 80px; /* 메뉴 전체 너비 */
    text-align: center;
}

/* 퀵메뉴 항목 (a 태그) 공통 스타일 */
.quick-btn-box > a {
    display: block;
    width: 80px;
    height: 80px;
    margin-top: 5px; /* 항목 간 세로 간격 */
    border-radius: 5px; /* 원형 버튼 */
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* 부드러운 그림자 */
    transition: all 0.3s;
    overflow: hidden;
}

/* 항목 내부 스타일 */
.quick-btn-box .inr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 100%;
}

/* 아이콘 스타일 */
.quick-btn-box .ico {
    display: block;
    width: 35px;
    height: 35px;
    margin-bottom: 3px;
}

.quick-btn-box .ico i{
    font-size: 28px;
}


.quick-btn-box .ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 텍스트 스타일 */
.quick-btn-box .txt {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* 특정 항목 강조 (전화 상담/진료 문의) */
.quick-btn-box .btn-quick-cs {
    background-color:#3A65D8; /* 붉은색 강조 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.quick-btn-box .btn-quick-cs .txt {
    color: #fff; /* 흰색 글자 */
}

/* TOP 버튼 스타일 */
.quick-btn-box .btn-top {
    width: 80px;
    height: 80px;
	right: 20px;
    margin-top: 20px;
    margin-left: 20px; /* 중앙 정렬 대신 왼쪽에서 밀어냄 */
    background-color: #555; /* 회색 */
    border-radius: 5px; /* 사각형 */
    box-shadow: none;
    line-height: 40px; /* 텍스트 중앙 정렬 */
    font-size: 12px;
    color: #fff;
    font-weight: 500;
	position: fixed;
}

/* 마우스 호버 효과 */
.quick-btn-box > a:hover {
    transform: translateY(-3px); /* 살짝 위로 이동 */
}



.section03 { width: 100%; padding: 200px 0; }
.section03 .date { color: #22c55e; font-size: 14px; margin-bottom: 16px; }
.section03 .content { display: flex; gap: 24px; flex-wrap: wrap; }
.section03 .title { flex: 1 1 400px; font-size: 32px; font-weight: bold; line-height: 1.4; }
.section03 .description { flex: 1 1 400px; color: #666; line-height: 1.6; }

 @media (max-width: 1500px) {
	 

	 
/* 퀵메뉴 전체 컨테이너 */
.quick-btn-box {
    
    right: 10px; /* 오른쪽에서 20px 간격 */
    width: 70px; /* 메뉴 전체 너비 */
}

/* 퀵메뉴 항목 (a 태그) 공통 스타일 */
.quick-btn-box > a {
    width: 70px;
    height: 70px;
}



/* 아이콘 스타일 */
.quick-btn-box .ico {

    width: 20px;
    height: 20px;
}

.quick-btn-box .ico i{
    font-size: 20px;
}

.white{
    color: #FFFFFF;
}


/* 텍스트 스타일 */
.quick-btn-box .txt {
    font-size: 14px;
}


/* TOP 버튼 스타일 */
.quick-btn-box .btn-top {
    width: 70px;
    height: 70px;
	right: 20px;
}	 	 
}



 @media (max-width: 1280px) {
	 
	 
.quick-btn-box {
 display: none;
}	 
	 
}





    @media (max-width: 768px) {
        .section03 .content {
            gap: 16px;
        }

        .section03 .title,
        .section03 .description {
            flex: 1 1 100%;
        }
		
		
		
		
		
    }






.section05 { padding: 200px 0; box-sizing: border-box; }
.section05 .header { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section05 .page-title { font-size: 24px; }
.section05 .navigation { display: flex; align-items: center; gap: 15px; }
.section05 .nav-button { background: none; border: none; cursor: pointer; font-size: 18px; color: #666; padding: 5px; }
.section05 .nav-button:disabled { color: #ccc; cursor: not-allowed; }
.section05 .page-indicator { font-size: 16px; color: #333; }
.section05 .current-page { color: #2196F3; }
.section05 .container { width: 1400px; margin: 0 auto; overflow: hidden; position: relative; }
.section05 .slides { display: flex; gap: 20px; transition: transform .3s ease-in-out; width: calc(1400px * 2); }
.section05 .card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #ddd; flex-shrink: 0; }
.section05 .card-header { position: relative; width: 100%; height: 300px; overflow: hidden; }
.section05 .card-header img { width: 100%; height: 100%; object-fit: cover; }
.section05 .card-header-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 24px; text-align: center; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); width: 100%; }
.section05 .card-content { padding: 20px; }
.section05 .card-title { font-size: 18px; margin-bottom: 15px; color: #333; }
.section05 .link-list { list-style: none; padding: 0; margin: 0; }
.section05 .link-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eee; }
.section05 .link-item:last-child { border-bottom: none; }
.section05 .link-thumbnail { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; cursor: pointer; }
.section05 .link-text { flex: 1; font-size: 18px; color: #555; letter-spacing: -0.5px; }
.section05 .more-link { display: block; text-align: center; padding: 15px; color: #666; text-decoration: none; }

    @media (max-width:768px) {
        .section05 .navigation {
            display: none;
        }

        .section05 .container {
            width: 100%;
            padding: 0 10px;
        }

        .section05 .slides {
            width: 100%;
            gap: 10px;
            transform: none;
        }

        .section05 .card {
            width: 100%;
            margin-right: 0;
        }

        .section05 .card-header {
            height: 200px;
        }
    }



 .text-box {
      position: relative;
      display: inline-block;
      padding: 30px 30px;
      font-size: 1.5rem;
      overflow: hidden;
      background-color: transparent;
	
    }

    .text-box::before {
      content: "";
      position: absolute;
      height: 35%;
      width: 0;
      background-color: rgba(58, 101, 216, 1);
      top: 55%;
      left: 0;
      z-index: 0;
      transition: width 2s ease-out;
		transition-delay: 0s;
    }

    .text-content {
      position: relative;
		color: #FFFFFF;
      z-index: 1;
		top: 20px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 2s ease-out, transform 1s ease-out;
    }

    .text-box.aos-animate::before {
      width: 400px;
    }

    .text-box.aos-animate .text-content {
      opacity: 1;
      transform: translateY(0);
    }




/* 기본 효과(기존 CSS) */
.hx-reveal-box {
  position: relative;
  display: inline-block;
  padding: 8px 4px;
  overflow: hidden;
}

.hx-reveal-bg {
  content: "";
  position: absolute;
  height: 70%;
  width: 0;
  top: 60%;
  left: 0;
  background: #ffe348; /* 기본 노란색 */
  transform: translateY(-50%);
  z-index: 0;
  transition: width 2s cubic-bezier(.3,0,.3,1);
  transition-delay: 0.4s;
}

.hx-reveal-text {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: 1.2s ease-out;
}

.hx-reveal-box.hx-active .hx-reveal-bg {
  width: 100%;
}

.hx-reveal-box.hx-active .hx-reveal-text {
  opacity: 1;
  transform: translateY(0);
	word-break: break-all !important;
}


/* ★ 추가: 색상 테마 클래스 */

/* 파란색 */
.hx-blue .hx-reveal-bg {
  background: #d6e1ff;
}

/* 레드 */
.hx-red .hx-reveal-bg {
  background: #ffb6bf;
}

/* 민트 */
.hx-mint .hx-reveal-bg {
  background: #e9ffc7;
}

/* 핑크 */
.hx-pink .hx-reveal-bg {
  background: #ffe0f3;
}

/* 블랙반투명 */
.hx-dark .hx-reveal-bg {
  background: rgba(0,0,0,0.25);
}


/* 베이지 */
.hx-beige .hx-reveal-bg {
  background: #fff2d9;
}





/* 흐르는 텍스트가 잘리지 않도록 높이 확보 */
.marquee-wrap {
    position: absolute;
    left: 0;
    top: 0;                 /* ← 절대로 위로 올리지 말 것 */
    width: 100%;
    height: 600px;         
    overflow: hidden;
    z-index: 0;
    pointer-events: none;

    display: flex;          /* ★ 텍스트를 수직 중앙에 배치 */
    align-items: center;    /* 중앙정렬 핵심 */
}

/* 끊김 없이 이어지는 흐름 */
.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 200px;
    line-height: 1;        /* ★ 폰트 높이 때문에 잘리는 문제 해결 */
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #000;
    opacity: 0.3;

    animation: marquee 70s linear infinite; 
}


@media (max-width: 768px) {
	
.marquee-wrap { 
    height: 300px;         
}

/* 끊김 없이 이어지는 흐름 */
.marquee-text {
    font-size: 100px;
}	
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hxwide-section {
    position: relative;
}



.four-box-wrap {
  display: flex;
  gap: 20px; /* 박스 간격 */
  width: 100%;
}

.four-box {
  width: calc((100% - 60px) / 4); /* gap 20px × 3 = 60px */
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
	border-radius: 5px;
}

.img-area img {
  width: 100%;
  height: 200px;
  object-fit: cover;
	border-radius: 5px;
	border: none;
}

.box-title {
  font-size: 18px;
  margin: 15px 0 10px 0;
}

.box-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 16px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.box-btn:hover {
  background: #333;
  color: #fff;
}

/* 모바일 (2개씩 나란히) */
@media (max-width: 1024px) {
  .four-box-wrap {
    flex-wrap: wrap;
  }

  .four-box {
    width: calc((100% - 20px) / 2); /* 2개씩 */
  }
}


@media (max-width: 640px) {
	
.four-box-wrap {
  gap: 10px; /* 박스 간격 */
}

.four-box {
  padding: 5px;
	border-radius: 2px;
}

.img-area img {
  height: 100px;
	border-radius: 2px;
}

.box-title {
  font-size: 18px;
  margin: 15px 0 5px 0;
}

.box-btn {
  display: inline-block;
  margin: 0px 0 15px 0;
  padding: 0px 16px !important;
  border: 1px solid #999;
	border-radius: 5px;
  font-size: 12px;
}


	
	
}










.two-col-title {
  font-size: 42px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
}


.two-col-list {
	width: 100%; max-width: 1200px; margin: 0 auto; padding: 100px 0;}


.row-box {
  display: flex;
  gap: 20px 5px;
  margin-bottom: 20px;
}

.left-box,
.right-box {
  padding: 20px 20px;
  border-radius: 12px;
  box-sizing: border-box;
}

/* 좌측박스 스타일 */
.left-box {
  width: 28%;
  background: #435178;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
	font-size: 20px; font-weight: 600;
}

/* 우측박스 스타일 */
.right-box {
  width: 69%;
  background: #f1f0ed;
  color: #000;
  display: flex;
  align-items: center;
	font-size: 18px; line-height: 23px; font-weight: 500;
}







@media (max-width: 1024px) {
	
	

.two-col-title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}


.two-col-list {
	padding: 50px 0;}


.row-box {
    flex-direction: column;
	  gap:0px  ;
  }


.left-box,
.right-box {
  padding: 10px 20px;
  border-radius: 0px;
}

/* 좌측박스 스타일 */
.left-box {
  width: 100%;
  background: #435178;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
	font-size: 18px; 
	border-radius: 0px;
}

/* 우측박스 스타일 */
.right-box {
  width: 100%;
  display: flex;
	font-size: 15px; line-height: 1.5em; 
	border-radius: 0px;
	padding: 20px 20px;
}
	
	
}


















.grid-box-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.grid-box {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 60px 20px;
  text-align: center;
}

.grid-box .icon {
  font-size: 20px; 
  margin-bottom: 30px;
	color: rgba(58,101,216,1.00)
}

.grid-box .title {
  font-size: 25px;
  margin-bottom: 10px;
}

.grid-box .desc {
  font-size: 17px;
  line-height: 1.5;
}

/* 모바일 2열 */
@media (max-width: 768px) {
  .grid-box-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}







/* 풀사이즈 섹션 */
.hxwide-section {
  width: 100%;
   /* 필요하면 수정 */
  padding: 100px 20px;
  box-sizing: border-box;
}

/* 1200px 중앙 박스 */
.hxwide-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 40px;
}

/* 좌측 이미지 */
.hxwide-left {
  width: 50%;
}

.hxwide-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* 우측 텍스트 */
.hxwide-right {
  width: 50%;
}

.hxwide-right h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.hxwide-right p {
  font-size: 18px;
  line-height: 1.5;
}


.hxwide-left,
.hxwide-right {
    position: relative;
    z-index: 5; /* ↑ 이미지/텍스트보다 앞 */
}









.gxbox-fullarea {
  width: 100%;
}

.gxbox-row {
  display: flex;
  flex-direction: column; /* ★ 여기 추가 */
  align-items: flex-start;
  margin-bottom: 30px;
}

.gxbox-row li { margin-left: 30px;}


.gxbox-row > div {
  padding: 10px;
}

.tt01 { display: block; font-size: 24px; line-height: 1.2em; font-weight: 700; padding: 15px 0 0 0; color: rgba(58,101,216,1.00); margin-top: 10px; margin-bottom: 10px;}
.tt02 { display: block; font-size: 18px; line-height: 1.2em; font-weight: 500; margin-bottom: 30px;}

/* 왼쪽 영역 */
.gxbox-left {
  width: 100%;
	font-size: 23px;
  font-weight: 600;
  color: #3a65d8;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 오른쪽 영역 */
.gxbox-right {
  width: 100%;
  font-size: 19px;
  color: #666;
  line-height: 1.5;
	word-break: break-all;
}

/* 숫자 동그라미 아이콘 */
.gxbox-icon {
  width: 40px;
  height: 40px;
   background: #a78f71;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}



/* 왼쪽 제목 텍스트 */
.gxbox-top-title {
  font-size: 42px;
  font-weight: 600;
  color: #000;
	padding-bottom: 30px;
}



.gxbox-ltitle { color: #333; font-size: 28px; font-weight: 600;}




@media screen and (max-width: 1024px) {
	
.hxwide-section {
  width: 100%;
   /* 필요하면 수정 */
  padding: 50px 20px;
  box-sizing: border-box;
}

/* 1200px 중앙 박스 */
.hxwide-inner {
  gap: 20px;
}

/* 좌측 이미지 */
.hxwide-left {
  width: 50%;
}

.hxwide-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* 우측 텍스트 */
.hxwide-right {
  width: 50%;
}

.hxwide-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hxwide-right p {
  font-size: 16px;
  line-height: 1.5;
}


.hxwide-left,
.hxwide-right {
    position: relative;
    z-index: 5; /* ↑ 이미지/텍스트보다 앞 */
}	
	
	
	

.gxbox-row {
  margin-bottom: 10px;
}


.tt01 { display: block; font-size: 24px; line-height: 1.2em; font-weight: 700; padding: 15px 0 0 0; color: rgba(58,101,216,1.00); margin-top: 10px; margin-bottom: 10px;}
.tt02 { display: block; font-size: 18px; line-height: 1.2em; font-weight: 500; margin-bottom: 30px;}

/* 왼쪽 영역 */
.gxbox-left {
	font-size: 20px;
  gap: 5px;
}

/* 오른쪽 영역 */
.gxbox-right {
  font-size: 17px;
}

/* 숫자 동그라미 아이콘 */
.gxbox-icon {
  width: 30px;
  height: 30px;
  font-size: 18px;
}



/* 왼쪽 제목 텍스트 */
.gxbox-top-title {
  font-size: 25px;
}



.gxbox-ltitle { font-size: 20px; line-height: 1.2em !important;}	
	
	
}





/* 모바일 대응 */
@media screen and (max-width: 768px) {
  .hxwide-inner {
    flex-direction: column;
    gap: 30px;
  }
  .hxwide-left,
  .hxwide-right {
    width: 100%;
  }
	
	
.gxbox-ltitle { font-size: 18px; line-height: 1.2em !important;}		
.gxbox-right {
  font-size: 15px;
}	

	
.hxwide-left img {
  width: 70%;
  height: auto;
  display: block;
	margin: 0 auto;
}	
	

	
.tt01 { font-size: 19px; padding: 15px 0 0 0; margin-top: 10px; margin-bottom: 10px;}
.tt02 { font-size: 16px; font-weight: 400; margin-bottom: 20px;}	
	
	
	
	
	
}





/* 전체 영역 */
.full-area-box {
  width: 100%;
  background: #ebe7df;
  padding: 100px 20px;
  box-sizing: border-box;
}


/* 상단 제목 */
.section-top-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 40px;
  color: #333;
	max-width: 1200px;
	margin: 0 auto;
}


/* 내부 1200px 그리드 */
.inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 작은 박스 */
.grid-item {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all .3s ease;
}

/* hover 효과 */
.grid-item:hover {
  background: #3a65d8;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* 내부 글자 스타일 */
.grid-item .icon {
  font-size: 30px;
  margin-bottom: 40px;
	 color: rgba(58,101,216,1.00);
}


.grid-item:hover .icon {
  color: #fff;
}



.grid-item .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.grid-item .desc {
  font-size: 16px;
  line-height: 1.5;
}






/* 모바일 2열 */
@media (max-width: 768px) {


	.full-area-box {
  padding: 50px 20px;
}


/* 상단 제목 */
.section-top-title {
  font-size: 20px;
  padding-bottom: 20px;
}

.inner-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* 작은 박스 */
.grid-item {
  border-radius: 5px;
  padding: 10px;
}


/* 내부 글자 스타일 */
.grid-item .icon {
  font-size: 20px;
  margin-bottom: 20px;
	margin-top: 10px;
}



.grid-item .title {
  font-size: 16px; line-height: 1.2em;
  margin-bottom: 10px;
}

.grid-item .desc {
  font-size: 14px;
}
	
	
	
}






/* 공통 리셋 */
*{margin:0;padding:0;box-sizing:border-box;}

/* 커스텀 커서 */
.custom-cursor{
    width:20px;
    height:20px;
    border:2px solid #000;
    border-radius:50%;
    position:fixed;
    left:0;
    top:0;
    transform:translate(-50%, -50%);
    opacity:0;
    pointer-events:none;
    z-index:9999;
    transition:opacity .15s ease-out, transform .15s ease-out;
}
.custom-cursor.clicking{
    transform:translate(-50%, -50%) scale(0.7);
}

/* CT Before/After 슬라이더 */
.ctslider-wrap{
    position:relative;
    width:500px;
    height:700px;
    margin:0px auto;
    overflow:hidden;
}
.ctslider-wrap img{
    position:absolute;
    top:0;
	border-radius: 10px;
    left:0;
    width:500px;
    height:700px;
    object-fit:cover;
     /* 여기가 중요 */
    user-select:none;          /* 이미지 선택 방지 */
    -webkit-user-drag:none;    /* 이미지 드래그 방지 */
    pointer-events:none;       /* 클릭·드래그 영향 제거 */
}
.ctslider-mask{
    position:absolute;
    top:0;
    left:0;
    width:500px;
    height:700px;
    overflow:hidden;
    clip-path: inset(0 50% 0 0);
}
.ctslider-bar{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#fff;
    /* cursor: ew-resize;  제거 → 마우스 포인터 모양 안 바뀜 */
    z-index:10;
}
.ctslider-handle{
    width:30px;
    height:30px;
    border-radius:50%;
    border:3px solid #fff;
    background:rgba(0,0,0,0.4);
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
}
.ctslider-handle span{
    font-size:14px;
    line-height:1;
    color:#fff;
    pointer-events:none;
}





@media screen and (max-width: 768px){
	
/* CT Before/After 슬라이더 */
.ctslider-wrap{
    width:300px;
    height:400px;
}
.ctslider-wrap img{
	border-radius: 5px;
    left:0;
    width:300px;
    height:400px;
}
.ctslider-mask{
    width:300px;
    height:400px;
}

.ctslider-handle{
    width:30px;
    height:30px;
    border-radius:50%;
    border:3px solid #fff;
    background:rgba(0,0,0,0.4);
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
}
.ctslider-handle span{
    font-size:14px;
    line-height:1;
    color:#fff;
    pointer-events:none;
}

	
	
	
}






/* 풀사이즈 박스 */
.full-bg-box {  
  width: 100%;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.full-bg-ct { background-image: url('/theme/sample39/img/ct_bg.jpg'); }
.full-bg-mri { background-image: url('/theme/sample39/img/mri_bg.jpg'); }
.full-bg-us { background-image: url('/theme/sample39/img/us_bg.jpg'); }
.full-bg-us { background-image: url('/theme/sample39/img/us_bg.jpg'); }

.full-bg-box h2{ font-size: 42px; color: rgba(255,255,255,1.00); font-weight: 700; text-align: center; margin: 30px 0;
	
	
}
/* 내부 흰박스 */
.inner-white-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 10px;
  box-sizing: border-box;
}



@media screen and (max-width: 768px){
	/* 풀사이즈 박스 */
.full-bg-box {  
  padding: 30px 10px;
}

.full-bg-box h2{ font-size: 25px; margin: 20px 0;
	
	
}
/* 내부 흰박스 */
.inner-white-box {
  padding: 7px;
  border-radius: 5px;
}
}
















.hx_tit { width: 100%; font-size: 18px; margin-bottom: 10px;}

.hx-tabs-wrap {
  width: 100%;
  margin: 0px 0 20px 0;
}

.hx-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.hx-tabs button {
	width: 16%; float: left;
  padding: 20px 0 20px 0;
  background: #f8f8f8;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
	font-size: 18px;
	font-weight: 600;
}

.hx-tabs button.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.hx-tab-contents {
  margin-top: 20px;
	padding: 20px;
  border: 1px solid #eee;
}

.hx-content {
  display: none;


}

.hx-content.active {
  display: block;
}




.hx-rowbox {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 40px 0;
}

.hx-rowbox-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  display: block;
}

.hx-rowbox-right {
  flex: 1;
}

.hx-title {
  display: inline-block;
  background: #005bbb;
  color: #fff;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  border-radius: 4px;
}

.hx-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.hx-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
	margin-bottom: 30px;
	word-break: break-all !important;
}

/* ============================
   모바일에서 세로 배치
   ============================ */




@media (max-width: 1024px) {
  .hx-rowbox {
    flex-direction: column;   /* 위→아래 구조로 변경 */
    gap: 20px;
  }

  .hx-rowbox-left img {
    max-width: 100%;          /* 화면 폭에 맞게 확장 */
  }
	
	.hx-tab-contents {
  margin-top: 20px;
	padding: 0px;
  border: 0px solid #eee;
}
	
	
}









  @media (max-width: 1024px) {
.hx-tabs button {
	width: 31%; float: left;
  padding: 20px 0 20px 0;
	gap: 5px;
  
}
}



 @media (max-width: 640px) {
	 
	.hx-tabs {
  gap: 6px;
}

.hx-tabs button {
  padding: 15px 5px;
	font-size: 14px !important;
	font-weight: 500;
} 
}



@font-face {
    font-family: 'OngleipWFontList';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/Ownglyph_wiseelist-Rg.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}



@font-face {
    font-family: 'ChosunIlboMyungjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Chosunilbo_myungjo.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}


/*세번째*/
.txt-box {
  position: relative;
  display: inline-block;
}

.txt-box::before {
  content:"";
  position:absolute;
  inset: 50% 0 0 0;
  background: #f7f26a;
  z-index:0;
  width:0%;
  transition: width 1s ease;
}

.txt-box.aos-animate::before {
  width:100%;
}














.font01 { font-family:'OngleipWFontList', sans-serif; font-size: 40px; line-height: 50px; margin-top: 20px; letter-spacing: -1px;}
.ceo_font01 { font-family:'OngleipWFontList', sans-serif; font-size: 40px !important; line-height: 1.5em; margin-top: 20px; letter-spacing: -1px;}
.font02 { font-family:'OngleipWFontList', sans-serif; font-size: 35px; line-height: 45px; margin-top: 20px;  letter-spacing: -1px;}
/*세번째*/

.alltxt { width: 100%; max-width: 1400px; padding: 0 20px 40px 20px; text-align: center; font-family:'ChosunIlboMyungjo', sans-serif; font-weight: 500; font-size: 40px; line-height: 1.5em; margin-top: 20px; color: #524E4B; margin: 0 auto; letter-spacing: -1px;}



.alltxt02 { width: 100%; max-width: 1400px; padding: 100px 20px 10px 20px; text-align: center; font-family:'ChosunIlboMyungjo', sans-serif; font-size: 40px; line-height: 1.5em; margin-top: 20px; color: #524E4B; margin: 0 auto; letter-spacing: -1px;}


@media (max-width: 720px) { 
	
.alltxt {padding: 0 20px 40px 20px; font-size: 20px; }



.alltxt02 { padding: 100px 20px 10px 20px; font-size: 20px;}
	
	
	
}






@media (max-width: 576px) { 
	
.ceo_font01 { font-size: 30px !important; margin-top: 10px; }	
}

.pdt100{ padding-top: 100px; }
.pdt90{ padding-top: 90px; }
.pdt80{ padding-top: 80px; }
.pdt70{ padding-top: 70px; }
.pdt60{ padding-top: 60px; }
.pdt50{ padding-top: 50px; }
.pdt40{ padding-top: 40px; }
.pdt30{ padding-top: 30px; }
.pdt20{ padding-top: 200px; }
.pdt10{ padding-top: 100px; }

.pdb10 { padding-bottom: 10px;}
.pdb20 { padding-bottom: 20px;}
.pdb30 { padding-bottom: 30px;}
.pdb40 { padding-bottom: 40px;}
.pdb50 { padding-bottom: 50px;}
.pdb60 { padding-bottom: 60px;}
.pdb70 { padding-bottom: 70px;}
.pdb80 { padding-bottom: 80px;}
.pdb90 { padding-bottom: 90px;}
.pdb100 { padding-bottom: 100px;}


.gob01 { border: 1px solid rgba(255,255,255,0.5); padding: 2px 15px; font-size: 14px; text-align: center; margin-top: 30px;}
.fyc { color: #FFF27B}
.fpc { color: #ffc0c0}





.title_box05 { width: 100%; text-align: center; background:#f9f7f5; padding: 100px 20px;}
.title_box05 .tit { font-size: 42px; font-weight: 700; color: rgba(0,0,0,1.00); letter-spacing: -1px;}
.title_box05 .sub { font-size: 20px; line-height: 30px; margin: 20px 0 30px 0; }

@media screen and (max-width: 1024px){
.title_box05 { padding: 70px 20px;}
.title_box05 .tit { font-size: 30px; }
.title_box05 .sub { font-size: 18px; line-height: 1.3em; margin: 20px 0 30px 0; }	
	
}



@media screen and (max-width: 640px){
.title_box05 .tit { font-size: 23px; }
.title_box05 .sub { font-size: 15px; margin: 10px 0 30px 0; }	
	
}




.rolbox-wrap{
  width:100%;
  height:700px;
  background:#f9f7f5;
  overflow:hidden;
  position:relative;
  padding:100px 0;
	
}

/* 타이틀 */
.rolbox-head{
  position:absolute;
  top:50px; left:50%; transform:translateX(-50%);
  text-align:center; color:#fff; z-index:5;
}
.rolbox-head .tit{font-size:42px;font-weight:600; color: #232323;}
.rolbox-head .sub{font-size:20px;margin-top:8px;opacity:.85; color: #5E5E5E;}

/* 리스트 */
.rolbox-inner{
  display:flex;
  gap:20px;
  overflow-x:hidden;
  overflow-y:hidden;
  padding:80px 20px 20px;
  height:100%;
  /*scroll-snap-type:x mandatory;*/
  -webkit-overflow-scrolling:touch;
  user-select:none;
  cursor:grab;
	scrollbar-width: none; 
}
.rolbox-item{
  flex:0 0 400px;
  scroll-snap-align:center;
  background:#fff;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,.08);
  overflow:hidden;
}
.rolbox-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  pointer-events:none;
	padding: 10px;
}
.rolbox-item .txt{
  padding:12px 15px 20px;
  font-size:23px;
  font-weight:600;
  text-align:center;
  color:#333;
  line-height:28px;
}



@media screen and (max-width: 1280px){
	
.rolbox-wrap{
  height:450px;
  padding:100px 0;
	
}

/* 타이틀 */
.rolbox-head{
  top:50px; left:50%; transform:translateX(-50%);
  text-align:center; color:#fff; z-index:5;
}
.rolbox-head .tit{font-size:25px;}
.rolbox-head .sub{font-size:15px; line-height: 1.2em !important; margin-top:0px;}

/* 리스트 */
.rolbox-inner{
  gap:20px;
  padding:30px 10px 10px;
  height:100%;
  /*scroll-snap-type:x mandatory;*/
  -webkit-overflow-scrolling:touch;
  user-select:none;
  cursor:grab;
	scrollbar-width: none; 
}
.rolbox-item{
  flex:0 0 200px;
  border-radius:5px;
}
.rolbox-item img{
  height:150px;
	padding: 10px;
}
.rolbox-item .txt{
  padding:5px;
  font-size:18px;
  line-height:1.4em;
}	
	
}




.section06 { width: 100%; position: relative; height: 725px; background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg.jpg); background-position: center; background-size: cover; }

.section06 .inner { display: flex; align-items: center; max-width: 1400px; height: 100%; margin: 0 auto; padding: 0 20; }
.section06 .tit_area { font-size: 19px; font-weight: 600; color: #fff; }
.section06 .tit_area span { display: block; font-size: 20px; font-weight: 600; color: #fff; }
.section06 .tit_area h2 { margin: 20px 0 30px; font-size: 52px; line-height: 60px;  font-weight: 700; }
.section06 .tit_area p { white-space: pre-line; font-size: 18px; opacity: 0.8; line-height: 1.65; color: #fff;  }
.section06 ul { display: flex; width: 50%; height: 100%; margin-left: auto; }
.section06 ul li { position: relative; width: 50%; }
.section06 ul li i { font-size: 50px; opacity: 1; }
.section06 ul li:before { opacity: 0; display: block; content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #079692; transition: all .3s; }
.section06 ul li:hover:before { opacity: .85; }
.section06 ul li+li { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.section06 ul li a { position: relative; display: flex; flex-flow: column; justify-content: center; align-items: flex-start; height: 100%; padding: 0 30px; border-left: 1px solid rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.8); word-break: keep-all; font-size: 18px; line-height: 1.65; }
.section06 ul li p { margin: 70px 0 20px 0; font-size: 16px; font-weight: 600; color: #fff; }
.section06 ul li .tit_t01 { margin: 0 0 0 0; font-size: 35px; line-height: 40px; font-weight: 700; color: #fff; }

    @media (max-width: 1024px) {
        .section06 {
            height: auto;
            padding: 20px 0;
			
			background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg_mo.jpg); background-position: center; background-size: cover; 
        }

        .section06 .inner {
            flex-direction: column;
            padding: 20px; 
			align-items: flex-start !important;  /* ← 중앙 정렬 강제 해제 */
        text-align: left; /* 필요하면 추가 */
        }

		
		
		
		 .section06 .tit_area {
            float: left;
        }
		
		
        .section06 .tit_area h2 {
            font-size: 25px; line-height: 30px; 
        }
		
		.section06 .tit_area span { font-size: 11px !important; font-weight: 500;  }
		.section06 .tit_area p { font-size: 14px !important; opacity: 0.6; line-height: 1.65; }
		

        .section06 ul {
            flex-direction: column;
            width: 100%;
            padding-top: 20px
        }

        .section06 ul li {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
		
		
		.section06 ul li i { font-size: 30px;  }


		
		.section06 ul li+li { border-right: 0px solid rgba(255, 255, 255, 0.2); }
		
		

        .section06 ul li:last-child {
            border-bottom: none;
        }

        .section06 ul li a {
            padding: 20px 10px;
            border-left: 0;
				 font-size: 12px;
        }

        .section06 ul li p {
            margin: 10px 0;
            font-size: 14px;
        }
		
		.section06 ul li .tit_t01 { margin: 0 0 0 0; font-size: 25px; line-height: 32px; font-weight: 800; color: #fff; }
    }



    .section07 { width: 100%; padding: 0px 0 20px 0; position: relative;}

    /* 커서 스타일 */
    .swiper-slide[data-link] {
        cursor: pointer;
    }

@media (max-width: 767px) {
	 .section07 { padding: none;}
}



/* 슬라이더 영역 */



.section04 {position: relative; width: 100%; max-width: 1400px; float: right;}
.section04 h2 {font-size: 40px; font-weight: 700; padding-bottom: 50px; color: #333333; letter-spacing: -2px;}
.section04 p { margin: 150px 0 20px 0; background: #727b93; padding: 10px 0px; text-align: center; color: #FFFFFF; font-size: 17px; font-weight: 500; width: 250px; border-radius: 10px;}



.drag_slider:hover {cursor: pointer;
}

.drag_slider .swiper-slide {
  width: 600px !important;
}

.img_box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.img_box img {
  width: 100%;
  display: block;
  transition: transform .5s;
}

.img_box:hover img {
  transform: scale(1.05);
}

/* hover overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: .4s;
}
.img_box:hover .overlay { opacity: 1; }

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 700;
}

.overlay p { font-size: 14px; }

/* 텍스트박스 */
.txt_box { margin-top: 18px; }

.tb01 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 8px;
	color: 333;
}

.tb02 {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
}

/* 버튼 */
.swiper-button-next img,
.swiper-button-prev img {
  width: 36px;
}

/* 스크롤바 */
.swiper-scrollbar {
  height: 6px;
  background: #eee;
  margin-top: 14px;
  border-radius: 3px;
}
.swiper-scrollbar-drag {
  background: #333;
  border-radius: 3px;
}














/* ====================================
   1. 전체 컨테이너 및 레이아웃
   ==================================== */
.c {
    padding: 20px 0;
    background-color: #fff;
    display: flex; /* Flexbox를 사용하여 제목과 슬라이더를 옆으로 배치 */
    width: 100%;
	max-width: 1700px;
 float: right;
    box-sizing: border-box;
	padding-left: 30px;
}
.c > div {
    /* 내부 div가 너비를 유연하게 사용하도록 설정 */
    min-width: 0; 
}

/* 왼쪽: 제목 및 컨트롤 영역 */
.c .header {
    width: 25%; /* 제목 영역 너비 */
    padding-right: 30px;
    box-sizing: border-box;
}

/* 오른쪽: 스와이퍼 영역 (나머지 공간 활용) */
.c .swiper {
    width: 75%; 
    padding-bottom: 0px; /* 스크롤바 공간 확보 */
}

/* ====================================
   2. Header (왼쪽 영역) 스타일
   ==================================== */
.c .header .subhead {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 700;
    margin-bottom: 5px;
}
.c .header .head {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
}
.c .header .desc {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* MORE VIEW 버튼 */
.c .header .more {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    /* bg-before-bc1 클래스를 위한 배경색 (임시) */
    background: #fff; 
    transition: all 0.3s;
}

/* 네비게이션 버튼 (prev/next) */
.c .header .nav {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}
.c .header .nav .arrow-wrap {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* bg-hover-bc1/border-hover-bc1 클래스를 위한 호버 효과 (임시) */
    transition: all 0.3s;
}
.c .header .nav .arrow-wrap:hover {
    background-color: #3a65d8; /* bc1 색상 임시 적용 */
    border-color: #3a65d8;
}

/* ====================================
   3. Swiper Slide (개별 게시물) 스타일
   ==================================== */
.c .swiper-slide {
    width: 300px; /* slidesPerView: 'auto'를 위한 고정 너비 */
    height: 480px;
    
    
    
    padding: 0px;
    color: #333;
    /* 스크롤 애니메이션 클래스 무시 */
}

.c .swiper-slide img { width: 100%;}

/* 분류 태그 */
.c .swiper-slide .category {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #ff4e4e; /* border-bc1 임시 적용 */
    color: #ff4e4e;           /* txt-bc1 임시 적용 */
    border-radius: 3px;
    margin-bottom: 15px;
}

/* 게시물 제목 */
.c .swiper-slide .head {
    font-size: 30px;
    font-weight: 700;
	color: #727b93;
	padding: 20px 10px 0 10px;
	background: #f2f2f2;
	text-align: center;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2줄까지만 표시 */
    -webkit-box-orient: vertical;
}

/* 게시물 내용 요약 */
.c .swiper-slide .desc {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0px;
    background: #f2f2f2;
	height: 150px;
	
	padding: 10px 20px 20px 20px;
	text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3줄까지만 표시 */
    -webkit-box-orient: vertical;
}

/* 날짜 */
.c .swiper-slide .date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

/* MORE VIEW 버튼 (개별 슬라이드) */
.c .swiper-slide .more {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: right;
    margin-top: 10px;
    transition: color 0.3s;
}
.c .swiper-slide .more:hover {
    color: #007aff; /* bc3 임시 적용 */
}
	
.c .swiper-scrollbar { }	






@media (max-width: 767px) {
	
	.c .swiper-slide {
    height: 350px;

}
	
	.c .header .nav { display: none;}



 .c .swiper-slide .head {
        font-size: 20px;
        padding: 20px 10px 0 10px;
        line-height: 1.4;
    }

/* 게시물 내용 요약 */
.c .swiper-slide .desc {
    font-size: 15px;
    line-height: 1.4;
	height: 120px;

}
	
	
	
.c .header .subhead {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}
.c .header .head {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.c .header .desc {
    font-size: 14px;
    margin-bottom: 20px;
}	
	
	
	
/* MORE VIEW 버튼 */
.c .header .more {
    display: inline-block;
    padding: 4px 25px;
	font-size: 13px;
}	
	
}




.sec-about1 { padding-bottom:0 !important; }
.sec-about1 .header .head span { position:relative; display:inline-block; padding:0 20px; z-index:1; }
.sec-about1 .header .head span:before { content:""; width:0; transition-duration:1s; height:17px; position:absolute; bottom:7px; left:50%; transform:translateX(-50%); background-color:rgba(var(--main-color1-rgb),.8); z-index:-1; }
.sec-about1 .header .head:hover span:before { width:100%; }

.sec-about1 .content { position:relative; height:80vh; overflow:hidden; }
.sec-about1 .content .bg { position:absolute; left:0; top:0; right:0; height:120%; background:no-repeat center/cover; clip-path: circle(15% at center 5%); transition:all 1.2s ease-out; opacity:0; }
.sec-about1 .content .bg:before { content:""; position:absolute; left:0; top:0; right:0; bottom:0; background:rgba(0,0,0,.2); }
.sec-about1.scroll-on .content .bg { clip-path: circle(100% at center); opacity:1; }

.sec-about1 .content .item { position:absolute; left:0; top:0; right:0; bottom:0; opacity:0; transition-duration:400ms; }
.sec-about1 .content .item.on { opacity:1; z-index:2; }

.sec-about1 .content .txt { padding-top:10%; color:#fff; font-weight:600; opacity:0; transform:translate(0, 30%); transition:600ms ease-out; }
.sec-about1 .content .txt div { padding-right:500px; }
.sec-about1 .content .txt .head { font-size:3.125rem; margin-bottom:30px; line-height:1.4; }
.sec-about1 .content .txt .desc { font-size:1.25rem; }
.sec-about1 .content .txt a { display:flex; justify-content:center; align-items:center; width:180px; height:55px; background:#fff; border-radius:99px; margin-top:50px; font-size:.875rem; --effect-size1:300px; --effect-size2:350px; color:#333 }
.sec-about1 .content .txt a span { margin-left:5px; }
.sec-about1 .content .txt a:hover span,
.sec-about1 .content .txt a:hover span:before,
.sec-about1 .content .txt a:hover span:after { background:#fff; }


.sec-about1 .content .links { position:absolute; top:0; right:0; bottom:0; width:450px; display:flex; flex-direction: column; opacity:0; z-index:3; transform:translate(20%, 0); transition:600ms ease-out; }
.sec-about1 .content .links:before { content:""; position:absolute; left:0; top:0; bottom:0; width:1px; background:#fff; opacity:.5; z-index:-1; }

.sec-about1 .content .links li { position:relative; height:33.33%; display:flex; justify-content:center; align-items:center; color:#fff; font-size:2rem; cursor:pointer; }
.sec-about1 .content .links li:not(:last-child) { border-bottom:1px solid rgba(255,255,255,.5); }
.sec-about1 .content .links li:before { content:""; position:absolute; left:0; top:0; right:0; bottom:0; opacity:0; transition-duration:200ms; background:var(--main-color2); }
.sec-about1 .content .links li:hover:before { opacity:.5; }
.sec-about1 .content .links li span { position:relative; }


@media (max-width: 1250px) {
    .sec-about1 .content .txt div { padding-right:0; }

    .sec-about1 .content .links { width:100%; top:auto; height:300px; flex-direction: row; }
    .sec-about1 .content .links:before { left:0; right:0; bottom:auto; width:100%; height:1px; }
    .sec-about1 .content .links li { height:100%; width:50%; }
    .sec-about1 .content .links li:not(:last-child) { border-bottom:none; border-right:1px solid rgba(255,255,255,.5); }
}


@media (max-width: 767px) {
    .sec-about1 .header .head span { padding:0 10px; }
    .sec-about1 .header .head span:before { height:8px; }

    .sec-about1 .content { height:400px; }
    .sec-about1 .content .txt { padding-top:15%; }
    .sec-about1 .content .txt .head { font-size:1.5rem; margin-bottom:20px; }
    .sec-about1 .content .txt .desc { font-size:1rem; }
    .sec-about1 .content .txt a { margin-top:30px; width:130px; height:42px; font-size:.75rem; }

    .sec-about1 .content .links { height:90px; }
    .sec-about1 .content .links li { font-size:1.25rem; }
	
	
	.c .header {width: 100%;}
	.c .swiper {width: 100%;}
	
	
	
	
	

}