.pb0{
    padding-bottom: 0!important;
}

.df{
    display: flex;
    justify-content: space-between;
}

.cover{
    position: relative;
}
.cover img{
    width: 100%;
}
.cover h2{
    display: flex;
    position: absolute;
    font-size: 80px;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}

.cover.cover_detail h2{
    display: flex;
    position: absolute;
    font-size: 80px;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:45%;
    transform: translate(-50%, -50%);
}

.cover.cover_detail h3{
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:55%;
    transform: translateX(-50%);
}

.contents{
    
    padding: 140px 0;
}
.contents .area {
    padding: 0 110px;
}
.contents .area .title{
    color: #121212;
    font-weight: bold;
    font-size: 60px;
    line-height: 100px;
}
.contents .area .red{
    color: #E60012;
    font-size: 40px;
    font-weight: bold;
    margin-top: 48px;

}
.contents .area .desc{
    color:#444444;
    margin-top: 50px;
    font-size: 40px;
    line-height: 65px;
}
.contents .area.area-center{
    text-align: center;
}


.contents .pl3{
    display: flex;
    padding: 0 110px;
    padding-top: 100px;
}

.contents .pl3 .title{
    width: 240px;
    font-size: 40px;
    margin-right: 52px;
    font-weight: normal;
    color: #121212;
    padding-top: 48px;
    border-top: 2px solid #121212;
}
.contents .pl3.distribution .title{
    line-height: 65px;
    width: 544px;
    margin-right: 93px;
    border-top: 0;
    padding-top: 0;
}
.contents .pl3.distribution .title h1{
    width: 253px;
    padding-top: 48px;
    border-top: 2px solid #121212;
}
.contents .pl3.distribution .title p{
    color: #444444;
    font-size: 34px;
    margin-top: 48px;
    left: 0;
}

.contents .pl3 .details li{
    margin-top:28px;
    list-style-type: none;
    position: relative;
    width: 100%;
    display: flex;
}
.contents .pl3.distribution .details li{
    margin-top: 150px;
}
.contents .pl3 .details li:first-child{
    margin-top: 0;
}
.contents .pl3 .details li > p{
    position: absolute;
    color: white;
    left: 80px;
    top:50%;
    transform: translateY(-50%);
    font-size: 40px;
}
.contents .pl3.box ul{
    display: flex;
    flex-wrap: wrap;
    gap: 200px;
    
}
.contents .pl3.box ul li{
    width: calc(50% - 100px);
    margin: 0;
    display: flex;
    flex-direction: column;
}
.contents .pl3.box ul li .title{
    width:  100%;
    padding-top: 0;
    border: 0;
    margin: 0;
}
.contents .pl3.box ul li .title h1{
    padding-top: 48px;
    border-top: 2px solid #121212;
    width: 246px;
}
.contents .pl3.box ul li .title p{
    margin-top: 56px;
    line-height: 65px;
    font-size: 35px;
    
}
.contents .pl3.box ul li .arrow{
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.contents .pl3.box ul li .arrow img {
  transition: transform 0.3s ease;
  width: 102px;
}

.contents .pl3.box ul li .arrow:hover img {
  animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
  0%, 50%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.contents .pl3.box ul li b{
    font-size: 36px;
    margin-left: 16px;
    color: #E60012;
  display: inline-block;
  animation: wobble-pause 2s infinite;
}

@keyframes wobble-pause {
  0%   { transform: none; }
  10%  { transform:  rotate(-3deg); }
  20%  { transform: rotate(3deg); }
  30%  { transform: rotate(-3deg); }
  40%  { transform:  rotate(3deg); }
  50%  { transform: none; }   /* 흔들림 종료 */
  100% { transform: none; }   /* 쉬는 구간 */
}

.contents .pl3.box ul li img{
    margin-top: 48px;

}

.contents .fullfillment{
    margin-top: 320px;
    
}
.contents .fullfillment img{
    margin-top: 120px;
}

.temperature{

    margin-top: 320px;
    display: flex;
}
.temperature div{
    position: relative;
}
.temperature div::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(12, 12, 12, 0) 0%,
        rgba(12, 12, 12, 0.7) 100%
    );
    
}

.temperature div:hover::after{
    content: none;
}
.temperature p{
    font-size: 60px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    color: white;
    filter: drop-shadow(2px 2px 7px black);
    transform: translate(-50%, -50%);
}

.lastmile{
    margin-top:320px;
}
.lastmile > img{
    float: right;
}
.lastmile ul{
    width: 100%;
    margin-top: 260px;
    display: flex;
}
.lastmile ul li h1{
    display: flex;
    height: 94px;
    font-size: 40px;
    border: 1px solid #121212;
    align-items: center;
    justify-content: center;
}
.lastmile ul li.active h1{
    background: #121212;
    color: white;
    font-weight: bold;
}
.lastmile ul li img{
    margin-top: 42px;
}
.lastmile ul li p{
    color: #444444;
    font-size: 32px;
    text-align: center;
    margin-top: 42px;
}


