.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item {
    width: calc(33.333% - 10px);
    height: 150px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* 버튼 스타일 */
.filter-btns {
    margin-bottom: 20px;
}

.filter-btns button {
    padding: 8px 15px;
    margin-right: 5px;
    border: none;
    background: #ddd;
    cursor: pointer;
}

.filter-btns button.active {
    background: #333;
    color: #fff;
}

#fullpage {
    width: 100%;
}

.section {
    width: 100%;
    height: 100vh;
}

.section_inner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#fullpage .section_inner .center {
    position: relative;

}

#fullpage .section_inner .logo_text {
    color: #FFFFFF;
    position: absolute;
    bottom: 125px;
    transform: rotate(-90deg);
}



/* ===== section0 메인 비주얼 ===== */
.section0 .visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.section0 .slide_box {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section0 .slide_box video,
.section0 .slide_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 배너 텍스트 */
.section0 .main_banner {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
}

.section0 .main_banner .title {
    line-height: 64px;
    margin-bottom: 20px;
    animation: txt_zoom 2s ease-in-out forwards;
}

@keyframes txt_zoom {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.section0 .main_banner .content {
    margin-bottom: 24px;
    opacity: 0.9;
    animation: txt_zoom 2.5s ease-in-out forwards;
}

.section0 .banner_play {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
    cursor: pointer;
    animation: txt_zoom 2.8s ease-in-out forwards;
}

.section0 .banner_play i {
    color: #fff;
}

/* 프로그래스바 */
.section0 .progress_bar {
    animation: txt_zoom 2s ease-in-out forwards;
    width: 150px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    margin-top: 10px;
}

.section0 .progress_bar_fill {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s linear;
    pointer-events: none;
}


/* SCROLL DOWN */
.scroll_down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    color: #fff;
}


.scroll_down p {
    letter-spacing: 3px;
}

.scroll_mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll_mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollAni 1.5s infinite;
}

