@charset "utf-8";

@import url(reset.css);
@import url(global.css);
/* 📣 초기값, font, header, footer => global.css */

section {
    width: 100%;
    display: flex;
}
section .inner {
    width: 78.125%;
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

/* 🎈.solution_visual */
.solution_visual {
    height: 100vh;
    padding: 180px 0 50px 10.9375vw;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.main_txt_wrap {
    display: flex;
    justify-content: space-between;
}
.main_txt_wrap h3 {
    font-size: 12vw;
    font-weight: 500;
    color: var(--label-white);
}
.main_txt01 {
    animation:moving01 0.8s cubic-bezier(0.85, 0.18, 0.32, 1.08) 0s 1 normal none;
}
.main_txt02 {
    margin-top: 7.8125vw;
    animation: moving02 0.8s cubic-bezier(0.85, 0.18, 0.32, 1.08) 0s 1 normal none;
}
@keyframes moving01 {
    0% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes moving02 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.sub_txt {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--label-white);
}

@media screen and (max-width:1024px) {
    .solution_visual {
        padding: 180px 30px 0;
        height: 800px;
        justify-content: flex-start;
        gap: 160px;
    }
    .main_txt_wrap {
        flex-direction: column;
    }
    .main_txt_wrap h3 {
        font-size: 15.625vw;
        line-height: 1;
    }
    .main_txt02 {
        margin-top: 0;
    }
    .sub_txt {
        font-size: 2rem;
        font-weight: 500;
    }
}
@media screen and (max-width:480px) {
    .solution_visual {
        gap: 48px;
        height: 680px;
        padding: 180px 16px 0;
    }
    .sub_txt {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 400;
    }
}

/* 🎈.solution_section */
.solution_section {
    padding: 180px 0 100px;
    justify-content: center;
}
.solution_section .title {
    font-size: 9rem;
    font-weight: 500;
    color: var(--label-white);
}
.solution_section .container {
    width: 100%;
}
.solution_section .list_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.list_wrap .list {
    width: calc(100% / 3 - 8px);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background-color: var(--fill-normal-dark);
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}
.list_wrap .list:hover {
    transform: translateY(-40px);
}
.list_wrap .list:nth-child(3) {
    border: 1px solid var(--stroke-dark);
    pointer-events: none;
}
.list_wrap .list:nth-child(1) {
    background: url(../img/solution/02/item01.jpg) center center / cover no-repeat;
}
.list_wrap .list:nth-child(2) {
    background: url(../img/solution/02/item02.jpg) center center / cover no-repeat;
}
.list_wrap .list .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8));
}
.list .item {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.list .item_name {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--label-white) !important;
}
.list .keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.list .keyword li {
    border: 1px solid var(--stroke-dark);
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--label-white) !important;
    transition: 0.3s;
}
.list .keyword li:hover {
    background-color: var(--fill-normal-light);
    color: var(--label-normal);
    font-weight: 500;
}
.list .item.comming {
    justify-content: center;
    align-items: center;
}
.comming .item_name {
    font-size: 3.2rem;
    font-weight: 400;
}

@media screen and (max-width:1024px) {
    .solution_section {
        padding: 120px 0;
        position: relative;
    }
    section .inner {
        width: calc(100% - 60px);
    }
    .list .item_name {
        font-size: 2rem;
    }
    .list .mask {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    }
    .solution_section .list {
        pointer-events: none;
    }
}
@media screen and (max-width:902px) {
    .list .keyword {
        display: none;
    }
}
@media screen and (max-width:760px) {
    .list .item_name {
        font-size: 1.6rem;
    }
}
@media screen and (max-width:480px) {
    .solution_section {
        padding: 120px 0;
    }
    section .inner {
        width: calc(100% - 32px);
    }
    .solution_section .title {
        font-size: 5.4rem;
    }
    .solution_section .list_wrap {
        flex-direction: column;
        gap: 12px;
    }
    .list_wrap .list {
        width: 100%;
    }
    .list .item_name {
        font-size: 2rem;
    }
    .list .keyword {
        display: flex;
    }
}

/* 🎈.work_section */
.work_section {
    flex-direction: column;
    justify-content: center;
}
.work_section .heading {
    width: 100%;
    padding: 180px 10.9375vw 0;
}
.work_section .title {
    font-size: 9rem;
    font-weight: 500;
    color: var(--label-white);
}
.work_section .swiper {
    width: 100%;
    padding: 80px 0 220px;
}
.work_section .swiper-slide {
    border-radius: 24px;
    overflow: hidden;
}
.work_section figure {
    width: 100%;
    height: auto;
    aspect-ratio: 123 / 206;
    position: relative;
    background-color: #fff;
}
.work_section .swiper-slide figure::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
}
.work_section .swiper-slide.swiper-slide-active figure::before {
    background-color: transparent;
}
.work_section img {
    width: 100%;
}
.link_btn {
    width: 100%;
    border-top: 1px solid var(--stroke-dark);
}
.link_btn a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--label-white);
}
.mobile_list {
    display: none;
}
@media screen and (max-width:1024px) {
    .work_section .heading {
        padding: 180px 30px 0;
    }
}
@media screen and (max-width:480px) {
    .work_section .heading {
        padding: 0 16px 0;
    }
    .work_section .title {
        font-size: 5.4rem;
    }
    .pc_tablet {
        display: none !important;
    }
    .mobile_list {
        padding-top: 64px;
        width: calc(100% - 32px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .mobile_list li {
        width: 100%;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
    }
}