/********** header **********/
.header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 80px;
    background: transparent;
    transition: background 0.3s ease-in-out;
}
.header.hover,
.header.scrolled {
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    height: 80px;
    max-width: 1520px;
    margin: 0 auto;
}
.header .header_logo img {
    display: block;
}
.header .mobile_menu_open_btn {
    display: none;
}
.header .gnb_wrap {
    display: flex;
    gap: 80px;
}
.header .gnb_wrap .gnb_item {
    position: relative;
}
.header .gnb_wrap .gnb_item > a {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    position: relative;
    padding: 30px 0;
}
.header .gnb_wrap .gnb_2dep {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 0, 1, 1);
    background: #fff;
}
.header .gnb_wrap .gnb_item > a:hover + .gnb_2dep {
    max-height: 300px;
}
.header .gnb_wrap .gnb_item > a + .gnb_2dep:hover {
    max-height: 300px;
}
.header .gnb_wrap .gnb_2dep li {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.header .gnb_wrap .gnb_2dep li:first-child {
    border-top: 1px solid #ddd;
    padding-top: 12px;
}
.header .gnb_wrap .gnb_2dep li:last-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}
.header .gnb_wrap .gnb_2dep li a {
    padding: 12px 30px;
    display: block;
    text-align: center;
    color: #555;
    font-size: 15px;
}
.header .gnb_wrap .gnb_2dep li a:hover {
    color: #d72d2c;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.header .lang_wrap {
    position: relative;
    width: 82px;
}
.header .lang_btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: transparent;
}
.header .lang_list {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    display: none;
    overflow: hidden;
    z-index: 10;
}
.header .lang_list li {
    padding: 16px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #777;
}
.header .lang_list li:first-child {
    padding-bottom: 8px;
}
.header .lang_list li:last-child {
    padding-top: 8px;
}
.header .lang_list li:hover {
    color: #333;
    font-weight: 600;
}
.header .gnb_mobile {
    display: none;
}
/* 스크롤, 호버시 */
.header.scrolled .header_logo img,
.header.hover .header_logo img {
    content: url("../images/logo_header_dark.svg");
}
.header.scrolled .gnb_wrap .gnb_item > a,
.header.hover .gnb_wrap .gnb_item > a,
.header.scrolled .lang_btn,
.header.hover .lang_btn {
    color: #333;
}
.header.scrolled .gnb_wrap .gnb_item > a:hover,
.header.hover .gnb_wrap .gnb_item > a:hover {
    color: #d72d2c;
    font-weight: 700;
}
.header.hover .gnb_item .gnb_2dep {
    display: flex;
}
.header.scrolled .lang_btn img,
.header.hover .lang_btn img {
    content: url("../images/icon_lang_arrow.svg");
}

@media (max-width: 1199px) {
    .header .header_inner {
        padding: 0 20px;
    }
    .header .gnb_wrap {
        gap: 40px;
    }
    .header .gnb_wrap .gnb_item > a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 64px;
    }
    .header .header_inner {
        position: relative;
        padding: 14px 20px;
        height: 64px;
    }
    .header .logo_wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .header_logo img {
        width: 115px;
        height: 36px;
    }
    .header .mobile_menu_open_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }
    .header.scrolled .mobile_menu_open_btn img,
    .header.hover .mobile_menu_open_btn img {
        filter: invert(1);
    }
    .header .gnb_wrap {
        display: none;
    }
    .header .gnb_mobile {
        display: block;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 5;
        background: #fff;
        transition: all 0.3s;
    }
    .header .gnb_mobile .top {
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .gnb_mobile .top .header_logo img {
        display: block;
        width: 115px;
        height: 36px;
    }
    .header .gnb_mobile .top .gnb_close_btn {
        background: transparent;
    }
    .header .gnb_mobile .top .gnb_close_btn img {
        display: block;
    }
    .header .gnb_mobile .gnb_mobile_wrap {
        padding: 20px;
        height: calc(100% - 64px);
        overflow: auto;
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
    .header .gnb_mobile .gnb_item {
        position: relative;
    }
    .header .gnb_mobile .gnb_item .gnb_link {
        border-bottom: 1px solid #ebebeb;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
        position: relative;
    }
    .header .gnb_mobile .gnb_item .gnb_link:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 18px;
        height: 18px;
        z-index: 1;
        transition: 0.4s;
        background: url("../images/icon_mobile_arrow_down.svg") no-repeat right top;
    }
    .header .gnb_mobile .gnb_only .gnb_link:after {
        display: none;
    }
    .header .gnb_mobile .gnb_item.active .gnb_link:after {
        transform: rotate(180deg);
    }
    .header .gnb_mobile .gnb_mobile_wrap .gnb_2dep {
        padding-top: 20px;
        display: none;
    }
    .header .gnb_mobile .gnb_mobile_wrap .gnb_2dep li + li {
        padding-top: 20px;
    }
    .header .gnb_mobile .gnb_mobile_wrap .gnb_2dep a {
        display: block;
    }
    .header .lang_wrap {
        position: absolute;
        right: 50px;
    }
    .header .lang_btn {
        font-size: 16px;
    }
    .header .gnb_mobile .top .right {
        display: flex;
        align-items: center;
    }
    .header .gnb_mobile .top .lang_wrap {
        position: relative;
        right: auto;
    }
    .header .gnb_mobile .top .lang_btn {
        height: 36px;
    }
    .header .gnb_mobile .top .lang_list {
        top: 40px;
    }
}

