.main .h2 {
  font-weight: 600;
  font-size: 2.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.main .h2__desc {
  font-weight: 400;
  font-size: 1.25rem;
  opacity: 0.8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.main .h2__bar {
  width: 50px;
  height: 1px;
  background: #ffffff;
  margin: 0 auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}



@media screen and (max-width: 768px) {
  .main .h2 {
    font-size: 2rem;
  }

  .illust-dog {
    position: absolute;
    right: 0 !important;
    height: auto;
    bottom: 5%;
    width: 380px !important;
    height: auto;
    z-index: 2;
    pointer-events: none;
  }

  .main .h2__desc {
    font-size: 1.1rem;
  }

  .title {
    font-size: 32px !important;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin: 0 0 14px;
  }
}

@media screen and (max-width: 390px) {
  .main .h2 {
    font-size: 1.6rem;
  }

  .main .h2__desc {
    font-size: 1rem;
  }
}

/* --------------------------------
      Section: section__visual
--------------------------------- */

/* 배너 이미지 공용 스타일 */
.mid-banner {
  display: block;
  /* a태그도 블록으로 */
  width: 100%;
  /* 부모 너비에 맞춰 풀폭 */
}

.mid-banner img {
  display: block;
  /* 하단 여백 제거 */
  width: 100%;
  /* 반응형 핵심 */
  height: auto;
  /* 비율 유지 */
}

/* --------------------------------
      Section: section__visual
--------------------------------- */

.main__visual {
  width: 100%;
  height: 100vh;
}

.main__visual_slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ✅ 배경 이미지에만 적용되도록 자식 선택자 사용 */
.main__visual_slide>img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  animation: slowSlideZoom 4s linear infinite alternate;
}

@keyframes slowSlideZoom {
  from {
    transform: translateX(0) scale(1);
  }

  to {
    transform: translateX(-20px) scale(1.05);
  }
}

/* ===== 중앙 PNG가 “샥” 올라오게 ===== */
.main__visual_slide_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  /* 아래에서 시작 */
  opacity: 0;
  z-index: 2;
  /* 배경 위로 */
  pointer-events: none;
  /* 클릭 방해 X */
  text-align: center;
}

/* 활성 슬라이드에서만 애니메이션 재생 */
.swiper-slide-active .main__visual_slide_img {
  animation: slideUp 0.9s ease both 0.2s;
}

.main__visual_slide_img img {
  width: auto;
  max-width: 80%;
  height: auto;
}