.faq{
    margin-top: 120px;
}
.faq li{
    border-top: 2px solid #121212;
}
.faq li:last-child{
    border-bottom: 2px solid #121212;
    
}
.faq li div{
    display: none;   
}
.faq li h1{
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    height: 185px;
    font-size: 40px;
    font-weight: bold;
    line-height: 65px;
    color: #121212;
    cursor: pointer;
}
.faq li h1::before{
    content: "Q";
    font-size: 80px;
    font-weight: bold;
    color: #E5E5E5;
    margin-right: 32px;
    margin-left: 32px;
}
.faq li h1::after{
    position: absolute;
    content: "";
    background-image: url('../images/arrow_up.png');
    background-size: 36px 21px;
    width: 36px;
    height: 21px;
    right: 40px;
    top: 83px;
}
.faq li.active h1::after{
    background-image: url('../images/arrow_down.png');
    background-size: 36px 21px;
}
.faq li.active div::before{
    content: "A";
    font-size: 80px;
    font-weight: bold;
    color: #E60012;
    margin-right: 32px;
}
.faq li.active div{
    display: flex;
    padding: 32px;
    background-color: #F6F6F6;
    color: #444444;
    font-size: 40px;
    line-height: 65px;
    
}
.faq_pagination{
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq_pagination > * {
    cursor: pointer;
}
.faq_pagination p{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E60012;
    width: 60px;
    height: 68px;
    font-size: 32px;
    color: #444444;
    margin-right: 16px;
}
.faq_pagination img:nth-of-type(2){
    margin-right: 32px;
    margin-left: 16px;
}
.faq_pagination img:nth-of-type(3){
    margin-right: 16px;
    margin-left: 32px;
    
}
.faq_pagination p:last-of-type{
    margin-right: 0;
}

.inquiry{
    margin-top: 120px;
}


.inquiry .block{
    display: flex;
    justify-content: space-between;
    margin-top: 78px;
}

.inquiry .block.one-block > div{
    width: 100%;
}
.inquiry .block.two-block > div{
    width: calc(50% - 30px);
}
.inquiry .block.three-block > div{
    width: calc(33% - 30px);
    
}

.inquiry .block > div > h1{
    line-height: 65px;
    box-sizing: border-box;
    color: #121212;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 32px;
}
.inquiry .block > div > input{
    border:2px solid #121212;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 0 53px;
    font-size: 40px;
}
.inquiry .block > div > input:focus{
    border: 2px solid #0068B7;
}
.inquiry .block > div .select{
    position: relative;
}
.inquiry .block > div .select .select_box{
    position: relative;
    font-size: 40px;
    background-color: white;
    color: #444444;
    padding: 0 53px;
    box-sizing: border-box;
    height: 100px;
    border: 2px solid #121212;
    line-height: 100px;
}
    
.inquiry .block > div .select.active .select_box{
    border: 2px solid #0068B7;
}
.inquiry .block > div .select.selected .select_box{
    background-color: rgba(0,104, 183, 0.05);
    border: 2px solid #0068B7;
    color: #0068B7;
}

.inquiry .block > div .select .select_box::after{
    content: "";
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/arrow_down.png");
    background-size: 36px 21px;
    width: 36px;
    height: 21px;
}
.inquiry .block > div .select.active .select_box::after{
    background-image: url("../images/arorw_up_active.png");
    background-size: 36px 21px;
    width: 36px;
    height: 21px;
    
}
.inquiry .block > div .select.selected .select_box::after{
    background-image: url("../images/selected.png");
    background-size: 42px 42px;
    width: 42px;
    height: 42px;
}
.inquiry .block > div .select .select_box_details{
    display: none;
}
.inquiry .block > div .select.active .select_box_details{
    display: block;
    background-color: white;
    /* position: absolute;
    top: 121px; */
    margin-top: 21px;
    width: 100%;
    box-sizing: border-box;
    line-height: 70px;
    padding: 53px;
    border: 2px solid #0068B7;
    font-size: 40px;
}
.inquiry .block > div .select.active .select_box_details .active{
    font-weight: bold;
    color: #0068B7;
}

.inquiry .select_details{
    display: none;
    width: calc(100% + 98px);
    box-sizing: border-box;
    padding: 85px 49px;
    margin-top: 85px;
    margin-left: -49px;
    border-radius: 61px;
    background-color: #F6F6F6;
}
.inquiry .select_details > h1{
    font-size: 40px;
    text-align: center;
    color: white;
    line-height: 90px;
    border-radius: 100px;
    background: #0068B7;
    font-weight: bold;
}

.inquiry > button{
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 200px;
    width: 348px;
    height: 105px;
    line-height: 105px;
    font-size: 40px;
    font-weight: bold;
    border:2px solid #0068B7;
    color: #0068B7;
    background-color: white;
}
.inquiry > button:hover{
    color: white;
    background-color: #0068B7;
    border: 0;
}
.inquiry .toggle{
    display: flex;
    justify-content: space-between;
    
}
.inquiry .toggle > div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 30px);
    font-size: 40px;
    height: 100px;
    background-color: white;
}

.inquiry .toggle > div:first-child{
    border: 2px solid #4A9A02;
    color: #4A9A02;
}

.inquiry .toggle > div:last-child{
    border: 2px solid #E60012;
    color: #E60012;
}

.inquiry .toggle > div.active:first-child{
    background-color: #F7FFF0;
}

.inquiry .toggle > div.active:last-child{
    background-color: #FFF2F3;
}
.inquiry .dropbox{
    border: 2px dashed #0068B7;
    background-color: #EBF7FF;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 40px;
    line-height: 65px;
    font-weight: normal;
    color: #444444;
}
.inquiry .dropbox > img{
    width: 98px;
}
.inquiry .dropbox p{
    margin-top: 24px;
}

.inquiry .file-list {
  margin-bottom: 20px;
}

.inquiry .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #121212;
  background-color: white;
  margin-bottom: 8px;
}

.inquiry .file-item p {
  margin: 0;
  font-size: 16px;
  color: #444;
}

