.container {
}

#subVisual {
  width: 100%;
  height: 69rem;
  max-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  /* background-size: cover; */
  background-attachment: fixed;
  animation: scaleDown 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  overflow: hidden;
  /* &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    animation: scaleDown 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  } */
  @media (max-width: 1023px) {
    height: 36rem;
    /* &::before {
      background-attachment: scroll;
    } */
  }
}
@keyframes scaleDown {
  from {
    /* transform: scale(1.2); */
    /* transform: scale(1.1); */
    background-size: 120% 120%;
  }

  to {
    /* transform: scale(1.0); */
    /* transform: scale(1); */
    background-size: 100% 100%;
  }
}

.bg01 {
  background-image: url("../images/sub/visual_01.png");
}
.bg02 {
  background-image: url("../images/sub/visual_02.png");
}
.bg03 {
  background-image: url("../images/sub/visual_03.png");
  /* background-attachment: scroll !important;  */
}
.bg04 {
  background-image: url("../images/sub/visual_04.png");
}
.bg05 {
  background-image: url("../images/sub/visual_05.png");
  /* background-attachment: scroll !important;  */
}

.subTitle {
  position: relative;
  z-index: 1;
  font-size: 6rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  &.fullWidth {
    background: none;
    border: none;
  }
  &.fullWidth #subContents {
    width: 100%;
    padding-left: 0;
  }
  @media (max-width: 1023px) {
    font-size: 48px;
  }
}

/* subContents */
#subWrap {
  position: relative;
  padding-bottom: 20rem;
  @media (max-width: 1023px) {
    margin-top: 0; /* 모바일에서는 포지션이 relative이므로 마진 제거 */
  }
}
.bgobject {
  background:
    url("../images/common/sub_bgLeft.svg") left top -5rem no-repeat,
    url("../images/common/sub_bgRight.svg") right -20rem bottom no-repeat;
  background-size: 60rem 60rem;
}

/* SNB 스타일 정리 */
.snbWrap {
  background: var(--white);

  .snb {
    margin-top: 14rem;

    ul {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      /* 해결책: 보더를 ul에 주고 padding을 살짝 주어 라인이 잘리지 않게 함 */
      border-bottom: 2px solid #bfbfbf;
      position: relative;

      li {
        position: relative;
        flex-shrink: 0; /* 자식 요소 크기 고정 */

        a {
          display: block;
          padding: 2rem 3rem;
          font-size: 2rem;
          font-weight: 500;
          color: var(--gray50);
          position: relative;
          text-decoration: none;
          transition: color 0.3s ease;

          &::before,
          &::after {
            content: "";
            position: absolute;
            bottom: -2px; /* ul의 border-bottom과 일치 */
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease-in-out;
            z-index: 10;
          }
          &::before {
            right: 50%;
          }
          &::after {
            left: 50%;
          }
          &:hover,
          &.on {
            color: var(--primary);
            &::before,
            &::after {
              width: 50%;
            }
          }
        }
      }
    }
  }

  /* 반응형 (1023px 이하) */
  @media (max-width: 1023px) {
    .snb {
      margin-top: 0;

      ul {
        justify-content: flex-start; /* 왼쪽 정렬로 변경하여 스크롤 준비 */
        overflow-x: auto;
        overflow-y: hidden; /* 세로 스크롤 방지하여 라인 보호 */
        white-space: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        /* 스크롤바 숨기기 */
        &::-webkit-scrollbar {
          display: none;
        }
        -ms-overflow-style: none;
        scrollbar-width: none;
        li {
          /* 중앙 정렬 계산을 위해 li에 인라인 블록 성격 유지 */
          display: inline-block;
          flex-shrink: 0;
        }
        li a {
          padding: 2rem 2rem;
          font-size: 1.8rem;
        }
      }
    }
  }
}

#subContents {
  max-width: 1480px;
  margin: 0 auto;
  padding-inline: 2rem;
  & > h4 {
    margin-bottom: 20px;
    padding-left: 24px;
    font-size: 4rem;
    font-weight: 400;
    color: var(--black);
    position: relative;
    @media (max-width: 1023px) {
      font-size: 3.2rem;
    }

    &::before {
      content: "";
      position: absolute;
      top: 14px;
      left: 0;
      width: 16px;
      height: 16px;
      background: url("../images/sub/h4_before.png") no-repeat;
    }
  }
}

.descWrap {
  /* margin-bottom: 10rem; */
  text-align: center;
  h3 {
    font-size: 4.4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    padding-block: 12rem;
    @media (max-width: 1023px) {
      padding-block: 6rem;
    }
  }
  p {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2.5rem;
  }
  span {
    font-size: 2rem;
    font-weight: 400;
    color: var(--gray5d);
    line-height: 1.4;
  }
}