/* 샥 올라오는 키프레임 */
@keyframes slideUp {
  from {
    transform: translate(-50%, 20%);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

/* ====== 기존 텍스트 블록 (건드리지 않음) ====== */
.main__visual_slide_text {
  padding-left: clamp(10%, 16vw, 300px);
  padding-top: 100px;
  color: #fff;
  max-height: 550px;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.main__visual_slide_text .sub {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.main__visual_slide_text h2 {
  font-size: clamp(1.8rem, 3vw, 4rem);
  line-height: 1.4;
  font-weight: 600;
}

.main__visual_slide_text h2 span {
  color: var(--color_primary);
}

.main__visual .swiper-button-prev,
.main__visual .swiper-button-next {
  top: 60%;
  width: 40px;
  height: 40px;
  color: #fff;
}

.main__visual .swiper-button-prev {
  left: 10%;
}

.main__visual .swiper-button-next {
  right: 10%;
}

.main__visual .swiper-button-prev::after,
.main__visual .swiper-button-next::after {
  font-size: 26px;
}

.main__visual .main__visual_pagination_wrap {
  position: absolute;
  bottom: 20%;
  left: clamp(10%, 16vw, 300px);
  z-index: 10;
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.main__visual .progress-current {
  min-width: 32px;
  text-align: right;
}

.main__visual .progress-total {
  min-width: 32px;
  text-align: left;
}

.main__visual .progress-bar-container {
  width: 200px;
  height: 2px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.main__visual .progress-bar-fill {
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
}

.main__visual_slide_text .sub,
.main__visual_slide_text h2 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.main__visual_slide_text.animate .sub {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.main__visual_slide_text.animate h2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* ===== 반응형 ===== */
@media screen and (max-width: 1024px) {
  .main__visual_slide_img img {
    max-width: 86%;
  }
}

@media screen and (max-width: 768px) {
  .main__visual_slide_text {
    padding-left: 20px;
    padding-top: 60px;
    margin-bottom: 40px;
    /* pagination과 겹치지 않게 */
  }

  .main__visual_slide_text .sub {
    font-size: 1.1rem;
  }

  .main__visual_slide_text h2 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
  }

  .main__visual .swiper-button-prev,
  .main__visual .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 70%;
  }

  .main__visual .swiper-button-prev {
    left: 5%;
  }

  .main__visual .swiper-button-next {
    right: 5%;
  }

  .main__visual .main__visual_pagination_wrap {
    bottom: 12%;
    left: 20px;
    font-size: 12px;
  }

  .main__visual .progress-bar-container {
    width: 150px;
  }

  .main__visual_slide_img img {
    max-width: 92%;
  }

  /* 중앙 PNG 확대 여유 */
}

@media screen and (max-width: 390px) {
  .main__visual_slide_text {
    padding-left: 10px;
    padding-top: 40px;
    margin-bottom: 30px;
  }

  .main__visual_slide_text .sub {
    font-size: 1rem;
  }

  .main__visual_slide_text h2 {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .main__visual .swiper-button-prev,
  .main__visual .swiper-button-next {
    width: 24px;
    height: 24px;
    top: 75%;
  }

  .main__visual .swiper-button-prev {
    left: 4%;
  }

  .main__visual .swiper-button-next {
    right: 4%;
  }

  .main__visual .main__visual_pagination_wrap {
    bottom: 8%;
    left: 10px;
    font-size: 11px;
  }

  .main__visual .progress-bar-container {
    width: 120px;
  }
}

/* ===== main__visual_text (기존 유지) ===== */
.main__visual_text {
  text-align: center;
  margin-bottom: 100px;
}

.main__visual_bar {
  background: #333333;
  width: 1px;
  height: 40px;
  margin: 30px auto;
}

.main__visual_text_1 {
  color: #333333;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.main__visual_text_2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .main__visual_text {
    margin-bottom: 60px;
  }

  .main__visual_bar {
    height: 30px;
    margin: 30px auto;
  }

  .main__visual_text_1 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .main__visual_text_2 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 390px) {
  .main__visual_text {
    margin-bottom: 40px;
  }

  .main__visual_bar {
    height: 20px;
    margin: 20px auto;
  }

  .main__visual_text_1 {
    font-size: 0.875rem;
    margin-bottom: 0.8rem;
  }

  .main__visual_text_2 {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }
}

























/* --------------------------------
      Section: section__about
--------------------------------- */

.section__about {
  background: url(../1x/m/main__section__2__bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}

.section__about .layout__basic {
  padding: 150px 50px 200px;
}

.main__about_title {
  margin-bottom: 100px;
  text-align: center;
}

.main__about_content ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.main__about_content ul li {
  width: 20%;
  background: rgba(0, 0, 0, 0.6);
  padding: 3.5rem 0;
  transition: all 0.3s;
  position: relative;
}

.main__about_content ul li:hover {
  transform: scale(1.05);
  background: #17375e;
}

.main__about_content ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main__about_content_icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.main__about_content_icon img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.main__about_content_title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.main__about_content_desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main__about_content ul li:hover .main__about_content_desc {
  opacity: 1;
}

.main__about_content_arrow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.main__about_content ul li:hover .main__about_content_arrow {
  display: none;
}

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
  .section__about .layout__basic {
    padding: 120px 40px 160px;
  }
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
  .section__about .layout__basic {
    padding: 100px 30px 140px;
  }

  .main__about_content_icon {
    width: 80px;
    height: 80px;
  }

  .main__about_content_title {
    font-size: 1.25rem;
  }
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
  .section__about .layout__basic {
    padding: 80px 20px 120px;
  }

  .main__about_content_icon {
    width: 70px;
    height: 70px;
  }

  .main__about_content_title {
    font-size: 1.125rem;
  }

  .main__about_content_desc {
    font-size: 0.8rem;
  }
}

/* 900px 이하 → 3열 */
@media screen and (max-width: 1000px) {
  .main__about_content ul {
    flex-wrap: wrap;
  }

  .main__about_content ul li {
    width: calc(32% - 0.5rem);
  }

  .main__about_content ul li:last-child {
    width: calc(65.5%);
  }

  .main__about_content ul li:hover {
    transform: translateY(0px);
  }

  .main__about_content_arrow {}
}

/* 768px 이하 → 2열 */
@media screen and (max-width: 768px) {

  .main__about_title {
    margin-bottom: 50px;
  }

  .main__about_content ul li {
    width: calc(50% - 0.5rem);
    padding: 2rem 0;
  }

  .main__about_content ul li:last-child {
    width: calc(100%);
  }

  .main__about_content_icon {
    width: 60px;
    height: 60px;
  }

  .main__about_content_title {
    font-size: 1rem;
  }

  .main__about_content_desc {
    font-size: 0.75rem;
  }
}

/* 390px 이하 → 1열, 마지막 full width */
@media screen and (max-width: 390px) {
  .main__about_content ul li {
    width: 100%;
  }

  .main__about_content ul li:last-child {
    width: 100%;
    padding: 2.5rem 0;
  }
}

/* --------------------------------
      Section: section__business
--------------------------------- */

.section__business {
  background: url(../1x/m/main__section__3__bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}

.section__business .layout__basic {
  padding: 150px 50px;
}

.main__business_title {
  margin-bottom: 2rem;
}

.main__business_content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.main__business_content_desc {
  width: 22.5%;
  text-align: right;
  font-size: 1.25rem;
  line-height: 1.6;
}

.main__business_content_desc p {
  margin-top: 1rem;
}

.main__business_content_desc p img {
  width: 36px;
}

.main__business_content_box {
  width: 77.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.main__business_content_box .card {
  text-align: center;
  border-radius: 0.875rem;
  height: 280px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.main__business_content_box .card:hover p img {
  transform: scale(1.05) translateY(-15%);
}

.main__business_content_box .card p {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  overflow: hidden;
}

.main__business_content_box .card p img {
  width: 100%;
  transform: translateY(-10%);
  transition: all 0.3s;
}

.main__business_content_box .card div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: #17375e;
  padding: 1.125rem;
  font-size: 1.125rem;
}

.main__business_content_box .card1 {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.main__business_content_box .card2 {
  grid-column: 3 / span 1;
  grid-row: 1;
}

.main__business_content_box .card3 {
  grid-column: 1 / span 1;
  grid-row: 2;
}

.main__business_content_box .card4 {
  grid-column: 2 / span 2;
  grid-row: 2;
}

@media screen and (max-width: 1440px) {
  .main__business_content_box {
    gap: 0.875rem;
  }

  .main__business_content_box .card p img {
    width: auto;
    transform: translateY(-10%);
  }
}

@media screen and (max-width: 1280px) {
  .main__business_content_box {
    gap: 0.75rem;
  }
}

@media screen and (max-width: 1024px) {
  .main__business_content_box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }

  .main__business_content_box .card1,
  .main__business_content_box .card2,
  .main__business_content_box .card3,
  .main__business_content_box .card4 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media screen and (max-width: 768px) {
  .main__business_content {
    flex-direction: column;
    gap: 2rem;
  }

  .main__business_content_desc {
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
  }

  .main__business_content {
    flex-direction: column;
    gap: 2rem;
  }

  .main__business_content_box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
  }

  .main__business_content_box .card p img {
    width: 100%;
  }

  .main__business_content_box .card1 p img,
  .main__business_content_box .card4 p img {
    width: auto;
    height: 100%;
  }
}

/* --------------------------------
      Section: section__join
--------------------------------- */

.section__join {
  background: url(../1x/m/main__section__4__bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.section__join .layout__basic {
  padding: 100px 50px 150px;
}

.main__join_more {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.main__join_more p {
  cursor: pointer;
}

.main__join_content {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.main__join_content .swiper-button-prev,
.main__join_content .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}

.main__join_content .swiper-button-prev::after,
.main__join_content .swiper-button-next::after {
  font-size: 26px;
}

.main__join_content .swiper-button-prev {
  left: -80px;
}

.main__join_content .swiper-button-next {
  right: -80px;
}

.swiper.main__join_slide {
  width: 100%;
}

.main__join_slide .swiper-slide {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  height: 100%;
  min-height: 200px;
  color: #ccc;
}

.card-img {
  text-align: center;
  margin-bottom: 1rem;
}

.card-img img {
  width: auto;
  height: 100px;
}

.card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  flex-grow: 1;
}

.card-more {
  text-align: right;
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
}

.no-thumb {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  line-height: 60px;
  font-size: 12px;
  color: #999;
}

@media screen and (max-width: 1024px) {
  .section__join .layout__basic {
    padding: 100px 30px 140px;
  }

  .main__join_content .swiper-button-prev {
    left: -50px;
  }

  .main__join_content .swiper-button-next {
    right: -50px;
  }

  .card-img img {
    height: 50px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-desc {
    font-size: 13px;
  }

  .card-more {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .section__join .layout__basic {
    padding: 80px 20px 100px;
  }

  .main__join_content .swiper-button-prev,
  .main__join_content .swiper-button-next {
    display: none;
    /* 모바일에서 버튼 숨김 */
  }

  .card-img img {
    height: 45px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-desc {
    font-size: 12px;
  }

  .card-more {
    font-size: 10px;
  }
}

@media screen and (max-width: 390px) {
  .section__join .layout__basic {
    padding: 60px 15px 80px;
  }

  .card-img img {
    height: 40px;
  }

  .card-title {
    font-size: 13px;
  }

  .card-desc {
    font-size: 11px;
  }

  .card-more {
    font-size: 9px;
  }
}

/* --------------------------------
      Section: section__board
--------------------------------- */

.section__board .layout__basic {
  padding: 100px 50px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch;
}

.section__board .h2 {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.section__board .h2__desc {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.main__board_title {
  margin-bottom: 50px;
}

.main__board_content {
  width: 40%;
}

.main__board_content_card {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.main__board_content_card .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ffffff;
  cursor: pointer;
}

.main__board_content_card .card p:first-child {
  font-weight: 700;
}

.main__board_content_card .inquire {
  background: var(--color_primary);
  transition: all 0.3s;
}

.main__board_content_card .inquire:hover {
  background: var(--color_primary_dark);
}

.main__board_content_card .location {
  background: #17375e;
  transition: all 0.3s;
}

.main__board_content_card .location:hover {
  background: #122b4a;
}

.main__board_content_card .card p:nth-child(1) {
  font-size: 1.25rem;
}

.main__board_content_card .card p:nth-child(2) {
  font-size: 1rem;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .section__board .layout__basic {
    flex-direction: column;
    padding: 80px 40px;
    gap: 3rem;
  }

  .main__board_content,
  .main__board_content_card {
    width: 100%;
  }

  .main__board_content_card {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .main__board_content_card .card {
    padding: 3rem 0;
  }
}

@media screen and (max-width: 768px) {
  .section__board .layout__basic {
    padding: 60px 30px;
  }

  .main__board_content_card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .main__board_content_card .card {
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

/* ===== Scoped Variables ===== */
.boxtype__section {
  --bt-text: #222;
  --bt-muted: #777;
  --bt-accent: #f3a464;
  /* 상단 PRODUCT 라벨 톤 */
  --bt-accent-strong: #ff9b39;
  /* 진행바/포인트 */
  --bt-bg: #fff;
  --bt-card-bg: #fff;
  --bt-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --bt-radius: 18px;
  --bt-gap: 24px;
  --bt-edge: 40px;
  background: var(--bt-bg);
  color: var(--bt-text);
}

/* Layout */
.boxtype__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px var(--bt-edge) 40px;
  box-sizing: border-box;
}

/* Head */
.boxtype__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #c77c4a;
  padding: 6px 10px;
  border-radius: 10px;
  background: #ffe7d4;
  margin-bottom: 10px;
}

.boxtype__title {
  font-size: 44px;
  line-height: 1.1;
  margin: 6px 0 14px;
  font-weight: 900;
  letter-spacing: .01em;
  color: #ff8f33;
}

.boxtype__desc {
  color: var(--bt-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Slider shell */
.boxtype__slider {
  position: relative;
  margin-top: 28px;
  user-select: none;
}

.boxtype__viewport {
  overflow: hidden;
}

.boxtype__track {
  display: flex;
  gap: var(--bt-gap);
  will-change: transform;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  padding: 8px 2px 8px 2px;
}

.boxtype__slide {
  flex: 0 0 auto;
  width: calc((100% - (var(--bt-gap) * 2)) / 3);
  /* desktop default 3-up */
}

@media (max-width: 1024px) {
  .boxtype__slide {
    width: calc((100% - var(--bt-gap)) / 2);
  }

  /* 2-up */
}

@media (max-width: 640px) {
  .boxtype__slide {
    width: 100%;
  }

  /* 1-up */
}

/* Card */
.boxtype__card {
  background: var(--bt-card-bg);
  border-radius: var(--bt-radius);
  box-shadow: var(--bt-shadow);
  padding: 22px 22px 20px;
  position: relative;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.boxtype__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.boxtype__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.boxtype__thumb img {
  max-width: 92%;
  max-height: 92%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .12));
}

.boxtype__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffeedf;
  color: #ff7e1f;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.boxtype__name {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 6px 0 12px;
  min-height: 24px;
}

.boxtype__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: #ff9b39;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.boxtype__link:hover {
  transform: translateY(-2px);
  background: #ff7f00;
}

/* Nav buttons */
.boxtype__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: var(--bt-shadow);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  z-index: 3;
}

.boxtype__nav:disabled {
  opacity: .35;
  cursor: default;
}

.boxtype__nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.boxtype__nav--prev {
  left: -10px;
}

.boxtype__nav--next {
  right: -10px;
}

@media (max-width: 640px) {
  .boxtype__nav--prev {
    left: 6px;
  }

  .boxtype__nav--next {
    right: 6px;
  }
}

/* Progress bar (아래 주황 라인) */
.boxtype__progress {
  position: relative;
  height: 4px;
  background: #ffe7d0;
  border-radius: 999px;
  margin-top: 16px;
  overflow: hidden;
}

.boxtype__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--bt-accent-strong);
  border-radius: 999px;
  transition: width .45s cubic-bezier(.22, .61, .36, 1);
}

/* Tighten top spacing on very small screens */
@media (max-width: 480px) {
  .boxtype__inner {
    padding-top: 40px;
  }

  .boxtype__title {
    font-size: 34px;
  }

  .boxtype__desc {
    font-size: 14px;
  }
}



/* ===== Variables & base ===== */
.partner__section {
  --pt-bg: #f6f6f6;
  --pt-text: #222;
  --pt-muted: #7a7a7a;
  --pt-accent: #ff9b39;
  --pt-card-bg: #fff;
  --pt-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --pt-radius: 22px;
  --pt-gap: 18px;
  background: var(--pt-bg);
  color: var(--pt-text);
}

.partner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 68px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* 좌:우 비율 */
  gap: 48px;
  position: relative;
}

/* ===== Left block ===== */
.partner__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #c77c4a;
  background: #ffe7d4;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  width: 25%;
}

.partner__title {
  font-size: 42px;
  line-height: 1.1;
  margin: 6px 0 12px;
  font-weight: 900;
  color: #ff8f33;
}

.partner__desc {
  color: var(--pt-muted);
  font-size: 15px;
  line-height: 1.8;
}

.partner__left {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.partner__watermark {
  position: absolute;
  left: 0;
  bottom: -8px;
  font-weight: 900;
  font-size: 110px;
  letter-spacing: .02em;
  color: rgba(0, 0, 0, .035);
  white-space: nowrap;
  pointer-events: none;
}

/* ===== Right block (auto-scrolling columns) ===== */
.partner__right {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.partner__mask {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 246, 246, 1) 0%, rgba(246, 246, 246, 0) 8%, rgba(246, 246, 246, 0) 92%, rgba(246, 246, 246, 1) 100%);
  z-index: 3;
}

.partner__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  height: 520px;
  /* 전체 높이 */
  padding: 10px 6px;
}

.partner__col {
  position: relative;
  overflow: hidden;
}

.partner__list {
  display: flex;
  flex-direction: column;
  gap: var(--pt-gap);
  will-change: transform;
  animation: partner__scroll 24s linear infinite;
}

.partner__col[data-speed="22"] .partner__list {
  animation-duration: 22s;
}

.partner__col[data-speed="26"] .partner__list {
  animation-duration: 26s;
}

.partner__list--clone {
  margin-top: var(--pt-gap);
}

/* 스크롤 keyframes(한 세트 높이만큼 위로 이동) */
@keyframes partner__scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* 카드 */
.partner__item {
  list-style: none;
}

.partner__card {
  background: var(--pt-card-bg);
  border-radius: 22px;
  padding: 22px;
  height: 150px;
  display: grid;
  place-items: center;
  box-shadow: var(--pt-shadow);
}

.partner__card img {
  display: block;
  max-width: 78%;
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .08));
}

/* Hover = pause */
.partner__right:hover .partner__list {
  animation-play-state: paused;
}

/* ===== Accessibility: reduce-motion ===== */
@media (prefers-reduced-motion: reduce) {
  .partner__list {
    animation: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .partner__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner__watermark {
    font-size: 88px;
    bottom: -4px;
  }

  .partner__columns {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .partner__inner {
    padding: 40px 20px 44px;
  }

  .partner__title {
    font-size: 34px;
  }

  .partner__desc {
    font-size: 14px;
  }

  .partner__watermark {
    font-size: 64px;
  }

  .partner__columns {
    grid-template-columns: 1fr;
    /* 모바일은 한 열만 */
    height: 420px;
  }

  .partner__card {
    height: 130px;
    border-radius: 18px;
  }

  .partner__eyebrow {

    width: 25.8%;
  }
}

/* ===== Vars & Base ===== */
.aboutus__section {
  --au-edge: 32px;
  /* 좌우 패딩 */
  --au-height: 340px;
  /* 배너 높이(원하면 조절) */
  --au-radius: 8px;
  --au-text: #fff;

  --au-ring: rgba(255, 255, 255, .85);
  --au-glow: 0 12px 32px rgba(0, 0, 0, .20);
  position: relative;
  color: var(--au-text);
  margin: 0;
}

.aboutus__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;

}

.aboutus__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.aboutus__bg::after {
  content: "";
  position: absolute;
  inset: 0;

}

/* ===== Content ===== */
.aboutus__inner {
  position: relative;
  z-index: 2;
  height: var(--au-height);
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px var(--au-edge);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left text */
.aboutus__title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.aboutus__desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  opacity: .9;
}

/* Right icons */
.aboutus__icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}

.aboutus__icon {
  display: grid;
  place-items: center;
}

.aboutus__ring {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 2px solid var(--au-ring);
  display: grid;
  place-items: center;
  position: relative;
  backdrop-filter: blur(0.5px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.aboutus__svg {
  width: 46px;
  height: 46px;
  color: #fff;
}

.aboutus__ring em {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #fff;
  opacity: .95;
}

.aboutus__ring:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  border-color: #fff;
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
}

.is-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .5s ease, transform .6s ease;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .aboutus__inner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 28px var(--au-edge) 32px;
    row-gap: 18px;
  }

  .aboutus__icons {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .aboutus__title {
    font-size: 32px;
  }

  .aboutus__desc {
    font-size: 13px;
  }

  .aboutus__icons {
    gap: 16px;
    justify-content: center;
  }

  .aboutus__ring {
    width: 92px;
    height: 92px;
  }

  .aboutus__svg {
    width: 36px;
    height: 36px;
  }

  .aboutus__ring em {
    font-size: 12px;
    bottom: 8px;
  }
}

/* ===== Scoped vars ===== */
.factory__section {
  --fx-accent: #ff8f33;
  --fx-muted: #666;
  --fx-gap: 28px;
  --fx-radius: 18px;
  --fx-shadow: 0 10px 28px rgba(0, 0, 0, .1);
  background: #fff;
  color: #222;
}

.factory__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 40px 44px;
  /* ← 타이틀/이미지 왼쪽선 동일 */
}

/* 상단: 좌/우 배치 */
.factory__row--head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 52px;
  margin-bottom: 22px;
}

.factory__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #c77c4a;
  background: #ffe7d4;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.factory__title {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0;
}

.factory__title span {
  color: var(--fx-accent);
}

.factory__lead {
  margin: 0;
  color: var(--fx-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* 하단: 가로 4장 — 간격/정렬 정확히 */
.factory__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--fx-gap);
  padding: 0;
  /* ✅ ul 기본 들여쓰기 제거 */
  margin: 18px 0 0;
  /* ✅ 좌우 0 → 타이틀과 완전 정렬 */
}

.factory__item {
  list-style: none;
}

.factory__card {
  /* ✅ figure 기본 margin: 1em 40px 초기화 (왼쪽 들여쓰기 원인) */
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--fx-radius);
  box-shadow: var(--fx-shadow);
  aspect-ratio: 16/9;
  background: #f3f3f3;
}

.factory__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.factory__card:hover img {
  transform: scale(1.04);
}

/* 스크롤 리빌 */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}

.is-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .45s ease, transform .55s cubic-bezier(.2, .6, .2, 1);
}

