
  /* 반응형 */
  @media (max-width: 600px) {
    .footer-info .info-row {
      flex-direction: column; /* 모바일에서는 세로로 */
      align-items: flex-start;
      gap: 2px;
    }
  }


  @media (min-width:1391px) { /* PC용 */
    .mob{
        display: none !important;
    }
    .tab{
        display: none !important;
    }

}

  /* 태블릿 이하: 최대 768px */
@media (max-width: 1390px) {
/* GNB 숨기기 */
#mainVisual .visualtxt h2{
font-size: 3.5vw;
}
#technology-section img {
width: 100%
}
.animation-image .technology-img-box{
width: 100% !important;
overflow: hidden;
}
.animation-image .technology-img-box h3{
font-size: 2vw;
}
#technology-section ul li h4{
font-size: 1.5vw;
}
.about ul li:first-child h3{
font-size: 2vw;
}
.about ul li:last-child h4{
font-size: 4vw;
}
.about ul li:last-child p{
font-size: 1.3vw;
word-break: keep-all;
}
.about ul li:first-child{
width: 40%;
}
.about ul li:first-child img{
    filter: grayscale(100%);
    height: 40vw;
    position: relative;
    left: -150px;
    top: -50px;
}
.values_txt ul li h4{
    font-size: 1.5vw;
}
.values_txt ul li p{
    font-size: 1vw;
}

  .footer-info > div{
    margin-right: 50px;
  }
  .footer-info .info-row {
    display: flex;
    align-items: center;
    gap: 10px; /* label과 내용 간격 */
    margin: 5px 0;
  }
  .footer-logo img{
    height: 100px;
  }
  
  .footer-info .label {
    font-weight: 600;
    min-width: 60px; /* label 고정 너비 */
    color: #fff;
  }
  
  .footer-info span {
    font-size: 1vw;
  }
  
  .footer-info a {
    color: #9c9c9c;
    text-decoration: none;
  }
  
  .footer-info a:hover {
    text-decoration: underline;
  }
  