/********** footer **********/
.footer {
    background: #171717;
}
.footer .footer_inner {
    padding: 70px 80px;
    display: flex;
    gap: 40px;
    max-width: 1520px;
    margin: 0 auto;
}
.footer .footer_inner .footer_logo_wrap img {
    display: block;
}
.footer .footer_inner .info_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer .footer_inner .info_wrap .info_text {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.footer .footer_inner .info_wrap .info_text span {
    color: #ccc;
}
.footer .footer_inner .info_wrap .copy {
    font-size: 14px;
    color: #999;
}

@media (max-width: 1199px) {
    .footer .footer_inner {
        padding: 70px 40px;
    }
}

@media (max-width: 768px) {
    .footer .footer_inner {
        padding: 20px 24px;
        flex-direction: column;
        gap: 20px;
    }
    .footer .footer_inner .footer_logo_wrap img {
        width: 105px;
        height: 20px;
    }
    .footer .footer_inner .info_wrap .info_text {
        display: block;
        font-size: 14px;
        line-height: 20px;
    }
    .footer .footer_inner .info_wrap .info_text span {
        margin-right: 4px;
    }
    .footer .footer_inner .info_wrap .copy {
        font-size: 12px;
    }
}

/********** main **********/
/* section */
.section_wrap {
    position: relative;
}
/* 메인 - visual */
.visual_swiper .swiper-slide::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.visual_swiper {
    position: relative;
    height: clamp(520px, 100vh, 937px);
}
.visual_swiper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.visual_swiper .inner_text_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 5;
}
.visual_swiper .inner_text_wrap .title {
    font-size: 100px;
    line-height: 100px;
    color: #fff;
}
.visual_swiper .inner_text_wrap .desc {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
}
.visual_swiper .inner_text_wrap .desc br {
    display: none;
}
.visual_swiper .inner_text_wrap button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 160px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    font-size: 15px;
    color: #333;
    transition: background 0.3s ease-in-out;
}
.visual_swiper .inner_text_wrap button:hover {
    background: #fff;
}
.visual_swiper .swiper-button-next,
.visual_swiper .swiper-button-prev {
    width: 64px;
    height: 64px;
}
.visual_swiper .swiper-button-next {
    right: 136px;
    background: url("../images/icon_next.svg") no-repeat center/cover;
}
.visual_swiper .swiper-button-prev {
    left: 136px;
    background: url("../images/icon_prev.svg") no-repeat center/cover;
}
.visual_swiper .swiper-button-next:after,
.visual_swiper .swiper-button-prev:after {
    display: none;
}
.visual_pagination {
    position: absolute;
    bottom: clamp(48px, 8vh, 104px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.visual_pagination button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 48px;
    background: #333;
    color: #ccc;
    font-size: 17px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}
.visual_pagination button.active {
    border: 1px solid #fff;
    background: #000;
    color: #fff;
    font-weight: 700;
}
.visual_pagination button::after {
    content: "";
    position: absolute;
    bottom: -24px;
    width: 100%;
    height: 2px;
    border-radius: 200px;
    background: rgba(255, 255, 255, 0.3);
}
.visual_pagination button.active::after {
    background: #fff;
}

@media (max-width: 1199px) {
    .visual_pagination {
        width: 100%;
        justify-content: center;
        left: 0;
        transform: none;
        padding: 0 20px;
    }
    .visual_pagination button {
        width: 155px;
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    .visual_swiper {
        height: 437px;
    }
    .visual_swiper .inner_text_wrap {
        width: 100%;
        padding: 0 20px;
        gap: 16px;
        text-align: center;
    }
    .visual_swiper .inner_text_wrap .title {
        font-size: 32px;
        line-height: 32px;
    }
    .visual_swiper .inner_text_wrap .desc {
        font-size: 14px;
        line-height: 22px;
    }
    .visual_swiper .inner_text_wrap .desc br {
        display: block;
    }
    .visual_swiper .inner_text_wrap button {
        width: 120px;
        height: 36px;
        font-size: 14px;
        margin-top: 4px;
    }
    .visual_swiper .swiper-button-next,
    .visual_swiper .swiper-button-prev {
        display: none;
    }
    .visual_pagination {
        bottom: 48px;
        left: 0;
        transform: none;
        padding: 0 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        z-index: 30;
        justify-content: unset;
    }
    .visual_pagination::-webkit-scrollbar {
        display: none;
    }
    .visual_pagination button {
        flex: 0 0 auto;
        width: fit-content;
        height: 40px;
        padding: 0 18px;
    }
    .visual_pagination button::after {
        display: none;
    }
}

/* 메인 - 고객사례 */
.main_portfolio_wrap .inner {
    padding: 150px 80px;
    display: flex;
    justify-content: space-between;
    max-width: 1760px;
    margin: 0 auto;
}
.main_portfolio_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
}
.main_portfolio_wrap .title_wrap h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
}
.main_portfolio_wrap .title_wrap .desc {
    font-size: 20px;
    line-height: 32px;
    color: #333;
}
.main_portfolio_wrap .title_wrap .btn {
    gap: 4px;
    width: 160px;
    padding: 0;
    transition: background 0.3s ease-in-out;
    margin-top: 8px;
}
.main_portfolio_wrap .title_wrap .btn:hover {
    background: #333;
    border: 1px solid #333;
    color: #fff;
}
.main_portfolio_wrap .title_wrap .btn:hover img {
    content: url("../images/icon_more_white.svg");
}
.main_portfolio_wrap .list_wrap {
    display: flex;
    gap: 16px;
    width: calc(100% - 400px);
    max-width: 1160px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
}
.main_portfolio_wrap .list_wrap::-webkit-scrollbar {
    display: none;
}
.main_portfolio_wrap .list_wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px;
    border: 1px solid #ddd;
    min-width: 376px;
    height: 416px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.main_portfolio_wrap .list_wrap .item .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.main_portfolio_wrap .list_wrap .item .text_wrap .title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}
.main_portfolio_wrap .list_wrap .item .text_wrap .desc {
    font-size: 18px;
    line-height: 28px;
    color: #555;
    height: 56px;
}
.main_portfolio_wrap .list_wrap .item .text_wrap .year {
    margin-top: 16px;
    line-height: 16px;
    color: #777;
}
.main_portfolio_wrap .list_wrap .item img {
    display: block;
    width: 250px;
}

@media (max-width: 1199px) {
    .main_portfolio_wrap .inner {
        padding: 120px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .main_portfolio_wrap .title_wrap {
        margin-top: 0;
        margin-bottom: 50px;
        gap: 24px;
    }
    .main_portfolio_wrap .title_wrap .desc br {
        display: none;
    }
    .main_portfolio_wrap .list_wrap {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main_portfolio_wrap .inner {
        padding: 48px 0;
        flex-direction: column;
    }
    .main_portfolio_wrap .title_wrap {
        gap: 16px;
        display: contents;
    }
    .main_portfolio_wrap .title_wrap h2 {
        font-size: 32px;
        line-height: 32px;
        padding: 0 20px;
    }
    .main_portfolio_wrap .title_wrap .desc {
        font-size: 14px;
        line-height: 20px;
        padding: 0 20px;
    }
    .main_portfolio_wrap .title_wrap .desc br {
        display: block;
    }
    .main_portfolio_wrap .title_wrap .btn {
        width: 148px;
        height: 36px;
        font-size: 14px;
        order: 3;
        margin-top: 16px;
        align-self: center;
    }
    .main_portfolio_wrap .list_wrap {
        order: 2;
        margin-top: 16px;
        padding: 0 20px;
    }
    .main_portfolio_wrap .list_wrap .item {
        min-width: 232px;
        height: 248px;
        padding: 24px 20px;
    }
    .main_portfolio_wrap .list_wrap .item .text_wrap {
        gap: 20px;
    }
    .main_portfolio_wrap .list_wrap .item .text_wrap .title {
        font-size: 18px;
        line-height: 24px;
    }
    .main_portfolio_wrap .list_wrap .item .text_wrap .desc {
        font-size: 14px;
        line-height: 22px;
        height: 44px;
    }
    .main_portfolio_wrap .list_wrap .item .text_wrap .year {
        margin-top: 12px;
        font-size: 12px;
        line-height: 12px;
    }
    .main_portfolio_wrap .list_wrap .item img {
        max-width: 150px;
    }
}

/* 메인 - 회사소개 영상 */
.company_introduction_video_wrap .inner {
    padding: 150px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: #f4f4f4;
}
.company_introduction_video_wrap .inner h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
}
.company_introduction_video_wrap .inner .company_video_wrap {
    position: relative;
}
.company_introduction_video_wrap .inner .company_video_wrap video {
    width: 100%;
    max-width: 1360px;
    border-radius: 2px;
    overflow: hidden;
}
.company_introduction_video_wrap .inner .company_video_wrap .video_control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: transparent;
    width: 80px;
    height: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.company_video_wrap:hover .video_control.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1199px) {
    .company_introduction_video_wrap .inner {
        padding: 120px 40px;
    }
}