/* 반응형 */
@media (max-width:1024px) {
  .factory__row--head {
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }

  .factory__title {
    font-size: 38px;
  }

  .factory__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* === 모바일(<=640px) 2×2 그리드 강제 오버라이드 === */
@media (max-width: 640px) {
  .factory__list {
    display: grid !important;
    /* 가로 스크롤용 flex 무효화 */
    grid-template-columns: repeat(2, 1fr);
    /* 2열 */
    gap: 14px;
    padding: 0;
    margin: 10px 0 0;
    overflow: visible;
    /* 가로 스크롤 해제 */
    scroll-snap-type: none;
    /* 스냅 해제 */
  }

  .factory__item {
    flex: initial !important;
    /* flex 폭 설정 제거 */
    scroll-snap-align: initial;
  }
}

@font-face {
  font-family: 'NanumSquareNeo';
  src: url('/fonts/NanumSquareNeo-Variable.otf') format('opentype');
  font-weight: 100 900;
  /* Variable OTF면 이렇게 가변 폰트 범위 지정 가능 */
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'NanumSquareNeo', 'Pretendard', sans-serif !important;
}

/* ===== Aging Section (충돌 방지용 전용 클래스) ===== */
:root {
  --aging-text: #111;
  --aging-muted: #6b6b6b;
  --aging-container: 1200px;
}

.aging-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 150px) 0;
  background: #fff url('/1x/m/main_back.png') no-repeat center/cover;
  /* ✅ 배경 이미지 적용 */
  color: var(--aging-text);
  margin-bottom: 2%;
}

.aging__container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 32px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.aging__eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 18px)
}

.aging__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(28px, 5vw, 48px)
}

.aging__subtitle {
  margin: 0 0 clamp(14px, 1.6vw, 18px);
  font-weight: 900;
  font-size: clamp(18px, 3.2vw, 24px)
}

.aging__desc {
  margin: 0 0 clamp(14px, 2.2vw, 22px);
  color: var(--aging-muted);
  font-size: clamp(14px, 2.4vw, 16px)
}

.aging__arrow {
  width: 56px;
  height: 1.5px;
  background: #111;
  position: relative;
  margin-top: 18px
}

.aging__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-top: 2px solid #111;
  transform: rotate(45deg)
}

.aging__visual {
  position: relative;
  min-height: 420px
}



