@charset "utf-8";

body {
  transition: background-color 0.6s ease;
  background-color: #ffffff;
}

body.page-dark {
  background-color: #02020c;
  color: #fff;
}

#pageMenu {
  display: block;
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translate(0, -50%);
  width: 90px;
  z-index: 9;
}

#pageMenu li {
  margin: 5px 0;
}

#pageMenu a {
  display: block;
  width: 100%;
  position: relative;
  text-align: right;
  padding-right: 20px;
  cursor: pointer;
}

#pageMenu a span {
  color: #1d1d1d;
  font-size: 0px;
  font-weight: 600;
  line-height: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

body.page-dark #pageMenu a span,
#pageMenu.in-dark a span {
  color: #fff;
}

#pageMenu.on a span {
  color: #fff;
}

#pageMenu a i {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #d5d5d5;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

#pageMenu a i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  border: 1px solid rgb(0 0 0 / 50%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

body.page-dark #pageMenu a i::before,
#pageMenu.in-dark a i::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#pageMenu li.active a span {
  font-size: 13px;
}

#pageMenu li.active a i {
  background: #1d1d1d;
}

body.page-dark #pageMenu li.active a i,
#pageMenu.in-dark li.active a i {
  background: #fff;
}

#pageMenu li.active a i::before {
  opacity: 1;
}

#pageMenu a:hover i::before {
  opacity: 1;
}

/* 반응형 조정 */
@media screen and (max-width: 1024px) {
  #pageMenu {
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  #pageMenu {
    display: none !important;
  }
}
.main_visual {
  position: relative;
  overflow: hidden;
}

.main_visual .video-background{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}



/* 16:9 래퍼 (기본은 데스크탑에서 화면 꽉 차게) */
.video-frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}



/* 비디오 기본(데스크탑) */
.video-player{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}


.video-blur{
  object-fit: cover;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: 0.8;
}


.video-main{
  object-fit: cover; /* 데스크탑 기본 */
}


.video-background::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
}


* 오른쪽 재생/정지 버튼 */
.video-toggle{
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.video-toggle:hover{
  background: rgba(0,0,0,0.55);
}

.video-toggle:focus-visible{
  outline: 2px solid rgba(0,86,255,0.9);
  outline-offset: 3px;
}



.main_visual .visual-tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 200px;
  color: #fff;
  z-index: 2;
}

.main_visual .visual-tit > * {
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.main_visual .title {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-size: 64px;
  margin-bottom: 25px;
  transition: all 0.2s;
}

.main_visual .description {
  font-size: 21px;
  color: #fff;
  opacity: 0.8;
  transition: all 0.2s;
}

.main_visual_scroll {
  position: absolute;
  bottom: 0px;
  right: 210px;
  z-index: 10;
}

.main_visual_scroll .area_wrap {
  display: flex;
  align-items: center;
}

.main_sc_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main_sc_box .sc_down {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 20px;
}

.main_sc_box .sc_line {
  overflow: hidden;
  position: relative;
  display: block;
  width: 1px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.3);
}

.main_sc_box .sc_line:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background-color: #fff;
  content: "";
  animation: line-over 2s ease-in-out infinite;
}

@keyframes line-over {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(80px);
    opacity: 0;
  }
}