@media (max-width: 768px) {
    .company_introduction_video_wrap .inner {
        padding: 48px 20px;
        gap: 16px;
    }
    .company_introduction_video_wrap .inner h2 {
        font-size: 32px;
        line-height: 32px;
    }
    .company_introduction_video_wrap .inner .company_video_wrap video {
        width: 100%;
    }
    .company_introduction_video_wrap .inner .company_video_wrap .video_control {
        width: 48px;
        height: 48px;
    }
    .company_introduction_video_wrap .inner .company_video_wrap .video_control img {
        width: 100%;
    }
}

/* 메인 - 뉴스 */
.main_news_wrap .inner {
    padding: 0 80px 150px;
    display: flex;
    justify-content: space-between;
    max-width: 1760px;
    margin: 0 auto;
}
.main_news_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
}
.main_news_wrap .title_wrap h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
}
.main_news_wrap .title_wrap .desc {
    font-size: 20px;
    line-height: 32px;
    color: #333;
}
.main_news_wrap .title_wrap .btn {
    gap: 4px;
    width: 160px;
    padding: 0;
    transition: background 0.3s ease-in-out;
    font-size: 15px;
}
.main_news_wrap .title_wrap .btn:hover {
    background: #333;
    border: 1px solid #333;
    color: #fff;
}
.main_news_wrap .title_wrap .btn:hover img {
    content: url("../images/icon_more_white.svg");
}
.main_news_wrap .list_wrap {
    display: flex;
    flex-direction: column;
    width: calc(100% - 400px);
    max-width: 1160px;
}
.main_news_wrap .list_wrap .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 48px 0;
}
.main_news_wrap .list_wrap .item + .item {
    border-top: 1px solid #ddd;
}
.main_news_wrap .list_wrap .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 360px);
}
.main_news_wrap .list_wrap .text_wrap span {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: #d72d2c;
}
.main_news_wrap .list_wrap .text_wrap .title {
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}
.main_news_wrap .list_wrap .text_wrap .date {
    font-size: 16px;
    line-height: 16px;
    color: #777;
}
.main_news_wrap .list_wrap .item img {
    border-radius: 2px;
    overflow: hidden;
    max-width: 280px;
    max-height: 155px;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .main_news_wrap .inner {
        padding: 0 40px 120px;
        flex-direction: column;
        align-items: flex-start;
    }
    .main_news_wrap .title_wrap {
        margin-top: 0;
        margin-bottom: 50px;
        gap: 24px;
    }
    .main_news_wrap .list_wrap {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main_news_wrap .inner {
        padding: 0 20px 48px;
        gap: 16px;
        flex-direction: column;
    }
    .main_news_wrap .title_wrap {
        gap: 16px;
        display: contents;
    }
    .main_news_wrap .title_wrap h2 {
        font-size: 32px;
        line-height: 32px;
    }
    .main_news_wrap .title_wrap .desc {
        font-size: 14px;
        line-height: 14px;
    }
    .main_news_wrap .title_wrap .btn {
        width: 148px;
        height: 36px;
        font-size: 14px;
        order: 3;
        margin-top: 16px;
        align-self: center;
    }
    .main_news_wrap .list_wrap {
        order: 2;
        margin-top: 16px;
    }
    .main_news_wrap .list_wrap .item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
        gap: 20px;
    }
    .main_news_wrap .list_wrap .item:first-child {
        padding-top: 0;
    }
    .main_news_wrap .list_wrap .item:last-child {
        padding-bottom: 0;
    }
    .main_news_wrap .list_wrap .text_wrap {
        width: 100%;
        gap: 12px;
    }
    .main_news_wrap .list_wrap .text_wrap span {
        font-size: 14px;
        line-height: 14px;
    }
    .main_news_wrap .list_wrap .text_wrap .title {
        font-size: 17px;
        line-height: 17px;
    }
    .main_news_wrap .list_wrap .text_wrap .date {
        font-size: 12px;
        line-height: 12px;
    }
}

/* 메인 - contact */
.contact_wrap {
    background: url("../images/img_contact.jpg") no-repeat center/cover;
    padding: 140px 80px;
}
.contact_wrap .inner {
    max-width: 1360px;
    padding: 80px 120px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 2px;
    margin: 0 auto;
}
.contact_wrap .inner h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}
.contact_wrap .inner .desc {
    font-size: 18px;
    line-height: 24px;
    color: #333;
    margin-bottom: 32px;
}
.contact_wrap .inner .num_mail_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}
.contact_wrap .inner .num_mail_wrap div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact_wrap .inner .num_mail_wrap .num,
.contact_wrap .inner .num_mail_wrap .mail {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}
.contact_wrap .inner .num_mail_wrap .num span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #555;
}
.contact_wrap .inner .time {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    color: #333;
    margin-top: 8px;
}
.contact_wrap .inner .btn {
    width: 160px;
    transition: background 0.3s ease-in-out;
}
.contact_wrap .inner .btn:hover {
    background: #d72d2c;
}

@media (max-width: 1199px) {
    .contact_wrap {
        padding: 120px 40px;
    }
    .contact_wrap .inner {
        padding: 40px;
    }
    .contact_wrap .inner .num_mail_wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact_wrap {
        padding: 48px 20px;
    }
    .contact_wrap .inner {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
    }
    .contact_wrap .inner h2 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 16px;
    }
    .contact_wrap .inner .desc {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .contact_wrap .inner .num_mail_wrap {
        gap: 16px;
        margin-bottom: 32px;
    }
    .contact_wrap .inner .num_mail_wrap .num,
    .contact_wrap .inner .num_mail_wrap .mail {
        font-size: 18px;
        line-height: 18px;
        flex-wrap: wrap;
    }
    .contact_wrap .inner .num_mail_wrap .num img,
    .contact_wrap .inner .num_mail_wrap .mail img {
        width: 16px;
    }
    .contact_wrap .inner .num_mail_wrap .num span {
        font-size: 14px;
        line-height: 18px;
        padding-left: 24px;
    }
    .contact_wrap .inner .btn {
        height: 44px;
        align-self: center;
    }
}