.inquiry .file-item .close {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.manufacture > img{
    width: 100%;
    margin: 76px 0;
}
.manufacture > .desc{
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}
.manufacture > .desc > p{
    width: calc(33% - 55px);
    line-height: 65px;
    word-break: break-all;
}
.manufacture .title-gap{
    margin-top: 320px;

}

.manufacture .sub-title{
    position: relative;
    font-size: 40px;
    color: #121212;
    line-height: 65px;
    margin-bottom: 65px;
    width: 640px;
}
.manufacture .sub-title::after{
    content: "";
    position: absolute;
    left:0;
    top: -65px;
    height: 2px;
    background-color: #121212;
    width: 246px;

}

.manufacture .swiper-slide img{
    width: 100%;

}

.manufacture .swiper-button-next{
    right: 0 !important; 
    width: 80px;
    height: 80px;   
}
.manufacture .swiper-button-prev{
    left: 0 !important;
    width: 80px;
    height: 80px;
}
.manufacture .swiper-button-next::after{
    content: "";
    background-image: url("../images/swiper_right.png");
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    right: 0 !important;    
}
.manufacture .swiper-button-prev::after{
    content: "";
    left: 0 !important;
    background-image: url("../images/swiper_left.png");
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
}

.process {
    height: 1080px;
    background-image: url('../images/process_background.png');
    
}
.contents .area.process .title{
    color: white;
    text-align: center;
    padding-top: 126px;
}
.contents .area.process .contents{
    display: flex;
    gap: 33px;
    padding-top: 80px;
    padding-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contents .area.process .contents div {
  width: calc((100% - 33px * 3) / 4);
}
.contents .area.process .contents div img{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #444444;
    border-radius: 20px;
}
.contents .area.process .contents div.active img{
    border: 1px solid #E60012;
    box-shadow: 0px 0px 15px #E60012;
}




.brand_title {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 980px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}
.brand_title .title{
    z-index: 3;
    background-color: white;
    width: fit-content;
}
 

.brand_title .animation-svg {
    position: absolute;
    width: 1740px;
    height: 714px;
    overflow: visible;
    z-index: 2;
    top: 24px;
    /* width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

 
/* 머리 - 큰 원 */
.brand_title .head {
    stroke: url(#headGradient); /* 이렇게 변경 */
    stroke-width: 15;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 2 8500; /* 간격을 6000으로 조정 */
    animation: moveHead 8s linear infinite;
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.7));
}

/* 꼬리 - 긴 선 */
.brand_title .tail {
    stroke: #e74c3c;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 400 8500; /* 간격을 6000으로 조정 */
    animation: moveTail 8s linear infinite;
    opacity: 0.6;
}

@keyframes moveHead {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -8500; }
}

@keyframes moveTail {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: -8100; } /* 130 - 6000 = -5870 */
}

.brand_title .items{
        margin-top: 48px;
        display: flex;
        gap: 38px;
}


.video_area {
    position: relative;
}
.video_area .title{
    position: absolute;
    left: 110px;
    top: 149px;
    font-size: 60px;
    line-height: 100px;
    color: #FFFFFF;
    font-weight: bold;
    z-index: 11;
}
.video_area > img{
    width: 1442px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}
.video_area video{
    width: 100%;
    filter: 
        brightness(0.6)
        contrast(1.1)
        sepia(0.1)
        hue-rotate(0deg);

}



 

.video_area .animation-svg {
    position: absolute;
    width: 1442px;
    height: 820px;
    overflow: visible;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

 
/* 머리 - 큰 원 */
.video_area .head {
    stroke: url(#headGradient2); /* 이렇게 변경 */
    stroke-width: 15;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 2 4000; /* 간격을 6000으로 조정 */
    animation: moveHead 8s linear infinite;
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.7));
}

/* 꼬리 - 긴 선 */
.video_area .tail {
    stroke: #99FED7;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 400 4000; /* 간격을 6000으로 조정 */
    animation: moveTail 8s linear infinite;
    opacity: 0.6;
}

@keyframes moveHead {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -4000; }
}

@keyframes moveTail {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: -3600; } /* 130 - 6000 = -5870 */
}

.video_desc{
    font-size: 47px;
    color: #444444;
    line-height: 75px;
    padding: 45px 110px;
}
.video_desc b{
    font-weight: bold;
    word-break: auto-phrase;
}

.group{
    display: flex;
    justify-content: center;
    padding: 240px 120px;
}



.contents .company{
    padding-top: 120px;
    text-align: center;
    font-size: 22px;
    
}