/* 반응형 미디어 쿼리 */
@media screen and (max-width: 1200px) {
  .main_visual .title {
    font-size: 60px;
    margin-bottom: 18px;
  }

  .main_visual .description {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media screen and (max-width: 992px) {
  .main_visual .title {
    font-size: 50px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 768px) {

  .main_visual .video-background{
    height:auto;
    padding-top:56.25%; /* 16:9 */
  }

  

   .video-frame{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }


   .video-main{
    object-fit: contain;   /* 전체가 다 보이도록 */
    background: transparent; /* 검은 배경 제거 */
  }

   .video-player{
    object-fit: cover;  /* contain → cover */
    background: transparent; /* #000 제거 */
  }

  /* 버튼은 오른쪽 중간 유지 + 조금 작게 */
  .video-toggle{
        left: 300px;
        width: 40px;
        height: 40px;
        z-index: 9999;
        position: relative;
        top: -120px;
        border-radius: 50%;
        border: 0;
        background: rgba(255,255,255,.3);
  }


/* 클릭 순간 */
.video-toggle:active{
    background: rgba(255,255,255,.3);
}

/* 포커스 상태 */
.video-toggle:focus{
    background: rgba(255,255,255,.3);
    outline: none;
}

/* 토글 활성 상태 (JS에서 aria-pressed 사용 중일 경우) */
.video-toggle[aria-pressed="true"]{
    background: rgba(255,255,255,.3);
}

.video-toggle,
.video-toggle:hover,
.video-toggle:active,
.video-toggle:focus,
.video-toggle[aria-pressed="true"]{
    background: rgba(255,255,255,.3);
}


  .main_visual .visual-tit{
    justify-content: center;
    padding-bottom: 0;
    padding-top: 80px;
  }

  .main_visual_scroll {
    bottom: 0px;
    right: 30px;
  }

  .main_sc_box .sc_line {
    height: 100px;
  }
}

@media screen and (max-width: 576px) {
  .main_visual .title {
    font-size: 24px;
    margin-bottom: 10px;
  }

   .main_visual .description {
    font-size: 14px;
    line-height: 1.65;
  }
  .main_visual_scroll {
    bottom: 0px;
    right: 20px;
  }

  .main_sc_box .sc_down {
    font-size: 9px;
    margin-bottom: 15px;
  }

  .main_sc_box .sc_line {
    height: 80px;
  }

  .main_sc_box .sc_line:after {
      height: 32px;
}

}


/* 공통 텍스트 css 시작 */
.main-section h2 {
  font-size: 48px;
  font-weight: 600;
  transition: all 0.3s;
}

.main-section h2.white {
  color: #fff;
}

.main-section h3 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
}
body.page-dark .main-section h3 {
  color: #fff;
}

.main-section h3.white {
  color: #fff;
}

.main-section p {
  font-size: 19px;
  margin: 20px 0 80px;
  font-weight: 400;
  color: inherit;
  line-height: 1.4;
}

.main-section p.white {
  color: #dfdfdf;
}
@media screen and (max-width: 992px) {
  .main-section h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 576px) {
  .main-section h2 {
    font-size: 36px;
  }

  .main-section h2 > br {
    display: none;
  }

  .main-section h3 {
    font-size: 22px;
  }
  .main-section p {
    font-size: 17px;
  }

  .main-section p > br {
    display: none;
  }
}

.section01 {
  padding: 150px 0;
  overflow: hidden;
}

/* 제품 슬라이더 */
.product_slider {
  position: relative;
  padding-bottom: 60px;
  margin: 0 -30px;
}

.product_slider .swiper-slide::after {
  content: "";
  position: absolute;
  border-right: rgba(0, 0, 0, 0.07) 1px solid;
  right: 0;
  top: 20px;
  bottom: 20px;
}

.product_slider .category_link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* .product_slider .category_link:hover {
  background-color: #297fea;
} */

.product_slider .img_box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.product_slider .img_box::before {
  content: "";
  display: block;
  padding-bottom: 76.25%;
}

.product_slider .img_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product_slider .swiper-slide:hover .img_box img {
  transform: scale(1.08);
}

.product_slider .txt_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
}

.product_slider .txt_box p {
  position: relative;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.product_slider .txt_box p::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #1d5cab;
  border-radius: 50%;
}

.product_slider .txt_box h3 {
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.product_slider .swiper-slide:hover .txt_box h3 {
  color: #fff;
}
.product_slider .swiper-slide:hover .txt_box p {
  color: #f8f8f8;
}
.product_slider .txt_box .more_wrap {
  text-align: right;
}
.view_more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  transition: color 0.3s ease;
}
.view_more svg {
  color: #000;
}

/* 관리자 버튼 */
.product_slider .admin_edit_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  z-index: 10;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.product_slider .admin_edit_btn:hover {
  background: #297fea;
}

/* 네비게이션 버튼 */
.product_slider .swiper-button-prev,
.product_slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  display: none;
}