/********** sub **********/
.sub_section_wrap.sub_bg_gray {
    background: #f4f4f4;
}
/* 공통 - 비주얼 */
.sub_visual_wrap {
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    height: 480px;
}
.sub_visual_wrap .inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px 120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: 100%;
    justify-content: flex-end;
}
.sub_visual_wrap .inner h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
}
.sub_visual_wrap .inner .visual_crumbs {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sub_visual_wrap .inner .visual_crumbs .circle {
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background: #c0c0c0;
}
.sub_visual_wrap .inner .visual_crumbs p {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}
.sub_visual_wrap .inner .visual_crumbs .text {
    color: #c0c0c0;
}
.sub_visual_wrap .inner .visual_crumbs .text_active {
    color: #fff;
}
/* 공통 - 컨텐츠 크기 */
.sub_content_wrap .inner {
    max-width: 1200px;
    padding: 120px 20px;
    margin: 0 auto;
}
/* 공통 - 탭 */
.sub_tab_wrap {
    border-bottom: 1px solid #ddd;
    background: #fff;
}
.sub_tab_list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}
.sub_tab_list li {
    flex: 1;
}
.sub_tab_list li a {
    display: block;
    text-align: center;
    padding: 30px 0;
    font-size: 20px;
    line-height: 20px;
    color: #777;
}
.sub_tab_list li.active a {
    color: #d72d2c;
    font-weight: 700;
    position: relative;
}
.sub_tab_list li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #d72d2c;
}
/* 회사소개 비주얼 */
.sub_visual_wrap.sub_company {
    background-image: url("../images/sub_visual_01.jpg");
}
/* 사업영역 비주얼 */
.sub_visual_wrap.sub_business_area {
    background-image: url("../images/sub_visual_02.jpg");
}
/* 서비스 비주얼 */
.sub_visual_wrap.sub_service {
    background-image: url("../images/sub_visual_03.jpg");
}
/* 고객사례 비주얼 */
.sub_visual_wrap.sub_customer_case {
    background-image: url("../images/sub_visual_04.jpg");
}
/* PR센터 비주얼 */
.sub_visual_wrap.sub_pr_center {
    background-image: url("../images/sub_visual_05.jpg");
}

/* 준비중입니다 */
.preparing_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.preparing_wrap img {
    display: block;
}
.preparing_wrap .title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 32px;
}
.preparing_wrap .text_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.preparing_wrap .text_wrap p {
    font-size: 18px;
    line-height: 28px;
    color: #333;
}

