.about{
    margin-top: 150px;
}

.about__inner{
    max-width: calc(1041px + 30px);
    width: 100%;
    margin: 0 auto;
}



.about__circle{
  width: 140px;
  height: 140px;
}

.about__circle::before{
  background-image: url(../img/pc/top/sec3_h2_ill.svg);
  width: 40px;
  height: 74px;
}

.about__circle .circleText__text{
    fill: #B81C22;
}


.about__items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 60px;
}

.about__item{
    max-width: 440px;
    width: 100%;
    position: relative;
    padding-top: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.about__shape{
    transition: all 0.3s ease;
}

.about__item:hover .about__shape{
    transform: rotate(-45deg);
}

.about__post{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 3px;
    position: absolute;
    top: 0;
    z-index: 1;
}

.about__post span{
    background: #B81C22;
    color: #fff;
    display: inline-block;
    font-weight: 900;
    font-size: 30px;
    line-height: 130%;
    letter-spacing: normal;
    padding: 2px 20px;
    border-radius: 5px;
}

.about__img{
    position: relative;
}

.about__shape{
    position: absolute;
    bottom: 0;
    right: 0;
}

.about__text{
    font-weight: 500;
    font-size: 18px;
    line-height: 190%;
    letter-spacing: normal;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .about{
        margin-top: 60px;
    }

    .about__heading{
        flex-direction: column;
        gap: 15px;
    }

    .about__circle{
        width: 80px;
        height: 80px;
    }

    .about__circle::before{
        width: 22px;
        height: 41px;
    }

    .about__comment{
        font-weight: 700;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: normal;
        text-align: center;
    }

    .about__title{
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0.1em;
    }

    .about__items{
        flex-direction: column;
        gap: 80px;
        margin-top: 30px;
    }

    .about__item{
        position: relative;
    }

    .about__item:nth-of-type(n + 2 ):before{
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #DFDFDF;
        top: -40px;
        left: 0;

    }

    .about__img{
        padding: 0 24px;
    }

    .about__post span{
        font-size: 24px;
    }

    .about__shape{
        width: 60px;
    }

    .about__text{
        font-size: 15px;
        letter-spacing: normal;
    }

    .about__btn{
        max-width: 310px;
    }
}