.ground{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ground .ground_img{
    width: 1374px;
    height: auto;
}
.ground .box{
    width: 544px;
    height: 790px;
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: white;
    /* border: 2px solid #121212; */
    box-shadow: 3px 3px 15px 0px rgba(148, 148, 148, 0.25);
}
.ground .left{
    position: absolute;
    width: auto;
    height: auto;
    width: 372px;
    left: 446px;
    bottom: 145px;
}
.ground .left_box{
    background-color: unset;
    left: 8px;
}
.ground .right{
    position: absolute;
    width: auto;
    height: auto;
    width: 125px;
    right: 424px;
    bottom: 124px;
}
.ground .right_box{
    right: 8px;
}

.ground .box .text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 65px;
}
.ground .box .ground_detail{
    position: absolute;
    width: 134px;
    right: 22px;
    top: 348px;
}
.ground .box .text .center{
    font-size: 40px;
    font-weight: bold;
}
.ground .box .text .details{
    font-size: 32px;
    color: #444444;
    margin-top: 32px;
    text-align: left;
}
.ground .box .text .details p:first-child::after{
    content: "";
    display: block;
    width: 62px;
    height: 2px;
    background-color: #121212;
    margin: 48px 0;
}
.ground_popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.85);
    z-index: 1000;
}
.ground_popup .ground_popup_box{
    width: 1700px;
    height: 905px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ground_popup .ground_popup_box .popupSwiper .swiper-slide video {
  width: 100%;
  height: 905px;
  border-radius: 20px;
  /* 비율 유지하면서 다 보이게 */
  /* object-fit: contain;  */
  /* 비율 유지하면서 꽉 채우기 */
  object-fit: cover; 
  object-position: center;
}
.ground_popup .ground_popup_box .close{
    background: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    
}

.ground_popup .ground_popup_box .swiper-button-prev:after,
.ground_popup .ground_popup_box .swiper-button-next:after{
    display: none;
}
.ground_popup .ground_popup_box .swiper-button-prev{
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    cursor: pointer;
}
.ground_popup .ground_popup_box .swiper-button-next{
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    cursor: pointer;
}
.ground_popup .ground_popup_box .swiper-pagination{
    bottom: -51px;
}
.ground_popup .ground_popup_box .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 8.5px;
    background-color: #DDDDDD;
    opacity: 1;
}
.ground_popup .ground_popup_box .swiper-pagination .swiper-pagination-bullet-active{
    background-color: #E60012;
}
.ground_popup .ground_popup_box .ground_popup_details{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

img{
    max-width: 100%;
}


@media screen and (max-width: 1920px){
    .pb0{
    padding-bottom: 0!important;
}

.df{
    display: flex;
    justify-content: space-between;
}

.cover{
    position: relative;
}
.cover img{
    width: 100%;
}
.cover h2{
    display: flex;
    position: absolute;
    font-size: 4.1667vw;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}

.cover.cover_detail h2{
    display: flex;
    position: absolute;
    font-size: 4.1667vw;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:45%;
    transform: translate(-50%, -50%);
}

.cover.cover_detail h3{
    position: absolute;
    font-size: 1.2500vw;
    font-weight: bold;
    width: auto;
    color:white;
    left:50%;
    top:55%;
    transform: translateX(-50%);
}

.contents{
    
    padding: 7.2917vw 0;
}
.contents .area {
    padding: 0 5.7292vw;
}
.contents .area .title{
    color: #121212;
    font-weight: bold;
    font-size: 3.1250vw;
    line-height: 5.2083vw;
}
.contents .area .red{
    color: #E60012;
    font-size: 2.0833vw;
    font-weight: bold;
    margin-top: 2.5000vw;

}
.contents .area .desc{
    color:#444444;
    margin-top: 2.6042vw;
    font-size: 2.0833vw;
    line-height: 3.3854vw;
}
.contents .area.area-center{
    text-align: center;
}


.contents .pl3{
    display: flex;
    padding: 0 5.7292vw;
    padding-top: 5.2083vw;
}

.contents .pl3 .title{
    width: 12.5000vw;
    font-size: 2.0833vw;
    margin-right: 2.7083vw;
    font-weight: normal;
    color: #121212;
    padding-top: 2.5000vw;
    border-top: 0.1042vw solid #121212;
}
.contents .pl3.distribution .title{
    line-height: 3.3854vw;
    width: 28.3333vw;
    margin-right: 4.8438vw;
    border-top: 0;
    padding-top: 0;
}
.contents .pl3.distribution .title h1{
    width: 13.1771vw;
    padding-top: 2.5000vw;
    border-top: 0.1042vw solid #121212;
}
.contents .pl3.distribution .title p{
    color: #444444;
    font-size: 1.7708vw;
    margin-top: 2.5000vw;
    left: 0;
}

.contents .pl3 .details li{
    margin-top:1.4583vw;
    list-style-type: none;
    position: relative;
    width: 100%;
    display: flex;
}
.contents .pl3.distribution .details li{
    margin-top: 7.8125vw;
}
.contents .pl3 .details li:first-child{
    margin-top: 0;
}
.contents .pl3 .details li > p{
    position: absolute;
    color: white;
    left: 4.1667vw;
    top:50%;
    transform: translateY(-50%);
    font-size: 2.0833vw;
}
.contents .pl3.box ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10.4167vw;
    
}
.contents .pl3.box ul li{
    width: calc(50% - 5.2083vw);
    margin: 0;
    display: flex;
    flex-direction: column;
}
.contents .pl3.box ul li .title{
    width:  100%;
    padding-top: 0;
    border: 0;
    margin: 0;
}
.contents .pl3.box ul li .title h1{
    padding-top: 2.5000vw;
    border-top: 0.1042vw solid #121212;
    width: 12.8125vw;
}
.contents .pl3.box ul li .title p{
    margin-top: 2.9167vw;
    line-height: 3.3854vw;
    font-size: 1.8229vw;
    
}
.contents .pl3.box ul li .arrow{
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.contents .pl3.box ul li .arrow img {
  transition: transform 0.3s ease;
  width: 5.3125vw;
}

.contents .pl3.box ul li .arrow:hover img {
  animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
  0%, 50%, 100% { transform: translateX(0); }
  25% { transform: translateX(-0.1563vw); }
  75% { transform: translateX(0.1563vw); }
}

.contents .pl3.box ul li b{
    font-size: 1.8750vw;
    margin-left: 0.8333vw;
    color: #E60012;
  display: inline-block;
  animation: wobble-pause 2s infinite;
}

@keyframes wobble-pause {
  0%   { transform: none; }
  10%  { transform:  rotate(-3deg); }
  20%  { transform: rotate(3deg); }
  30%  { transform: rotate(-3deg); }
  40%  { transform:  rotate(3deg); }
  50%  { transform: none; }   /* 흔들림 종료 */
  100% { transform: none; }   /* 쉬는 구간 */
}

.contents .pl3.box ul li img{
    margin-top: 2.5000vw;

}

.contents .fullfillment{
    margin-top: 16.6667vw;
    
}
.contents .fullfillment img{
    margin-top: 6.2500vw;
}

.temperature{

    margin-top: 16.6667vw;
    display: flex;
}
.temperature div{
    position: relative;
}
.temperature div::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(12, 12, 12, 0) 0%,
        rgba(12, 12, 12, 0.7) 100%
    );
    
}

.temperature div:hover::after{
    content: none;
}
.temperature p{
    font-size: 3.1250vw;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    color: white;
    filter: drop-shadow(0.1042vw 0.1042vw 0.3646vw black);
    transform: translate(-50%, -50%);
}

.lastmile{
    margin-top:16.6667vw;
}
.lastmile > img{
    float: right;
}
.lastmile ul{
    width: 100%;
    margin-top: 13.5417vw;
    display: flex;
}
.lastmile ul li h1{
    display: flex;
    height: 4.8958vw;
    font-size: 2.0833vw;
    border: 0.0521vw solid #121212;
    align-items: center;
    justify-content: center;
}
.lastmile ul li.active h1{
    background: #121212;
    color: white;
    font-weight: bold;
}
.lastmile ul li img{
    margin-top: 2.1875vw;
}
.lastmile ul li p{
    color: #444444;
    font-size: 1.6667vw;
    text-align: center;
    margin-top: 2.1875vw;
}