@keyframes scrollAni {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* ===== 메인 배너 텍스트 애니메이션 ===== */

/* 텍스트 마스크 효과 - 아래서 올라오며 등장 */
.section0 .title {
    overflow: hidden;
}

.section0 .text_reveal {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section0 .text_reveal.on {
    opacity: 1;
    transform: translateY(0);
}

/* 페이드 + 위에서 살짝 내려오는 효과 */
.section0 .text_fade {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    filter: blur(4px);
}

.section0 .text_fade.on {
    opacity: 1;
    filter: blur(0);
}


/* ===== section1 ===== */
.section1 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    background-image: url(../images/PENTA\ ASSET.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;

}

.section1 .s1_top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section1 .s1_line {
    flex: 1;
    height: 1px;
    background-color: #111;
}

.section5 .s5_more,
.section3 .s3_more,
.section1 .s1_more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}


.section5 .s5_plus,
.section3 .s3_plus,
.section1 .s1_plus {
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e87722;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor: pointer;
    position: relative;
    animation: wave-blob 6s ease-in-out infinite;
    transform-origin: center center;
}


.section3 .s3_plus::before,
.section1 .s1_plus::before {
    position: absolute;
    top: -10px;
    left: -10px;
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e87722;
    background-color: rgba(243, 115, 33, 0.2);
    animation: wave-blob 6s ease-in-out infinite;
    transform-origin: center center;
}


@keyframes wave-blob {

    0%,
    100% {
        border-radius: 50% 50% 50% 50%;
        transform: scale(1) rotate(0deg);
    }

    25% {
        border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
        transform: scale(1.05) rotate(5deg);
    }

    50% {
        border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
        transform: scale(0.95) rotate(-3deg);
    }

    75% {
        border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
        transform: scale(1.03) rotate(3deg);
    }
}

.section3 .s3_more p,
.section1 .s1_more p {
    text-align: center;
    color: #e87722;
}

.section1 .s1_img {
    margin-bottom: 40px;
}

.section1 .s1_img img {
    width: 100vw;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
}

.section1 .s1_desc {

    text-align: right;
}

.fc-point {
    color: #F37321;
}

.section1 .s1_desc span {
    color: #002C5F;
}

/* ===== section2 ===== */
.section2 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background-image: url(../images/section2_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section2 .s2_list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.section2 .s2_item {
    flex: 1;
    padding: 40px 30px 145px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
}

.section2 .s2_item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.section2 .s2_item:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* ===== section3 ===== */
.section3 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F7F7F7;
    background-image: url(../images/PENTA\ ASSET_2.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
}

.section3 .s3_top {
    padding: 0 0 30px;
}

.section3 .s3_title_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.section3 .s3_line {
    flex: 1;
    height: 1px;
    background-color: #111;
}

.section3 .s3_sub {
    color: #333;
}

/* 슬라이더 */
.section3 .s3_slider_wrap {
    width: 100%;
    overflow: hidden;
}

.section3 .s3_slider .slick-track {
    display: flex;
    align-items: center;
}

.section3 .s3_slider .slick-slide {
    padding: 20px 10px;
    transform: scale(0.8);
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.section3 .s3_slider .slick-active {
    transform: scale(0.85);

}

.section3 .s3_slider .slick-center {
    transform: scale(1.02);
    opacity: 1;
}

.section3 .slide_card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.section3 .slide_card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
}

.section3 .slide_card_info {
    position: absolute;
    bottom: 28px;
    left: 24px;
    color: #fff;
}

.section3 .card_name {
    margin-bottom: 8px;
}

.section3 .card_desc {
    opacity: 0.55;
    line-height: 1.6;
}



/* ===== section4 ===== */
.section4 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background-image: url(../images/s4_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    box-sizing: border-box;
}

.section4 .s4_title_wrap {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* 화살표 */
.section4 .s4_arrow_wrap {
    position: absolute;
    right: 72px;
    top: 20%;
    transform: translateY(-100px);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.section4 .s4_arrow_wrap button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #e87722;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.section4 .s4_arrow_wrap button:hover {
    background-color: #cf6310;
    opacity: 0.5;
}

/* 슬라이더 */
.section4 .s4_slider_wrap {
    width: 100%;
    overflow: visible;
    /* hidden → visible */
    padding: 0 60px;
    box-sizing: border-box;
}

.section4 .s4_slider .slick-list {
    overflow: hidden;
}

.section4 .s4_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.section4 .s4_slide {
    padding: 0 12px;
    box-sizing: border-box;
    height: auto;
}

.section4 .s4_card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.section4 .s4_card_img {
    width: 100%;
    overflow: hidden;
}

.section4 .s4_card_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
    transition: filter 0.4s ease;
}

.section4 .s4_card:hover .s4_card_img img {
    filter: brightness(1);
}

.section4 .s4_card_info {
    padding: 20px;
}

.section4 .s4_label {
    margin-bottom: 8px;
}

.section4 .s4_card_title {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

.section4 .s4_card_desc {
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== section5 ===== */
.section5 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    background-image: url(../images/PENTA\ ASSET.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;
}

.section5 .s5_top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.section5 .s5_line {
    flex: 1;
    height: 1px;
    background-color: #111;
}

.section5 .s5_plus {
    background-color: #002C5F;
    color: #fff;
}

.section5 .s5_plus::before {
    position: absolute;
    top: -10px;
    left: -10px;
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 44, 95, 0.2);
    animation: wave-blob 6s ease-in-out infinite;
    transform-origin: center center;
}

.section5 .s5_more p {
    text-align: center;
    color: #002C5F;
}

.section5 .s5_sub {
    color: #333;
    margin-bottom: 24px;
}

.fc-navy {
    color: #002C5F;
}

.section5 .s5_img {
    margin-bottom: 24px;
}

.section5 .s5_img img {
    width: 100vw;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    object-position: center center;
}

/* 하단 카드 3개 */
.section5 .s5_card_list {
    display: flex;
    gap: 20px;
}

.section5 .s5_card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    cursor: pointer;
    transition: box-shadow 0.3s;
    box-shadow: 2px 6px 12px 0 rgba(140, 140, 140, 0.25);
}

.section5 .s5_card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section5 .s5_card_label {
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section5 .s5_card_title {
    color: #111;
}


/* ===== section6 ===== */
.section6 .section_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-image: url(../images/s6_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section6 .s6_title_wrap {
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
}

.section6 .s6_title_wrap h2 {
    margin-top: 20px;
}

.section6 .s6_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.section6 .s6_item {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background-color 0.3s;
    cursor: pointer;
}

/* 업무 제휴사 호버시 그레이 */
.section6 .s6_item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.8;
}

.section6 .s6_item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


.section6 .s6_item img {
    width: 100%;
    max-width: 180px;
    height: 100%;
    object-fit: cover;
}

.section6 .s6_empty {
    background-color: transparent;
    pointer-events: none;
    backdrop-filter: none;
    margin-bottom: 10%;

}


/* ===== 파트너 롤링 배너 ===== */
.partner_rolling {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partner_rolling .rolling_track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.partner_rolling:hover .rolling_track {
    animation-play-state: paused;
}

.partner_rolling .rolling_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner_rolling .rolling_item img {
    object-fit: contain;
    filter: opacity(0.3);
    transition: filter 0.3s ease;
}

.partner_rolling:hover .rolling_item img {
    filter: grayscale(0%) opacity(1);
}


/* ===== section7 푸터 ===== */
#section7 .footer_inner {
    width: 100%;
    background-color: #0e2354;
    padding: 50px 0;
}

#section7 .footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#section7 .footer_top p {
    color: #fff;
}

#section7 .footer_logo {
    object-fit: contain;
}

#section7 .footer_info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

#section7 .footer_info span {
    color: rgba(255, 255, 255, 0.5);
}