/* About > 회사소개 */
.companyInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem 12rem;
  margin-top: 10rem;
  margin-bottom: 6.5rem;
  @media (max-width: 1023px) {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
  li {
    padding-inline: 3.6rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--graye4);
    @media (max-width: 1023px) {
      padding-inline: 2.4rem;
      /* width: calc(100% - 4.8rem); */
    }
  }
  dl {
    display: grid;
    grid-template-columns: 6rem 1fr;
  }
  .icon {
    grid-column: 1;
    grid-row: 1 /10;
    margin-top: 0.5rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    i {
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      height: 100%;
      &.companyName {
        background-image: url(../images/sub/company_icon01.svg);
        width: 2.8rem;
      }
      &.companyCeo {
        background-image: url(../images/sub/company_icon02.svg);
        width: 2.6rem;
      }
      &.companyDate {
        background-image: url(../images/sub/company_icon03.svg);
        width: 3.4rem;
      }
      &.companyTel {
        background-image: url(../images/sub/company_icon04.svg);
        width: 3.8rem;
      }
      &.companyAdd {
        background-image: url(../images/sub/company_icon05.svg);
        width: 2.8rem;
      }
      &.companyBusiness {
        background-image: url(../images/sub/company_icon06.svg);
        width: 3.6rem;
      }
    }
  }
  dd {
    grid-column: 2;
    line-height: 1.4;
    margin-left: 3.5rem;
    @media (max-width: 1023px) {
      margin-left: 2.5rem;
    }
    &.title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 1.5rem;
    }
    &.text {
      font-size: 2rem;
      font-weight: 400;
      color: var(--black);
      @media (max-width: 1023px) {
        font-size: 1.8rem;
      }
    }
  }
}

/* About > History */
.tab_group {
  &.history {
    margin-top: 10rem;
  }
}
/* 탭 영역 스타일 */
.tab {
  position: relative;
  padding: 0 0 13rem;
  z-index: 999;
  @media (max-width: 1023px) {
    padding-bottom: 10rem;
  }

  & ul {
    display: flex;
    height: 8rem;
    align-items: center;

    & li {
      flex: 1;
      position: relative;
      margin: 0 0 0 -1px;
      color: var(--black06);
      border: 1px solid var(--black06);

      & button {
        width: 100%;
        height: 8rem;
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.4;
        background: #a4a4a4;
        @media (max-width: 767px) {
          font-size: 1.8rem;
          letter-spacing: 0.5px;
        }
        > br {
          display: none;
          @media (max-width: 767px) {
            display: block;
          }
        }
      }

      /* 활성화 상태 (Active) */
      &.on {
        z-index: 2;

        & button {
          height: 8rem;
          color: var(--white);
          background: var(--primary);
        }
      }
    }
  }
}

.tab_content {
  display: none;

  &.on {
    display: block;
  }
}

.historyList {
  padding: 0 1.5rem;
  @media (max-width: 767px) {
    padding: 0;
  }

  & > li {
    overflow: hidden;
    margin-top: 8.6rem;
    @media (max-width: 767px) {
      margin-top: 6.6rem;
    }

    &:first-child {
      margin-top: 0;
    }

    /* 활성화 상태 (Active) */
    &.on {
      .historyYear {
        color: var(--primary);
      }
    }
  }

  .historyYear {
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    font-size: 7rem;
    letter-spacing: 0em;
    float: left;
    width: 20rem;
    @media (max-width: 767px) {
      width: 12rem;
      font-size: 4rem;
      margin-top: 1rem;
      float: none;
    }
  }

  .historyBox {
    overflow: hidden;
    position: relative;
    margin-top: 1.5rem;
    @media (max-width: 767px) {
      margin-top: 2.5rem;
    }
  }

  .historyInfo {
    float: left;
    padding-left: 3rem;

    & li {
      margin-top: 2rem;

      &:first-child {
        margin-top: 0;
      }

      & dl {
        position: relative;

        & dt {
          line-height: 1;
          position: absolute;
          left: 0;
          top: 0.5rem;
          width: 4rem;
          /* font-size: 1.8rem; */
          font-size: 2rem;
          font-weight: 500;
          color: var(--gray5d);

          /* 인접 형제 선택자 처리 */
          & + dd {
            margin-top: 0;
          }
        }

        & dd {
          margin-top: 2rem;
          padding-left: 4rem;
          width: 100%;
          /* font-size: 1.8rem; */
          font-size: 2rem;
          font-weight: 300;
          color: var(--gray5d);
          line-height: 2.8rem;
          word-break: keep-all;
          word-wrap: break-word;
        }
      }
    }
  }

  .historyLine {
    position: absolute;
    left: 0;
    top: 0;
    width: 0.2rem;
    height: 100%;
    background-color: #ddd;

    & .bar {
      display: inline-block;
      width: 0.2rem;
      background-color: var(--primary);
    }
  }
}

/* 연도 및 라인 기본 스타일 */
.historyList > li .historyYear,
.historyList > li .historyLine .bar {
  transition: all 0.5s ease; /* 부드러운 전환 효과 */
}

/* 기본 상태: 회색 라인 */
.historyList > li .historyLine .bar {
  background-color: #e5e5e5;
  height: 100%; /* 라인이 항상 보이도록 설정 */
}

/* 활성화 상태 (active 클래스 추가 시): Primary 컬러 적용 및 유지 */
.historyList > li.active .historyYear {
  color: var(--primary); /* 강조색 */
  /* font-weight: 700; */
}

.historyList > li.active .historyLine .bar {
  background-color: var(--primary); /* 라인 색상 변경 */
}