.aging__ring {
  position: absolute;
  inset: auto -20% -15% -10%;
  width: min(95vmin, 700px);
  height: min(95vmin, 700px);
  margin-left: auto;
  border-radius: 50%;
  opacity: .15;
  background:
    radial-gradient(transparent 56%, rgba(0, 0, 0, 0) 56%) center/100% 100%,
    radial-gradient(closest-side, #3b3b3b 72%, transparent 73%) center/100% 100%;
  -webkit-mask: radial-gradient(circle at center, transparent 0 56%, #000 56% 100%);
  mask: radial-gradient(circle at center, transparent 0 56%, #000 56% 100%);
}

.aging__pack {
  position: absolute;
  right: 19%;
  top: -88px;
  width: clamp(160px, 22vw, 278px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

.aging__meat {
  position: absolute;
  left: 6%;
  bottom: -110px;
  width: clamp(320px, 46vw, 610px);
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;

}

.aging__dot {
  position: absolute;
  left: 52%;
  top: 22%;
  width: clamp(60px, 9vw, 96px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #cfcfcf;
  opacity: .7;
}

.aging__dot--small {
  left: auto;
  right: 16%;
  top: auto;
  bottom: 12%;
  width: clamp(40px, 7vw, 72px);
  opacity: .55
}

/* 스크롤 리빌 */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .08s
}

.delay-2 {
  transition-delay: .16s
}

.delay-3 {
  transition-delay: .24s
}

.delay-4 {
  transition-delay: .32s
}

/* 반응형 */
@media (max-width:980px) {
  .aging__container {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .aging__visual {
    min-height: 420px
  }

  .aging__ring {
    inset: auto -30% -20% -30%
  }

  .aging__pack {
    right: 6%
  }

  .aging__meat {
    left: 0
  }
}

@media (max-width:600px) {
  .aging__visual {
    min-height: 360px
  }

  .aging__pack {
    position: absolute;
    right: 19%;
    top: -88px;
    width: clamp(160px, 22vw, 278px);
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
  }

  .aging__meat {
    position: absolute;
    left: 6%;
    bottom: 93px;
    width: clamp(320px, 46vw, 610px);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
  }

  .aging__arrow {
    width: 44px
  }
}

/* ===== (선택) 나눔스퀘어 네오 등록 — 파일 경로만 네 걸로 바꿔 ===== */
@font-face {
  font-family: 'NanumSquareNeo';
  src: url('/fonts/NanumSquareNeo-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NanumSquareNeo';
  src: url('/fonts/NanumSquareNeo-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== 섹션 레이아웃 ===== */
.feature-cards {
  padding: 0;
  margin: 0;
  background: transparent;
}

.fc__wrap {
  width: min(100vw, 1905px);
  /* 화면 꽉 + 최대 1905 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  /* 카드 간격 0 */
  border-radius: 24px 24px 0 0;
  /* 위쪽만 둥글게 */
  overflow: hidden;
  /* 둥근 모서리 밖 컷 */
  -webkit-mask-image: radial-gradient(#000, #000);
  /* Safari 1px 라인 방지 */
  mask-image: radial-gradient(#000, #000);
}

/* ===== 카드 ===== */
.fc__card {
  position: relative;
  display: block;
  overflow: hidden;
  /* 내부 요소 컷 */
  border-radius: 0 !important;
  /* 카드는 사각 고정 */
  aspect-ratio: 4/5;
  /* 비율 */
  background: transparent;
  text-decoration: none;
  color: #fff;
  line-height: 0;
  /* 인라인 갭 제거 */
  contain: paint;
  /* 서브픽셀 틈 완화 */
}

/* 이미지: 절대배치로 0~0 덮기 (회색 라인 방지) */
.fc__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transform: translateZ(0);
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.9);
}

/* 검은 오버레이(비활성 상태) */
.fc__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .50);
  /* 기본 어둡게 */
  opacity: 1;
  transition: opacity .35s ease;
  border-radius: 0 !important;
  /* 라운드 금지 */
  pointer-events: none;
}

/* 텍스트 레이어 */
.fc__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(16px, 3vw, 28px);
}

.fc__title {
  margin: 0 0 6px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  font-family: inherit;
  /* 기본은 페이지 폰트 */
  text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

.fc__subtitle {
  margin: 0;
  font-size: clamp(12px, 1.4vw, 15px);
  opacity: .95;
}

/* 기본/호버 텍스트 토글용 */
.fc__title .txt-hover,
.fc__subtitle .txt-hover {
  display: none;
}

.fc__card:hover .txt-default,
.fc__card.is-active .txt-default {
  display: none;
}

.fc__card:hover .txt-hover,
.fc__card.is-active .txt-hover {
  display: inline;
}

/* ===== Hover / Active ===== */
.fc__card:hover::after,
.fc__card.is-active::after {
  opacity: 0;
}

/* 오버레이 제거 */
.fc__card:hover img,
.fc__card.is-active img {
  transform: scale(1.05);
}

/* 이미지 확대 */
.fc__card:hover .fc__title,
.fc__card.is-active .fc__title {
  font-family: 'NanumSquareNeo', Pretendard, sans-serif;
  /* 폰트 변경 */
  font-weight: 700;
}

/* ===== 반응형 ===== */
@media (max-width:1024px) {
  .fc__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc__card {
    aspect-ratio: 3/4;
  }
}

@media (max-width:560px) {
  .fc__wrap {
    grid-template-columns: 1fr;
  }

  .fc__card {
    aspect-ratio: 16/11;
  }

  .fc__title {
    font-size: clamp(22px, 7vw, 30px);
  }
}

/* ===== 안정화 패치 (오버레이 삐져나옴/헤어라인 방지 강제) ===== */
.fc__card,
.fc__card::after,
.fc__card img {
  clip-path: inset(0 round 0) !important;
  /* 라운드 강제 없음 */
}


/* 래퍼: 위쪽만 라운드 + 클립 */
.feature-cards .fc__wrap {
  width: min(100vw, 1905px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  /* 라운드 밖 컷 */
}

/* 카드/이미지: 사각 강제 */
.feature-cards .fc__card {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  aspect-ratio: 4/5;
}

.feature-cards .fc__card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transform: translateZ(0);
  /* ✅ 오버레이 대신 필터로 어둡게 처리 (박스 밖으로 절대 안 셈) */
  filter: brightness(0.55) saturate(0.9);
  transition: transform .6s ease, filter .35s ease;
}

/* 🔧 기존에 만든 오버레이 전부 제거(있어도 무시) */
.feature-cards .fc__card::before,
.feature-cards .fc__card::after {
  content: none !important;
  background: transparent !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 텍스트 레이어 유지 */
.feature-cards .fc__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(16px, 3vw, 28px);
  color: #fff;
}

/* 호버: 이미지 밝게 + 확대, 폰트 변경 + 텍스트 교체 */
.feature-cards .fc__card:hover>img,
.feature-cards .fc__card.is-active>img {
  filter: brightness(1) saturate(1);
  transform: scale(1.05);
}

.fc__title .txt-hover,
.fc__subtitle .txt-hover {
  display: none;
}

.feature-cards .fc__card:hover .txt-default,
.feature-cards .fc__card.is-active .txt-default {
  display: none;
}

.feature-cards .fc__card:hover .txt-hover,
.feature-cards .fc__card.is-active .txt-hover {
  display: inline;
}

.feature-cards .fc__card:hover .fc__title,
.feature-cards .fc__card.is-active .fc__title {
  font-family: 'NanumSquareNeo', Pretendard, sans-serif;
  font-weight: 700;
}

/* 반응형 */
@media (max-width:1024px) {
  .feature-cards .fc__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-cards .fc__card {
    aspect-ratio: 3/4;
  }
}

@media (max-width:560px) {
  .feature-cards .fc__wrap {
    grid-template-columns: 1fr;
  }

  .feature-cards .fc__card {
    aspect-ratio: 16/11;
  }
}

/* 1) 컨테이너는 중앙 '고정'만 담당 (애니메이션 금지) */
.main__visual_slide {
  position: relative;
}

.main__visual_slide_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  /* 중앙 고정 */
  opacity: 1 !important;
  z-index: 3;
  pointer-events: none;
  text-align: center;
  right: auto;
  bottom: auto;
  /* 혹시 다른 규칙이 덮어쓰면 무효화 */
  animation: none !important;
  /* 기존 slideUp 무효화 */
}

/* 2) 등장 애니메이션은 '안쪽 이미지'에만 적용 */
.main__visual_slide_img img {
  display: block;
  width: auto;
  max-width: 80%;
  height: auto;
  opacity: 0;
  transform: translateY(28px);
  /* 아래에서 대기 */
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), opacity .8s;
  will-change: transform, opacity;
}

/* 3) 활성 슬라이드에서만 위로 샥 */
.swiper-slide-active .main__visual_slide_img img,
.swiper-slide-duplicate-active .main__visual_slide_img img {
  opacity: 1;
  transform: translateY(0);
}

/* (옵션) 작은 화면에서 이미지 폭만 살짝 키우기 */
@media (max-width: 1024px) {
  .main__visual_slide_img img {
    max-width: 86%;
  }
}

@media (max-width: 768px) {
  .main__visual_slide_img img {
    max-width: 92%;
  }
}

/* 4) 예전 키프레임/애니메이션 완전 무효화 (겹침 방지) */
@keyframes slideUp {
  from {}

  to {}
}

/* 비워서 효과 없앰 */
.swiper-slide-active .main__visual_slide_img {
  animation: none !important;
}



/* ===== 레이아웃 ===== */
.footbn {
  margin: 0;
  padding: 0;
  background: transparent
}

.footbn__inner {
  width: min(100vw, 1905px);
  /* ✅ 1902 꽉 */
  height: clamp(340px, 45vw, 1200px);
  /* 반응형 높이 */
  margin: -1px auto;
  position: relative;
  overflow: hidden;
}

/* ===== 이미지: 섹션 보일 때 서서히 확대 ===== */
.footbn__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  will-change: transform;
}

.footbn__inner.is-in .footbn__img {
  animation: footbnZoom 18s ease-out forwards;
  /* 1회 확대 후 유지 */
}

@keyframes footbnZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.08)
  }
}

/* 모션 줄이기 */
@media (prefers-reduced-motion:reduce) {
  .footbn__inner.is-in .footbn__img {
    animation: none
  }
}

/* ===== 텍스트 & 그라디언트 ===== */
.footbn__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .25) 0%,
      rgba(0, 0, 0, .15) 40%,
      rgba(0, 0, 0, .35) 100%);
}

.footbn__text {
  position: absolute;
  left: clamp(16px, 5vw, 105px);
  top: clamp(18px, 7vw, 108px);
  max-width: min(92%, 860px);
  color: #fff;
}

.footbn__eyebrow {
  margin: 0 0 10px;
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 700;
  opacity: .9
}

.footbn__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-weight: 900;

  letter-spacing: -.01em;
  font-size: clamp(22px, 3.8vw, 48px)
}

.footbn__sub {
  margin: 0;
  font-size: clamp(12px, 1.8vw, 20px);
  font-weight: 700;
  opacity: .95
}

/* ===== 스크롤 리빌(위로 올라옴) ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), opacity .7s
}

.delay-1 {
  transition-delay: .08s
}

.delay-2 {
  transition-delay: .16s
}

.footbn__inner.is-in .reveal {
  opacity: 1;
  transform: none
}

/* 모바일 보정 */
@media (max-width:560px) {
  .footbn__text {
    left: 16px;
    right: 16px;
    top: 18px
  }

  .footbn__title {
    line-height: 1.24
  }
}

/* ============ NOTICE styles ============ */
.notice-sec {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
}

.notice-sec__inner {
  width: min(100vw, 1600px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(16px, 3vw, 20px) clamp(36px, 5vw, 56px);
}

/* Head */
.notice-sec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.notice-sec__title {
  font-size: clamp(26px, 4.8vw, 44px);
  font-weight: 900;
  letter-spacing: .02em;
}

.notice-sec__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.notice-sec__circle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #111;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease;
}

.notice-sec__more:hover .notice-sec__circle {
  transform: translateX(2px);
}

/* Grid */
.notice-sec__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
  grid-template-columns: repeat(3, 1fr);
}

/* Card */
.notice-card {
  background: transparent;
}

.notice-card__link {
  display: block;
  text-decoration: none;
  color: #111;
}

.notice-card__thumb {
  margin: 0 0 12px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.notice-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.notice-card__title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 18px);
  text-align: center;
}

.notice-card__desc {
  margin: 0 0 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.notice-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: #111;
  position: relative;
  margin: 0 auto;
  display: flex;
  width: max-content;
}

.notice-card__cta i {
  display: block;
  width: 56px;
  height: 1px;
  background: #111;
  transition: transform .25s ease;
}

.notice-card__link:hover .notice-card__thumb img {
  transform: scale(1.04);
}

.notice-card__link:hover .notice-card__cta i {
  transform: translateX(6px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .notice-sec__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .notice-sec__grid {
    grid-template-columns: 1fr;
  }

  .notice-sec__title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .notice-card__desc {
    font-size: 13px;
  }
}

/* ============= CTA Duo styles ============= */
.cta-duo-sec {

  background: #fff;
}

.cta-duo {
  width: min(100vw, 1905px);
  /* ✅ 1902px까지 꽉 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(220px, 28vw, 415px);
}

/* 패널 공통 */
.cta-duo__panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  color: #fff;
}

.cta-duo__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-duo__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(24px, 3.6vw, 40px);
  letter-spacing: .01em;
}

.cta-duo__desc {
  margin: 0 0 18px;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.7;
  opacity: .92;
}

.cta-duo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .9);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.cta-duo__btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-1px);
}

/* 좌/우 배경 */
.cta-duo__panel--inquiry {
  background: #111;
}

.cta-duo__panel--catalog {
  background: #9f9f9f;
  /* 기본 회색 */
  background: linear-gradient(180deg, #a7a7a7 0%, #8e8e8e 100%);
}

/* 책자 이미지 효과 (우측 패널) */
.cta-duo__image {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: clamp(180px, 28vw, 420px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .28)) grayscale(10%);
  opacity: .9;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

.cta-duo__panel--catalog:hover .cta-duo__image {
  transform: translateY(-50%) rotate(-5deg) scale(1.03);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width:1024px) {
  .cta-duo {
    grid-template-columns: 1fr;
    /* 1열 스택 */
    min-height: unset;
  }

  .cta-duo__panel {
    padding: 40px 18px;
  }

  .cta-duo__image {
    position: absolute;
    right: 50%;
    top: auto;
    bottom: -16%;
    transform: translateX(50%) rotate(-6deg);
    width: min(72vw, 420px);
    opacity: .25;
    /* 텍스트 가독성 위해 투명도 낮춤 */
  }

  .cta-duo__panel--catalog:hover .cta-duo__image {
    transform: translateX(50%) rotate(-4deg) scale(1.03);
    opacity: .32;
  }
}

@media (max-width:560px) {
  .cta-duo__title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .cta-duo__btn {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* 카달로그 패널: 배경 이미지로 교체 */
.cta-duo__panel--catalog {
  position: relative;
  color: #fff;
  background: #8e8e8e;
  /* 로딩 전 기본색 */
}

/* 이미지 태그가 남아있다면 숨김(안전용) */
.cta-duo__panel--catalog .cta-duo__image {
  display: none !important;
}

/* 실제 배경 이미지 */
.cta-duo__panel--catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/1x/m/main_not_04.png") center/cover no-repeat;
  transform: scale(1);
  /* hover 확대용 */
  transition: transform .35s ease, opacity .35s ease;
  opacity: .9;
  /* 살짝 비치게 */
  z-index: 0;
}

/* 텍스트 가독성 오버레이 */
.cta-duo__panel--catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .28) 100%);
  z-index: 1;
}

/* 내용은 항상 위 */
.cta-duo__panel--catalog .cta-duo__content {
  position: relative;
  z-index: 2;
}

/* 호버 시 배경만 부드럽게 확대 */
.cta-duo__panel--catalog:hover::before {
  transform: scale(1.03);
  opacity: 1;
}