#section7 .footer_copy {
    color: rgba(255, 255, 255, 0.5);
}

#section7 .footer_copy span {
    color: rgba(255, 255, 255, 1);
}


/* ===== 애니메이션 공통 ===== */
.ani_up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ani_up.ani_up {
    opacity: 1;
    transform: translateY(0);
}

.ani_left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ani_left.ani_left {
    opacity: 1;
    transform: translateX(0);
}

.ani_right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ani_right.ani_right {
    opacity: 1;
    transform: translateX(0);
}

/* ===== 애니메이션 초기 상태 ===== */
/* section1 */
#section1 .s1_img,
#section1 .s1_desc,
#section1 .s1_top {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section1 .s1_img {
    transform: translateX(-60px);
}

#section1 .s1_desc,
#section1 .s1_top {
    transform: translateX(60px);
}

#section1 .s1_img.ani_left {
    opacity: 1;
    transform: translateX(0);
}

#section1 .s1_desc.ani_right,
#section1 .s1_top.ani_right {
    opacity: 1;
    transform: translateX(0);
}

/* section2 */
#section2 .s2_item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#section2 .s2_item.ani_up {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    gap: 10px;
    opacity: 1;
    transform: translateY(0);
}

#section2 .s2_item.ani_up i {
    margin-top: 40px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
}

#section2 .s2_item.ani_up:hover i {
    opacity: 1;
}

/* section3 */
#section3 .s3_top {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section3 .s3_top.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section4 */
#section4 .s4_arrow_wrap,
#section4 .s4_title_wrap {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section4 .s4_arrow_wrap.ani_up,
#section4 .s4_title_wrap.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section4 .s4_slide {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.5s ease;
}

#section4 .s4_slide.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section5 */
#section5 .s5_top {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section5 .s5_top.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section5 .s5_card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.5s ease;
}

#section5 .s5_card.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section6 */
#section6 .s6_title_wrap {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section6 .s6_title_wrap.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section6 .s6_item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#section6 .s6_item.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section1 */
#section1 .s1_top {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section1 .s1_top.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section1 .s1_img {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section1 .s1_img.ani_left {
    opacity: 1;
    transform: translateX(0);
}

#section1 .s1_desc {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section1 .s1_desc.ani_right {
    opacity: 1;
    transform: translateX(0);
}

/* section2 */
#section2 .s2_item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#section2 .s2_item.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section3 */
#section3 .s3_top,
#section3 .s3_slider {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section3 .s3_top.ani_up,
#section3 .s3_slider.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section4 */
#section4 .s4_title_wrap {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section4 .s4_title_wrap.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section4 .s4_slide {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#section4 .s4_slide.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* ===== section5 ===== */
#section5 .s5_top,
#section5 .s5_sub,
#section5 .s5_img {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section5 .s5_top.ani_up,
#section5 .s5_sub.ani_up,
#section5 .s5_img.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section5 .s5_card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#section5 .s5_card.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* section6 */
#section6 .s6_title_wrap {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section6 .s6_title_wrap.ani_up {
    opacity: 1;
    transform: translateY(0);
}

#section6 .s6_item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#section6 .s6_item.ani_up {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   반응형 미디어쿼리 (와이드 데스크탑 → 모바일)
   ========================================================= */

/* ===== 1920px 이상 (와이드 데스크탑) ===== */
@media screen and (min-width: 1921px) {

    .section0 .main_banner {
        left: 25%;
    }

    .section1 .s1_img img {
        max-height: 420px;
    }

    .section3 .slide_card img {
        height: 440px;
    }

    .section4 .s4_card_img img {
        height: 260px;
    }

    .section4 .s4_arrow_wrap {
        right: 100px;
    }

    .section5 .s5_img img {
        max-height: 420px;
    }

    .section6 .s6_grid {
        gap: 16px;
    }

    .section6 .s6_item img {
        max-width: 200px;
    }
}

/* ===== 1600px ~ 1920px ===== */
@media screen and (max-width: 1920px) and (min-width: 1601px) {

    .section1 .s1_img img {
        max-height: 360px;
    }

    .section3 .slide_card img {
        height: 400px;
    }

    .section4 .s4_card_img img {
        height: 220px;
    }

    .section5 .s5_img img {
        max-height: 360px;
    }
}