/* 정보(Info) 순차 페이드 초기 상태 */
.tab_content .historyInfo li {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* 페이드 활성화 클래스 */
.tab_content .historyInfo li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About > Vision */

.parallaxBanner {
  position: relative;
  width: 100%;
  height: 823px; /* 요청하신 섹션 높이 */
  background: url("../images/sub/vision_img01.png") no-repeat center / cover;
  background-attachment: fixed;
  overflow: hidden;
  /* display: flex;
  align-items: center; 
  justify-content: center; */

  /* 배경 어둡게 처리 */
  /* &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  } */

  /* 흐르는 텍스트 레이어 */
  .bgMarqueeContainer {
    position: absolute;
    left: 0;
    bottom: 180px; /* 섹션 하단에서 180px 띄움 */
    width: 100%;
    z-index: 2;
    white-space: nowrap;
    opacity: 0.75;
    pointer-events: none;

    .marqueeInner {
      display: inline-block;
      animation: marqueeScroll 55s linear infinite;

      span {
        font-size: 165px; /* 요청하신 글씨 크기 */
        font-weight: 900;
        color: #fff;
        padding-right: 60px;
        letter-spacing: 5px;
      }
    }
  }

  /* 메인 텍스트 콘텐츠 */
  .bannerContent {
    position: relative;
    z-index: 3;
    text-align: center;
    h3 {
      margin-block: 13rem 11rem;
      /* margin-top: 13rem; */
      font-size: 4rem;
      font-weight: 700;
      color: var(--black);
      line-height: 1;
      @media (max-width: 1023px) {
        margin-block: 6rem;
      }
    }
    .bannerTitle {
      font-size: 30px;
      font-weight: 700;
      color: #515151;
      margin-bottom: 20px;
    }

    .bannerDesc {
      font-size: 20px;
      font-weight: 300;
      color: #515151;
    }
  }

  /* 반응형 구간: 1023px 미만 */
  @media (max-width: 1023px) {
    height: 560px; /* 모바일에서는 높이 축소 */
    background-attachment: scroll;

    .bgMarqueeContainer {
      bottom: 100px; /* 모바일 비례에 맞춰 하단 여백 조정 */

      .marqueeInner span {
        font-size: 100px;
        padding-right: 30px;
      }
    }

    .bannerContent {
      .bannerTitle {
        padding-inline: 2rem;
        font-size: 28px;
        line-height: 1.2;
      }
      .bannerDesc {
        padding-inline: 2rem;
        font-size: 16px;
        line-height: 1.4;
        word-break: keep-all;
      }
    }
  }
}

/* 무한 루프 애니메이션 */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.visionSection {
  /* padding: 100px 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  /* 상단 장식 라인 */
  .topLineWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -1px; /* 점과 박스 사이 연결성 */

    .line {
      width: 1px;
      height: 100px;
      background-color: #e5e5e5;
    }
    .dot {
      width: 10px;
      height: 10px;
      background-color: var(--primary);
      border-radius: 50%;
      margin-top: -5px;
      &.gray {
        background-color: var(--gray50);
      }
    }
  }

  .visionContainer,
  .missionContainer {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 25px;
    margin-top: -4px;

    .visionBox,
    .missionBox {
      position: relative;
      z-index: 2;
      background-color: var(--primary);
      border-radius: 999px;
      padding: 60px 100px;
      display: flex;
      align-items: center;
      box-shadow: 0 10px 30px rgba(138, 0, 255, 0.2);

      .titleArea {
        flex-shrink: 0;
        margin-right: 80px;
        h3 {
          font-size: 3rem;
          font-weight: 700;
          color: var(--white);
          line-height: 1;
          margin-bottom: 10px;
        }
        p {
          font-size: 2.5rem;
          font-weight: 500;
          color: var(--graye4);
          opacity: 0.9;
        }
      }

      .descArea {
        p {
          font-size: 2.5rem;
          line-height: 1.4;
          font-weight: 700;
          color: var(--white);
          word-break: keep-all;
        }
      }
    }

    /* 외곽선 컨테이너: 여기에 직접 선을 주지 않습니다 */
    .dashedBorder {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;

      /* 1. 상단 절반: 실선 (Before) */
      &::before {
        content: ""; /* 필수 */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid var(--primary);
        border-radius: 999px;
        clip-path: inset(0 0 50% 0); /* 상단만 표시 */
      }

      /* 2. 하단 절반: 점선 (After) */
      &::after {
        content: ""; /* 필수 */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px dotted var(--primary);
        border-radius: 999px;
        clip-path: inset(50% 0 0 0); /* 하단만 표시 */
      }
    }
  }

  .missionContainer {
    .missionBox {
      background-color: var(--graye4);
      box-shadow: 0 10px 30px rgba(130, 130, 130, 0.2);

      .titleArea {
        h3 {
          color: var(--black);
        }
        p {
          color: var(--gray50);
        }
      }

      .descArea {
        p {
          font-weight: 500;
          color: var(--gray50);
          strong {
            color: var(--black);
          }
        }
      }
    }
    .dashedBorder {
      &::before {
        border: 1px dotted var(--gray50);
      }

      &::after {
        border: 1px solid var(--primary);
      }
    }
  }

  /* 반응형: 1023px (태블릿 가로) */
  @media (max-width: 1023px) {
    .visionContainer {
      .visionBox {
        padding: 50px 80px;
        .titleArea {
          margin-right: 50px;
          h3 {
            font-size: 36px;
          }
          p {
            font-size: 20px;
          }
        }
        .descArea p {
          font-size: 19px;
        }
      }
    }
  }

  /* 반응형: 767px (태블릿 세로) */
  @media (max-width: 767px) {
    .visionContainer,
    .missionContainer {
      .visionBox,
      .missionBox {
        flex-direction: column;
        text-align: center;
        border-radius: 50px; /* 세로형으로 변할 때 곡률 조정 */
        padding: 60px 40px;

        .titleArea {
          margin-right: 0;
          margin-bottom: 30px;
        }
        .descArea p {
          font-size: 18px;
          br {
            display: none;
          } /* 줄바꿈 해제하여 자연스러운 흐름 유도 */
        }
      }
      .dashedBorder {
        border-radius: 65px;
        &::before,
        &::after {
          border-radius: 50px;
        }
      }
    }
  }

  /* 반응형: 480px (모바일) */
  @media (max-width: 480px) {
    padding: 60px 15px;

    .topLineWrap .line {
      height: 60px;
    }

    .visionContainer {
      .visionBox {
        padding: 40px 25px;
        .titleArea {
          h3 {
            font-size: 30px;
          }
          p {
            font-size: 18px;
          }
        }
        .descArea p {
          font-size: 16px;
        }
      }
    }
  }
}

