body {
    background-color: var(--color-F7F8F9);
}
._wrap {
    display: flex;
    flex-direction: column;
    /* gap: 8.6rem; */
    align-items: center;
    text-align: center;
    line-height: 1.25;
    padding-top: 18.2vw;
    min-height: calc(100vh - 26rem);
    padding-bottom: 15rem;
}
.about_text {
    font-size: 5.6rem;
    font-weight: 700;
    color: var(--color-222);
    max-width: 101.2rem;
    /* margin-bottom: 8vw; */
}

.tab_box {
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 2.2rem;
    padding: 0 4rem;
    margin: 8.6vw auto 0;
    width: 100%;
    max-width: 101.2rem;
    box-sizing: border-box;
}
.tab_box li {
    width: 100%;
}
.tab_box li > button {
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 3.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14.2% 4rem 10%;
    border: none;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
}
.tab_box li button:focus-visible,
.tab_box li button:active {
    background-color: var(--color-D9DCE4);
    outline: none;
}
.tab_box li button > img {
    width: 100%;
    max-width: 13.2rem;
    min-width: 6rem;
    height: 100%;
    max-height: 13.2rem;
    min-height: 6rem;
    object-fit: contain;
}

.tab_box li button > h4 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-222);
    margin-top: 2.4rem;
    width: 100%;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-clamp: 2;
}
.tab_box li button > span {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-8E8E8E);
    white-space: nowrap;
    margin-top: 2rem;
}
@media (max-width: 850px) {
    .about_text {
        font-size: 4.8rem;
    }

    .tab_box {
        gap: 1.8rem;
        padding: 2rem;
    }
    .tab_box li > button {
        padding: 14.2% 3rem 10%;
    }
    .tab_box li button > h4 {
        font-size: 2rem;
        margin-top: 2.2rem;
    }
    .tab_box li button > span {
        font-size: 1.8rem;
        margin-top: 1.8rem;
    }
}
@media (max-width: 630px) {
    .about_text {
        font-size: 4.2rem;
    }
    .tab_box {
        gap: 1.4rem;
    }
    .tab_box li > button {
        padding: 14.2% 2rem 10%;
        border-radius: 2.6rem;
    }
    .tab_box li button > h4 {
        font-size: 1.8rem;
        margin-top: 1.8rem;
    }
    .tab_box li button > span {
        font-size: 1.4rem;
        margin-top: 1.4rem;
    }
}
@media (max-width: 500px) {
    .about_text {
        font-size: 3.6rem;
    }
    .tab_box {
        gap: 1.2rem;
    }
    .tab_box li > button {
        border-radius: 2.4rem;
    }
    .tab_box li button > h4 {
        font-size: 1.4rem;
        margin-top: 1.6rem;
    }
    .tab_box li button > span {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }
}

@media (max-width: 410px) {
    .about_text {
        font-size: 3rem;
    }
    .tab_box li > button {
        padding: 14.2% 1.2rem 10%;
        border-radius: 1.8rem;
    }
    .tab_box li button > h4 {
        font-size: 1.2rem;
        margin-top: 1.6rem;
    }
    .tab_box li button > span {
        display: none;
    }
}
@media (max-width: 340px) {
    .about_text {
        font-size: 2.8rem;
    }
}