.product_slider .swiper-button-prev:after,
.product_slider .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.product_slider .swiper-button-prev:hover,
.product_slider .swiper-button-next:hover {
  background: #297fea;
  color: #fff;
}

/* 스크롤바 */
.product_slider .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e5e5e5;
}

.product_slider .swiper-scrollbar-drag {
  background: #297fea;
  border-radius: 3px;
}

/* 반응형 */
@media screen and (max-width: 992px) {
  .product_slider {
    margin: 0 -20px;
  }
  .product_slider .category_link {
    padding: 20px;
  }
  .product_slider .swiper-button-prev,
  .product_slider .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .section01 {
    padding: 100px 0;
  }
}

/* 수정 모달창 */
.edit-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.edit-modal .modal-box {
  background: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
}

.edit-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.edit-modal .close-btn:hover {
  color: #333;
}

.edit-modal .modal-box h3 {
  margin: 0 0 20px 0;
  font-size: 21px;
}

.edit-modal .modal-box label {
  display: block;
  font-size: 15px;
  margin: 15px 0 5px;
  font-weight: 600;
}

.edit-modal .modal-box input[type="text"],
.edit-modal .modal-box input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.edit-modal .img-preview {
  margin: 10px 0;
  max-height: 150px;
  overflow: hidden;
}

.edit-modal .img-preview img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.edit-modal .btn-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.edit-modal .btn-save,
.edit-modal .btn-cancel {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.edit-modal .btn-save {
  background: #007bff;
  color: #fff;
}

.edit-modal .btn-save:hover {
  background: #0056b3;
}

.edit-modal .btn-cancel {
  background: #6c757d;
  color: #fff;
}

.edit-modal .btn-cancel:hover {
  background: #545b62;
}

/* 반응형 */
@media screen and (max-width: 992px) {
  .product_category_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .product_category_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .category_info {
    padding: 15px;
  }

  .category_title {
    font-size: 16px;
  }
}

.section02 {
  padding: 150px 0;
  overflow: hidden;
}

/* Title Box */
.section02 .connect-wrap .txt_box {
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.75s, opacity 0.75s;
}

.section02 .connect-wrap .txt_box.active {
  transform: translateY(0);
  opacity: 1;
}

.section02 .connect-wrap .txt_box .strong_txt {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
}

/* ================================ */
/* 원형 배치를 위한 고정 비율 캔버스 */
/* ================================ */
.section02 .connect-wrap .list_wrap {
  position: relative;
  width: min(100%, 1350px);
  aspect-ratio: 1350 / 1000;
  height: auto;                 /* ✅ height 고정 금지 */
  margin: 0 auto;
  transform-origin: top center;
}

/* ================================ */
/* list 내부 */
/* ================================ */
.section02 .connect-wrap .list_wrap .list_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgb(0 8 139 / 40%) 0%,
    rgba(14, 16, 87, 0.2) 50%,
    transparent 70%
  );
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.75s;
}

.section02 .connect-wrap .list_wrap .list_inner.active {
  transform: translateY(0);
  opacity: 1;
}

/* ================================ */
/* SVG 연결선 */
/* ================================ */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


.connection-lines line {
  stroke: rgb(182 182 182 / 0.3);
  stroke-width: 1;
}

/* 외곽 원형 선 */
.connection-lines .outer-circle {
  stroke: rgb(182 182 182 / 0.25);
  stroke-width: 1;
}

/* 내부 원형 선 (점선) */
.connection-lines .inner-circle {
  stroke: rgb(182 182 182 / 0.2);
  stroke-width: 1;
  stroke-dasharray: 10 5;
}

.connection-lines .center-line {
  stroke: rgb(182 182 182 / 50%);
}

/* 궤도 파티클 */
.connection-lines .orbit-particle {
  opacity: 0.7;
}

/* 외곽 원 파티클 */
.connection-lines .outer-particle {
  cx: 675;
  cy: 50; /* r=400 위치 */
}