/* ===== 1401px ~ 1600px (기본 PC 기준) ===== */
@media screen and (max-width: 1600px) and (min-width: 1401px) {

    .section1 .s1_img img {
        max-height: 320px;
    }

    .section3 .slide_card img {
        height: 380px;
    }

    .section4 .s4_card_img img {
        height: 200px;
    }
}

/* ===== 1400px 이하 ===== */
@media screen and (max-width: 1400px) {

    .section1 .s1_img img {
        max-height: 280px;
    }

    .section3 .slide_card img {
        height: 320px;
    }

    .section4 .s4_card_img img {
        height: 180px;
    }

    .section6 .s6_grid {
        gap: 8px;
    }
}

/* ===== 1200px 이하 ===== */
@media screen and (max-width: 1200px) {

    .section0 .main_banner {
        width: 100%;
        left: 55%;
    }

    .section3 .slide_card img {
        height: 300px;
    }

    .section4 .s4_arrow_wrap {
        right: 40px;
    }

    .section4 .s4_slider_wrap {
        padding: 0 40px;
    }

    .section6 .s6_grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===== 1024px 이하 ===== */
@media screen and (max-width: 1024px) {
    .section0 .main_banner {
        width: 100%;
        left: 60%;
    }

    .section2 .s2_item {
        padding: 40px 15px 180px;
    }

    .section3 .s3_top {
        padding: 0 20px 20px;
    }

    .section3 .slide_card img {
        height: 280px;
    }

    .section4 .s4_arrow_wrap {
        right: 30px;
    }

    .section4 .s4_slider_wrap {
        padding: 0 30px;
    }

    .section5 .s5_card_list {
        gap: 12px;
    }

    .section6 .s6_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .section6 .s6_title_wrap {
        margin-bottom: 40px;
    }

    #section7 .footer_info {
        gap: 10px;
    }
}

/* ===== 900px 이하 ===== */
@media screen and (max-width: 900px) {

    .section0 .main_banner {
        left: 50%;
    }

    .section1 .s1_img img {
        max-height: 240px;
    }

    .section3 .slide_card img {
        height: 260px;
    }

    .section4 .s4_card_img img {
        height: 170px;
    }

    .section5 .s5_card_list {
        flex-wrap: wrap;
    }

    .section5 .s5_card {
        flex: 1 1 45%;
    }

    .section6 .s6_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== 767px 이하 (모바일) ===== */
@media screen and (max-width: 767px) {

    /* section0 */
    .section0 .main_banner {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    .section0 .banner_line {
        width: 100%;
    }

    /* section1 */
    .section1 .section_inner {
        background-image: none;
    }

    .section1 .s1_top {
        flex-wrap: wrap;
    }

    .section1 .s1_img img {
        max-height: 200px;
    }

    .section1 .s1_desc {
        text-align: left;
    }

    .section2 .section_inner{
        padding: 100px 0;
        height: 100vh;

    }
    /* section2 */
    .section2 .s2_list {
        display: flex;
        flex-direction: column;
    }

    .section2 .s2_item {
        min-width: 160px;
        padding: 20px 15px;
    }

    /* section3 */
    .section3 .section_inner {
        background-image: none;
    }

    .section3 .s3_top {
        padding: 0 20px 20px;
    }

    .section3 .s3_title_wrap {
        align-items: flex-start;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .section3 .s3_line {
        display: none;
    }

    .section3 .slide_card img {
        height: 240px;
    }

    /* section4 */
    .section4 .section_inner {
        padding: 60px 0;
    }

    .section4 .s4_arrow_wrap {
        right: 20px;
        top: 40%;
        display: none;
    }

    .section4 .s4_slider_wrap {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .section4 .s4_card_img img {
        height: 160px;
    }

    /* section5 */
    .section5 .section_inner {
        background-image: none;
    }

    .section5 .s5_top {
        flex-wrap: wrap;
    }

    .section5 .s5_line {
        display: none;
    }

    .section5 .s5_img img {
        max-height: 200px;
    }

    .section5 .s5_card_list {
        flex-direction: column;
        gap: 12px;
    }

    .section5 .s5_card {
        flex: 1 1 auto;
    }

    /* section6 */
    .section6 .section_inner {
        align-items: flex-start;
        padding: 50px 0;
        box-sizing: border-box;
    }

    .section6 .s6_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .section6 .s6_title_wrap {
        margin-bottom: 20px;
    }

    /* 롤링배너 */
    .partner_rolling .rolling_item img {
        height: 30px;
    }

    /* 푸터 */
    #section7 .footer_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    #section7 .footer_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