.faq{
    margin-top: 6.2500vw;
}
.faq li{
    border-top: 0.1042vw solid #121212;
}
.faq li:last-child{
    border-bottom: 0.1042vw solid #121212;
}
.faq li div{
    display: none;   
}
.faq li h1{
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    height: 9.6354vw;
    font-size: 2.0833vw;
    font-weight: bold;
    line-height: 3.3854vw;
    color: #121212;
    cursor: pointer;
}
.faq li h1::before{
    content: "Q";
    font-size: 4.1667vw;
    font-weight: bold;
    color: #E5E5E5;
    margin-right: 1.6667vw;
    margin-left: 1.6667vw;
}
.faq li h1::after{
    position: absolute;
    content: "";
    background-image: url('../images/arrow_up.png');
    background-size: 1.8750vw 1.0938vw;
    width: 1.8750vw;
    height: 1.0938vw;
    right: 2.0833vw;
    top: 4.3229vw;
}
.faq li.active h1::after{
    background-image: url('../images/arrow_down.png');
    background-size: 1.8750vw 1.0938vw;
}
.faq li.active div::before{
    content: "A";
    font-size: 4.1667vw;
    font-weight: bold;
    color: #E60012;
    margin-right: 1.6667vw;
}
.faq li.active div{
    display: flex;
    padding: 1.6667vw;
    background-color: #F6F6F6;
    color: #444444;
    font-size: 2.0833vw;
    line-height: 3.3854vw;
    
}
.faq_pagination{
    margin-top: 6.2500vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq_pagination > * {
    cursor: pointer;
}
.faq_pagination p{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0521vw solid #E60012;
    width: 3.1250vw;
    height: 3.5417vw;
    font-size: 1.6667vw;
    color: #444444;
    margin-right: 0.8333vw;
}
.faq_pagination img:nth-of-type(2){
    margin-right: 1.6667vw;
    margin-left: 0.8333vw;
}
.faq_pagination img:nth-of-type(3){
    margin-right: 0.8333vw;
    margin-left: 1.6667vw;
    
}
.faq_pagination p:last-of-type{
    margin-right: 0;
}

.inquiry{
    margin-top: 6.2500vw;
}


.inquiry .block{
    display: flex;
    justify-content: space-between;
    margin-top: 4.0625vw;
}

.inquiry .block.one-block > div{
    width: 100%;
}
.inquiry .block.two-block > div{
    width: calc(50% - 1.5625vw);
}
.inquiry .block.three-block > div{
    width: calc(33% - 1.5625vw);
    
}

.inquiry .block > div > h1{
    line-height: 3.3854vw;
    box-sizing: border-box;
    color: #121212;
    font-size: 2.0833vw;
    font-weight: bold;
    margin-bottom: 1.6667vw;
}
.inquiry .block > div > input{
    border:0.1042vw solid #121212;
    width: 100%;
    height: 5.2083vw;
    box-sizing: border-box;
    padding: 0 2.7604vw;
    font-size: 2.0833vw;
}
.inquiry .block > div > input:focus{
    border: 0.1042vw solid #0068B7;
}
.inquiry .block > div .select{
    position: relative;
}
.inquiry .block > div .select .select_box{
    position: relative;
    font-size: 2.0833vw;
    background-color: white;
    color: #444444;
    padding: 0 2.7604vw;
    box-sizing: border-box;
    height: 5.2083vw;
    border: 0.1042vw solid #121212;
    line-height: 5.2083vw;
}
    
.inquiry .block > div .select.active .select_box{
    border: 0.1042vw solid #0068B7;
}
.inquiry .block > div .select.selected .select_box{
    background-color: rgba(0,104, 183, 0.05);
    border: 0.1042vw solid #0068B7;
    color: #0068B7;
}

.inquiry .block > div .select .select_box::after{
    content: "";
    position: absolute;
    right: 2.7604vw;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/arrow_down.png");
    background-size: 1.8750vw 1.0938vw;
    width: 1.8750vw;
    height: 1.0938vw;
}
.inquiry .block > div .select.active .select_box::after{
    background-image: url("../images/arorw_up_active.png");
    background-size: 1.8750vw 1.0938vw;
    width: 1.8750vw;
    height: 1.0938vw;
    
}
.inquiry .block > div .select.selected .select_box::after{
    background-image: url("../images/selected.png");
    background-size: 2.1875vw 2.1875vw;
    width: 2.1875vw;
    height: 2.1875vw;
}
.inquiry .block > div .select .select_box_details{
    display: none;
}
.inquiry .block > div .select.active .select_box_details{
    display: block;
    background-color: white;
    /* position: absolute;
    top: 6.3021vw; */
    margin-top: 1.0938vw;
    width: 100%;
    box-sizing: border-box;
    line-height: 3.6458vw;
    padding: 2.7604vw;
    border: 0.1042vw solid #0068B7;
    font-size: 2.0833vw;
}
.inquiry .block > div .select.active .select_box_details .active{
    font-weight: bold;
    color: #0068B7;
}

.inquiry .select_details{
    display: none;
    width: calc(100% + 5.1042vw);
    box-sizing: border-box;
    padding: 4.4271vw 2.5521vw;
    margin-top: 4.4271vw;
    margin-left: -2.5521vw;
    border-radius: 3.1771vw;
    background-color: #F6F6F6;
}
.inquiry .select_details > h1{
    font-size: 2.0833vw;
    text-align: center;
    color: white;
    line-height: 4.6875vw;
    border-radius: 5.2083vw;
    background: #0068B7;
    font-weight: bold;
}

.inquiry > button{
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 10.4167vw;
    width: 18.1250vw;
    height: 5.4688vw;
    line-height: 5.4688vw;
    font-size: 2.0833vw;
    font-weight: bold;
    border:0.1042vw solid #0068B7;
    color: #0068B7;
    background-color: white;
}
.inquiry > button:hover{
    color: white;
    background-color: #0068B7;
    border: 0;
}
.inquiry .toggle{
    display: flex;
    justify-content: space-between;
    
}
.inquiry .toggle > div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 1.5625vw);
    font-size: 2.0833vw;
    height: 5.2083vw;
    background-color: white;
}