/* 반응형: 모바일에서 오버레이 조금 더 진하게 */
@media (max-width:1024px) {
  .cta-duo__panel--catalog::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .24) 0%, rgba(0, 0, 0, .35) 100%);
  }
}




/* ===== Floating Right Nav ===== */
.flynav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  pointer-events: none;
  /* 컨테이너는 클릭 통과 */
  font-family: inherit;
}

/* Toggle (항상 보임) */
.flynav__toggle {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.flynav__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.flynav__chev {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #111;
  transform: rotate(180deg);
  transition: transform .2s ease;
}

/* Menu panel */
.flynav__menu {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  overflow: hidden;
  min-width: 140px;
  transform: translateX(0);
  transition: transform .28s ease, opacity .28s ease;
}

.flynav--collapsed .flynav__menu {
  opacity: .0;
  transform: translateX(110%);
  pointer-events: none;
}

.flynav--collapsed .flynav__chev {
  transform: rotate(0deg);
}

/* Items */
.flynav__item {
  display: grid;
  grid-template-columns: 1fr;
  /* 한 열 */
  grid-template-rows: auto auto;
  /* 아이콘, 라벨 */
  justify-items: center;
  /* 가운데 정렬 */
  text-align: center;
  /* 라벨 중앙 정렬 */
  gap: 6px;
  padding: 12px 14px;
}

.flynav__item:last-child {
  border-bottom: 0;
}

.flynav__item:hover {
  background: #f7f7f7;
}

.flynav__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin: 0 auto 4px;
  /* 아이콘 아래 여백 */
  display: block;
}

.flynav__label {
  line-height: 1.1;
}

.flynav__label b {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.flynav__label em {
  font-size: 11px;
  font-style: normal;
  opacity: .7;
}

/* 전화 아이템(숫자 두 줄) 살짝 키움 */
.flynav__item--phone b {
  font-size: 14px;
}

.flynav__item--phone em {
  font-size: 13px;
  font-weight: 900;
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .flynav {
    right: 12px;
  }

  .flynav__menu {
    min-width: 128px;
  }
}

@media (max-width: 640px) {
  .flynav {
    right: 8px;
  }

  .flynav__toggle {
    width: 34px;
    height: 34px;
  }

  .flynav__item {
    grid-template-columns: 32px 1fr;
    padding: 10px 12px;
  }

  .flynav__icon {
    width: 22px;
    height: 22px;
  }
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce) {
  .flynav__menu {
    transition: none;
  }

  .flynav__toggle {
    transition: none;
  }
}



/* ===== 배너 기본 ===== */
.az-banner {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.az-banner>img {
  width: 100%;
  height: auto;
  display: block;
}

/* 문구 중앙정렬 */
.az-banner__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4vw;
  pointer-events: none;
}

/* 제목 */
.az-banner__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1.1;
  /* 위아래 간격 딱 붙게 */
  letter-spacing: -0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* 영문 부제 */
.az-banner__sub {
  color: rgba(255, 255, 255, .9);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 17px);
  line-height: 1.15;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  margin-top: 0.35em;
  /* 살짝만 띄움 */
}

@media (max-width: 640px) {
  .az-banner>img {
    width: 100%;
    height: 122px;
    display: block;
  }
}

/* ===== 가운데 정렬 + 시안 간격 ===== */
.feature-cards {
  /* 컨테이너/간격/미세이동(+-) */
  --container: 1600px;
  /* 두 카드 묶음 최대 폭 */
  --gap: 120px;
  /* 카드 간격 */
  --nudgeX: -40px;
  /* 데스크탑에서 좌우 미세 이동: +면 오른쪽, -면 왼쪽 */

  background: #fff;
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
  /* 가로 스크롤 방지 */
}

/* 핵심 래퍼: 중앙 정렬 고정 */
.fc__wrap {
  display: flex !important;
  /* grid 등 오버라이드 */
  justify-content: center !important;
  /* 가로 중앙 */
  align-items: flex-start !important;
  gap: var(--gap) !important;

  width: min(100%, var(--container)) !important;
  margin: 0 auto !important;
  /* 중앙 정렬 */
}

.fc__card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  width: 480px;
  /* 카드 폭 */
}

/* 오른쪽 카드만 살짝 아래 */
.fc__wrap>.fc__card:nth-child(2) {
  margin-top: 40px;
}

/* 이미지 기본 */
.fc__card img {
  display: block;
  width: 100%;
  height: auto;
}

/* === 데스크탑: 안전한 미세 이동 (스크롤 안 생김) === */
@media (min-width:1200px) {
  .fc__wrap {
    transform: translateX(var(--nudgeX));
  }
}

/* 반응형 */
@media (max-width:1200px) {
  .fc__wrap {
    gap: 80px !important;
    width: min(100%, 1200px) !important;
    transform: none;
    /* 태블릿은 정확히 중앙 */
  }

  .fc__card {
    width: 400px;
  }

  .fc__wrap>.fc__card:nth-child(2) {
    margin-top: 30px;
  }
}

@media (max-width:900px) {
  .fc__wrap {
    flex-direction: column;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
  }

  .fc__card {
    width: min(90vw, 420px);
  }

  .fc__wrap>.fc__card:nth-child(2) {
    margin-top: 0;
  }
}












.m5 {
  background: url(../1x/m/m5_bg.png) no-repeat center / cover;
  display: flex;
  padding-block: 10%;
  padding-inline: 10.5% 14.5%;
  align-items: start;
  justify-content: space-between;
  background-attachment: fixed;
}

.m5 .title {
  flex: 1 1 65%;
  width: 100%;
}

.m5 .title h2 {
  color: #000;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 50px;
}

.m5 .title p {
  color: #000;
  font-size: clamp(18px, 1.1vw, 22px);
  letter-spacing: -0.4px;
  line-height: 1.35;
  font-weight: 300;
}


.send {
  width: 100%;
  letter-spacing: -0.25px;
  color: #000;
}

.send>p {
  color: inherit;
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}

.send ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-block: 3.1rem;
}

.send ul li {
  display: inline-flex;
  color: #000;
  gap: 3rem;
}

.send ul li .input_box {
  display: flex;
  /* background: rgba(240, 240, 240, 0.4); */
  padding: 0.5rem;
  border-radius: 6px;
  min-width: 47%;
  margin-bottom: 1.7rem;
  color: #000;
  border-bottom: 1px solid #000;
}

.send ul li .input_box p {
  color: #000;
  font-size: 18px;
  margin-right: 1.25rem;
}

input:focus {
  outline: none;
}

.send ul li .input_box input {
  background: transparent;
  color: inherit;
  border: none;
  min-width: fit-content;
  width: 48%;
  box-sizing: border-box;
  font-size: 1rem;
  color: #000;
}

.send ul li .input_box2 {
  width: 100%;
  color: inherit;
}

.send textarea {
  border: 1px solid #000;
  background: rgba(240, 240, 240, 0.4);
  overflow: auto;
  min-height: 100px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  resize: none;
  padding: 0.625rem;
  color: #000;
  font-size: 1rem;

  border-radius: 0.75rem;

  &::placeholder {
    color: #fff;
    font-family: 'pretendard';
    font-size: 18px;
    margin-right: 1.25rem;
  }

  &:focus {
    outline: none;
  }
}

.send .check {
  display: flex;
  justify-content: space-between;
  margin-top: 1.325rem;
}

.send .check label {
  color: #000;
  font-size: 20px;
}

.send .check #info_check {
  position: relative;
  background: none;
}

.send .check #info_check::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../img/ic/check.png) center no-repeat;
}

.send .check .submit {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 0.45rem 4.75rem;
  min-width: 160px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  cursor: pointer;
}


/* responsive start */

@media screen and (max-width: 1441px) {
  header .nav {
    margin-left: 18%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 3.3rem;
  }

  .m1_swiper .txtbox p {
    font-size: 20px;
  }

  .m1_swiper .m1_toolbox {
    bottom: 9rem;
  }

  .m2_inner {
    width: calc(100% - 32px);
  }

  .m2_inner.active {
    clip-path: inset(16px 0 0 round 24px);
  }

  .m2 .flex_box .txt_box h2 {
    text-wrap: nowrap;
    font-size: 3.5rem;
    margin-bottom: 26px;
    margin-left: -8.3rem;
    margin-top: 6.6rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 20px;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 3.5rem;
  }

  .m2 .txt_wrap p {
    font-size: 20px;
  }

  .m2 .m2_toolbox {
    left: 15%;
  }

  .m3 {
    padding-inline: 5% 0;
  }

  .m3 .text_box {
    padding-left: 16px;
    flex: 0 0 22%
  }

  .m3 .text_box h2 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }

  .m3 .text_box p {
    font-size: 20px;
  }

  .m3 .desc {
    padding: 2rem;
  }

  .m3 .desc_top p {
    font-size: 1rem;
  }

  .m3 .desc_btm h4 {
    font-size: 1.75rem;
  }

  .m3 .desc_btm p {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .m4 {
    padding-inline: 5%;
  }

  .m4 .text_box h2 {
    font-size: 3rem;
    letter-spacing: -0.8px;
    padding-top: 1rem;
  }

  .m4 .text_box p {
    font-size: 20px;
  }

  .m5 {
    padding-inline: 5%;
  }

  footer .footer_inner {
    padding-inline: 5%;
  }
}

