@charset "UTF-8";
.image-about-service,
.image-reason-detail-sub {
    border-radius: 25px;
}
.section-service .section__inner {
    padding: 0;
}
.service__wrapper {
    display: grid;
    grid-template-columns: 37% 1fr;
    gap: 28px;
}

.image-about-service {
    width: 100%;
    height: auto;
}

.service-detail-text {
    font-size: 1.8rem;
    line-height: 2;
}

.heading-text {
    font-size: 2.8rem;
    font-weight: normal;
    margin-bottom: 49px;
}

.heading-reason {
    color: var(--text-tertialy);
    font-size: 2rem;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reason__wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
}

.reason:nth-of-type(even) .reason__wrapper {
    flex-direction: row;
}

.reason-text__wrapper {
    border-radius: 25px;
    background: var(--bgcolor-quaternary, #FBF7EF);
    padding: 35px 40px;
    width: 43.19%;
    position: absolute;
}

.reason:nth-of-type(odd) .reason-text__wrapper {
    left: 42%;
}

.reason:nth-of-type(even) .reason-text__wrapper {
    right: 42%;
}

.number {
    color: var(--text-primary);
    font-size: 3.6rem;
    font-weight: bold;
}

.reason-detail-text {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 39px;
}

.reason-image__wrapper {
    display: flex;
    gap: 3%;
    margin: 4% 15% 6%;
    align-items: flex-start;
    justify-content: flex-end;
    /* position: relative; */
}

.flex-start {
    justify-content: flex-start;
}

.image-reason-detail {
    border-radius: 0px 25px 25px 0px;
    width: 44.51%;
}

.reason:nth-of-type(even) .image-reason-detail {
    border-radius: 25px 0px 0px 25px;
}

@media screen and (min-width: 769px) {
    .reason:nth-of-type(1) .reason__wrapper::after,
    .reason:nth-of-type(2) .reason__wrapper::before,
    .reason:nth-of-type(3) .reason__wrapper::after {
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }
    .reason:nth-of-type(1) .reason__wrapper::after {
        background-image: url(../images/service/service_bg_1.svg);
        width: 29.097222222222225vw;
        height: 35vw;
        right: 0;
        bottom: -15.069444444444443vw;
    }
    .reason:nth-of-type(2) .reason__wrapper::before {
        background-image: url(../images/service/service_bg_2.svg);
        width: 23.819444444444443vw;
        height: 27.361111111111114vw;
        left: 0;
        bottom: -10.902777777777779vw;
    }
    .reason:nth-of-type(3) .reason__wrapper::after {
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
        background-image: url(../images/service/service_bg_3.svg);
        width: 22.63888888888889vw;
        height: 35.90277777777778vw;
        right: 0;
        bottom: -44.486111vw;
    }
}

@media screen and (max-width: 999px) {
    .reason:nth-of-type(odd) .reason__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .reason:nth-of-type(even) .reason__wrapper {
        flex-direction: column;
        align-items: flex-end;
    }
    .reason:not(:first-of-type) .reason__wrapper {
        margin-top: 72px;
    }
    .reason-text__wrapper {
        width: 90%;
        position: unset;
        padding: 28px 20px;
        margin: 0 auto;
    }
    .reason-image__wrapper {
        justify-content: center;
        gap: 6.13%;
        margin: 0 auto 4%;
    }
    .image-reason-detail {
        width: 94.67%;
        margin: 24px 0;
    }
    .image-reason-detail-sub {
        width: 41.6%;
    }
    .heading-reason {
        font-size: 1.8rem;
    }
    .number {
        font-size: 2.8rem;
    }
    .reason-detail-text {
        font-size: 1.4rem;
        margin-top: 20px;
    }
    .heading-text {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .service-detail-text {
        font-size: 1.4rem;
        line-height: 2.28571;
    }
}

@media screen and (max-width: 769px) {
    .service__wrapper {
        grid-template-columns: auto;
    }
}