html, body {
    max-width: 100%;
    overflow-x: hidden;
    }
body {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* 헤더 영역 */
.header-area {
    background-color: var(--color-white);
    padding: var(--padding);
    height: 8rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-area .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 1rem;
}
.header-area .logo {
    width: 28.0rem;
}
.header-area ul {
    gap: 4rem;
}
.header-area ul li a {
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.2;
}
.header-area ul li a.active {
    color: #E1251B;
    position: relative;
}
.header-area ul li a.active::after {
    position: absolute;
    content: '';
    width: 0.3rem;
    height: 0.3rem;
    background-color: var(--color-4C9B70);
    border-radius: 50%;
    right: -0.4rem;
    top: -0.15rem;
}
.apply {
    color: var(--color-white);
    padding: 1.2rem 0;
    width: 16rem;
    text-align: center;
    background-color: var(--color-black);
    border-radius: 2.4rem;
}
.header-area .menu-btn {
    display: none;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_menu.svg)no-repeat center/cover;
    cursor: pointer;
}
.header-area .close-btn {
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_x-close.svg)no-repeat center/cover;
    cursor: pointer;
}

/* ------------------------ */
/* 사이드바 */
.side-area {
    z-index: 1000;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--color-white);
    width: 100%;
    height: 100vh;
    transition: 0.3s;
}
.side-area.active {
    right: 0;
}
.side-area .header-area {
    background-color: #FFE9C7;
}
.side-area .header-area .wrap {
    justify-content: flex-end;
}
.side-area .logo-box {
    background-color: #FFE9C7;
    padding: 4.8rem 4rem 4.4rem;
}
.side-area .logo-box a {
    width: 17.7rem;
}
.side-area .middle-box {
    padding: 5.6rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.side-area .middle-box ul {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.side-area .middle-box ul li a {
    font-size: 2.1rem;
    font-weight: 700;
    display: inline-block;
}
.side-area .middle-box ul li a.active {
    color: var(--color-4C9B70);
    position: relative;
}
.side-area .middle-box ul li a.active::after {
    position: absolute;
    content: '';
    width: 0.3rem;
    height: 0.3rem;
    background-color: var(--color-4C9B70);
    border-radius: 50%;
    right: -0.4rem;
    top: -0.15rem;
}
.side-area .middle-box .btn-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    position: absolute;
    bottom: 4rem;
    left: 0;
}
.side-area .middle-box .btn-box a {
    font-size: 1.8rem;
    font-weight: 700;
    height: 6rem;
    margin: 0 4rem;
}
.side-area .middle-box .btn-box .online-apply {
    background-color: var(--color-2E613A);
    color: var(--color-white);
}
.side-area .middle-box .btn-box .floating-apply {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

@media (max-width: 1200px) {

    .header-area {
        height: 6rem;
    }
    .header-area .wrap {
        padding-top: 0.4rem;
    }
    .header-area .logo {
        width: 22rem;
    }
    .header-area ul {
        display: none;
    }
    .header-area .menu-btn {
        display: block;
    }

}
@media (max-width: 767px) {
    .header-area .wrap {
        padding: 0;
    }
    .header-area {
        height: 5.6rem;
    }
    .header-area .logo {
        width: 22rem;
    }
    .header-area .close-btn,
    .header-area .menu-btn {
        width: 2rem;
        height: 2rem;
    }

}
/* //헤더 영역 */

.section-space {
    padding: 140px 0;
}
.ft-size27 {
    font-size: 2.7rem;
}

@media (max-width: 1200px) {
    .section-space {
        padding: 120px 0;
    }
    .ft-size27 {
        font-size: 2.3rem;
    }
}
@media (max-width: 767px) {
    .section-space {
        padding: 100px 0;
    }
    .ft-size27 {
        font-size: 2.0rem;
    }
}

/* ------------------------------------------------------------------------------- */
/* 모집중 */
.business-area {
    background: var(--color-FFF7E2);
    overflow-x: hidden;
}
.business-area .title {
    display: inline-flex;
}
.business-area .title > img {
    width: 47px;
    position: absolute;
    right: -59px;
    top: -30px;
    transform: translate(0, -15%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}


.business-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
    margin-top: 6.0rem;
}

.business-wrap li {
    width: calc(33.333% - 20px);
    text-align: center;
    position: relative; /* list-box-2의 절대 위치를 위해 부모에 상대 위치 지정 */
}

.business-wrap li div.list-box-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-FFE9C7);
    color: var(--color-800700);
    padding: 6.4rem 2.4rem;
    font-weight: 800;
    font-size: 3.2rem;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
    height: 160px;
}