@media screen and (max-width : 1281px) {
  header .nav {
    margin-left: 3rem;
  }

  .m1_swiper .txtbox {
    left: 5%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2.75rem;
  }

  .m1_swiper .txtbox p {
    font-size: 1.125rem;
  }

  .m1_swiper .m1_toolbox {
    left: 5%;
  }

  .m2_inner {
    padding-inline: 5%;
  }

  .m2 .flex_box .txt_box h2 {
    margin-top: 3.5rem;
    font-size: 3rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 4rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 2.75rem;
  }

  .m2 .txt_wrap p {
    font-size: 1.125rem;
  }

  .m2 .m2_toolbox {
    left: 17%;
  }

  .m3 .text_box h2 {
    font-size: 3rem;
  }

  .m3 .text_box p {
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
  }

  .m3 .desc {
    width: 60%;
  }

  .m3 .desc_btm h4 {
    font-size: 1.5rem;
  }

  .m3 .desc_btm p {
    font-size: 14px;
  }

  .m4 .text_box h2 {
    font-size: 2.75rem;
  }

  .m4 .text_box p {
    font-size: 1.125rem;
    margin-block: 2rem 3rem;
  }

  .m5 .title h2 {
    font-size: 3.5rem;
  }

  .send>p {
    font-size: 1.125rem;
  }

  .top {
    width: 60px;
  }

  footer .footer_nav .footer_depth1 {
    gap: 2rem;
  }

  .mb .mb_depth>li {
    height: 25%;
  }
}

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

  header .header_wrap {
    justify-content: initial;
  }

  header .nav {
    margin-left: 1rem;
  }

  header .nav .depth>li {
    min-width: 120px;
    font-size: 1.125rem;
  }

  header .nav .depth2 {
    min-width: 120px;
    padding-inline: 0.5rem;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2.5rem;
  }

  .m1_swiper .txtbox p {
    font-size: 1rem;
  }

  .m1_swiper .m1_toolbox {
    bottom: 6rem;
  }

  .m1_swiper .m1_prev,
  .m1_swiper .m1_next {
    height: 35px;
    width: 35px;
    background-size: cover;
  }

  .m1_swiper .m1_pagi {
    left: 3.5rem;
    top: -0.8rem;
    font-size: 16px;
    width: 40px;
  }

  .m1 .m1_toolbox .autoplay_prog {
    right: 5.5rem;
  }

  .m2 .flex_box {
    padding-top: 5rem;
    gap: 2.3rem;
  }

  .m2 .flex_box .txt_box h2 {
    font-size: 2.5rem;
    margin-left: -6.3rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 2.25rem;
  }

  .m2 .txt_wrap p {
    font-size: 1rem;
  }

  .m2 .m2_toolbox {
    left: 22%;
  }

  .m2 .m2_prev {
    left: -13.5rem;
    width: 45px;
    height: 45px;
  }

  .m2 .m2_next {
    width: 45px;
    height: 45px
  }

  .m2 .m2_swiper .desc {
    bottom: 1rem;
    left: 1rem;
  }

  .m2 .m2_swiper .desc h4 {
    font-size: 1.125rem;
  }

  .m3 {
    padding-block: 6rem;
    padding-inline: 1rem 0;
  }

  .m3 .text_box h2 {
    font-size: 2.75rem;
  }

  .m3 .text_box p {
    font-size: 1rem;
  }

  .m3 .desc_btm h4 {
    font-size: 1.25rem;
    margin-block: 1rem;
  }

  .m3 .desc_btm p {
    font-size: 14px;
  }

  .m3 .desc_btm p br {
    display: none;
  }

  .m4 {
    padding-block: 10%;
    padding-inline: 1rem;
  }

  .m4 .text_box {
    flex: 0 0 45%;
  }

  .m4 .text_box h2 {
    font-size: 2rem;
  }

  .m4 .text_box p {
    font-size: 1rem;
  }

  .m5 {
    flex-direction: column;
    height: auto;
    padding-block: 10%;
  }

  footer .footer_btm {
    flex-direction: column-reverse;
    align-items: start;
    gap: 2rem;
    width: 100%;
  }

  footer .footer_nav {
    margin-top: -4rem;
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
  }

  footer .info_wrap {
    flex-direction: column-reverse;
  }

  footer .copy {
    align-items: start;
    justify-content: start;
  }
}

@media screen and (max-width : 900px) {
  header .header_wrap {
    justify-content: space-between;
  }

  header .nav {
    display: none;
  }

  .lang {
    margin-left: 28rem;
  }

  .mb .mb_depth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-items: center;
    gap: 2rem 0;
  }

  .mb .mb_depth>li {
    min-width: 100%;
    text-align: center;
    height: 100%;
  }

  .mb .mb_depth .depth2 {
    text-align: center;
  }

  .m1 {
    height: 100vh;
  }

  .m1_inner {
    height: 100%;
  }

  .m1_inner.active {
    height: 100%;
    clip-path: inset(0 0 0);
  }

  .m1_swiper {
    height: 100%;
  }

  .m1 .m1_inner .bg {
    height: 100%;
  }

  .m1 .m1_inner .bg img {
    height: 100%;
    object-fit: cover;
  }

  .m1_swiper .m1_toolbox {
    bottom: 2rem;
  }

  .m2 .flex_box .img_box {
    flex: 0 0 55%;
  }

  .m2 .flex_box .txt_box h2 {
    font-size: 2rem;
    margin-left: -7.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .m2 .flex_box .txt_box p {
    margin-bottom: 0.8rem;
  }

  .m2 .txt_wrap {
    margin-top: 5.5rem;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .m2 .m2_toolbox {
    left: 28%;
  }

  .m2 .m2_next {
    left: -9.5rem;
  }

  .m3 {
    flex-direction: column;
  }

  .m3 .text_box {
    padding-left: 0;
    flex: initial;
    width: 100%;
    text-align: center;
  }

  .m3 .text_box h2 br {
    display: none;
  }

  .m3 .text_box .view a {
    justify-content: center;
  }

  .m3 .desc {
    width: unset;
  }

  .m3 .desc_btm p br {
    display: block;
  }

  .m3 .swiper-slide {
    width: 100% !important;
  }

  .m3 .desc {
    width: 50%;
  }

  .m4 {
    flex-direction: column;
    gap: 2rem;
  }

  .m4 .text_box {
    flex: 1;
    width: 100%;
  }

  footer .footer_nav {
    display: none;
  }

  header .header_wrap h1 a img {
    width: 120px;
  }

  .lang>.lang_opt_wrap>a {
    width: 22px;
  }
}

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

  header .header_wrap {
    padding-inline: 20px;
  }

  header .header_wrap h1 a img {
    max-width: 75%;
  }

  .lang {
    margin-left: 10vw;
  }

  .mb .mb_depth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    row-gap: 2rem;
    padding-inline: 20px;
    align-content: center;
  }

  .mb .mb_depth>li h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .mb .mb_depth>li:nth-child(even) {
    border: none;
  }

  .mb .mb_depth .depth2>li a {
    font-size: 1rem;
  }

  .view img {
    width: 40px;
  }

  .m1_swiper {
    height: 100%;
  }

  .m1_swiper .txtbox h2 {
    font-size: 2rem;
  }

  .m1_swiper .txtbox p {
    font-size: 14px;
  }

  .m1_swiper .m1_toolbox {
    width: 100%;
    left: 0;
    bottom: 3rem;
  }

  .m1 .m1_toolbox .autoplay_prog {
    right: 18%;
    width: 50%;
  }

  .m2 .flex_box {
    flex-direction: column;
  }

  .m2 .flex_box .txt_box h2 {
    margin-left: 0;
  }

  .m2 .flex_box2 .txt_box h2 {
    margin-right: 0;
    font-size: 1.5rem;
  }

  .m2 .flex_box .txt_box p {
    font-size: 14px;
  }

  .m2 .txt_wrap {
    flex-direction: column;
  }

  .m2 .txt_wrap .fs60 {
    font-size: 1.5rem;
  }

  .m2 .txt_wrap p {
    font-size: 14px;
  }

  .m2 .txt_wrap p br {
    display: none;
  }

  .m2 .m2_toolbox {
    left: 68%;
    bottom: 6rem;
  }

  .m3 {
    padding-inline: 0;
    padding-block: 3rem;
  }

  .m3 .text_box {
    margin-bottom: 2rem;
  }

  .m3 .text_box h2 {
    font-size: 2rem;
  }

  .m3 .text_box p {
    margin-bottom: 1rem;
  }

  .m3 .m3_swiper {
    width: 100%;
    padding: 0rem;
  }

  .m3 .swiper-slide {
    width: fit-content !important;
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .m3 .desc {
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
  }

  .m3 .swiper-slide .imgbox img {
    transform: rotate(90deg);
    border-radius: 0 1.5rem 1.5rem 0;
    width: 100%;
  }

  .m4 {
    padding-block: 2rem 6rem;
  }

  .m4 .text_box h2 {
    font-size: 1.5rem;
  }

  .m4 .text_box p {
    font-size: 14px;
    margin-block: 1rem 3rem;
  }

  .m5 {
    padding-block: 6rem 2rem;
  }

  .m5 .title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .m5 .title p {
    margin-bottom: 3rem;
  }

  .send>p {
    font-size: 14px;
  }

  .send ul li .input_box p {
    font-size: 1rem;
  }

  .send ul li {
    flex-direction: column;
  }

  .send .check {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .send .check label,
  .send textarea,
  .send textarea::placeholder {
    font-size: 14px;
  }

  .send .check .btn_submit {
    margin: 0 auto;
  }

  .send .check .submit {
    font-size: 1rem;
    padding: 0.45rem 2.75rem;
    margin-top: 1.25rem;
  }

  footer .top {
    right: 1rem;
  }

  footer .info_box {
    font-size: 14px;
  }

  footer .info_box .add p:nth-child(1) {
    margin-bottom: 1rem !important;
  }

  footer .copy {
    flex-direction: column;
  }

  footer .footer_top img {
    width: 120px;
  }

}





.hero-banner__img--pc {
  display: block;
}

.hero-banner__img--mo {
  display: none;
}


@media (max-width: 768px) {

  /* PC 배너 숨김 */
  .hero-banner__img--pc {
    display: none !important;
  }

  /* 모바일 배너 표시 */
  .hero-banner__img--mo {
    display: block !important;
  }

  /* 모바일에서 로고/고양이/나비 전부 숨김 */
  .hero-banner__logo,
  .hero-banner__cat,
  .hero-banner__butterfly {
    display: none !important;
  }

  .hero-banner__text h2 {
    margin: 20px 0 .6em;
    font-size: 18px !important;
    font-weight: 300;
  }

}

/* 폭 줄어들 때 배너 밀림 방지 */
@media (max-width: 1024px) {
  .hero-banner__media {
    left: 0;
    transform: none;
    width: 100%;
  }

  .hero-banner__text h2 {
    margin: 20px 0 .6em;
    font-size: clamp(18px, 2vw, 38px);
    font-weight: 300;
  }
}



.hero-banner__media {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  line-height: 0;
}

/* 두 배너 이미지 공통 */
.hero-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* 기본은 PC용만 보이게 */
.hero-banner__img--pc {
  display: block;
}

.hero-banner__img--mo {
  display: none;
}

/* 기존 로고 크기 그대로 — 절대 건드리지 않음 */
.hero-banner__logo {
  position: absolute;
  top: 20%;
  left: 10%;
  height: auto;
  width: auto;
  /* 원본 비율 유지 */
  max-width: none;
  /* 자동 제한 없음 */
}

/* ✅ 텍스트만 추가 (로고 바로 밑) */
.hero-banner__text {
  position: absolute;
  top: calc(20% + 120px);
  /* 로고 아래쪽 (로고 높이에 따라 조정) */
  left: 10%;
  color: #fff;
  line-height: 1.4;
}

.hero-banner__text h2 {
  margin: 20px 0 .6em;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
}

.hero-banner__text h2 strong {
  font-weight: 800;
  color: #fff;
}

.hero-banner__text p {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
}

/* 반응형: 화면 줄어들 때 글자만 축소 */
@media (max-width: 768px) {
  .hero-banner__text {
    top: calc(20% + 90px);
    left: 8%;
  }
}

@media (max-width: 480px) {
  .hero-banner__text {
    top: calc(20% + 70px);
    left: 6%;
  }
}

/* 고양이 GIF: 왼쪽 아래 원형 이미지 위 자리 */
.hero-banner__cat {
  position: absolute;
  bottom: 18%;
  left: 22%;
  width: clamp(80px, 22vw, 200px);
  height: auto;
  pointer-events: none;
}

/* 반응형 보정 */
@media (max-width: 1024px) {
  .hero-banner__cat {
    bottom: 16%;
    left: 20%;
    width: clamp(70px, 12vw, 140px);
  }
}

@media (max-width: 600px) {
  .hero-banner__cat {
    bottom: 12%;
    left: 18%;
    width: clamp(60px, 22vw, 160px);
  }
}


/* 🦋 나비 gif 위치 */
.hero-banner__butterfly {
  position: absolute;
  top: 10%;
  right: 21%;
  width: clamp(60px, 7vw, 120px);
  height: auto;
  pointer-events: none;
}



/* 반응형 */
@media (max-width: 1024px) {
  .hero-banner__butterfly {
    top: 12%;
    right: 17%;
    width: clamp(50px, 10vw, 100px);
  }
}

@media (max-width: 600px) {
  .hero-banner__butterfly {
    top: 10%;
    right: 14%;
    width: clamp(40px, 16vw, 90px);
  }
}




/* ===========================
   태블릿 이하 공통(배너 밀림/위치 보정)
=========================== */
@media (max-width: 1024px) {

  /* 배너 가운데 밀리는 거 방지 */
  .hero-banner__media {
    left: 0;
    transform: none;
    width: 100%;
  }

  /* 로고 위치 살짝 조정 */
  .hero-banner__logo {
    top: 12%;
    left: 6%;
    width: 45%;
  }

  /* 텍스트 위치/크기 보정 */
  .hero-banner__text {
    top: calc(20% + 70px);
    left: 8%;
  }

  /* 고양이 / 나비 위치 보정 (태블릿에서만 사용) */
  .hero-banner__cat {
    bottom: 12%;
    left: 18%;
    width: clamp(60px, 22vw, 160px);
  }

  .hero-banner__butterfly {
    top: 12%;
    right: 17%;
    width: clamp(50px, 10vw, 100px);
  }
}

/* ===========================
   모바일(반응형) 전용
   - 로고 / 고양이 / 나비 숨기기
   - 텍스트 위치 조금 더 내리기
=========================== */
@media (max-width: 768px) {
  .hero-banner__media {
    left: 0;
    transform: none;
    width: 100%;
  }

  .hero-banner__text {
    top: calc(6% + 50px);
    left: 5%;
  }

  /* 반응형에서 로고 / 고양이 / 나비 모두 제거 */
  .hero-banner__logo,
  .hero-banner__cat,
  .hero-banner__butterfly {
    display: none !important;
  }
}

















/* 기본 섹션 */
.fmg-about {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0
}

/* 배경 */
.fmg-bg {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* 배경층 */
  pointer-events: none;
}

.fmg-bg img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  /* 화면보다 크게 → 잘리지 않게 */
  max-width: none;
  height: auto;

}