.coreValuesSection {
  display: flex;
  flex-direction: column;
  align-items: center;

  .topLineWrap {
    display: flex;
    flex-direction: column;
    align-items: center;

    .line {
      width: 1px;
      height: 100px;
      background: #e5e5e5;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: var(--primary);
      border-radius: 50%;
      margin-top: -5px;
    }
  }

  .valuesContainer {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 25px;

    .valuesInnerBox {
      display: flex;
      align-items: center; /* 세로 중앙 정렬 */
      width: 100%;
      box-sizing: border-box; /* 패딩 포함 너비 계산 */
      background-color: #f4f4f4;
      border-radius: 100px;
      padding: 80px 60px;
      overflow: hidden;

      .titleArea {
        flex-shrink: 0; /* 제목 영역이 찌그러지지 않게 고정 */
        margin-right: 80px; /* 요청하신 80px 여백 적용 */

        h3 {
          font-size: 3rem;
          font-weight: 700;
          color: var(--black);
          line-height: 1;
          margin-bottom: 10px;
        }

        p {
          font-size: 2.5rem;
          font-weight: 500;
          color: var(--gray50);
          opacity: 0.9;
        }
      }

      .valuesList {
        min-width: 0; /* flex 자식 요소의 오버플로우 방지를 위한 필수 속성 */
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex: 1; /* 남은 공간을 모두 차지하도록 설정 */
        gap: 20px;

        .valueItem {
          flex: 1;
          max-width: 230px;
          text-align: center;

          .circleBox {
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
            /* 고정 높이 제거 */
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid var(--primary);
            margin: 0 auto 20px;
            background: #fff;

            .topPart {
              height: 50%;
              background: var(--primary);
              display: flex;
              align-items: center;
              justify-content: center;

              img {
                width: 25%;
                height: auto;
              }

              &.list02 img {
                width: 20%;
              }

              &.list03 img {
                width: 35%;
              }
            }

            .bottomPart {
              height: 50%;
              display: flex;
              align-items: center;
              justify-content: center;

              h4 {
                font-size: clamp(1.6rem, 2vw, 2.5rem);
                /* 브라우저 크기에 따라 폰트 크기 가변 */
                font-weight: 700;
                color: var(--black);
              }
            }
          }

          .detailText {
            font-size: clamp(1.4rem, 1.5vw, 2rem);
            /* 상세 텍스트 가변 처리 */
            color: var(--gray50);
            line-height: 1.5;
            word-break: keep-all;
          }
        }

        .arrow {
          flex-shrink: 0;
          margin-top: 115px;
          transform: translateY(-50%);
          padding-top: 0;

          .next_arrow {
            display: block;
            width: 1.5vw;
            height: 1.5vw;
            min-width: 10px;
            min-height: 10px;
            border-top: 2px solid #565656;
            border-right: 2px solid #565656;
            transform: rotate(45deg);
          }
        }
      }
    }

    /* 상단 실선 / 하단 점선 테두리 구현 */
    .borderFrame {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;

      &::before {
        /* 상단 실선 */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid var(--primary);
        border-radius: 115px;
        clip-path: inset(0 0 50% 0);
      }

      &::after {
        /* 하단 점선 */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px dotted var(--primary);
        border-radius: 115px;
        clip-path: inset(50% 0 0 0);
      }
    }
  }

  /* 반응형: 1023px */
  @media (max-width: 1023px) {
    .valuesContainer {
      .valuesInnerBox {
        padding: 60px 40px;

        .titleArea {
          margin-right: 40px;
          h3 {
            font-size: 30px;
          }
        }

        .valuesList {
          gap: 15px;
          .arrow {
            margin-top: 75px; /* 150px의 절반 */
          }
        }
      }
    }
  }

  /* 반응형: 767px (세로 배열 전환) */
  @media (max-width: 767px) {
    .valuesContainer {
      .valuesInnerBox {
        flex-direction: column;
        border-radius: 50px;
        padding: 60px 20px;

        .titleArea {
          text-align: center;
          margin-bottom: 40px;
        }

        .valuesList {
          width: 100%;
          flex-direction: column;
          align-items: center;
          gap: 40px;

          .valueItem {
            width: 100%;
            max-width: 200px;
            /* 모바일 세로 배열 시 적정 크기 고정 */
          }

          .arrow {
            transform: rotate(90deg);
            padding: 0;
            margin: -10px 0;
          }
        }
      }

      .borderFrame {
        &::before,
        &::after {
          border-radius: 65px;
        }
      }
    }
  }

  /* 반응형: 480px */
  @media (max-width: 480px) {
    .valuesContainer .valuesInnerBox {
      padding: 40px 15px;
      .titleArea h3 {
        font-size: 20px;
      }

      .valuesList .valueItem .circleBox {
        width: 130px;
        height: 130px;
      }
    }
  }
}