footer p{
    font-size: 1vw;
}
  


  }
  
  /* 모바일 이하: 최대 480px */
  @media (max-width: 801px) {
    .pc{
        display: none !important;
    }

    /*HEADER*/

    .inner{
        width: 85%;
    }

    .header {
        top: 50px;
    }
    .header > .inner {
        width: 100%;
        height: 100px;
    }
    .header .logo {
        height: 80px;
        position: absolute;
        top: 10px;
        left: 5px;
    }
    .header .logo img{
        height: 80px;
    }
    #siteHeader {
        padding: 0;
      }
      /* 컨테이너 크기와 간격은 변수로 조절 */
    .hamburger {
        --width: 36px;
        --height: 28px;
        --line-height: 3px;
        --gap: 8px; /* 가운데에서 위/아래 간격 (조절 포인트) */
    
        width: var(--width);
        height: 80px;
        position: absolute;
        top: 10px;
        right: 20px;
        display: inline-block;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* 공통: 스팬을 절대 위치로 잡고 중앙 기준으로 이동/회전하게 구성 */
    .hamburger span {
        position: absolute;
        left: 0;
        right: 0;
        height: var(--line-height);
        background: #fff;               /* 선 색상 */
        border-radius: 2px;
        display: block;
        transition:
        top 0.28s cubic-bezier(.2,.8,.2,1),
        transform 0.28s cubic-bezier(.2,.8,.2,1),
        opacity 0.18s linear;
        transform-origin: center center; /* 중앙을 기준으로 회전 */
        box-sizing: border-box;
        z-index: 50;
    }
    
    /* 기본(비활성) 위치: 위 / 중간 / 아래 */
    .hamburger span:nth-child(1) { top: calc(50% - var(--gap)); }
    .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger span:nth-child(3) { top: calc(50% + var(--gap)); }
    
    /* active 상태: 첫째/셋째를 중앙으로 모아서 회전, 둘째는 사라짐 */
    .hamburger.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        background: #333;  
    }
    
    .hamburger.active span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%) scaleX(0.1);
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        background: #333
    }
    .header .gnb{
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 1200px;
        display: block;
        background: #fff;
        padding-top: 100px;
        box-sizing: border-box;
        transition: 0.3s;
    }
    .header .gnb.open{
        left: 50px;
    }
    .header .gnb li{
        width: 100%;
        height: 50px;
        padding-top: 10px;
        padding-left: 20px;
        border-top: 2px solid #f2f2f2;
    }
    .header .gnb li a{
        color: #333;
    }

    /*mainVisual*/

    #mainVisual iframe {
        width: auto;
        height: 100vh;         /* 넓이 기준으로 */
        aspect-ratio: none; /* 16:9 비율 유지 */
    }
    #mainVisual .visualtxt{
        position: absolute;
        bottom: 40%;
        left: 0;
        width: 100%;
        z-index: 1;
        color: #fff;
        overflow: hidden;
    }
    #mainVisual .visualtxt .inner{
        position: relative;
        top: 200px;
        transition: 1.5s;
    }
    #mainVisual .visualtxt .inner.active{
        top: 0;
    }
    #mainVisual .visualtxt h2{
        font-size: 28px;
        font-weight: 600;
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
    }
    #mainVisual .visualtxt p{
        font-size: 20px;
        margin-top: 10px;
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
    }

    /*mainContent*/

    #mainContent .background img{
        width: 150%;
    }

    #mainContent .background.scale-up img {
        transform: TranslateX(-50px);
    }

    #mainContent .mainContenttxt .inner{
        width: 85%;
    }
    #mainContent .mainContenttxt .inner p{
        font-size: 20px;
    }
    #mainContent .mainContenttxt .inner h3{
        font-size: 28px;
        margin: 30px 0 20px;
        font-weight: 600;
    }

    #mainContent .mainContenttxt .inner span{
        font-size: 20px;
    }

    /*loop-container*/

    .loop-container {
        padding: 20px 0;
        font-size: 30px;
      }

    /*Technology*/
    #technology-section {
        padding: 100px 0 950px;
    }
    #technology-section .smart-moisture-text{
        font-size: 35px;
        text-align: center;
        font-weight: 600;
    }
    #technology-section .inner{
        width: 85%;
    }

    .animation-image .technology-img-box{
        width: 100%;
        top: 250px;
    }
    #technology-section .box{
        height: 200px;
    }
    #technology-section img{
        width: 100%;
    }
    
    .animation-image .technology-img-box h3{
        font-size: 25px;
    }
    .animation-image .technology-img-box p{
        word-break: keep-all;
    }
    #technology-section ul{
        width: 100%;
        display: block;
        margin-top: 40px;
    }
    #technology-section ul li{
        width: 100%;
        border-top: 3px solid #333;
        margin-right: 0;
        padding: 20px 0;
    }
    #technology-section ul li h4{
        font-size: 20px;
        margin-bottom: 5px;
    }
    #technology-section a{
        margin: auto;
        margin-top: 40px;
    }

/*contact*/

.contact-section {
    padding: 100px 0px;
}
.contact-section p{
    font-size: 23px;
}
.contact-section p span{
    font-size: 35px;
    margin: 20px 0;
    color: #9900ff;
}
.flip-vertical{
    display: inline-block; /* transform 적용 위해 필요 */
    transform: scaleX(-1);
}
.contact-wrapper{
    padding: 40px 20px;
}
.form-group{
    display: block;
}
input, textarea {
    box-sizing: border-box;
}

/* 푸터 */