/* 왼쪽 텍스트 */
.fmg-copy {
  position: relative;
  z-index: 2;
  width: min(90vw, 1180px);
  margin: 0 auto;
  text-align: left;
  padding-left: 4%
}

.eyebrow {
  color: #2b8fdc;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 8px
}

.title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0 0 14px
}

.desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 18px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: #27a5f2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none
}

/* 슬라이드 */
.fmg-slide {
  position: relative;
  margin: -78px auto 0;
  width: clamp(520px, 50vw, 900px);
  text-align: center;
  z-index: 1
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
  border-radius: 0;
  /* 타원 제거 */
  box-shadow: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease
}

.slide.is-active {
  opacity: 1
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 이미지 비율 유지 */
  background: #fff;
  /* 여백 부분 흰색 */
  display: block;
}

/* 캡션: 슬라이드 안쪽 오른쪽 */
.caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}

/* 2) 안쪽 래퍼: 우측 여백/우측 정렬 → 좌측 */
.cap-wrap {
  width: min(42%, 480px);
  padding-right: 0;
  /* ← 기존 6% 지우고 */
  padding-left: 0%;
  /* ← 왼쪽 여백 추가 */
  text-align: left;
  /* ← 기존 right 를 left 로 */
  color: #fff;
  text-shadow:
    0 0 2px rgba(0, 0, 0, .6),
    0 8px 18px rgba(0, 0, 0, .45);
}

.caption h3 {
  margin: 0 0 8px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05
}

.caption p {
  margin: 0;
  font-size: 16px;
  font-weight: 600
}

/* 도트 */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #cfe6fb;
  cursor: pointer
}

.dots button.is-active {
  background: #2b8fdc
}

/* 일러스트 */
.illust-dog {
  position: absolute;
  right: -6%;
  bottom: 5%;
  width: 980px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.illust-butterfly {
  position: absolute;
  top: -5%;
  right: 10%;
  width: clamp(60px, 7vw, 120px);
  height: auto;
  animation: fly 4s ease-in-out infinite alternate
}

@keyframes fly {
  0% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-10px) rotate(3deg)
  }

  100% {
    transform: translateY(0) rotate(-3deg)
  }
}

/* 반응형 */
@media (max-width:980px) {
  .fmg-copy {
    text-align: center;
    padding-left: 0
  }

  .fmg-slide {
    width: 100%;
    margin: 23px auto 0;
  }

  .cap-wrap {
    width: min(60%, 520px);
    padding-right: 4%
  }

  .caption h3 {
    font-size: 30px
  }

  .caption p {
    font-size: 14px
  }
}




/* 섹션 기본 */
.scene-3se {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  z-index: 10;
}

@supports not (overflow-x: clip) {
  .scene-3se {
    overflow-x: hidden;
  }
}

/* 배경 풀블리드 */
.scene-3se__fullbleed {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  line-height: 0;
  pointer-events: none;
  user-select: none;
}

@supports not (width:100dvw) {
  .scene-3se__fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.scene-3se__fullbleed img {
  display: block;
  width: 100%;
  height: auto;
}

/* 오버레이 */
.scene-3se__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===== 핵심: 전환 이미지 위치 고정 (두 상태 공통) ===== */
.scene-3se__hero {
  position: absolute;
  left: 8%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: min(54vw, 800px);
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, .15));
  transition: transform .6s ease, opacity .25s ease;
  z-index: 2;
  pointer-events: none;
}

.scene-3se__hero.is-zoom {
  transform: translate(-50%, -50%) scale(1.08);
}

/* 텍스트 블록: 이미지 옆으로 이동 */
.scene-3se__text {
  position: absolute;
  left: 56%;
  /* 이미지 좌표에 맞춰 우측으로 */
  top: 38%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 3;
  pointer-events: auto;
}

.scene-3se__sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255, 255, 255, .8);
  margin-bottom: 8px;
}

.scene-3se__title {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 45px;
}

.scene-3se__desc {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 2.0;
  color: rgba(255, 255, 255, .9);
}

.scene-3se__desc .line {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  /* 글자와 줄 간격 */
}

.scene-3se__desc .line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0.9;
}

/* 의사 캐릭터 */
.scene-3se__doctor {
  position: absolute;
  left: clamp(47px, 22vw, 157px);
  bottom: clamp(8px, 6vw, 128px);
  width: min(18vw, 220px);
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* 버튼 */
.scene-3se__btns {
  position: absolute;
  right: clamp(12px, 6vw, 80px);
  top: clamp(60px, 49vh, 452px);
  display: grid;
  gap: clamp(12px, 2.4vw, 22px);
  z-index: 4;
  pointer-events: auto;
}

.scene-3se__btn {
  width: clamp(56px, 8dvw, 74px);
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.scene-3se__btn:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.scene-3se__btn.is-active {
  background: #2c7dff;
  box-shadow: 0 14px 34px rgba(44, 125, 255, .45);
}

.scene-3se__btn-icon img {
  width: 68%;
  height: auto;
  transition: filter .25s ease;
  filter: brightness(0) saturate(100%) invert(53%) sepia(97%) saturate(2325%) hue-rotate(187deg);
  /* ✅ 기본 파랑(#27a5f2) */
}

.scene-3se__btn.is-active .scene-3se__btn-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg);
  /* ✅ 눌렸을 때 흰색 */
}

.scene-3se__btn-text {
  font-weight: 800;
  font-family: Pretendard, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(12px, 2.8vw, 16px);
  color: #2c7dff;
}

.scene-3se__btn.is-active .scene-3se__btn-text {
  color: #fff;
}

/* 등장 효과 */
.js-appear {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.js-appear.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* 반응형: 고정 좌표 유지하면서 충돌 방지 */
@media (max-width: 1400px) {
  .scene-3se__text {
    left: 58%;
    top: 40%;
  }
}

@media (max-width: 1200px) {
  .scene-3se__hero {
    width: min(58vw, 820px);
  }

  .scene-3se__text {
    left: 60%;
    top: 42%;
  }
}

@media (max-width: 1024px) {
  .scene-3se__hero {
    width: min(64vw, 760px);
  }

  .scene-3se__text {
    left: 62%;
    top: 44%;
  }
}

@media (max-width: 820px) {
  .scene-3se__hero {
    left: 50%;
    top: 44%;
    width: 80vw;
  }

  /* 모바일은 중앙 보정 */
  .scene-3se__text {
    position: static;
    transform: none;
    text-align: center;
    margin: 20px auto 0;
    width: min(92%, 720px);
  }

  .scene-3se__btns {
    top: clamp(24px, 14vh, 140px);
  }
}

@media (max-width: 520px) {
  .scene-3se__hero {
    width: 88vw;
    top: 46%;
    left: 50%;
  }

  .scene-3se__doctor {
    width: 28vw;
  }
}









/* ===== 섹션 ===== */
.scene-4se {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  line-height: 0;
  margin: -38%;
  padding: 0;
  background: none;
  z-index: 0;
}

/* ===== 배경 ===== */
.scene-4se__fullbleed {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  line-height: 0;
  position: relative;
  z-index: 1;
}

@supports not (width: 100dvw) {
  .scene-4se__fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.scene-4se__fullbleed img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* ===== 버튼 (디자인만 변경) ===== */
.scene-4se .btn {
  position: absolute;
  /* 기존 위치 그대로 사용 */
  top: 59%;
  left: 30%;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  color: #27a5f2;
  /* 파랑 텍스트 */
  background: #fff;
  /* 흰 배경 */

  /* 연파랑 보더 */
  border-radius: 999px;
  /* 캡슐형 */
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  /* 은은한 그림자 */

  text-decoration: none;
  transition: all .22s ease;
}

/* 우측 화살표 */
.scene-4se .btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #27a5f2;
  border-top: 2px solid #27a5f2;
  transform: rotate(45deg);
  margin-left: 2px;
}

/* Hover */
.scene-4se .btn:hover {
  background: #27a5f2;
  color: #fff;
  border-color: #27a5f2;
  box-shadow: 0 14px 30px rgba(39, 165, 242, .35);
}

.scene-4se .btn:hover::after {
  border-color: #fff;
}

/* ===== 라벨 ===== */
.scene-4se__labels {
  position: absolute;
  left: 50.7%;
  bottom: 25%;
  transform: translateX(-50%);
  width: min(85%, 1200px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: center;
  z-index: 3;
  line-height: normal;
}

.label {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #222;
}

.label h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.25;
}

.label p {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
  color: #333;
}

/* ===== 스크롤 등장 ===== */
.js-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-fade.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 반응형 ===== */
@media (max-width: 820px) {
  .scene-4se__labels {
    position: static;
    transform: none;
    width: min(92%, 720px);
    margin: 18px auto 0;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .scene-4se .btn {
    top: 20px;
    left: 20px;
    font-size: 12px;
    padding: 8px 16px;
  }
}


.product-paw {
  position: absolute;
  top: 35%;
  /* 텍스트 오른쪽 위 */
  left: 105%;
  /* 텍스트 바로 옆 */
  width: 80px;
  /* 기본 크기 */
  height: auto;
  pointer-events: none;
  transition: all .3s ease;
}

/* 1280px 이하 — 화면 좁아질 때 살짝 줄이기 */
@media (max-width: 1280px) {
  .product-paw {
    top: 40%;
    left: 102%;
    width: 60px;
  }
}

/* 1024px 이하 — 태블릿에서 텍스트 아래로 자연스럽게 이동 */
@media (max-width: 1024px) {
  .product-paw {
    position: relative;
    display: block;
    margin: 16px auto 0;
    top: 0;
    left: 0;
    width: 70px;
  }
}

/* 768px 이하 — 모바일에서는 더 작게 중앙 정렬 */
@media (max-width: 768px) {
  .product-paw {
    width: 50px;
    margin-top: 12px;
  }
}


.product {
  position: relative;
  background: #fff;
  padding: 214px 0 0px;
  overflow: hidden;
}

.product__stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 좌측 텍스트 */
.product-info {
  position: absolute;
  left: 12%;
  top: -26%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: left;
  pointer-events: none;
}

.product-info__sub {
  color: #27a5f2;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.product-info__title {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  color: #111;
  margin: 0;
}

/* 우측 버튼 */
.product-btn {
  position: absolute;
  right: 12%;
  top: -19%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #27a5f2;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(39, 141, 255, .28);
}

.product-btn:hover {
  filter: brightness(1.05);
}

/* 슬라이더 */
.product-swiper {
  padding-top: 60px;
  padding-bottom: 70px;
}

.product-swiper .swiper-wrapper {
  align-items: stretch;
}

/* 카드 */
.product-swiper .swiper-slide {
  width: 420px;
  text-align: center;
  opacity: 1;
  /* ← 흐림효과 제거 */
  transition: transform .4s ease;
}

.product-swiper .swiper-slide-active {
  z-index: 2;
}

.slide-img {
  position: relative;
  width: 420px;
  aspect-ratio: 1/1;
  margin: 0 auto 18px;
}

.slide-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #eef1f5;
  z-index: 0;
}

.slide-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  transform: translate(-50%, -50%);
  transition: transform .5s ease;
  z-index: 1;
}