.inquiry .toggle > div:first-child{
    border: 0.1042vw solid #4A9A02;
    color: #4A9A02;
}

.inquiry .toggle > div:last-child{
    border: 0.1042vw solid #E60012;
    color: #E60012;
}

.inquiry .toggle > div.active:first-child{
    background-color: #F7FFF0;
}

.inquiry .toggle > div.active:last-child{
    background-color: #FFF2F3;
}
.inquiry .dropbox{
    border: 0.1042vw dashed #0068B7;
    background-color: #EBF7FF;
    width: 100%;
    height: 19.7917vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2.0833vw;
    line-height: 3.3854vw;
    font-weight: normal;
    color: #444444;
}
.inquiry .dropbox > img{
    width: 5.1042vw;
}
.inquiry .dropbox p{
    margin-top: 1.2500vw;
}

.inquiry .file-list {
  margin-bottom: 1.0417vw;
}

.inquiry .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6250vw 0.8333vw;
  border: 0.0521vw solid #121212;
  background-color: white;
  margin-bottom: 0.4167vw;
}

.inquiry .file-item p {
  margin: 0;
  font-size: 0.8333vw;
  color: #444;
}

.inquiry .file-item .close {
  width: 1.0417vw;
  height: 1.0417vw;
  cursor: pointer;
}

.manufacture > img{
    width: 100%;
    margin: 3.9583vw 0;
}
.manufacture > .desc{
    display: flex;
    justify-content: space-between;
    margin-top: 0;
}
.manufacture > .desc > p{
    width: calc(33% - 2.8646vw);
    line-height: 3.3854vw;
    word-break: break-all;
}
.manufacture .title-gap{
    margin-top: 16.6667vw;

}

.manufacture .sub-title{
    position: relative;
    font-size: 2.0833vw;
    color: #121212;
    line-height: 3.3854vw;
    margin-bottom: 3.3854vw;
    width: 33.3333vw;
}
.manufacture .sub-title::after{
    content: "";
    position: absolute;
    left:0;
    top: -3.3854vw;
    height: 0.1042vw;
    background-color: #121212;
    width: 12.8125vw;

}

.manufacture .swiper-slide img{
    width: 100%;

}

.manufacture .swiper-button-next{
    right: 0 !important; 
    width: 4.1667vw;
    height: 4.1667vw;   
}
.manufacture .swiper-button-prev{
    left: 0 !important;
    width: 4.1667vw;
    height: 4.1667vw;
}
.manufacture .swiper-button-next::after{
    content: "";
    background-image: url("../images/swiper_right.png");
    width: 4.1667vw;
    height: 4.1667vw;
    background-size: 4.1667vw 4.1667vw;
    right: 0 !important;    
}
.manufacture .swiper-button-prev::after{
    content: "";
    left: 0 !important;
    background-image: url("../images/swiper_left.png");
    width: 4.1667vw;
    height: 4.1667vw;
    background-size: 4.1667vw 4.1667vw;
}

.process {
    height: 56.2500vw;
    background-image: url('../images/process_background.png');
    
}
.contents .area.process .title{
    color: white;
    text-align: center;
    padding-top: 6.5625vw;
}
.contents .area.process .contents{
    display: flex;
    gap: 1.7188vw;
    padding-top: 4.1667vw;
    padding-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contents .area.process .contents div {
  width: calc((100% - 1.7188vw * 3) / 4);
}
.contents .area.process .contents div img{
    width: 100%;
    box-sizing: border-box;
    border: 0.0521vw solid #444444;
    border-radius: 1.0417vw;
}
.contents .area.process .contents div.active img{
    border: 0.0521vw solid #E60012;
    box-shadow: 0.0000vw 0.0000vw 0.7813vw #E60012;
}




.brand_title {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 51.0417vw;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}
.brand_title .title{
    z-index: 3;
    background-color: white;
    width: fit-content;
}
 

.brand_title .animation-svg {
    position: absolute;
    width: 90.6250vw;
    height: 37.1875vw;
    overflow: visible;
    z-index: 2;
    top: 1.2500vw;
    /* width: 100%;
    height: 100%;
    background: white;
    border-radius: 1.0417vw;
    box-shadow: 0 0.5208vw 1.5625vw rgba(0,0,0,0.1); */
}

 
/* 머리 - 큰 원 */
.brand_title .head {
    stroke: url(#headGradient); /* 이렇게 변경 */
    stroke-width: 15;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 2 8500; /* 간격을 6000으로 조정 */
    animation: moveHead 8s linear infinite;
    filter: drop-shadow(0 0 0.7813vw rgba(231, 76, 60, 0.7));
}

/* 꼬리 - 긴 선 */
.brand_title .tail {
    stroke: #e74c3c;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 400 8500; /* 간격을 6000으로 조정 */
    animation: moveTail 8s linear infinite;
    opacity: 0.6;
}

@keyframes moveHead {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -8500; }
}

@keyframes moveTail {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: -8100; } /* 130 - 6000 = -5870 */
}

.brand_title .items{
        margin-top: 2.5000vw;
        display: flex;
        gap: 1.9792vw;
}


.video_area {
    position: relative;
}
.video_area .title{
    position: absolute;
    left: 5.7292vw;
    top: 7.7604vw;
    font-size: 3.1250vw;
    line-height: 5.2083vw;
    color: #FFFFFF;
    font-weight: bold;
    z-index: 11;
}
.video_area > img{
    width: 75.1042vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}
.video_area video{
    width: 100%;
    filter: 
        brightness(0.6)
        contrast(1.1)
        sepia(0.1)
        hue-rotate(0deg);

}



 