@media (max-width: 1199px) {
    .sub_visual_wrap .inner {
        padding: 0 40px 120px;
    }

    .sub_visual_wrap.sub_company {
        background-position: right -240px center;
    }

    .sub_tab_list li a {
        font-size: 16px;
        line-height: 16px;
        padding: 24px 0;
    }

    .sub_content_wrap .inner {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .sub_visual_wrap {
        height: 320px;
    }
    .sub_visual_wrap .inner {
        padding: 0 20px 48px;
        gap: 24px;
    }
    .sub_visual_wrap .inner h2 {
        font-size: 36px;
        line-height: 36px;
    }
    .sub_visual_wrap .inner .visual_crumbs {
        gap: 12px;
    }
    .sub_visual_wrap .inner .visual_crumbs p {
        font-size: 15px;
    }

    .sub_tab_list {
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sub_tab_list::-webkit-scrollbar {
        display: none;
    }
    .sub_tab_list li {
        width: auto;
        flex: none;
    }
    .sub_tab_list li a {
        padding: 20px 12px;
    }

    .sub_content_wrap .inner {
        padding: 48px 20px;
    }
    .sub_content_wrap .inner_02 {
        padding: 28px 20px;
    }

    .preparing_wrap {
        gap: 0;
    }
    .preparing_wrap img {
        width: 140px;
    }
    .preparing_wrap .title {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    .preparing_wrap .text_wrap p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 425px) {
    .sub_visual_wrap.sub_company {
        background-image: url("../images/sub_visual_01_m.jpg");
        background-position: center;
    }
    .sub_visual_wrap.sub_business_area {
        background-image: url("../images/sub_visual_02_m.jpg");
    }
    .sub_visual_wrap.sub_service {
        background-image: url("../images/sub_visual_03_m.jpg");
    }
    .sub_visual_wrap.sub_customer_case {
        background-image: url("../images/sub_visual_04_m.jpg");
    }
    .sub_visual_wrap.sub_pr_center {
        background-image: url("../images/sub_visual_05_m.jpg");
    }
}

/********** 회사소개 **********/
/* about us */
.sub_about_wrap .title {
    display: flex;
    gap: 5px;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
}
.sub_about_wrap .title span {
    font-weight: 700;
    color: #d72d2c;
}
.sub_about_wrap .desc {
    font-size: 18px;
    line-height: 18px;
    color: #333;
    margin-bottom: 48px;
}
.sub_about_wrap .img_wrap {
    background: url("../images/sub_about_01.jpg") no-repeat center/cover;
    padding: 330px 56px 72px 56px;
}
.sub_about_wrap .img_wrap img {
    display: none;
}
.sub_about_wrap .img_wrap p:nth-child(2) {
    font-size: 16px;
    line-height: 26px;
    color: #f0f0f0;
    margin-bottom: 40px;
}
.sub_about_wrap .img_wrap p:last-child {
    font-size: 24px;
    line-height: 40px;
    color: #fff;
}
.sub_about_wrap .img_wrap p:last-child span {
    font-weight: 700;
}

@media (max-width: 1199px) {
    .sub_about_wrap .title {
        flex-direction: column;
        gap: 12px;
    }
    .sub_about_wrap .desc {
        line-height: 24px;
    }
    .sub_about_wrap .img_wrap {
        padding: 330px 40px 72px 40px;
    }
    .sub_about_wrap .img_wrap p br {
        display: none;
    }
}

@media (max-width: 768px) {
    .sub_about_wrap .title {
        font-size: 24px;
        line-height: 34px;
        gap: 0;
        margin-bottom: 20px;
    }
    .sub_about_wrap .desc {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 28px;
    }
    .sub_about_wrap .img_wrap {
        padding: 0;
        background: none;
    }
    .sub_about_wrap .img_wrap img {
        display: block;
        width: 100%;
        margin-bottom: 24px;
    }
    .sub_about_wrap .img_wrap p:nth-child(2) {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 24px;
        color: #555;
    }
    .sub_about_wrap .img_wrap p:last-child {
        font-size: 18px;
        line-height: 28px;
        color: #000;
    }
}

/* ceo message */
.sub_content_wrap .sub_ceo_inner {
    position: relative;
}
.sub_content_wrap .sub_ceo_inner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 50%;
    background: #e9e9e9;
    transform: translateX(-50%);
    z-index: -1;
}
.sub_ceo_wrap {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}
.sub_ceo_wrap .text_wrap {
    width: calc(100% - 400px);
}
.sub_ceo_wrap .text_wrap .title_text {
    font-size: 48px;
    line-height: 72px;
    font-weight: 700;
    color: #111;
    background: url("../images/img_spot.svg") no-repeat left 560px top;
}
.sub_ceo_wrap .img_wrap img {
    display: block;
}
.sub_ceo_wrap .desc_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 130px;
}
.sub_ceo_wrap .desc_wrap .text {
    font-size: 20px;
    line-height: 32px;
    color: #333;
}
.sub_ceo_wrap .desc_wrap .text span {
    font-weight: 700;
}
.sub_ceo_wrap .desc_wrap .name {
    align-self: flex-end;
    font-size: 24px;
    line-height: 24px;
    color: #333;
}
.sub_ceo_wrap .desc_wrap .name span {
    font-weight: 700;
    color: #000;
}

@media (max-width: 1199px) {
    .sub_ceo_wrap {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }
    .sub_ceo_wrap .img_wrap {
        order: 2;
        align-self: center;
    }
    .sub_ceo_wrap .text_wrap {
        width: 100%;
        display: contents;
    }
    .sub_ceo_wrap .text_wrap .title_text {
        width: 100%;
    }
    .sub_ceo_wrap .desc_wrap {
        margin-top: 0;
        gap: 16px;
        order: 3;
    }
    .sub_ceo_wrap .desc_wrap .name {
        align-self: flex-start;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .sub_content_wrap .sub_ceo_inner::after {
        height: 60%;
    }
    .sub_ceo_wrap {
        gap: 32px;
    }
    .sub_ceo_wrap .img_wrap img {
        width: 100%;
        max-width: 194px;
    }
    .sub_ceo_wrap .text_wrap .title_text {
        font-size: 23px;
        line-height: 34px;
        background-position: left 256px top;
        background-size: 24px;
    }
    .sub_ceo_wrap .desc_wrap .text {
        font-size: 15px;
        line-height: 22px;
    }
    .sub_ceo_wrap .desc_wrap .name {
        font-size: 18px;
        line-height: 18px;
    }
}

/* history */
.sub_content_wrap .sub_history_inner {
    padding-bottom: 200px;
}
.sub_history_wrap {
    position: relative;
    display: flex;
    align-items: start;
    gap: 0 300px;
}
.sub_history_wrap .thumbnail_content {
    position: sticky;
    flex-shrink: 0;
    top: 130px;
    left: 0;
    margin-top: 80px;
}
.sub_history_wrap .thumbnail_content li {
    display: none;
}
.sub_history_wrap .thumbnail_content li.active {
    display: block;
}
.sub_history_wrap .thumbnail_content img {
    display: block;
}
.sub_history_wrap .text_content {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
}
.sub_history_wrap .bar_bg {
    position: absolute;
    top: 0;
    left: -80px;
    width: 2px;
    height: 100%;
    background-color: #ddd;
}
.sub_history_wrap .bar_bg .ani_bar {
    display: inline-flex;
    align-items: flex-end;
    width: 100%;
    background: #d72d2c;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.1s ease-out;
}
.sub_history_wrap .bar_bg .ani_bar .ico {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("../images/icon_histody_ani_bg.svg");
}
.sub_history_wrap .history_list {
    margin-top: 170px;
}
.sub_history_wrap .history_list .item + .item {
    margin-top: 150px;
}
.sub_history_wrap .history_list .title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #999;
}
.sub_history_wrap .history_list dl {
    display: flex;
    gap: 20px;
}
.sub_history_wrap .history_list dl + dl {
    margin-top: 32px;
}
.sub_history_wrap .history_list dl dt {
    flex-shrink: 0;
    width: 26px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #999;
}
.sub_history_wrap .history_list dl dd {
    font-size: 18px;
    line-height: 26px;
    color: #999;
}
.sub_history_wrap .history_list .item.active .title {
    color: #000;
}
.sub_history_wrap .history_list .item.active dl dt {
    color: #333;
}
.sub_history_wrap .history_list .item.active dl dd {
    color: #333;
}
.sub_history_wrap .history_list .title,
.sub_history_wrap .history_list dl dt,
.sub_history_wrap .history_list dl dd {
    transition: color 0.3s ease;
}

@media (max-width: 1199px) {
    .sub_history_wrap {
        gap: 0 140px;
    }
    .sub_history_wrap .thumbnail_content img {
        width: 200px;
    }
    .sub_history_wrap .bar_bg {
        left: -70px;
    }
}

@media (max-width: 768px) {
    .sub_content_wrap .sub_history_inner {
        padding-bottom: 48px;
    }
    .sub_history_wrap .thumbnail_content {
        display: none;
    }
    .sub_history_wrap .text_content {
        padding-bottom: 0;
    }
    .sub_history_wrap .bar_bg {
        display: none;
    }
    .sub_history_wrap .history_list {
        margin-top: 0;
    }
    .sub_history_wrap .history_list .item + .item {
        margin-top: 48px;
    }
    .sub_history_wrap .history_list .title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .sub_history_wrap .history_list dl {
        gap: 12px;
    }
    .sub_history_wrap .history_list dl + dl {
        margin-top: 16px;
    }
    .sub_history_wrap .history_list dl dt {
        width: 22px;
        font-size: 16px;
        line-height: 20px;
    }
    .sub_history_wrap .history_list dl dd {
        font-size: 16px;
        line-height: 20px;
    }
}

/* clients */
.sub_clients_wrap {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.sub_clients_wrap .clients_logo_wrap .title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 40px;
    margin-bottom: 32px;
}
.sub_clients_wrap .clients_logo_wrap .logo_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 54px;
    padding-bottom: 48px;
    border-bottom: 1px solid #ddd;
}
.sub_clients_wrap .clients_logo_wrap .logo_wrap .img_wrap {
    width: calc(25% - 41px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
.sub_clients_wrap .clients_logo_wrap .logo_wrap .img_wrap img {
    display: block;
    max-width: 90%;
}

@media (max-width: 768px) {
    .sub_clients_wrap .clients_logo_wrap .title {
        font-size: 24px;
        line-height: 24px;
        padding-bottom: 24px;
        margin-bottom: 20px;
        border-bottom: 1px solid #000;
    }
    .sub_clients_wrap .clients_logo_wrap .logo_wrap {
        gap: 10px;
        padding: 0 12px 24px 12px;
    }
    .sub_clients_wrap .clients_logo_wrap .logo_wrap .img_wrap {
        width: calc(50% - 5px);
    }
    .sub_clients_wrap .clients_logo_wrap .logo_wrap .img_wrap img {
        max-width: 65%;
    }
}

/* location */
.sub_location_wrap > .title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 64px;
}
.sub_location_wrap .location_content_wrap {
    padding: 56px 0 80px;
    position: relative;
}
.sub_location_wrap .location_content_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background: #f4f4f4;
    transform: translateX(-50%);
    z-index: -1;
}
.sub_location_wrap .location_content_wrap .address_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.sub_location_wrap .location_content_wrap .address_wrap .text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    line-height: 22px;
    color: #333;
}
.sub_location_wrap .location_content_wrap .address_wrap .btn {
    width: 160px;
}
.sub_location_wrap .location_content_wrap .map_content {
    display: flex;
    gap: 16px;
}
.sub_location_wrap .location_content_wrap .map_content .map_wrap {
    width: calc(100% - 496px);
    height: 360px;
}
.sub_location_wrap .location_info_wrap {
    margin-top: 64px;
}
.sub_location_wrap .location_info_wrap .item {
    display: flex;
}
.sub_location_wrap .location_info_wrap .item + .item {
    border-top: 1px solid #ddd;
    margin-top: 48px;
    padding-top: 48px;
}
.sub_location_wrap .location_info_wrap .item > .title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    width: 520px;
}
.sub_location_wrap .location_info_wrap .item .item_wrap {
    width: calc(100% - 520px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sub_location_wrap .location_info_wrap .item .info_item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sub_location_wrap .location_info_wrap .item .info_item .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}
.sub_location_wrap .location_info_wrap .item .info_item .text {
    font-size: 18px;
    line-height: 18px;
    color: #333;
    padding-left: 34px;
}
.sub_location_wrap .location_info_wrap .item .info_item .text span {
    color: #d72d2c;
}
.sub_location_wrap .location_info_wrap .item .info_item .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 1199px) {
    .sub_location_wrap .location_content_wrap .address_wrap .text {
        font-size: 20px;
    }
    .sub_location_wrap .location_content_wrap .address_wrap .btn {
        width: 150px;
    }
    .sub_location_wrap .location_content_wrap .map_content {
        flex-direction: column;
    }
    .sub_location_wrap .location_content_wrap .map_content .map_wrap {
        width: 100%;
    }
    .sub_location_wrap .location_info_wrap .item {
        flex-direction: column;
        gap: 32px;
    }
    .sub_location_wrap .location_info_wrap .item .item_wrap {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sub_location_wrap > .title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .sub_location_wrap .location_content_wrap {
        padding: 24px 0 40px;
    }
    .sub_location_wrap .location_content_wrap .address_wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
    }
    .sub_location_wrap .location_content_wrap .address_wrap .text {
        font-size: 16px;
        line-height: 22px;
        align-items: flex-start;
    }
    .sub_location_wrap .location_content_wrap .address_wrap .text img {
        width: 16px;
        margin-top: 2px;
    }
    .sub_location_wrap .location_content_wrap .address_wrap .btn {
        width: 120px;
        gap: 4px;
        font-size: 14px;
    }
    .sub_location_wrap .location_content_wrap .map_content .map_wrap {
        height: 182px;
    }
    .sub_location_wrap .location_info_wrap .item {
        gap: 24px;
    }
    .sub_location_wrap .location_info_wrap .item + .item {
        margin-top: 32px;
        padding-top: 32px;
    }
    .sub_location_wrap .location_info_wrap .item > .title {
        font-size: 22px;
        line-height: 22px;
        width: 100%;
    }
    .sub_location_wrap .location_info_wrap .item .item_wrap {
        gap: 24px;
    }
    .sub_location_wrap .location_info_wrap .item .info_item {
        gap: 6px;
    }
    .sub_location_wrap .location_info_wrap .item .info_item .title img {
        display: none;
        font-size: 17px;
        line-height: 17px;
    }
    .sub_location_wrap .location_info_wrap .item .info_item .text {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }
}