/* About > 인증 및 특허 */
.certSection {
  padding: 40px 0;

  .certGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 모바일 기본 2열 */
    gap: 15px;

    @media (min-width: 768px) {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 60px;
    }
  }

  .certCard {
    background: #fff;
    /* border: 1px solid #eee; */
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    &.aos-animate {
      opacity: 1;
    }

    &:hover {
      @media (min-width: 1024px) {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      }
      .overlay {
        opacity: 1;
      }
    }

    .imgWrapper {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: #f1f1f1;

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

      .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        opacity: 0;
        transition: 0.3s;
        &:hover {
          opacity: 1;
        }
      }
    }

    .info {
      padding: 1.5rem 1rem;
      text-align: center;
      .number {
        font-size: 13px;
        color: #666;
        display: block;
        margin-bottom: 5px;
      }
      .subject {
        font-size: 16px;
        font-weight: 500;
        word-break: keep-all;
      }

      @media (min-width: 768px) {
        .number {
          font-size: 1.7rem;
        }
        .subject {
          font-size: 2rem;
        }
      }
    }
  }
}

/* 모달 스타일 */
.modalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;

  &.active {
    display: flex;
  }

  .modalContent {
    position: relative;
    max-width: 550px;
    width: 100%;

    .btnClose {
      position: absolute;
      top: 5px;
      right: 7px;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: var(--primary);
      border: none;
      cursor: pointer;
      display: flex; /* 중앙 정렬 핵심 */
      align-items: center;
      justify-content: center;
      padding: 0;
      z-index: 10;
      i {
        width: 2.4rem;
        height: 2.4rem;
        background: url("../images/common/btn_close.svg") center no-repeat;
      }
    }

    .modalHeader {
      padding: 1.5rem;
      /* background: #f9f9f9;
      border-bottom: 1px solid #eee;
      text-align: center; */

      .modalNum {
        font-size: 14px;
        color: var(--primary);
        display: block;
        margin-bottom: 5px;
      }
      .modalSub {
        font-size: 18px;
        font-weight: 600;
        color: var(--white);
        margin: 0;
      }
    }
    .modalInner {
      background: #fff;
      border-radius: 12px;
      overflow: hidden; /* 내부 요소가 모서리를 덮지 않게 함 */
    }

    .modalBody {
      img {
        width: 100%;
        display: block;
        max-height: 70vh;
        object-fit: contain;
      }
    }
  }
}