.video_area .animation-svg {
    position: absolute;
    width: 75.1042vw;
    height: 42.7083vw;
    overflow: visible;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%;
    height: 100%;
    background: white;
    border-radius: 1.0417vw;
    box-shadow: 0 0.5208vw 1.5625vw rgba(0,0,0,0.1); */
}

 
/* 머리 - 큰 원 */
.video_area .head {
    stroke: url(#headGradient2); /* 이렇게 변경 */
    stroke-width: 15;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 2 4000; /* 간격을 6000으로 조정 */
    animation: moveHead 8s linear infinite;
    filter: drop-shadow(0 0 0.7813vw rgba(231, 76, 60, 0.7));
}

/* 꼬리 - 긴 선 */
.video_area .tail {
    stroke: #99FED7;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 400 4000; /* 간격을 6000으로 조정 */
    animation: moveTail 8s linear infinite;
    opacity: 0.6;
}

@keyframes moveHead {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -4000; }
}

@keyframes moveTail {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: -3600; } /* 130 - 6000 = -5870 */
}

.video_desc{
    font-size: 2.4479vw;
    color: #444444;
    line-height: 3.9063vw;
    padding: 2.3438vw 5.7292vw;
}
.video_desc b{
    font-weight: bold;
    word-break: auto-phrase;
}

.group{
    display: flex;
    justify-content: center;
    padding: 12.5000vw 6.2500vw;
}



.contents .company{
    padding-top: 6.2500vw;
    text-align: center;
    font-size: 1.1458vw;
    
}

.ground{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ground .ground_img{
    width: 71.5625vw;
    height: auto;
}
.ground .box{
    width: 28.3333vw;
    height: 41.1458vw;
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: white;
    /* border: 0.1042vw solid #121212; */
    box-shadow: 0.1563vw 0.1563vw 0.7813vw 0.0000vw rgba(148, 148, 148, 0.25);
}
.ground .left{
    position: absolute;
    width: auto;
    height: auto;
    width: 19.3750vw;
    left: 23.2292vw;
    bottom: 7.5521vw;
}
.ground .left_box{
    background-color: unset;
    left: 0.4167vw;
}
.ground .right{
    position: absolute;
    width: auto;
    height: auto;
    width: 6.5104vw;
    right: 22.0833vw;
    bottom: 6.4583vw;
}
.ground .right_box{
    right: 0.4167vw;
}

.ground .box .text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3.3854vw;
}
.ground .box .ground_detail{
    position: absolute;
    width: 6.9792vw;
    right: 1.1458vw;
    top: 18.1250vw;
}
.ground .box .text .center{
    font-size: 2.0833vw;
    font-weight: bold;
}
.ground .box .text .details{
    font-size: 1.6667vw;
    color: #444444;
    margin-top: 1.6667vw;
    text-align: left;
}
.ground .box .text .details p:first-child::after{
    content: "";
    display: block;
    width: 3.2292vw;
    height: 0.1042vw;
    background-color: #121212;
    margin: 2.5000vw 0;
}
.ground_popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.85);
    z-index: 1000;
}
.ground_popup .ground_popup_box{
    width: 88.5417vw;
    height: 47.1354vw;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1.0417vw;
    box-shadow: 0 0.5208vw 1.5625vw rgba(0,0,0,0.1);
}

.ground_popup .ground_popup_box .popupSwiper .swiper-slide video {
  width: 100%;
  height: 47.1354vw;
  border-radius: 1.0417vw;
  /* 비율 유지하면서 다 보이게 */
  /* object-fit: contain;  */
  /* 비율 유지하면서 꽉 채우기 */
  object-fit: cover; 
  object-position: center;
}
.ground_popup .ground_popup_box .close{
    background: white;
    border-radius: 50%;
    width: 3.6458vw;
    height: 3.6458vw;
    position: absolute;
    top: 1.5625vw;
    right: 1.5625vw;
    cursor: pointer;
    
}

.ground_popup .ground_popup_box .swiper-button-prev:after,
.ground_popup .ground_popup_box .swiper-button-next:after{
    display: none;
}
.ground_popup .ground_popup_box .swiper-button-prev{
    width: 3.6458vw;
    height: 3.6458vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.5625vw;
    cursor: pointer;
}
.ground_popup .ground_popup_box .swiper-button-next{
    width: 3.6458vw;
    height: 3.6458vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5625vw;
    cursor: pointer;
}
.ground_popup .ground_popup_box .swiper-pagination{
    bottom: -2.6563vw;
}
.ground_popup .ground_popup_box .swiper-pagination .swiper-pagination-bullet{
    width: 0.6250vw;
    height: 0.6250vw;
    margin: 0 0.4427vw;
    background-color: #DDDDDD;
    opacity: 1;
}
.ground_popup .ground_popup_box .swiper-pagination .swiper-pagination-bullet-active{
    background-color: #E60012;
}
.ground_popup .ground_popup_box .ground_popup_details{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

img{
    max-width: 100%;
}
}