.business-wrap li div.list-box-2 {
    background: linear-gradient(180deg, #E1251B 0%, #FFB2B0 100%);
    color: var(--color-white);
    padding: 2.2rem 2.0rem;
    font-weight: 800;
    font-size: 3.2rem;
    border-radius: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* 초기 상태: 축소 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 2.0rem;
    z-index: 1;
    width: 100%;
    height: 100%;
    white-space: normal; /* 줄바꿈 허용 */
    word-wrap: break-word; /* 긴 단어 줄바꿈 */
    word-break: break-word; /* 단어 단위 줄바꿈 */
    flex-direction: column; /* 텍스트가 수직으로 정렬되도록 */
}

/* 마우스 오버 시 효과 */
.business-wrap li:hover div.list-box-1 {
    opacity: 0; /* 투명하게 하여 사라지는 효과 */
    transform: scale(0.8); /* 살짝 줄어드는 효과 */
}

.business-wrap li:hover div.list-box-2 {
    transform: translate(-50%, -50%) scale(1.4); /* 배경과 텍스트 함께 확대 */
    display: flex; /* 마우스 오버 시 표시 */
    opacity: 1; /* 완전히 보이도록 설정 */
}

.business-wrap li div.list-box-2 p {
    font-size: 2.2rem;
    font-weight: 600;
}

.business-wrap li div.list-box-2 span {
    font-size: 1.6rem;
    letter-spacing: -1.2px;
    line-height: 1.4;
    font-size: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center; /* 아래쪽으로 정렬 */
}

.business-wrap .list-mo-ver {
    display: none;
}
@media (max-width: 1200px) {
    .business-wrap li {
        width: calc(49.333% - 20px);
        margin-top: 4.8rem;
    }
    .business-wrap li div.list-box-1 {
        font-size: 2.8rem;
        height: 168px;
    }
    .business-wrap li:hover div.list-box-2 {
        height: 200px;
        transform: translate(-50%, -50%) scale(1.1); /* 배경과 텍스트 함께 확대 */
    }
    .business-wrap li div.list-box-2 {
        padding: 2.0rem;
    }
    .business-wrap li div.list-box-2 span {
        font-size: 1.8rem;
    }
    .business-wrap li div.list-box-2 {
        padding: 4.4rem 2.0rem;
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {

    /* 모바일에서 마우스 오버 시 효과 제거 */
    .business-wrap li:hover div.list-box-1 {
        opacity: 1;
        transform: scale(1); 
    }

.business-wrap li:hover div.list-box-2 {
    display: none; /* 마우스 오버 시 표시 */
    opacity: 0; /* 완전히 보이도록 설정 */
}
.business-wrap .list-mo-ver {
    display: flex;
    flex-direction: column;
    gap:1.2rem;
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid;
}
.business-wrap .list-mo-ver p{
    font-size: 1.8rem;
    font-weight: 500;
}
.business-wrap .list-mo-ver span{
    font-size: 1.5rem;
    line-height: 1.5;
}
.business-wrap li div.list-box-1{
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;

}



    .business-area .title > img {
        width: 40px;
        right: -50px;
        top: -20px
    }
    .business-wrap{
        margin-top: 4.0rem;
    }
    .business-wrap li {
        width: 100%;
        margin: 0 12px;
    }
    .business-wrap li div.list-box-1 {
        font-size: 2.4rem;
    }
    .business-wrap li div.list-box-2 {
        padding: 1.6rem;
    }
    .business-wrap li div.list-box-2 {
        padding: 3.2rem 1.8rem;
        font-size: 2.2rem;
    }
    .business-wrap li div.list-box-2 span {
        font-size: 1.6rem;
    }
}


/* ------------------------------------------------------------------------------- */
/* 인재상 */
.talent-area {
    background: var(--color-FFE9D9);
}
.talent-area .sub-text {
    font-size: 3.2rem;
    color: var(--color-800700);
    font-weight: 700;
    padding: 50px 0 32px 0;
}
.talent-slide-box {
    gap: 24px;
}
.talent-box {
    padding: 2rem;
    border-radius: 16px;
    box-sizing: border-box;
    height: 200px;
}
.talent-box.bg-1 {
    background: linear-gradient(305deg, #FF8380 8.62%, #E1251B 91.38%);
}
.talent-box.bg-2 {
    background: linear-gradient(305deg, #FFB5B1 8.62%, #FF8380 91.38%);}

.talent-box p{
    color: #fff;
    font-size: 2.7rem;
    line-height: 1.4;
}
.talent-box span img {
    width: 80px;
}

@media (max-width: 1200px) {
    .talent-slide-box {
        gap: 20px;
    }
    .talent-area .sub-text {
        font-size: 2.6rem;
        padding: 40px 0 28px 0;
    }
    .talent-box {
        padding: 1.8rem;
        height: 168px;
    }
    .talent-box p{
        font-size: 2.4rem;
    }
    .talent-box span img {
        width: 60px;
    }

}

@media (max-width: 768px) {
    .talent-area .sub-text {
        font-size: 2.2rem;
        padding: 32px 0 24px 0;
    }
    .talent-slide-box {
        gap: 12px;
    }
    .talent-box {
        padding: 1.6rem;
        height: 132px;
    }
    .talent-box p{
        font-size: 2.0rem;
    }
    .talent-box span img {
        width: 48px;
    }
}


/* ------------------------------------------------------------------------------- */
/* 모집공고 */
.recruit-area {}
.recruit-area .recruit-box {
    display: flex;
    flex-direction: column;
    gap: 6.0rem
}
.recruit-area .recruit-box h5{
    font-size: 3.6rem;
    padding-bottom: 4.0rem;
    font-weight: 700;
    color: var(--color-800700);
}
.recruit-area .recruit-box img {
    width: 100%;
}
@media (max-width: 1200px) {
    .recruit-area .recruit-box h5{
        font-size: 3.0rem;
        padding-bottom: 3.2rem;
    }
    
}

@media (max-width: 767px) {
    .recruit-area .recruit-box h5{
        font-size: 2.6rem;
        padding-bottom: 2.8rem;
    }
    .recruit-area .recruit-box .recruit-img-1 img{
        content: url(../img/img-recruit-tb-1.svg);
    }
    .recruit-area .recruit-box .recruit-img-2 img{
        content: url(../img/img-recruit-tb-2.svg);
    }
}
@media (max-width: 560px) {
    .recruit-area .recruit-box .recruit-img-1 img{
        content: url(../img/img-recruit-mb-1.svg);
    }
    .recruit-area .recruit-box .recruit-img-2 img{
        content: url(../img/img-recruit-mb-2.svg);
    }
}

/* 비디오 */
.hanmi-video-area {
    background: #FFE9D9;
}
.hanmi-video-area .title {
    display: inline-flex;
}

.hanmi-video-area .title img {
    width: 117px;
    right: -70px;
    bottom: 32px;
    transform: translate(0, -15%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
.hanmi-video-area h5{
    font-size: 3.0rem;
    color: var(--color-800700);
    font-weight: 600;
    text-align: center;
    padding: 40px;
}
.video-wrap {
    overflow: hidden;
    padding-bottom: 100px;
}

.video-slide {
    max-width: 980px;
    width: 100%;
    position: relative; /* 화살표 버튼을 위한 상대 위치 */
}

.more-box {
    margin-top: 100px;
    gap: 3.6rem
}
.more-box p{
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-800700);
}
.more-btn-box {
    gap: 1.6rem
}
.more-btn-box a{
    width: 100%;
    border: 1px solid #E1251B;
    color: #E1251B;
    font-weight: 700;
    font-size: 3.0rem;
    padding: 1.8rem;
    box-sizing: border-box;
    border-radius: 10px;
}
.more-btn-box a:hover{
    color: var(--color-white);
    background: linear-gradient(90deg, #E1251B 0%, #FF8380 100%);
}
.more-btn-box a span {
    font-size: 2.4rem;
}

@media (max-width: 1200px) {
    .more-box {
        margin-top: 80px;
        gap: 3.2rem
    }
    .hanmi-video-area h5{
        font-size: 2.6rem;
        padding: 32px;
    }
    .more-box p{
        font-size: 2.8rem;
    }
    .more-btn-box a{
        font-size: 2.6rem;
    }

    .more-btn-box a span {
        font-size: 2.0rem;
    }
}


@media (max-width: 767px) {
    .more-box {

        margin-top: 60px;
        gap: 2.8rem
    }
    .hanmi-video-area h5{
        font-size: 2.2rem;
        padding: 28px;
    }
    .more-box p{
        font-size: 2.4rem;
    }
    .more-btn-box {
        flex-direction: column;
    }
    .more-btn-box a{
        font-size: 2.0rem;
    }
    .more-btn-box a span {
        font-size: 1.5rem;
    }
    .hanmi-video-area .title img {
        width: 90px;
        right: 0;
        bottom: auto;
        top: -40px;
    }
}



/* ------------------------------------------------------------------------------- */
/*타이머 영역 배경*/
.hanmi-timer {
    background: var(--color-FFE9C7);
}
/* ------------------------------------------------------------------------------- */
/* 복지영역 */
.benefit-area {
    background: var(--color-FFF7E2);
}
.benefit-area .title {
    display: inline-flex;
}
.benefit-area .title img {
    width: 52px;
    right: -60px;
    bottom: 10px;
    transform: translate(0, -15%);
    animation-name: bounce1;
    animation-duration: 2.5s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
.benefit-area .benefit-list li .benefit-detail-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.0rem;
}
.benefit-area .benefit-list li .benefit-detail-wrap > div {
    display: flex;
    justify-content: space-between;
    width: calc(50% - 12px);
    padding: 3.5rem;
    transition: 0.3s;
    cursor: default;
    box-sizing: border-box;
    border-radius: 2.0rem;
    background: var(--color-FFE9C7);
}
.benefit-area h5 {
    padding: 3.6rem 0 4.0rem 0;
    font-size: 2.4rem;
    font-weight: 600;
    transition: 0.3s;
    color: var(--color-E1251B);
}
.benefit-detail-box .text-box {
    gap: 1.2rem
}
.benefit-detail-box .text-1 { 
    color: var(--color-800700);
    font-weight: 700;
}
.benefit-detail-box .text-2 { 
    font-size: 2.4rem;
    color: var(--color-800700);
    line-height: 1.4;
}
.benefit-detail-box img {
    margin-top: 2.0rem;
    width: 80px;
    height: 80px;
}

@media (max-width: 1200px) {
    .benefit-area {
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
    .benefit-detail-box .text-2 { 
        font-size: 2.0rem;
    }
    .benefit-area h5 {
        padding: 3.0rem 0 3.4rem 0;
        font-size: 2.0rem;
    }
}
@media (max-width: 767px) {
    .benefit-area {
        padding-top: 10rem;
        padding-bottom: 0;
    }
    .benefit-area h5 {
        font-size: 1.8rem;
    }
    .benefit-area .benefit-list li .benefit-detail-wrap {
        flex-direction: column;
        gap: 1.6rem
    }
    .benefit-area .benefit-list li .benefit-detail-wrap > div {
        width: 100%;
        padding: 2.4rem;
    }
    .benefit-detail-box .text-2 { 
        font-size: 1.7rem;
    }
    .benefit-area .title img {
        width: 40px;
        right: 0;
        bottom: 40px;
    }
}
/* //복지영역 */


/* ------------------------------------------------------------------------------- */
/* FAQ 영역 */
.faq-area {
    background: var(--color-FFF7E2);
    box-sizing: border-box;
    padding: 0 0 140px 0;
    word-break: keep-all;
  }
  .faq-area .list-box {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 2.0rem
  }
  .faq-area .list-box > li:not(:last-child) {
    /* margin-bottom: 24px; */
  }
  .faq-area .list-box > li .area-1 {
    padding: 2.0rem;
    border-radius: 10px;
    border: 1px solid var(--color-800700);
    color: var(--color-800700);
    box-sizing: border-box;
    cursor: pointer;
  }
  .faq-area .list-box > li.active .area-1 {
    background: var(--color-gr300);
    border: 1px solid var(--color-E1251B);
    color: var(--color-white);
  }
  .faq-area .list-box > li .area-1 .left-box {
    width: calc(100% - 52px);
  }
  .faq-area .list-box > li .area-1 .text-1 {
    font-size: 28px;
    margin-right: 20px;
    white-space: nowrap;
  }
  .faq-area .list-box > li .area-1 .text-2 {
    font-size: 24px;
    line-height: 130%;
  }
  .faq-area .list-box > li .area-1 .text-2 span:first-child{
    margin-right: 6px;
  }
  .faq-area .list-box > li.active .area-1 .text-1 {
    color: var(--color-white);
  }
  .faq-area .list-box > li.active .area-1 .text-2 {
    color: var(--color-white);
  }
  .faq-area .list-box > li .area-1 .arrow-ico {
    width: 24px;
  }
  .faq-area .list-box > li.active .area-1 .arrow-ico > img {
    content: url(../img/ico_chevron-up.svg);
  }
  .faq-area .list-box > li .area-2 {
    box-sizing: border-box;

    padding: 24px 20px;
    display: none;

  }
  .faq-area .list-box > li .area-2 .dot-list-box > li {
    color: var(--color-800700);
    font-size: 20px;
    padding-left: 36px;
  }
  .faq-area .list-box > li .area-2 .dot-list-box > li::after {
    width: 5px;
    height: 5px;
    background: #0006AA;
    top: 16.695px;
    left: 15.5px;
  }
  .faq-area .top-up-btn {
    width: 60px;
    right: 48px;
    bottom: -120px;
  }
  .faq-area .bg-ico-2 {
    top: 1703px;
    left: -86px;
  }
  .faq-area .bg-ico-3 {
    top: 321px;
    right: -67px;
  }
  
  @media (max-width:1320px) {
    .faq-area {
        padding: 160px 0;
    }
    .faq-area .list-box {
        margin-top: 40px;
    }
    .faq-area .list-box > li:not(:last-child) {
        /* margin-bottom: 20px; */
    }
    .faq-area .list-box > li .area-1 {
        padding: 24px;
    }
    .faq-area .list-box > li .area-1 .text-1 {
        font-size: 24px;
        margin-right: 12px;        
    }
    .faq-area .list-box > li .area-1 .text-2 {
        font-size: 20px;
    }
    .faq-area .list-box > li .area-2 {
        padding: 24px;
    }
    .faq-area .list-box > li .area-2 .dot-list-box > li {
        font-size: 20px;
        padding-left: 31px;
    }
    .faq-area .list-box > li .area-2 .dot-list-box > li::after {
        width: 4px;
        height: 4px;        
        top: 14px;
        left: 13px;
    }
    .faq-area .top-up-btn {
        bottom: -100px;
    }
  }
  
  @media (max-width:767px) {
    .faq-area {
        padding: 120px 0;
    }
    .faq-area .list-box {
        margin-top: 48px;
    }
    .faq-area .list-box > li .area-1 {
        padding: 16px;
    }
    .faq-area .list-box > li .area-1 .left-box {
        width: calc(100% - 44px);
    }
    .faq-area .list-box > li .area-1 .text-1 {
        margin-right: 8px;        
    }
    .faq-area .list-box > li .area-1 .text-2 {
        font-size: 18px;
    }
    .faq-area .list-box > li .area-1 .arrow-ico {
        width: 24px;
    }
    .faq-area .list-box > li .area-2 {
        /* margin-top: 12px; */
        padding: 16px;
    }
    .faq-area .list-box > li .area-2 .dot-list-box > li {
        font-size: 16px;
        padding-left: 0px;
    }
    .faq-area .list-box > li .area-2 .dot-list-box > li::after {
        width: 3px;
        height: 3px;        
        top: 11.2975px;
        left: 10px;
    }
    .faq-area .top-up-btn {
        width: 48px;
        right: 24px;
        bottom: -80px;
    }
  }

/* ------------------------------------------------------------------------------- */
/* 하단 로고 영역 */
.bottom-area {
    padding: 0 0 120px 0;
    background: linear-gradient(180deg, #FFF7E2 0%, #FFDEB8 100%);
}
.bottom-area .bottom-text-box {
    margin-top: 4.0rem;
    gap: 2.0rem
}
.bottom-area .bottom-text-box .text-1{
    font-size: 3.2rem;
    text-align: center;
}
.bottom-area .bottom-text-box .text-1 > span.bold {
    font-size: 3.2rem;
    font-weight: 600;
}
.bottom-area .bottom-text-box .text-2{
    font-weight: 700;
    font-size: 4.8rem;
}
.bottom-area .bottom-img img{
    width: 24vw;
}

@media (max-width:1200px) {
    .bottom-area {
        padding: 0 0 100px 0;
    }
    .bottom-area .bottom-text-box {
        margin-top: 3.2rem;
    }
    .bottom-area .bottom-text-box .text-1{
        font-size: 2.6rem;
    }
    .bottom-area .bottom-text-box .text-1 > span.bold {
        font-size: 2.6rem;
    }
    .bottom-area .bottom-text-box .text-2{
        font-size: 4.0rem;
    }
}
@media (max-width:767px) {
    .wrap {
        padding: 0 20px;
    }
    .bottom-area {
        padding: 0 0 80px 0;
    }
    .bottom-area .bottom-text-box {
        margin-top: 2.8rem;
        gap: 1.6rem
    }
    .bottom-area .bottom-text-box .text-1{
        font-size: 2.0rem;
    }
    .bottom-area .bottom-text-box .text-1 > span.bold {
        font-size: 2.0rem;
    }
    .bottom-area .bottom-text-box .text-2{
        font-size: 2.8rem;
    }
    .bottom-area .bottom-img img{
        width: 50vw;
    }
}
@media (max-width:490px) {
.bottom-area .bottom-text-box .text-1{
    font-size: 1.8rem;

}
}
/* ------------------------------------------------------------------------------- */
/* 푸터 영역 */
.footer-area {
    background-color: #1A1A1A;
    color: #6D6D6D;
    padding: var(--padding);
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 2.0rem
}
.footer-area .footer-box .text-box {
    font-size: 1.8rem;
    font-weight:700;
}
.footer-area .footer-box .logo-box img {
    width: 10vw
}
.footer-area .footer-box .text-box > span {
    gap: 1.2rem
}
.footer-area .tel-box {
    align-items: center;
}
@media (max-width: 1200px) {
    .footer-area {
        padding-top: 3rem;
        padding-bottom: 3rem;
        margin-bottom:56px;
    }
    .footer-area .footer-box > .text-box {
        font-size: 1.4rem;
    }
    .footer-box .logo-box img {
        width: 8vw
    }
    
}
@media (max-width: 767px) {

    .footer-area {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
        flex-direction: column-reverse;
        overflow: hidden;
    }
    .footer-area .footer-box > .text-box > span{
        text-align: center;
        font-size: 1.2rem;
    }
    .footer-area .logo-box img{
        width: 60vw;

    }
    .footer-area .footer-box .text-box > span{
        gap:0
    }
    .addr-box {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}


/* //푸터 영역 */



/* ------------------------------------------------------------------------------- */
/* 비디오영역 */
.youtube-area {
  }
  /* .gr-line{box-sizing: border-box; border: 2px solid transparent; background-image: linear-gradient(45deg, #E26A30, #8731D4), linear-gradient(90deg, #E26A30, #8731D4); background-origin: border-box; background-clip: content-box, border-box; border-radius: 12px;} */
  
  .youtube-box {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    /* 21:9 */
    /* padding-bottom: 42.8571%; */
    /* 16:9 */
    padding-bottom: 56.25%;
    /* 4:3 */
    /* padding-bottom: 75%; */
  }  
  .youtube-box iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .video-area {}
  .video-area h5 {
    font-size: 2.4rem;
  }
  .youtube-box {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    /* 21:9 */
    /* padding-bottom: 42.8571%; */
    /* 16:9 */
    padding-bottom: 56.25%;
    /* 4:3 */
    /* padding-bottom: 75%; */
  }  
  .youtube-box iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .video-wrap {
    gap:20px
  }
  .video-wrap h5{
    font-size: 2.2rem;
  }
  .video-wrap .desc{
    font-size: 1.8rem;
  }
  .youtube-area.video-2ea {
    /* width: 980px; */
    gap:20px;
  }
  .youtube-box.video-half {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    /* 21:9 */
    /* padding-bottom: 42.8571%; */
    /* 16:9 */
    padding-bottom: 56.25%;
    /* 4:3 */
    /* padding-bottom: 75%; */
  } 
  .video-wrap.video-mt{
    margin-top: 40px;
  }
  @media (max-width: 1024px) {
    .youtube-area.video-2ea {
      width: 100%;
      margin-top: 0px;
    }
  }
  @media (max-width: 767px) {
    .video-wrap {
      flex-direction: column;
    }
    .video-wrap h5{
      font-size: 1.8rem;
      text-align: center;
    }
    .video-wrap .desc{
      font-size: 1.6rem;
      text-align: center;
    }
  }


.video-slide .swiper-button-prev,
.video-slide .swiper-button-next {
  transform: translateY(calc(-50% - -165px)) !important;
  
}
.video-slide .swiper-button-prev {
  left: 45% !important;
}
.video-slide .swiper-button-next {
  right: 45% !important;
}
  
@media (max-width: 767px) {
    .video-slide .swiper-button-prev {
        top: -1px;
        left: 40% !important;
      }
      .video-slide .swiper-button-next {
        top: -1px;
        right: 40% !important;
      }
  
}

@media (max-width: 560px) {
    .video-slide .swiper-button-prev {
        top: 60px;
        left: 40% !important;
      }
      .video-slide .swiper-button-next {
        top: 60px;
        right: 40% !important;
      }
  
}

@media (max-width: 440px) {
    .video-slide .swiper-button-prev {
        top: 80px;
      }
      .video-slide .swiper-button-next {
        top: 80px;
      }
  
}
@media (max-width: 375px) {
    .video-slide .swiper-button-prev {
        top: 60px;
      }
      .video-slide .swiper-button-next {
        top: 60px;
      }
  
}