/* About > 오시는길 */
.wayWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;

  @media (max-width: 1280px) {
    grid-template-columns: 1fr;
  }
}
.wayMap {
  position: relative;
  width: 100%;
  /* border-bottom: 1px solid var(--graye4); */
  /* border: 1px solid var(--graye4); */
  /* border-radius: 2.7rem; */
  .root_daum_roughmap {
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 2.7rem;
  }
  .root_daum_roughmap .wrap_map {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .root_daum_roughmap_landing {
    margin: -1px 0 0 -1px !important;
  }
}

.mapBox {
  position: relative;
  padding: 3.6rem 6rem;
  border-radius: 2.7rem;
  border: 1px solid var(--graye4);
  /* border-top: 7px solid var(--gray50); */
  background: var(--white);
  align-content: center;
  @media (max-width: 1023px) {
    padding: 6rem 3.6rem;
  }
  @media (max-width: 480px) {
    padding: 6rem 3.6rem 8rem;
  }
  &:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  h1 {
    text-align: center;
    padding-bottom: 5.9rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--graye4);
    img {
      width: 100%;
      max-width: 39.8rem;
    }
  }
  dl {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-left: 6rem; /* 아이콘이 들어갈 공간 */
    position: relative;
    &:before {
      content: "";
      position: absolute;
      left: 0;
      top: -0.2rem;
      width: 4.2rem;
      height: 4.2rem;
      background-color: #f5f5f7; /* 아주 연한 그레이 배경 */
      border-radius: 50%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 2rem;
    }
    &:nth-of-type(1)::before {
      background-image: url(../images/sub/way_icon02.svg);
    }
    &:nth-of-type(2)::before {
      background-image: url(../images/sub/way_icon03.svg);
    }
    &:nth-of-type(3)::before {
      background-image: url(../images/sub/way_icon04.svg);
    }
  }
  dt,
  dd {
    font-size: 2.5rem;
    font-weight: 500;
    color: #575757;
    line-height: 1.4;
  }
  dt {
    width: 6rem;
  }
  dd {
    width: calc(100% - 6rem);
    span {
      /* font-size: 2.3rem;
      font-weight: 400;
      color: #767676; */
    }
    @media (max-width: 1023px) {
      font-size: 2rem;
    }
  }
  .btnFindway {
    position: absolute;
    right: 4rem;
    bottom: 5rem;
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 6.4rem;
    height: 7.4rem;
    background: url(../images/sub/way_iconbg.svg) center / 100% no-repeat;
    transition: transform 0.3s;
    i {
      width: 32px;
      height: 32px;
      margin-bottom: 4px;
      color: var(--white);
      @media (max-width: 767px) {
        width: 2.4rem;
        height: 2.4rem;
        margin-top: 4px;
      }

      img {
        width: 100%;
        height: 100%;
        display: block;
      }
    }

    .text {
      color: var(--white);
      font-size: 1.3rem;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    &:hover {
      transform: translateY(-5px);
    }
  }
  /* dl {
    dt {
      text-align: center;
      padding-bottom: 5.9rem;
      margin-bottom: 5rem;
      border-bottom: 1px solid var(--graye4);
      h1 {
        img {
          width: 100%;
          max-width: 39.8rem;
        }
      }
    }
    dd {
      font-size: 2.5rem;
      line-height: 1.4;
      color: var(--gray5d);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      p {
        font-size: 2.5rem;
        line-height: 1.4;
        color: var(--gray5d);
        font-weight: 500;
      }
      @media (max-width: 767px) {
        font-size: 2rem;
      }
      > i {
        width: 3.9rem;
        height: 3.9rem;
        border-radius: 50%;
        background-color: #eee;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 55%;
        &.add01 {
          background-image: url(../images/sub/way_icon02.svg);
        }
        &.add02 {
          background-image: url(../images/sub/way_icon02.svg);
        }
        &.tel {
          background-image: url(../images/sub/way_icon03.svg);
        }
        &.fax {
          background-image: url(../images/sub/way_icon04.svg);
        }
      }
      > span {
        padding-left: 2.1rem;
      }
      &:last-child {
        padding-left: 0;
        text-indent: 0;
        position: absolute;
        bottom: 5rem;
        right: 6rem;
        @media (max-width: 480px) {
          bottom: 1rem;
          right: 3rem;
        }
        .btnFindway {
          padding-left: 0.5rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: 6.4rem;
          height: 7.4rem;
          background: url(../images/sub/way_iconbg.svg) center / 100% no-repeat;
          transition: background-color 0.3s;
          i {
            width: 32px;
            height: 32px;
            margin-bottom: 4px;
            color: var(--white);
            @media (max-width: 767px) {
              width: 2.4rem;
              height: 2.4rem;
              margin-top: 4px;
            }

            img {
              width: 100%;
              height: 100%;
              display: block;
            }
          }

          .text {
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 500;
            letter-spacing: -0.02em;
          }
        }
      }
    }
  } */
}

/* Business > display */
.displaySection {
}
.displayHeader {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 13.5rem;
  background-color: var(--grayf1);
  border: 1px solid var(--graye4);
  border-radius: 10px;
  overflow: visible;
  padding: 60px 60px 60px 50%;
  @media (max-width: 1023px) {
    flex-direction: column;
    padding: 40px 20px;
    margin-top: 100px;
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 30px);
    background-color: var(--graye4);
    @media (max-width: 1023px) {
      display: none;
    }
  }
  .visualArea {
    position: absolute;
    top: 28px;
    left: 152px;
    animation: floating 3.5s ease-in-out infinite;
    @media (max-width: 1023px) {
      position: relative;
      top: 0;
      left: 0;
      transform: translateY(0);
      margin: -100px auto 30px; /* 위로 돌출 효과 유지하며 중앙 정렬 */
      width: 280px !important; /* 모바일 크기 강제 조정 */
    }
    &.display {
      width: 403px;
      height: auto;
      @media (max-width: 1280px) {
        width: 300px;
      }
    }
    &.ai {
      width: 373px;
      height: auto;
      @media (max-width: 1280px) {
        width: 300px;
      }
    }
    &.contents {
      width: 352px;
      height: auto;
      @media (max-width: 1280px) {
        width: 300px;
      }
    }
    &.smartfarm {
      width: 366px;
      height: auto;
      @media (max-width: 1280px) {
        width: 300px;
      }
    }
    img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    }
  }

  .textArea {
    padding-left: 40px;
    @media (max-width: 1023px) {
      padding-left: 0;
      text-align: center;
    }

    .descText {
      font-size: 2rem;
      line-height: 1.6;
      color: var(--black);
      word-break: keep-all;
      font-weight: 400;
    }
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 모바일용 애니메이션 별도 정의 (translateY 중첩 방지) */
@media (max-width: 1023px) {
  @keyframes floating {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
}

.strategySection {
  padding: 100px 0;
  display: flex;
  justify-content: center;

  .strategyContainer {
    width: 100%;
    @media (max-width: 1023px) {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
    }
    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }
    .strategyItem {
      display: flex;
      align-items: flex-start;
      /* padding: 60px 0; */
      @media (max-width: 1023px) {
        flex-direction: column;
      }

      .iconBox {
        margin-right: 87px;
        margin-left: 149px;
        margin-top: 75px;
        width: 186px;
        height: 186px;
        border: 2px solid var(--graydd);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        @media (max-width: 1023px) {
          width: 160px;
          height: 160px;
          margin: 0 auto;
        }
        img {
          width: 70%;
          max-width: 100px;
          &.ability {
            width: 90px;
          }
        }
      }

      .textBox {
        /* padding-left: 60px; */
        padding-block: 60px;
        width: calc(100% - 422px);
        border-bottom: 1px solid var(--graye4);
        @media (max-width: 1023px) {
          width: 100%;
          border-bottom: none;
        }
        @media (max-width: 767px) {
          border-bottom: 1px solid var(--graye4);
        }

        .subTitle {
          display: block;
          font-size: 1.4rem;
          font-weight: 300;
          color: var(--gray50);
          letter-spacing: 1px;
          margin-bottom: 10px;
        }

        .mainTitle {
          font-size: 3.2rem;
          color: var(--primary); /* 보라색 포인트 */
          margin-bottom: 25px;
          font-weight: 700;
        }

        .infoText {
          font-size: 2rem;
          font-weight: 300;
          color: #625552;
          line-height: 1.4;
          margin-bottom: 2rem;
          @media (max-width: 1023px) {
            > br {
              display: none;
            }
          }
        }
        .infoDesc {
          li {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--black);
            line-height: 1.4;
            margin-left: 1rem;
            text-indent: -1rem;
            &:before {
              content: "-";
              padding-right: 0.5rem;
            }
          }
        }
      }
    }
  }
}