/* 내부 원 파티클 */
.connection-lines .inner-particle {
  cx: 675;
  cy: 150; /* r=300 위치 */
}

/* 중앙 로고 */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 200px;
  height: 200px;
}

.center-logo img {
  width: 195px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* 리스트 */
.section02 .connect-wrap .list_wrap .list_inner .list {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 1;
}

.section02 .connect-wrap .list_wrap .list_inner .list li {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* ================================ */
/* 원형 아이템 */
/* ================================ */
.section02 .connect-wrap .list_wrap .list_inner .list li a {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.section02 .connect-wrap .list_wrap .list_inner .list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1.5rem);
  aspect-ratio: 1;
  border: solid 1px rgba(170, 170, 170, 0.5);
  border-radius: 100%;
  transition: 0.5s;
}

/* 아이콘 기본 상태: 숨김 */
.section02 .connect-wrap .list_wrap .list_inner .list li a img {
  width: clamp(35px, 4vw, 50px);
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 텍스트 기본 위치 */
.section02 .connect-wrap .list_wrap .list_inner .list li a h3 {
  font-size: clamp(14px, 2vw, 18px);
  color: #fffc;
  transform: translateY(0px);
  transition: transform 0.5s ease, color 0.5s ease;
}

/* hover 시 아이콘 나타남 (위로 올라옴) */
.section02 .connect-wrap .list_wrap .list_inner .list li:hover a img {
  opacity: 1;
  transform: translateY(-25px);
}

/* hover 시 텍스트 아래로 이동 */
.section02 .connect-wrap .list_wrap .list_inner .list li:hover a h3 {
  color: #fff;
  transform: translateY(20px);
}

/* hover */
.section02 .connect-wrap .list_wrap .list_inner .list li:hover {
  z-index: 10;
}

.section02 .connect-wrap .list_wrap .list_inner .list li:hover a {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ================================ */
/* 좌표 (모두 -100px) */
/* ================================ */
.section02 .connect-wrap .list_wrap .list_inner .list li.item01 { top: 12%; left: 50%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item02 { top: 24%; left: 70%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item03 { top: 50%; left: 76.296%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item04 { top: 78%; left: 66.666%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item05 { top: 78%; left: 33.333%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item06 { top: 50%; left: 23.704%; }
.section02 .connect-wrap .list_wrap .list_inner .list li.item07 { top: 24%; left: 30%; }

/* ================================ */
/* 1920px 이하: Full HD 최적화 */
/* ================================ */
@media (max-width: 1920px) {
  .section02 .connect-wrap .list_wrap {
    width: min(100%, 1000px); /* 필요 시 조절 */
  }

  .section02 .connect-wrap .list_wrap .list_inner .list li a {
    width: 150px;
    height: 150px;
  }

  .center-logo {
    width: 160px;
    height: 160px;
  }
  .center-logo img {
    width: 170px;
  }
}


/* 992px 이하: 원형 배치 버리고 카드형 + 가운데 정렬 */
@media (max-width: 992px) {
  /* 원형 배치를 위한 절대좌표 제거 */
  .section02 .connect-wrap .list_wrap .list_inner .list li {
    position: static !important;
    transform: none !important;
    margin: 0;
  }

  /* 리스트를 flex로 변환 + 가운데 정렬 */
  .section02 .connect-wrap .list_wrap .list_inner .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px 20px;
  }

  /* 아이템 크기 조금 줄이기 */
  .section02 .connect-wrap .list_wrap .list_inner .list li a {
    width: 140px;
    height: 140px;
  }

  /* 모바일에서는 아이콘 항상 표시 */
  .section02 .connect-wrap .list_wrap .list_inner .list li a img {
    opacity: 1;
    transform: translateY(0);
    position: static;
    margin-bottom: 8px;
  }

  .section02 .connect-wrap .list_wrap .list_inner .list li:hover a img {
    opacity: 1;
    transform: translateY(0);
  }

  /* 모바일에서는 텍스트 위치 고정 */
  .section02 .connect-wrap .list_wrap .list_inner .list li a h3 {
    transform: translateY(0) !important;
    margin-top: 5px;
  }

  /* 전체 래퍼는 화면 기준으로 꽉 채우되, 가운데 정렬 유지 */
  .section02 .connect-wrap .list_wrap {
    width: 100%;
    height: auto;
    left: 0;
    transform: none !important;
  }

  .section02 .connect-wrap .list_wrap .list_inner {
    height: auto;
  }

  /* 모바일에서는 선/중앙 로고 숨김 */
  .connection-lines,
  .center-logo {
    display: none !important;
  }
}

/* 576px 이하: 3열 느낌 나도록 조금 더 줄이기 */
@media (max-width: 576px) {
  .section02 {
    padding: 0;
  }
  .section02 .connect-wrap .list_wrap .list_inner .list {
    gap: 30px;
  }

  .section02 .connect-wrap .list_wrap .list_inner .list li a {
    width: 110px;
    height: 110px;
  }
}

.section03 {
  width: 100%;
  padding: 150px 0;
  position: relative;
}
.section03 .section03-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/s03_bg.png) no-repeat top center / cover;
}
.section03 .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section03 .left-content {
}

.section03 .right-content {
  color: #333;
  position: relative;
}

/* 중앙 세로선 추가 */
.section03 .right-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

/* 기존 flex 제거하고 grid로 교체 */
.section03 .right-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  column-gap: clamp(24px, 6vw, 140px);
  justify-content: center;
  justify-content: space-between;
  padding: 0 2vw;
}

/* li 폭 계산 제거 */
.section03 .right-content ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.section03 .right-content ul li:nth-child(odd) {
  grid-column: 2;
}
.section03 .right-content ul li:nth-child(even) {
  grid-column: 1;
}

.section03 .right-content ul li:nth-child(odd) .img_wrapper {
  margin-top: -60px;
}
.section03 .right-content ul li:nth-child(even) .img_wrapper {
  margin-top: -200px;
}
.section03 .right-content ul li:nth-child(3) .img_wrapper {
  margin-top: 140px;
}
.section03 .right-content ul li .img_wrapper {
  width: 100%;
  height: 0;
  padding-top: 132.86%;
  overflow: hidden;
  border-radius: 13px;
  position: relative;
}

.section03 .right-content ul li .img_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.2s ease-out;
}

.section03 .right-content ul li:nth-child(1) .img_box {
  background-image: url("../img/section03-right01.jpg");
}
.section03 .right-content ul li:nth-child(2) .img_box {
  background-image: url("../img/section03-right02.jpg");
}
.section03 .right-content ul li:nth-child(3) .img_box {
  background-image: url("../img/section03-right03.jpg");
}

.section03 .right-content ul li .tit_box {
  padding: 20px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.section03 .right-content ul li .tit_box h4 {
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 1206px) {
  .section03 .left-content {
    text-align: center;
  }

  .section03 .left-content p {
    text-align: center;
  }
  .section03 .right-content {
    width: 100%;
  }
  .section03 .right-content ul li:nth-child(odd) .img_wrapper {
    margin-top: 20px;
  }
  .section03 .right-content ul li .tit_box {
    padding: 25px 10px;
  }
}

@media screen and (max-width: 768px) {
  /* 1열로 변경 */
  .section03 .right-content ul {
    grid-template-columns: 1fr;
    justify-content: stretch;
    column-gap: 0;
    row-gap: 28px;
    padding: 0;
  }

  /* (오른쪽 시작 컬럼 배치 규칙이 있으면 해제) */
  .section03 .right-content ul li {
    grid-column: auto !important;
  }

  /* 모바일에서는 지그재그(위아래 오프셋) 제거 */
  .section03 .right-content ul li .img_wrapper {
    transform: none !important;
    margin: 0 !important;
  }
  /* 중앙 세로선도 모바일에서는 보통 숨김 */
  .section03 .right-content::before {
    display: none;
  }

  .section03 .right-content::before {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .section03 {
    padding: 100px 0;
  }
}

.section04 {
  margin: 200px 0;
}

.pr-grid {
  display: table;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
}

.pr-card {
  position: relative;
  display: table-cell;
  vertical-align: top;
  width: 33.33%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transition-property: width;
}

.pr-card.card02 {
  padding: 0 2px;
}

.pr-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  color: #fff;
}

.pr-content .pr-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pr-content h3 {
  position: relative;
  font-size: 32px;
  transform: translateY(3rem);
  transition: transform 0.8s ease-in-out;
  margin-top: 2.2rem;
  color: #fff;
}

.pr-content p {
  position: relative;
  margin-top: 2.2rem;
  font-size: 20px;
  line-height: calc(26 / 18);
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.8s ease-in-out;
}

.pr-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* active */
.hover-active .pr-card {
  width: 30%;
}

.hover-active .pr-card.active {
  width: 40%;
}

.hover-active .pr-card.active .pr-content h3 {
  transform: translateY(0);
}

.hover-active .pr-card.active .pr-content p {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .pr-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .pr-card {
    display: block;
    width: 100% !important;
    height: 40vh;
    min-height: 300px;
    padding: 0 !important;
  }

  .pr-card:last-child {
    margin-bottom: 0;
  }

  .pr-content h3 {
    font-size: 24px;
    transform: translateY(0) !important;
  }

  .pr-content p {
    font-size: 16px;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
@media screen and (max-width: 576px) {
  .section04 {
    margin: 0 0 100px 0;
  }
}

/* section06 지도 */
.section05 {
  width: 100%;
  padding-bottom: 200px;
  clear: both;
}
.section05 .map-wrap {
  display: flex;
  justify-content: space-between;
}
.map-wrap .left {
  width: 40%;
}
.map-wrap .right {
  width: 50%;
}
.map-wrap .map_txt {
  margin-top: 70px;
}

.map-wrap .map_txt p {
  margin: 20px 0 40px;
}
.map-wrap .map_txt .info_txt {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #e4e4e4;
  padding: 40px 0 0;
}

.map-wrap .right .addr {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.right .wrap_controllers {
  display: none;
}

.btn-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-wrap .view-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 225px;
  padding: 8px 12px 8px 20px;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-wrap.en-btn .view-more {
  width:255px
}
/* .btn-wrap .view-more:hover {
  background-color: #297fea;
  border-color: #297fea;
  color: #fff;
} */

.btn-wrap.small-btn .view-more {
  width: 190px;
  margin: 30px 0 20px;
}

#send-btn.btn-wrap {
  align-items: center;
  justify-content: center;
}
#send-btn.btn-wrap .view-more {
  margin: 0;
  background-color: #fff;
}

.fill_btn {
  position: relative;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.2s;
  overflow: hidden;
  z-index: 1;
}

/* 원형 이펙트 */
.fill_btn .fill {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #297fea;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  z-index: -1;
}

.fill_btn:hover {
  transition-delay: 0s;
  color: #fff;
  box-shadow: 0.5rem 0.5rem 3rem rgba(19, 92, 227, 0.3);
}
.fill_btn:hover .fill {
  width: 300%;
  height: 300%;
}

@media screen and (max-width: 992px) {
  .section05 .map-wrap {
    flex-wrap: wrap;
  }
  .map-wrap .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .map-wrap .right {
    width: 100%;
  }
  .map-wrap .map_txt {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    gap: 10px;
  }
  .btn-wrap .view-more,
  .btn-wrap.en-btn .view-more, {
    width: 195px;
    font-size: 15px;
  }
  .btn-wrap.small-btn .view-more {
    width: 160px;
  }
  .view_more {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .section05 {
    padding-bottom: 100px;
  }
  .map-wrap .map_txt .info_txt {
    font-size: 17px;
  }
  .map-wrap .right .addr {
    font-size: 19px;
  }

  .map-wrap iframe {
    height: 300px !important;
  }
}

/* 기본(PC)에서는 줄바꿈 숨김 */
.m_br {
  display: none;
}

/* 모바일에서만 줄바꿈 적용 */
@media (max-width: 768px) {
  .m_br {
    display: block;
  }
}