/* 가운데 카드만 확대 */
.product-swiper .swiper-slide-active .slide-img img {
  transform: translate(-50%, -50%) scale(1.27);
}

.slide-brand {
  margin: 10px 0 4px;
  font-weight: 800;
  font-size: 16px;
  color: #222;
}

.slide-name {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #666;
}

/* 페이지네이션 */
.product-swiper .swiper-pagination-bullet {
  background: #cfd6e4;
  opacity: 1;
}

.product-swiper .swiper-pagination-bullet-active {
  background: #2478ff;
}

/* 반응형 */
@media (max-width: 1280px) {
  .product-info {
    left: 8%;
    top: 27%;
  }

  .product-btn {
    right: 8%;
    top: 26%;
  }

  .product-swiper .swiper-slide {
    width: 360px;
  }

  .slide-img {
    width: 240px;
  }
}

@media (max-width: 1024px) {
  .product-info {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-banner__text p {
    display: none;
  }

  .product-info__title {
    font-size: 30px;
  }

  .product-btn {
    position: static;
    transform: none;
    margin: 8px auto 20px;
    margin-left: 30%;
  }

  .product {
    padding-top: 25px;
  }
}

@media (max-width: 768px) {
  .product-swiper .swiper-slide {
    width: 85%;
  }

  .slide-img {
    width: 220px;
  }
}



/* 기본은 안 보이게 */
.scene-3se__mobile {
  display: none;
  text-align: center;
}

.scene-3se__mobile img {
  display: block;
  width: 100%;
  height: auto;
}

/* ✅ 모바일일 때: 기존 요소 전부 숨기고 이거만 보이게 */
@media (max-width: 820px) {

  .scene-3se__fullbleed,
  .scene-3se__layer {
    display: none;
    z-index: 0;
  }

  .scene-3se__mobile {
    display: block;
  }
}


/* 기본은 안 보이게 */
.scene-4se__mobile {
  display: none;
  text-align: center;
}

.scene-4se__mobile img {
  display: block;
  width: 100%;
  height: auto;
}

/* ✅ 4SE 모바일일 때: 기존 요소 전부 숨기고 이것만 표시 */
@media (max-width: 820px) {

  .scene-4se__fullbleed,
  .scene-4se__labels,
  .scene-4se .btn {
    display: none;
    margin-top: -12%;
  }

  section.scene-facility {
    padding: 0;
    margin-top: 0;
  }

  section.scene-4se {
    margin-top: -37%;
  }

  .scene-4se__mobile {
    display: block;
  }
}

/* ✅ 모바일에서 4SE 모바일 이미지 사이즈 조정 */
@media (max-width: 820px) {

  .scene-4se {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  /* 모바일 전용 이미지 폭 정리 */
  .scene-4se__mobile img {
    width: 100%;
    max-width: 480px;
    /* 폰 화면 안에 딱 맞게 */
    height: auto;
    margin: 0 auto;
  }
}






.scene-facility {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 120px 0;
  margin-top: 5%;
}

.facility__inner {
  width: min(90%, 1300px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* 왼쪽 텍스트 */
.facility__left {
  flex: 1 1 50%;
  position: relative;
  color: #222;
}

.facility__decor {
  position: absolute;
  top: -90px;
  left: 182px;
  width: 200px;
  height: auto;
  pointer-events: none;
}

.facility__small {
  color: #0aa8e2;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.facility__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.facility__desc {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 인증 이미지 */
.facility__certs img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-bottom: 12px;
}

/* ✅ AAFCO 텍스트 옆 배치 */
.facility__aafco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.facility__aafco img {
  width: 200px;
  height: auto;
}

.facility__aafco p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* 오른쪽 이미지 */
.facility__right {
  flex: 1 1 50%;
  text-align: right;
}

.facility__right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 등장 효과 */
.js-fade-up,
.js-fade-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.js-fade-right {
  transform: translateX(40px);
}

.is-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* 반응형 */
@media (max-width: 960px) {
  .facility__inner {
    flex-direction: column;
    gap: 60px;
  }

  .facility__left,
  .facility__right {
    flex: 1 1 100%;
    text-align: center;
  }

  .facility__decor {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 20px;
  }

  .facility__aafco {
    flex-direction: column;
    text-align: center;
  }
}







/* ========== 5번째 섹션 공통 ========== */
.section-5se {
  width: 100%;
  background: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.section-5se__inner {
  width: min(92%, 1454px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 105px;
  flex-wrap: wrap;
}

/* 왼쪽 영상 */
.section-5se__video {
  flex: 1 1 600px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* 오른쪽 콘텐츠 */
.section-5se__content {
  position: relative;
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec5__text {
  margin-bottom: 32px;
}

.sec5__label {
  font-size: 14px;
  color: #27a5f2;
  margin-bottom: 8px;
  font-weight: 600;
}

.sec5__title {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin-bottom: 12px;
}

.sec5__desc {
  font-size: 16px;
  color: #555;
  margin-bottom: -30px;
}

/* 버튼 + 강아지 이미지 나란히 */
.sec5__cta-row {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  margin-top: 9%;
}

.sec5__btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0072ff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .25s ease;
  box-shadow: 0 6px 16px rgba(0, 114, 255, .25);
}

.sec5__btn:hover {
  background: #005fd4;
  transform: translateY(-1px);
}

.sec5__dog-inline {
  width: clamp(72px, 8vw, 120px);
  height: auto;
  display: block;
}

/* 하단 문구 이미지(2번) */
.sec5__phrase {
  width: 100%;
  max-width: 420px;
  opacity: .9;
  margin-top: 8px;
}

/* 반응형 */
@media (max-width: 1024px) {
  .section-5se__inner {
    flex-direction: column;
    gap: 0px;
  }

  .section-5se__content {
    align-items: center;
    text-align: left;
  }

  .sec5__cta-row {
    gap: 12px;
    margin-top: 15%;
  }

  .sec5__phrase {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .section-5se {
    padding: 0px 0;
    margin-top: 25%;
  }

  .sec5__btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  .sec5__dog-inline {
    width: 80px;
  }

  .sec5__phrase {
    max-width: 300px;
  }
}

/* ===== READ MORE 버튼: 시안 스타일로 교체 ===== */
.sec5__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* 텍스트-화살표 간격 */
  padding: 10px 22px;
  background: #27a7ff;
  /* 시안계 블루 */
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2px;
  border-radius: 999px;
  /* 알약 형태 */
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(39, 167, 255, .25);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.sec5__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  /* > 모양 */
  display: inline-block;
}

.sec5__btn:hover {
  background: #1494f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 148, 240, .28);
}

.sec5__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(20, 148, 240, .25);
}











/* ===== 섹션 배경: 이미지 통 ===== */
.section-6se {
  width: 100%;
  padding: 0;
  background: url("/1x/s1/6se.png") center/cover no-repeat;
}

/* 내부 스테이지: 비율 고정 컨테이너(텍스트 포지셔닝 기준) */
.se6-stage {
  position: relative;
  width: min(92%, 1280px);
  margin: 0 auto;
  aspect-ratio: 16 / 4.2;
  /* 최신 브라우저 */
  height: clamp(220px, 26vw, 380px);
  /* 폴백 높이 */
}

/* 텍스트 공통(박스·아이콘 없음, 글자만) */
.se6-link {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #111;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.se6-link .en {
  font-weight: 800;
  font-size: clamp(14px, 1.05vw, 18px);
}

.se6-link .kr {
  font-size: clamp(12px, .9vw, 14px);
  color: #6b6b6b;
}

/* ----- 말풍선 안쪽 좌표(퍼센트) ----- */
/* 좌우 말풍선 중심에 오도록 조정 */
.se6-link--leaflet {
  --x: 35%;
  --y: 65%;
  left: var(--x);
  top: var(--y);
}

.se6-link--location {
  --x: 64.5%;
  --y: 65%;
  left: var(--x);
  top: var(--y);
}

/* 반응형 미세 보정(배경 크롭/비율 변화 대응) */
@media (max-width: 1024px) {
  .se6-link--leaflet {
    --x: 45.5%;
    --y: 63%;
  }

  .section-5se__video {
    flex: none;
  }

  .se6-link--location {
    --x: 68%;
    --y: 63%;
  }
}

@media (max-width: 640px) {
  .se6-stage {
    height: clamp(220px, 40vw, 320px);
  }

  .se6-link--leaflet {
    --x: 28%;
    --y: 61%;
  }

  .se6-link--location {
    --x: 71.5%;
    --y: 61%;
  }
}