footer .inner{
    padding: 10px 0 70px;
  }
  .footer-logo img{
    height: 80px;
    position: relative;
    left: -20px;
  }
  .footer-info{
    margin-top: 10px;
    flex-direction: column;
  }
  .footer-info .label {
    font-weight: 600;
    min-width: 500px; /* label 고정 너비 */
    color: #fff;
  }
    .footer-info > div{
    margin-right: 0px;
  }
  .footer-info .info-row {
    display: flex;
    align-items: start;
    gap: 10px; /* label과 내용 간격 */
    margin: 5px 0;
  }
  
  .footer-info span {
    font-size: 4vw;
  }
footer p{
    font-size: 2vw;
}
  

    /*sub_common*/
    .title{
        padding: 200px 0 0;
    }
    .title .inner{
        width: 85%;
        overflow: hidden;
    }
    .title .inner h2{
        font-size: 13vw;
    }
    .title .txt_box {
        margin-top: 80px;
    }
    .title .txt_box p{
        width: 50vw;
    }
    .contact_sub .inner{
        padding: 100px 0;
    }

      /*company*/

    .about{
        overflow: hidden;
        height: 670px;
        margin-top: 100px;
    }
    .about ul{
        flex-direction: column;
    }
    .about ul li:first-child{
        width: 100%;
    }
    .about ul li:first-child h3{
        font-size: 22px;
    }
    .about ul li:last-child h4{
        font-size: 6vw;
    }
    .about ul li:last-child p{
        font-size: 14px;
        word-break: keep-all;
    }
    .about ul li:last-child  img{
        filter: grayscale(100%);
        height: 400px;
        position: relative;
        right: -100px;
        top: -50px;
    }

    .values{
        background: #000;
    }
    .values .inner{
        height: 1400px;
    }
    .values .values_img{
        width: 100%;
        height: 1400px;
        overflow: hidden;
    }
    .values .values_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; /* 중앙 기준 */
        display: block;
    }
    .values_txt{
        padding-top: 150px;
    }
    .values_txt span{
        font-size: 10px;
    }
    .values_txt h3{
        font-size: 6vw;
        margin: 20px 0 10px;
    }
    .values_txt p{
        font-size: 14px;
        word-break: keep-all;
        margin-bottom: 30px;
    }
    .values_txt ul{
        flex-direction: column;
        position: static;
    }
    .values_txt ul li{
        width: 100%;
        margin-top: 20px;
    }
    .values_txt ul li img{
        height: 100px;
    }
    .values_txt ul li h4{
        font-size: 6vw;
    }
    .values_txt ul li p{
        font-size: 14px;
        word-break: keep-all;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /*sub_Technology*/
    .mmt .inner{
        width: 85%;
    }
    .mmt span{
        font-size: 10px;
    }
    .mmt h3{
        font-size: 5vw;
        margin: 20px 0 10px;
    }
    .mmt p{
        font-size: 14px;
        word-break: keep-all;
    }
    .mmt p:last-child{
        font-size: 16px;
    }
    .core ul{
        flex-direction: column;
    }
    .core ul li{
        width: 100%;
        height: 250px;
    }
    .core ul li.active{
        height: 250px;
    }
    .core ul li.active div{
        padding: 0;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .core ul li.active h4{
        font-size: 5vw;
        margin: 20px 0 10px;
    }
    .core ul li p{
        font-size: 14px;
        word-break: keep-all;
    }


    /*pb_center*/
    #PR_Center .video .video-wrapper{
        width: 100%;
        max-width: 100%;
        height: auto; /* 원하는 최대 크기 */
        aspect-ratio: 16 / 9;
    }

    #PR_Center .video .video-wrapper iframe{
        width: 110vw;
        height: 110vw;
    }
    .cibi{
        width: 100%;
    }
    .cibi ul{
        flex-direction: column;
    }
    .cibi ul li{
        width: 100%;
    }
    .cibi ul li:first-child > img{
        width: 100%;
        height: auto;
    }
    .cibi ul li .download {
        margin-top: 20px;
    }
    .cibi ul li .download img{
        height: 80px;
    }
    .cibi ul li p{
        word-break: keep-all;
    }



















  }