@media screen and (max-width: 768px){

    .cover h2{

        font-size: 7.4074vw;
    }

    .contents .pl3 .details li{
        flex-direction: column;
    }

    .contents .pl3.distribution .title{
        width: 100%;
    }

    .contents .pl3.distribution .title h1{
        width: 22.7778vw;
    }

    .contents .area .title{
        font-size: 5.5556vw;
        line-height: 6.0185vw;
    }
    
    .lastmile ul{
        flex-wrap: wrap;
    }
    .lastmile ul li{
        width: 33%;
    }
    .lastmile ul li:nth-child(3){
        margin-bottom: 8vw;
    }

    .lastmile ul li h1{
        font-size: 3.7037vw;
        height: 8.7037vw;
    }
    .lastmile ul li p{
        font-size: 3vw;
    }

    .lastmile > img{
        margin-top: 6.5vw;
    }

    .contents .pl3{
        padding: 0 4.6296vw;
        padding-top: 6vw;
    }

    .contents .pl3.distribution .title h1{
        font-size: 3.7037vw;
        padding-top: 5.2083vw;
    }

    .contents .pl3.distribution .title p{
        font-size: 3.7037vw;
        line-height: 6.0185vw;
    }

    .contents .pl3.distribution .title p{
        margin:3vw 0;
    }


    .contents .pl3.box ul li:first-child{
        margin-top: 10.4167vw;
    }
    .contents .pl3.box ul li .title h1{
        font-size: 3.7037vw;
        padding-top: 5.2083vw;
        width: 22.7778vw;
        border-top: 2px solid #121212;
    }

    .contents .area .red{
        font-size: 3.7037vw;
        margin-top: 5vw;
    }

    .contents .pl3.box ul li .title p{
        font-size: 3.7037vw;
        line-height: 6.0185vw;
    }

    .contents .pl3.box ul li .title p{
        margin:3vw 0;
    }

    .contents .pl3.box ul li b{
        font-size:3.7037vw;
    }

    .contents .pl3.box ul{
        flex-direction: column;
    }
    
    .contents .pl3.box ul li{
        width: 100%;
    }

    .contents .area.manufacture {
    }
    .contents .area.manufacture .desc{
        flex-direction: column;
        gap: 5vw;
        margin-top: 5vw;
    }
    .manufacture > .desc > p{
        width: 100%;
    }
    .df{
        flex-direction: column;
    }

    .process{
        height: 166.25vw;
    }

    .contents .area.process .contents div{
        width: calc((100% - 1.7188vw * 3) / 2);
    }


    .inquiry .block{
        flex-direction: column;
    }

    .inquiry .block.two-block > div{
        width: 100%;
        margin-bottom: 4.0625vw;
    }

    .inquiry .block.three-block > div{
        width: 100%;
        margin-bottom: 4.0625vw;
    }
    .inquiry > button{
        margin: 0;
        margin-top: 10vw;
        width: 100%;
    }

    .manufacture .sub-title{
        font-size: 3.7037vw;
        width: 100%;
    }
    .manufacture .sub-title::after{
        height: 0.1852vw;
        width: 22.7778vw;
    }

    .manufacture > .desc > p{
        font-size: 3.7037vw;
        line-height: 6.0185vw;
    }

    .contents .pl3.box ul li .arrow{
        position: absolute;
        top: 5.2083vw;
        right: 0;
    }

    .contents .area .desc{
        font-size: 3.7037vw;
        line-height: 6.0185vw;
    }

    .faq li{
        border-top:1px solid 0.1852vw;
    }

    .faq li h1{
        font-size: 3.7037vw;   
    }

    .faq li h1::after{
        width: 2.9630vw;
        height: 1.4815vw;
        background-size: 2.9630vw 1.4815vw;
    }

    .faq li.active h1::after{
        background-size: 2.9630vw 1.4815vw;
    }

    .inquiry .block > div > h1{
        font-size: 3.7037vw;
    }
    .inquiry .block > div .select .select_box{
        font-size: 3.7037vw;
        height: 9.2593vw;
        line-height: 9.2593vw;
    }

    .inquiry .block > div > input{
        font-size: 3.7037vw;
        height: 9.2593vw;
        line-height: 9.2593vw;
    }
    .inquiry > button{
        font-size: 3.7037vw;
        height: 9.2593vw;
        line-height: 9.2593vw;
    }

    .inquiry .block > div .select.active .select_box_details{
        font-size: 3.7037vw;
        line-height: 7.4074vw;
    }
    .inquiry .select_details > h1{
        font-size: 3.7037vw;
        line-height: 9.2593vw;
    }
    
    .faq_pagination p{
        width: 6.5556vw;
        height: 8.5556vw;
        font-size: 4vw;
    }

    .faq li.active div{
        font-size: 3.7037vw;
        line-height: 6.0185vw;
    }
    

    .contents .pl3.box ul li .arrow img{
        width: 9.4444vw;
        height: auto;
    }
    .manufacture .swiper-button-prev,
    .manufacture .swiper-button-next{
        width: 7.4074vw;
        height: 7.4074vw;
        background-size: 7.4074vw 7.4074vw;
    }
    .manufacture .swiper-button-prev::after,
    .manufacture .swiper-button-next::after{
        width: 7.4074vw;
        height: 7.4074vw;
        background-size: 7.4074vw 7.4074vw;
    }
    .manufacture .swiper-button-prev::after{
        left: 0;
    }

    .manufacture .swiper-button-next::after{
        right: 0;
    }


    .brand_title {
        height: 140vw;
    }
    .brand_title .items{
        flex-direction: column;
        gap: 6vw;
    }
    .brand_title .items img{
        width: 71.9444vw;
    }
    .video_area .title{
        left: 0;
        top: 11vw;
        font-size: 5.5556vw;
        width: 100%;
        text-align: center;
    }

    .video_area video{
        width: 230vw;
        transform: translateX(-27%);
    }
    .video_desc{
        font-size: 4.3519vw;
        line-height: 6.9444vw;
    }
    .cover.cover_detail h3{
        font-size:  1.9519vw;
        top: 60%
    }
    .video_area{
        overflow: hidden;
    }
    .contents .pl3{
        flex-direction: column;
    }
    .contents .pl3 .title{
        font-size: 4.3519vw;
        line-height: 6.9444vw;
        margin-bottom: 6vw;
    }
    .contents .pl3 .details li{
        margin-top: 2vw;
    }
    .contents .pl3 .details li:first-child{
        margin-top: 0;
    }
    
    .contents .pl3 .details li > p{
        font-size: 4.3519vw;
        
    }
    .contents .pl3 .details li img{
        height: 19.8148vw;
    }

    .fullfillment img{
        width: 52.3148vw;
        margin: 0 auto;
        margin-top: 6vw;
    }
    .temperature{
        flex-direction: column;
    }
    .temperature p{
        font-size: 5.5556vw;

    }
    .contents .pl3.box ul li img{
        height: auto;
    }


    .inquiry .dropbox p{
        font-size: 3.7037vw;
    }

    .inquiry .dropbox{
        height: 25vw;
    }

    .inquiry .dropbox > img{
        width: 10vw;
    }

    .inquiry .file-item p{
        font-size: 3.7037vw;
        height: 9.2593vw;
        line-height: 9.2593vw;
    }
    .inquiry .file-item .close{
        width: 5vw;
        height: 5vw;
    }
    .ground_popup .ground_popup_box .close{
        width: 9vw;
        height: 9vw;
    }
}