.galleryContainer {
  .galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    @media (max-width: 1023px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }

    .galleryCard {
      border: 1px solid var(--graye4);
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

      .imgBox {
        aspect-ratio: 1.74 / 1;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: 0.3s;
        }
      }

      .textBox {
        padding-block: 24px 39px;
        padding-inline: 18px;
        h4 {
          font-size: 1.7rem;
          font-weight: 400;
          color: var(--black);
        }
      }

      &:hover .imgBox img {
        transform: scale(1.1);
      }
    }
  }
}

/* Project */

.logoWrap {
  position: relative;
  width: 100%;
  height: 48rem;
  margin-top: 14rem;
  overflow: hidden;
  background-color: var(--black);
  @media (max-width: 1023px) {
    height: 40rem;
    margin-top: 8rem;
  }
  .bgLayer,
  .centerObject {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
  .bgLayer {
    z-index: 1;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .overlay {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(138, 0, 255, 0.3)
      ); /* 보라색 틴트 예시 */
    }
  }
  .centerObject {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    img {
      max-width: 42rem;
      max-height: 13.3rem;
      width: auto;
      height: auto;
      animation: floatingObject 4s ease-in-out infinite;
      @media (max-width: 1023px) {
        width: 50%;
        height: auto;
      }
    }
  }
}

@keyframes floatingObject {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.logoDesc {
  margin-top: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6rem;
  @media (max-width: 1023px) {
    flex-direction: column;
    margin-top: 6rem;
  }
  .logo {
    padding-block: 6rem;
    padding-inline: 2.5rem;
    border: 1px solid var(--grayf1);
    max-width: 40.7rem;
    @media (max-width: 1023px) {
      max-width: 100%;
      width: 100%;
      text-align: center;
      padding-inline: 2.4rem;
    }
    img {
      width: 36rem;
      height: auto;
      @media (max-width: 360px) {
        width: 100%;
      }
    }
  }
  .desc {
    p {
      font-size: 2rem;
      font-weight: 300;
      color: var(--black);
      line-height: 1.4;
    }
  }
}

#projectContents {
  margin-top: 10rem;
  padding-inline: 6rem;
  padding-block: 6rem;
  background-color: var(--grayf1);
  @media (max-width: 1023px) {
    padding-inline: 0;
  }
  .projectGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    @media (max-width: 1023px) {
      grid-template-columns: 1fr; /* 최소폭 무시하고 1열 꽉 채움 */
      gap: 20px;
    }
  }

  .projectCard {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    @media (max-width: 400px) {
      height: 320px;
    }

    /* 배경 이미지 및 오버레이 */
    .cardBg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 20%,
          rgba(0, 0, 0, 0.8) 90%
        );
      }
    }

    /* 텍스트 콘텐츠 */
    .cardContent {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 40px 30px;
      z-index: 2;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      @media (max-width: 400px) {
        padding: 30px 20px;
      }

      .year-badge {
        display: inline-block;
        background: #8a00ff; /* 포인트 컬러 */
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 15px;
        align-self: flex-start; /* 배지는 왼쪽 정렬 유지 */
        margin-bottom: 12px;
      }

      .p-title {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 10px;
        min-height: 2.8em;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 최대 2줄까지만 표시 */
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: keep-all;
        @media (max-width: 400px) {
          font-size: 20px;
        }
      }

      .p-keywords {
        margin-bottom: 0;
        transition: margin 0.4s;
        span {
          font-size: 1.5rem;
          color: rgba(255, 255, 255, 0.7);
          font-size: 13px;
          opacity: 0.7;
        }
      }

      .p-desc {
        max-height: 0;
        overflow: hidden;
        font-size: 1.7rem;
        line-height: 1.6;
        opacity: 0; /* 평소에는 숨김 */
        transform: translateY(20px);
        transition: all 0.4s ease;
        color: rgba(255, 255, 255, 0.8);
      }
    }

    /* Hover 시 인터랙션 */
    &:hover {
      .cardBg {
        transform: scale(1.1);
      }
      .cardContent {
        background: linear-gradient(
          to top,
          rgba(138, 0, 255, 0.75) 0%,
          rgba(138, 0, 255, 0.6) 50%,
          rgba(138, 0, 255, 0) 100%
        );

        .p-keywords {
          margin-bottom: 15px; /* 호버 시에만 설명글과의 간격 발생 */
        }
        .p-desc {
          opacity: 1;
          /* transform: translateY(0); */
          max-height: 150px;
          margin-top: 10px;
        }
      }
    }
  }
}

/* Contact > 파트너및 고객사 */
.partnerSection {
  padding: 10rem 0 0;
  @media (max-width: 1023px) {
    padding: 6rem 0 0;
  }
  .partnerGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    @media (max-width: 1023px) {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .partnerItem {
      display: flex;
      align-items: center;
      opacity: 0;
      @media (max-width: 767px) {
        flex-direction: column;
        align-items: center;
      }
      &.aos-animate {
        opacity: 1;
      }
      .logoBox {
        width: 250px;
        height: 100px;
        border: 1px solid var(--graye4);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        @media (max-width: 767px) {
          width: 100%;
        }
        img {
          max-width: 100%;
          max-height: 100%;
        }
      }
      .infoBox {
        padding-left: 30px;
        @media (max-width: 767px) {
          padding-left: 0;
          padding-top: 15px;
        }
        .name {
          font-size: 2rem;
          font-weight: 500;
          margin-bottom: 5px;
        }
        .url {
          color: var(--text-light);
          font-size: 1.8rem;
          font-weight: 300;
        }
      }
    }
  }
}