/********** 사업영역 **********/
.sub_business_wrap > .title {
    font-size: 34px;
    line-height: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 64px;
}
.sub_business_wrap > .title span {
    font-weight: 700;
    color: #d72d2c;
}
.sub_business_wrap > .desc {
    font-size: 20px;
    line-height: 20px;
    color: #333;
    margin-bottom: 64px;
}
.sub_business_wrap .business_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 200px;
    background: url("../images/img_business_01.svg") no-repeat center;
}
.sub_business_wrap .business_content_wrap .item_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub_business_wrap .business_content_wrap .item_wrap .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 32px 30px;
    width: 438px;
    height: 210px;
}
.sub_business_wrap .business_content_wrap .item_wrap .item .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}
.sub_business_wrap .business_content_wrap .item_wrap .item li {
    line-height: 26px;
    color: #555;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 14px;
}
.sub_business_wrap .business_content_wrap .item_wrap .item li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}
.sub_business_wrap .business_content_wrap_02 {
    margin-top: 150px;
}
.sub_business_wrap .business_content_wrap_02 > .title {
    font-size: 34px;
    line-height: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
}
.sub_business_wrap .business_content_wrap_02 > .desc {
    font-size: 20px;
    line-height: 32px;
    color: #333;
    margin-bottom: 64px;
}
.sub_business_wrap .business_content_wrap_02 > .desc span {
    color: #d72d2c;
    font-weight: 700;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    border-radius: 10px;
    overflow: hidden;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item + .item {
    margin-left: 2px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .title {
    padding: 24px;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark,
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_light_red {
    width: 344px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_red {
    width: calc(100% - 764px);
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark .title {
    background: #555;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_light_red .title {
    background: #d55554;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_red .title {
    background: #c52b2a;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .content {
    flex: 1;
    padding: 24px 24px 32px 24px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .content .sub_title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .content ul + .sub_title {
    margin-top: 32px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .content li {
    font-size: 15px;
    line-height: 24px;
    color: #555;
    position: relative;
    padding-left: 14px;
    word-break: auto-phrase;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item .content li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark .content {
    background: #f6f6f6;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark .content ul + .sub_title {
    margin-top: 58px;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_light_red .content {
    background: #fbf5f5;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap .item_red .content {
    background: #faeeed;
}
.sub_business_wrap .business_content_wrap_02 .item_wrap img {
    display: block;
    margin-top: 72px;
}
.sub_business_wrap .business_content_wrap_03 {
    margin-top: 150px;
}
.sub_business_wrap .business_content_wrap_03 > .title {
    font-size: 34px;
    line-height: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 64px;
}
.sub_business_wrap .business_content_wrap_03 > .title span {
    font-weight: 700;
    color: #d72d2c;
}
.sub_business_wrap .business_content_wrap_03 .item_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.sub_business_wrap .business_content_wrap_03 .item_wrap .circle_wrap {
    display: flex;
    gap: 16px;
}
.sub_business_wrap .business_content_wrap_03 .item_wrap .circle_wrap .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 500px;
    font-size: 26px;
    font-weight: 600;
    color: #d72d2c;
    border: 1px solid #d72d2c;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap .list_item {
    flex: 1;
    border-radius: 2px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 16px;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap .list_item img {
    display: block;
    margin-bottom: 24px;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .num {
    margin-bottom: 16px;
    color: #777;
    font-weight: 700;
    text-align: center;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}
.sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .desc {
    font-size: 16px;
    line-height: 22px;
    color: #555;
    text-align: center;
}

@media (max-width: 1199px) {
    .sub_business_wrap > .title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .sub_business_wrap > .desc {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 40px;
    }
    .sub_business_wrap .business_content_wrap {
        background-position: top center;
        gap: 20px;
        padding-top: 304px;
    }
    .sub_business_wrap .business_content_wrap .item_wrap {
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
    }
    .sub_business_wrap .business_content_wrap .item_wrap .item {
        flex: 1;
        width: auto;
        height: auto;
        align-self: stretch;
        padding: 28px;
    }
    .sub_business_wrap .business_content_wrap_02 {
        margin-top: 80px;
    }
    .sub_business_wrap .business_content_wrap_02 > .title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .sub_business_wrap .business_content_wrap_02 > .desc {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 40px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap {
        flex-wrap: wrap;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark,
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item_light_red {
        width: calc(50% - 6px);
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item + .item {
        margin: 0;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap img {
        margin: 30px auto;
        transform: rotate(90deg);
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item_red {
        width: 100%;
    }
    .sub_business_wrap .business_content_wrap_03 {
        margin-top: 80px;
    }
    .sub_business_wrap .business_content_wrap_03 > .title {
        font-size: 28px;
        line-height: 34px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap {
        flex-wrap: wrap;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item {
        width: calc(50% - 8px);
        flex: auto;
    }
}

@media (max-width: 768px) {
    .sub_business_wrap > .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }
    .sub_business_wrap > .desc {
        font-size: 15px;
        line-height: 22px;
    }
    .sub_business_wrap .business_content_wrap {
        gap: 12px;
        padding-top: 224px;
        background-size: 200px;
    }
    .sub_business_wrap .business_content_wrap .item_wrap {
        flex-direction: column;
        gap: 12px;
    }
    .sub_business_wrap .business_content_wrap .item_wrap .item {
        gap: 16px;
        padding: 24px 16px;
    }
    .sub_business_wrap .business_content_wrap .item_wrap .item .title {
        font-size: 18px;
        line-height: 18px;
    }
    .sub_business_wrap .business_content_wrap .item_wrap .item li {
        font-size: 14px;
        line-height: 20px;
    }
    .sub_business_wrap .business_content_wrap_02 {
        margin-top: 48px;
    }
    .sub_business_wrap .business_content_wrap_02 > .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }
    .sub_business_wrap .business_content_wrap_02 > .desc {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 32px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap {
        flex-direction: column;
        gap: 8px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item_dark,
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item_light_red {
        width: 100%;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item + .item {
        margin: 0;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item .title {
        padding: 16px 12px;
        font-size: 18px;
        line-height: 18px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item .content {
        padding: 20px 16px 24px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item .content .sub_title {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 12px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item .content ul + .sub_title {
        margin-top: 20px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap .item .content li {
        font-size: 14px;
        line-height: 22px;
    }
    .sub_business_wrap .business_content_wrap_02 .item_wrap img {
        margin: 10px;
    }
    .sub_business_wrap .business_content_wrap_03 {
        margin-top: 48px;
    }
    .sub_business_wrap .business_content_wrap_03 > .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 32px;
    }
    .sub_business_wrap .business_content_wrap_03 .item_wrap .circle_wrap {
        gap: 2px;
    }
    .sub_business_wrap .business_content_wrap_03 .item_wrap .circle_wrap .circle {
        width: 92px;
        height: 92px;
        font-size: 15px;
    }
    .sub_business_wrap .business_content_wrap_03 .item_wrap img {
        width: 221px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap {
        letter-spacing: -1px;
        gap: 5px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item {
        padding: 20px 0;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item img {
        width: 36px;
        margin-bottom: 12px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .num {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 14px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .title {
        font-size: 15px;
        line-height: 15px;
        margin-bottom: 8px;
    }
    .sub_business_wrap .business_content_wrap_03 .list_wrap .list_item .desc {
        font-size: 13px;
        line-height: 18px;
    }
}

/********** 사업실적 **********/
.year_section {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
    position: relative;
}
.year_section.active {
    opacity: 1;
    transform: translateY(0);
}
.year_section + .year_section {
    margin-top: 56px;
}
.year_section .year_title {
    text-align: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 16px;
    position: sticky;
    top: 80px;
    z-index: 10;
    background: #f5f5f5;
    padding: 24px 0;
}
.year_section .card_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.year_section .card_grid .card {
    background: #fff;
    padding: 24px 32px;
    border-radius: 2px;
}
.year_section .card_grid .card img {
    display: block;
    margin-bottom: 16px;
    width: 200px;
}
.year_section .card_grid .card strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.year_section .card_grid .card p {
    font-size: 18px;
    color: #333;
}

@media (max-width: 768px) {
    .year_section + .year_section {
        margin-top: 28px;
    }
    .year_section .year_title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 0;
        top: 64px;
        padding: 20px 0;
    }
    .year_section .card_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
    .year_section .card_grid .card {
        background: #fff;
        padding: 18px;
        border-radius: 2px;
    }
    .year_section .card_grid .card img {
        margin-bottom: 12px;
        width: 150px;
    }
    .year_section .card_grid .card strong {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .year_section .card_grid .card p {
        font-size: 13px;
        line-height: 20px;
    }
}

/********** modal **********/
/* 공통 */
.modal_wrap {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    display: flex !important;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.modal_wrap.show {
    visibility: visible;
    opacity: 1;
}
.modal_wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 716px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal_header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 48px 24px 48px;
    position: relative;
    flex-shrink: 0;
}
.modal_header .modal_title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
}
.modal_header .modal_close_btn {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.modal_body {
    flex: 1;
    overflow-y: auto;
    padding: 0 48px;
}
.modal_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    flex-shrink: 0;
}
.modal_footer .btn {
    min-width: 200px;
    height: 48px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal_content {
        max-width: calc(100% - 40px);
    }
    .modal_header {
        padding: 64px 20px 24px 20px;
    }
    .modal_header .modal_title {
        font-size: 32px;
        line-height: 32px;
    }
    .modal_header .modal_close_btn {
        top: 20px;
        right: 20px;
        width: 24px;
        height: 24px;
    }
    .modal_header .modal_close_btn img {
        width: 100%;
    }
    .modal_body {
        padding: 0 20px;
    }
    .modal_footer {
        padding: 32px 20px 40px;
    }
    .modal_footer .btn {
        min-width: 100%;
    }
}

/* 컨설팅 신청 모달 */
.consulting_wrap .essential_text {
    font-size: 15px;
    line-height: 16px;
    color: #d72d2c;
    text-align: right;
    margin-bottom: 8px;
    font-weight: 600;
}
.consulting_wrap .form_wrap + .form_wrap {
    margin-top: 48px;
}
.consulting_wrap .form_wrap .title {
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    border-bottom: 1px solid #555;
    margin-bottom: 32px;
}
.consulting_wrap .form_agree_wrap .title {
    border-bottom: 0;
    margin-bottom: 0;
}
.consulting_wrap .form_wrap .form_half {
    display: flex;
    gap: 12px;
}
.consulting_wrap .form_wrap .form_half + .form_half {
    margin-top: 32px;
}
.consulting_wrap .form_wrap .form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.consulting_wrap .form_wrap .form_group .label {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}
.consulting_wrap .form_wrap .form_group .label .red_dot {
    color: #d72d2c;
    font-weight: 600;
}
.consulting_wrap .form_wrap > .form_group {
    margin-top: 32px;
}
.consulting_wrap .form_wrap .form_group .file_group {
    display: flex;
    gap: 8px;
    position: relative;
}
.consulting_wrap .form_wrap .form_group .file_group .upload_name {
    width: calc(100% - 128px);
    background: #fff;
    padding: 0 48px 0 20px;
}
.consulting_wrap .form_wrap .form_group .file_group .file_select {
    width: 120px;
    height: 48px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555;
    font-size: 16px;
    color: #fff;
}
.consulting_wrap .form_wrap .form_group .file_group .file_delete_btn {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 128px;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.consulting_wrap .form_wrap .form_group .file_group img {
    display: block;
}
.consulting_wrap .form_wrap .agree_wrap .agree_table {
    border-top: 1px solid #555;
}
.consulting_wrap .form_wrap .agree_wrap .agree_table .item {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}
.consulting_wrap .form_wrap .agree_wrap .agree_table .item .label {
    padding: 16px;
    width: 160px;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
}
.consulting_wrap .form_wrap .agree_wrap .agree_table .item .text {
    border-left: 1px solid #ddd;
    width: calc(100% - 160px);
    padding: 16px;
    font-size: 15px;
    line-height: 15px;
    color: #333;
}
.consulting_wrap .form_wrap .agree_wrap .desc {
    font-size: 14px;
    line-height: 20px;
    color: #555;
    margin-top: 20px;
}
.consulting_wrap .form_wrap .agree_wrap .checks {
    margin-top: 32px;
}
.consulting_wrap .form_wrap .agree_wrap .checks .red_dot {
    color: #d72d2c;
    font-weight: 700;
}
.consulting_wrap .form_wrap .agree_wrap .explain_wrap {
    background: #f4f4f4;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.consulting_wrap .form_wrap .agree_wrap .explain_wrap .text {
    font-size: 15px;
    line-height: 22px;
    color: #555;
    word-break: auto-phrase;
}
.consulting_wrap .form_wrap .agree_wrap .explain_wrap .time {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .consulting_wrap .essential_text {
        font-size: 14px;
        line-height: 14px;
    }
    .consulting_wrap .form_wrap .title {
        font-size: 18px;
        line-height: 18px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    .consulting_wrap .form_agree_wrap .title {
        margin-bottom: 0;
    }
    .consulting_wrap .form_wrap + .form_wrap {
        margin-top: 32px;
    }
    .consulting_wrap .form_wrap .form_half {
        flex-direction: column;
        gap: 16px;
    }
    .consulting_wrap .form_wrap .form_half + .form_half {
        margin-top: 16px;
    }
    .consulting_wrap .form_wrap .form_group {
        gap: 8px;
    }
    .consulting_wrap .form_wrap .form_group .label {
        font-size: 16px;
        line-height: 16px;
    }
    .consulting_wrap .form_wrap .form_group input {
        height: 40px;
        font-size: 15px;
        padding: 0 12px;
    }
    .consulting_wrap .form_wrap .form_group textarea {
        min-height: 160px;
        font-size: 15px;
    }
    .consulting_wrap .form_wrap .form_group .file_group .upload_name {
        width: calc(100% - 78px);
        background: #fff;
        padding: 0 40px 0 12px;
    }
    .consulting_wrap .form_wrap .form_group .file_group .file_select {
        width: 70px;
        height: 40px;
        font-size: 14px;
    }
    .consulting_wrap .form_wrap .form_group .file_group .file_delete_btn {
        width: 40px;
        height: 40px;
        right: 78px;
    }
    .consulting_wrap .form_wrap .agree_wrap .agree_table .item .label {
        width: 85px;
        font-size: 14px;
        line-height: 20px;
        padding: 12px;
    }
    .consulting_wrap .form_wrap .agree_wrap .agree_table .item .text {
        width: calc(100% - 85px);
        padding: 12px;
        font-size: 14px;
        line-height: 20px;
    }
    .consulting_wrap .form_wrap .agree_wrap .desc {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px;
    }
    .consulting_wrap .form_wrap .agree_wrap .desc br {
        display: none;
    }
    .consulting_wrap .form_wrap .agree_wrap .checks {
        margin-top: 20px;
    }
    .consulting_wrap .form_wrap .agree_wrap .explain_wrap {
        padding: 20px;
        gap: 12px;
        margin-top: 24px;
    }
    .consulting_wrap .form_wrap .agree_wrap .explain_wrap .text {
        font-size: 14px;
        line-height: 18px;
    }
    .consulting_wrap .form_wrap .agree_wrap .explain_wrap .time {
        font-size: 13px;
        line-height: 17px;
    }
}

/* alert */
.swal2-popup {
    width: fit-content !important;
    padding-bottom: 48px !important;
    border-radius: 10px !important;
}
.swal2-title {
    width: 288px;
    min-height: 116px;
    padding: 0 !important;
    margin: 48px 48px 0 !important;
    font-size: 18px !important;
    line-height: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #000 !important;
}
.swal2-actions {
    margin: 24px 0 0 !important;
    gap: 4px;
    flex-wrap: nowrap !important;
    padding: 0 28px !important;
    flex-direction: row-reverse;
}
.sweetalertBtn {
    width: 160px;
    height: 48px;
    border-radius: 2px;
    background-color: #292929;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
}
.sweetalertBtn:active {
    opacity: 0.75;
}
.denyBtn {
    width: 160px;
    height: 48px;
    border-radius: 2px;
    background-color: #7a7a7a;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
}

@media screen and (max-width: 768px) {
    .swal2-popup {
        width: calc(100% - 20px) !important;
    }
    .swal2-title {
        width: 100%;
        margin: 0 !important;
        margin-top: 50px !important;
        padding: 0 20px !important;
    }
}

/* 메뉴 생기면 지워야할 css */
.header .gnb_wrap .gnb_item:nth-child(3),
.header .gnb_wrap .gnb_item:nth-child(5) {
    display: none;
}
.header .lang_btn {
    pointer-events: none;
    opacity: 0;
}

@media (max-width: 768px) {
    .header .lang_btn {
        display: none;
    }
    .header .gnb_mobile .gnb_item:nth-child(3),
    .header .gnb_mobile .gnb_item:nth-child(5) {
        display: none;
    }
}