/* 채용안내 */
.recruitSection {
  width: 100%;
  height: 500px;
  background: #f5f5f5;
  .recruitVisual {
    max-width: 1480px;
    padding-inline: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    @media (max-width: 1023px) {
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding-block: 80px;
    }
    .recruitImg {
      padding-top: 90px;
      flex-shrink: 0;
      width: 46rem;
      @media (max-width: 1023px) {
        padding-top: 0;
        margin-bottom: 40px;
        width: 100%;
        height: 300px;
        /* max-width: 500px; */
        img {
          height: 300px;
        }
      }
      img {
        width: 100%;
        object-fit: cover;
      }
    }
    p {
      padding-left: 120px;
      padding-top: 120px;
      font-size: 3.2rem;
      font-weight: 300;
      color: var(--gray50);
      line-height: 1.4;
      word-break: keep-all;
      @media (max-width: 1023px) {
        padding-left: 0;
        padding-top: 0;
        width: 100%;
        font-size: 2.8rem;
      }

      & strong {
        font-size: 3.6rem;
        font-weight: 400;
        color: var(--black);
        @media (max-width: 1023px) {
          font-size: 2.8rem;
          display: block;
        }
      }
      br {
        @media (max-width: 1023px) {
          display: none;
        }
      }
    }
  }
}

.recruitInfo {
  margin-top: 310px;
  @media (max-width: 1023px) {
    margin-top: 110px;
  }

  & > ul {
    margin-bottom: 4.5rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px dotted var(--graydd);
    display: flex;
    gap: 7.2rem;
    @media (max-width: 1023px) {
      flex-direction: column;
      padding-bottom: 0;
    }
    & > li {
      width: 100%;
      opacity: 0;
      transition-property: opacity, transform;
      @media (max-width: 1023px) {
        padding-bottom: 4.5rem;
        border-bottom: 1px dotted var(--graydd);
      }
      &.aos-animate {
        opacity: 1;
      }
      &:last-child {
        border-bottom: none;
      }

      & > h4 {
        margin-bottom: 20px;
        padding-left: 16px;
        text-indent: -16px;
        font-size: 2.8rem;
        font-weight: 400;
        color: var(--black);

        &::before {
          display: inline-block;
          padding-left: 10px;
          content: "";
          width: 13px;
          height: 13px;
          background: url("../images/sub/h4_before.png") left top 50% no-repeat;
        }
      }

      & > p {
        padding-left: 25px;
        font-size: 2rem;
        color: var(--gray50);
        font-weight: 400;
        line-height: 1.6;

        &.mgt30 {
          margin-top: 30px;
        }
        & strong {
          font-size: 1.7rem;
          font-weight: 400;
          color: var(--black);
        }
      }
    }
  }
  .recruitStep {
    margin-left: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.8rem;
    @media (max-width: 480px) {
      flex-direction: column;
    }
    p {
      width: 140px;
      height: 50px;
      line-height: 50px;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      text-align: center;
      text-shadow: 1px 1px 0 rgb(0 0 0 / 15%);
      background: #b5b6b6;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 2px;
      @media (max-width: 480px) {
        width: 100%;
      }

      &.last {
        background: var(--primary);
      }
    }
    i {
      width: 3.6rem;
      height: auto;
      /* background: url("../images/common/arrow_right.svg") center no-repeat; */
      @media (max-width: 480px) {
        img {
          transform: rotate(90deg);
        }
      }
    }
  }
}
/* Policy > 이메일무단수집거부 */
.privacy {
  h3 {
    margin-bottom: 20px;
    padding-left: 16px;
    text-indent: -16px;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--black);
    &::before {
      display: inline-block;
      padding-left: 10px;
      content: "";
      width: 13px;
      height: 13px;
      background: url("../images/sub/h4_before.png") left top 50% no-repeat;
    }
  }
}
.privacy > p {
  margin-bottom: 1rem;
  color: var(--color_font01);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.privacy > h4 {
  margin-bottom: 0.7rem;
  padding-left: 3rem;
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.privacy > h4::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -1.5rem;
  margin-right: 0.75rem;
  background: var(--primary);
  vertical-align: middle;
}
.privacy > dl {
  margin: 0 0 3rem 2.4rem;
}
.privacy > dl > dt {
  margin-bottom: 0.4rem;
  color: var(--black);
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.privacy > dl > dt > p {
  color: var(--color_font02);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.3rem;
}
.privacy > dl > dd {
  margin-left: 2rem;
  color: #625552;
  font-size: 1.6rem;
  font-weight: 100;
  line-height: 2.8rem;
  text-indent: -0.5rem;
}
.privacy > dl > dd > ul {
  margin-left: 2rem;
  font-size: 1.5rem;
}
.privacy > dl > dd > ul > li {
  text-indent: -1rem;
}

.privacy__ul {
  margin: 0 0 3rem 4rem;
}
.privacy__li {
  text-indent: -1rem;
  font-size: 1.5rem;
  line-height: 2.4rem;
}
.privacy__li::before {
  content: "- ";
  font-weight: 1.2rem;
  font-weight: 300;
}
